diff --git a/db.js b/db.js index 02a6f023..c6db502e 100644 --- a/db.js +++ b/db.js @@ -1,10 +1,11 @@ const mariadb = require("mariadb"); +const env = require("dotenv").config().parsed; const pool = mariadb.createPool({ - host: "10.0.0.1", // "mariadb" if in Docker - user: "minecraft_shop_user", - password: "UsersBeliev3sNewsp4p3r", - database: "minecraft-shop", + host: env.DB_HOST, // "mariadb" if in Docker + user: env.DB_USER, + password: env.DB_PASSWORD, + database: env.DB_DATABASE, connectionLimit: 5, }); diff --git a/package-lock.json b/package-lock.json index 144501b2..15a1cf75 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,7 @@ "license": "ISC", "dependencies": { "axios": "^1.13.2", + "dotenv": "^17.2.3", "express": "^5.2.1", "mariadb": "^3.4.5", "ws": "^8.18.3" @@ -218,6 +219,18 @@ "node": ">= 0.8" } }, + "node_modules/dotenv": { + "version": "17.2.3", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.2.3.tgz", + "integrity": "sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, "node_modules/dunder-proto": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", diff --git a/package.json b/package.json index 8edf8898..615412a1 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "type": "commonjs", "dependencies": { "axios": "^1.13.2", + "dotenv": "^17.2.3", "express": "^5.2.1", "mariadb": "^3.4.5", "ws": "^8.18.3" diff --git a/public/admin.html b/public/admin.html deleted file mode 100644 index 5dba8217..00000000 --- a/public/admin.html +++ /dev/null @@ -1,485 +0,0 @@ - - - - - Admin - Shop Item Management - - - - -

Admin - Shop Item Management

- -
-
- - -
-
- - -
-
- - -
-
- - -
- -
-
- - - - - - - - - - - - -
NamePriceEnabledActions
- - - diff --git a/public/css/index.css b/public/css/index.css deleted file mode 100644 index 8efd0143..00000000 --- a/public/css/index.css +++ /dev/null @@ -1,338 +0,0 @@ -body { - background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%); - color: #fff; - font-family: "Segoe UI", sans-serif; - margin: 24px; - transition: background 0.5s; -} -h1 { - color: #5865f2; - text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); -} -#items-list { - margin-top: 24px; - background: rgba(255, 255, 255, 0.03); - border-radius: 12px; - padding: 16px; - box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); - width: 50%; - backdrop-filter: blur(8px); - display: table; - table-layout: auto; -} -.item-row { - display: flex; - align-items: center; - justify-content: space-between; - padding: 12px 0; - border-bottom: 1px solid rgba(255, 255, 255, 0.05); -} -.item-name { - font-size: 1em; - font-weight: 600; - color: #e0e0e0; - transition: color 0.3s; -} -.item-name:hover { - color: #fff; -} -.item-price { - color: #23a559; - font-size: 1.1em; - margin-left: 16px; - margin-right: 16px; - transition: color 0.3s; -} -.item-price:hover { - color: #178a43; -} -.buy-btn, -.buy64-btn, -.buy32-btn { - background: #5865f2; - color: #fff; - border: none; - border-radius: 6px; - padding: 8px 20px; - cursor: pointer; - font-weight: bold; - transition: all 0.3s ease; - box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3); -} -.buy-btn:hover, -.buy64-btn:hover, -.buy32-btn:hover { - background: #4752c4; - transform: translateY(-2px); - box-shadow: 0 6px 16px rgba(88, 101, 242, 0.4); -} -#msg { - margin-top: 18px; - font-size: 15px; - color: #23a559; - transition: color 0.3s; -} -#msg.error { - color: #ff5555; -} -.modal, -.cart-window, -.address-modal, -.transfer-modal { - display: none; - position: fixed; - z-index: 1000; - left: 0; - top: 0; - width: 100vw; - height: 100vh; - background: rgba(0, 0, 0, 0.7); - align-items: center; - justify-content: center; - backdrop-filter: blur(8px); -} -.modal-content, -.cart-content, -.address-content, -.transfer-content { - background: rgba(255, 255, 255, 0.05); - color: #fff; - padding: 40px 32px 32px 32px; - border-radius: 16px; - max-width: 500px; - box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3); - backdrop-filter: blur(12px); - border: 1px solid rgba(255, 255, 255, 0.05); -} -.modal-content h2, -.cart-content h2, -.address-content h2 { - margin-top: 0; - color: #5865f2; - font-size: 1.5em; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); -} -.close-btn { - background: #ff5555; - color: #fff; - border: none; - border-radius: 8px; - padding: 8px 16px; - cursor: pointer; - float: right; - font-weight: bold; - transition: all 0.3s ease; - box-shadow: 0 4px 12px rgba(255, 85, 85, 0.3); -} -.close-btn:hover { - background: #c0392b; - transform: scale(1.1); -} -.cart-btn { - position: fixed; - top: 24px; - right: 115px; - background: #5865f2; - color: #fff; - border: none; - border-radius: 50%; - width: 45px; - height: 45px; - padding-top: 10px; - padding-left: 10px; - font-size: 1.6em; - cursor: pointer; - z-index: 900; - box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3); - transition: all 0.3s; -} -.cart-btn:hover { - background: #4752c4; - transform: scale(1.05); -} -.cart-count { - position: absolute; - bottom: 25px; - left: 25px; - background: #23a559; - color: #fff; - border-radius: 50%; - width: 24px; - height: 24px; - font-size: 18px; - display: flex; - align-items: center; - justify-content: center; - box-shadow: 0 2px 6px rgba(35, 165, 89, 0.3); - transition: all 0.3s; -} -#cartItems { - margin: 24px 0; -} -#cartItems div { - padding: 12px; - border-bottom: 1px solid rgba(255, 255, 255, 0.05); - display: flex; - justify-content: space-between; - align-items: center; - font-size: 1em; - transition: background 0.3s; -} -#cartItems div:hover { - background: rgba(255, 255, 255, 0.03); -} -.item-name { - font-weight: bold; - margin-right: 8px; -} -.item-price { - font-weight: bold; -} -#cartTotal { - margin: 24px 0; - font-size: 1.2em; - font-weight: bold; - color: #23a559; -} -#checkoutBtn { - background: #23a559; - color: #fff; - border: none; - border-radius: 8px; - padding: 14px; - font-weight: bold; - cursor: pointer; - transition: all 0.3s ease; - box-shadow: 0 6px 16px rgba(35, 165, 89, 0.3); -} -#checkoutBtn:hover { - background: #178a43; - transform: translateY(-2px); - box-shadow: 0 8px 20px rgba(35, 165, 89, 0.4); -} - -.login-btn { - position: fixed; - top: 24px; - right: 24px; - background: #5865f2; - color: #fff; - border: none; - border-radius: 28px; - padding: 10px 24px; - font-size: 1em; - cursor: pointer; - z-index: 900; - font-weight: bold; - box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3); - transition: all 0.3s; -} -.login-btn:hover { - background: #4752c4; - transform: translateY(-2px); -} -.logout-btn { - position: fixed; - top: 24px; - right: 24px; - background: #ff5555; - color: #fff; - border: none; - border-radius: 28px; - padding: 10px 24px; - font-size: 1em; - cursor: pointer; - z-index: 900; - font-weight: bold; - box-shadow: 0 4px 12px rgba(255, 85, 85, 0.3); - transition: all 0.3s; -} -.logout-btn:hover { - background: #c0392b; - transform: translateY(-2px); -} -.address-list { - margin: 16px 0; -} -.address-list label { - display: block; - margin-bottom: 8px; - color: #ccc; -} -.balance-Btn { - position: fixed; - top: 24px; - right: 365px; - background: #5865f2; - color: #fff; - border: none; - border-radius: 28px; - padding: 12px 24px; - font-size: 1em; - cursor: pointer; - z-index: 900; - font-weight: bold; - box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3); - transition: all 0.3s; -} - -/* Additional modern styles */ -input[type="text"], -input[type="password"], -input[type="number"] { - background: rgba(255, 255, 255, 0.05); - border: none; - border-radius: 6px; - padding: 10px 12px; - color: #fff; - width: 100%; - box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); - transition: box-shadow 0.3s; -} -input[type="text"]:focus, -input[type="password"]:focus, -input[type="number"]:focus { - box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4); -} -form { - display: flex; - flex-direction: column; - gap: 12px; -} -button[type="submit"], -#transferBtn { - background: #5865f2; - color: #fff; - border: none; - border-radius: 6px; - padding: 10px; - font-weight: bold; - cursor: pointer; - transition: all 0.3s; - box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3); -} -button[type="submit"]:hover, -#transferBtn:hover { - background: #4752c4; - transform: translateY(-2px); -} -.account-tab.active { - display: block; -} -#accountTabs button { - background: #1a1a1a; - border: 1px solid #333; - border-radius: 6px; - padding: 8px 12px; - cursor: pointer; - transition: all 0.3s; - color: #fff; -} -#accountTabs button:hover { - background: #2a2a2a; -} -#accountTabs button.active { - background: #5865f2; - color: #fff; - border-color: #5865f2; -} diff --git a/public/index.html b/public/index.html deleted file mode 100644 index 73774c77..00000000 --- a/public/index.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - Shop - Buy Items - - - - - - - - - - -

Shop - Items to Buy

- - - - - - - - - - - - - - - - - - -
Item NameAmountPriceStock
Loading items...
-
- - - - - -
-
- -

Transfer

-
-
-
- - -
- - -
-
-
-
- - -
-
- -

Your Cart

-
-
- -
-
- - -
-
- -

Select Address

-
-
- -
-
-
-
- - - - - - diff --git a/public/items.html b/public/items.html deleted file mode 100644 index 65295b23..00000000 --- a/public/items.html +++ /dev/null @@ -1,585 +0,0 @@ - - - - - Latest Items - - - - -

Latest Items

-

- Shows the most recently received item lists from connected clients. - Data comes from /api/items. -

- -
- - - - - - -
-
- Last update: -
-
- API: unknown -
-
-
- -
- - - - - - - - - - - - - - -
SourceItemCountLast updated
Loading…
-
- -

- Live view of item lists reported by connected clients. -

- - - - diff --git a/public/js/index.js b/public/js/index.js deleted file mode 100644 index efdee52a..00000000 --- a/public/js/index.js +++ /dev/null @@ -1,800 +0,0 @@ -// --- Utility functions --- -function formatItemId(id) { - if (!id && id !== 0) return "(unknown)"; - id = String(id); - - // Remove any NBT/variant suffixes that might follow a space or bracket e.g. "minecraft:stone{...}" - // Keep it simple: strip anything starting with '{' or '[' or ' ' after id body. - id = id.split("{")[0].split("[")[0].trim(); - - // If there is a namespace, take the part after colon - const parts = id.split(":"); - let name = parts.length > 1 ? parts[1] : parts[0]; - - // Normalize common separators - name = name.replace(/[-.]/g, "_"); - - // Replace multiple underscores with single space - name = name.replace(/_+/g, " ").trim(); - - // If name contains uppercase letters (already pretty), keep spacing but fix underscores - if (/[A-Z]/.test(name)) { - // Replace underscores and keep casing; ensure single spaces - name = name.replace(/_+/g, " ").trim(); - return name; - } - - // Lowercase everything then title-case just the first word for a natural look: - // "sugar cane" -> "Sugar cane", "redstone_dust" -> "Redstone dust" - name = name.toLowerCase().split(" ").filter(Boolean); - - if (name.length === 0) return id; - - // Title-case only first word, leave rest lowercase (matches examples like "Sugar cane") - const first = name[0]; - const rest = name.slice(1); - const firstCap = first.charAt(0).toUpperCase() + first.slice(1); - const result = [firstCap].concat(rest).join(" "); - - return result; -} - -// /api/users output is {{"ok":true,"users":[{"username":"ZareMate","password":"74b669f042afd3fccff6d3915f436b5bf3ad98836650ecfacf5062c7229115cb","balance":12858,"adresses":["PKP Centralny: Poczta - ZareMate","Factory 1: Manual"]},{"username":"qawe","password":"cd9ecb80ec16c7d73f7713f5e25a5d96b68bfe4debcfefc214f5351ee325e09f","balance":7027.52,"adresses":["Jajomyje 17: qawe"]},{"username":"skybloczek1","password":"937824fc6a52074b0a173319ec94c5e6c5a82cf8e63d9f401b15219c7e33248a","balance":22,"adresses":["Duchnice: skypa"]}]}} -async function getAllAddresses() { - try { - const response = await fetch("/api/users"); - const data = await response.json(); - - const addresses = data.users.map((user) => user.adresses).flat(); - console.log(addresses); - - return addresses; - } catch (error) { - console.error("Error fetching addresses:", error); - throw error; - } -} - -// get id from name -function getId(name) { - // Implement id retrieval logic here - // name: Sugar cane -> minecraft:sugar_cane - // name: Redstone dust -> minecraft:redstone_dust - const parts = name.split(" "); - const first = parts[0].toLowerCase(); - const rest = parts.slice(1).map((word) => word.toLowerCase()); - const id = [first].concat(rest).join("_"); - return `minecraft:${id}`; -} - -function getImage(id) { - // Implement image retrieval logic here - // id: mod:item_id - // /static/textures/mod/item_id.png - const parts = id.split(":"); - const mod = parts[0]; - const item = parts[1]; - return `/static/textures/${mod}/${item}.png`; -} - -function sha256(str) { - // Returns a promise that resolves to the hex digest - const encoder = new TextEncoder(); - const data = encoder.encode(str); - return crypto.subtle.digest("SHA-256", data).then((buf) => - Array.from(new Uint8Array(buf)) - .map((b) => b.toString(16).padStart(2, "0")) - .join(""), - ); -} - -function openTransferModal() { - const LocalUser = getLoggedInUser(); - if (!LocalUser) { - document.getElementById("transferMsg").textContent = - "Please log in to transfer balance."; - document.getElementById("transferModal").style.display = "flex"; - return; - } - const transferToList = document.getElementById("transferToList"); - transferToList.innerHTML = ""; - Promise.all([fetch("/api/users").then((res) => res.json())]).then( - ([users]) => { - users.users.forEach((user) => { - if (user.username !== LocalUser.username) { - const input = document.createElement("input"); - input.type = "radio"; - input.name = "transferTo"; - input.id = user.username; - const label = document.createElement("label"); - label.htmlFor = user.username; - label.textContent = user.username; - transferToList.appendChild(input); - transferToList.appendChild(label); - transferToList.appendChild(document.createElement("br")); - } - }); - }, - ); - document.getElementById("transferMsg").textContent = ""; - document.getElementById("transferModal").style.display = "flex"; -} - -function closeTransferModal() { - document.getElementById("transferModal").style.display = "none"; -} - -// on onclick transferForm make POST request to /api/users/transfer -function submitTransferForm() { - const from = getLoggedInUser().username; - const to = document.querySelector("input[name='transferTo']:checked").id; - const amount = document.getElementById("transferAmount").value; - fetch("/api/users/transfer", { - method: "POST", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify({ from, to, amount }), - }) - .then((res) => res.json()) - .then((data) => { - if (data.ok) { - updateBalance(); - closeTransferModal(); - } else { - document.getElementById("transferMsg").textContent = data.error; - } - }); -} - -function updateBalance() { - const user = getLoggedInUser(); - if (!user) { - document.getElementById("balanceAmount").textContent = 0; - document.getElementById("balanceBtn").style.display = "none"; - return; - } - fetch("/api/users/" + encodeURIComponent(user.username)) - .then((res) => res.json()) - .then((data) => { - if (data.ok) { - document.getElementById("balanceAmount").textContent = - data.user.balance + " $"; - document.getElementById("balanceBtn").style.display = "block"; - } else { - document.getElementById("balanceAmount").textContent = 0; - document.getElementById("balanceBtn").style.display = "none"; - } - }); -} - -document.getElementById("balanceBtn").addEventListener("click", () => { - openTransferModal(); -}); -document.getElementById("transferBtn").addEventListener("click", () => { - submitTransferForm(); -}); - -// Helper to fetch user info (fresh) -async function fetchUserInfo(username) { - const res = await fetch("/api/users/" + encodeURIComponent(username)); - const data = await res.json(); - return data.ok ? data.user : null; -} - -function showMsg(msg, error = false) { - const msgEl = document.getElementById("msg"); - msgEl.textContent = msg; - msgEl.className = error ? "error" : ""; - // after 2 seconds clear message - setTimeout(() => { - msgEl.textContent = ""; - msgEl.className = ""; - }, 2000); -} - -// --- Login logic --- -function openLoginModal() { - document.getElementById("loginModal").style.display = "flex"; - document.getElementById("loginMsg").textContent = ""; -} -function closeLoginModal() { - document.getElementById("loginModal").style.display = "none"; -} -function updateLoginUI() { - const user = getLoggedInUser(); - document.getElementById("loginBtn").style.display = user ? "none" : ""; - document.getElementById("logoutBtn").style.display = user ? "" : "none"; - document.getElementById("accountBtn").style.display = user ? "" : "none"; - updateBalance(); -} - -function cartPosition() { - const user = getLoggedInUser(); - if (user) { - document.querySelector(".cart-btn").style.right = "315px"; - } else { - document.querySelector(".cart-btn").style.right = "120px"; - } -} - -function getLoggedInUser() { - try { - return JSON.parse(localStorage.getItem("user")); - } catch { - return null; - } -} -function setLoggedInUser(user) { - localStorage.setItem("user", JSON.stringify(user)); - updateLoginUI(); - cartPosition(); - updateBalance(); -} -function logout() { - localStorage.removeItem("user"); - updateLoginUI(); - cartPosition(); - updateBalance(); - showMsg("Logged out."); -} - -// --- Account Modal logic --- -document.getElementById("accountBtn").onclick = openAccountModal; -function openAccountModal() { - showAccountTab("Password"); - loadAddressesTab(); - loadComputersTab(); - document.getElementById("accountModal").style.display = "flex"; -} -function closeAccountModal() { - document.getElementById("accountModal").style.display = "none"; -} -function showAccountTab(tab) { - ["Password", "Addresses", "Computers"].forEach((t) => { - document.getElementById("accountTab" + t).style.display = - t === tab ? "" : "none"; - document.getElementById("tab" + t).style.background = - t === tab ? "#23272a" : ""; - }); -} -document.getElementById("tabPassword").onclick = () => - showAccountTab("Password"); -document.getElementById("tabAddresses").onclick = () => { - showAccountTab("Addresses"); - loadAddressesTab(); -}; -document.getElementById("tabComputers").onclick = () => { - showAccountTab("Computers"); - loadComputersTab(); -}; - -// --- Change Password --- -document.getElementById("changePasswordForm").onsubmit = async function (e) { - e.preventDefault(); - const user = getLoggedInUser(); - const msgEl = document.getElementById("changePasswordMsg"); - msgEl.textContent = ""; - if (!user) { - msgEl.textContent = "Not logged in."; - return; - } - const current = document.getElementById("currentPassword").value; - const newpw = document.getElementById("newPassword").value; - const confirm = document.getElementById("confirmNewPassword").value; - if (!current || !newpw || !confirm) { - msgEl.textContent = "Fill all fields."; - return; - } - if (newpw !== confirm) { - msgEl.textContent = "Passwords do not match."; - return; - } - const userInfo = await fetchUserInfo(user.username); - if (!userInfo) { - msgEl.textContent = "User not found."; - return; - } - const currentHash = await sha256(current); - if (userInfo.password !== currentHash) { - msgEl.textContent = "Current password incorrect."; - return; - } - const newHash = await sha256(newpw); - const res = await fetch("/api/users/" + encodeURIComponent(user.username), { - method: "PUT", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify({ password: newHash }), - }); - const data = await res.json(); - if (data.ok) { - msgEl.style.color = "#23a559"; - msgEl.textContent = "Password changed!"; - } else { - msgEl.style.color = "#ff5555"; - msgEl.textContent = "Error: " + (data.error || "Unknown error"); - } -}; - -// --- Addresses Tab --- -async function loadAddressesTab() { - const user = getLoggedInUser(); - const listEl = document.getElementById("addressesList"); - const msgEl = document.getElementById("addressesMsg"); - listEl.innerHTML = ""; - msgEl.textContent = ""; - if (!user) { - listEl.innerHTML = "Not logged in."; - return; - } - const userInfo = await fetchUserInfo(user.username); - if (!userInfo || !Array.isArray(userInfo.adresses)) { - listEl.innerHTML = "No addresses found."; - return; - } - if (!userInfo.adresses.length) { - listEl.innerHTML = "
No addresses.
"; - } else { - userInfo.adresses.forEach((addr, idx) => { - const div = document.createElement("div"); - div.style.display = "flex"; - div.style.alignItems = "center"; - div.style.marginBottom = "6px"; - div.innerHTML = `${addr} - `; - listEl.appendChild(div); - }); - } -} -window.removeAddress = async function (idx) { - const user = getLoggedInUser(); - const msgEl = document.getElementById("addressesMsg"); - msgEl.textContent = ""; - if (!user) return; - const userInfo = await fetchUserInfo(user.username); - if (!userInfo || !Array.isArray(userInfo.adresses)) return; - userInfo.adresses.splice(idx, 1); - const res = await fetch("/api/users/" + encodeURIComponent(user.username), { - method: "PUT", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify({ adresses: userInfo.adresses }), - }); - const data = await res.json(); - if (data.ok) { - msgEl.style.color = "#23a559"; - msgEl.textContent = "Address removed."; - loadAddressesTab(); - } else { - msgEl.style.color = "#ff5555"; - msgEl.textContent = "Error: " + (data.error || "Unknown error"); - } -}; -document.getElementById("addAddressForm").onsubmit = async function (e) { - e.preventDefault(); - const user = getLoggedInUser(); - const msgEl = document.getElementById("addressesMsg"); - msgEl.textContent = ""; - const newAddr = document.getElementById("newAddress").value.trim(); - if (!user || !newAddr) return; - const userInfo = await fetchUserInfo(user.username); - if (!userInfo || !Array.isArray(userInfo.adresses)) return; - userInfo.adresses.push(newAddr); - const res = await fetch("/api/users/" + encodeURIComponent(user.username), { - method: "PUT", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify({ - adresses: userInfo.adresses, - }), - }); - // update local storage - localStorage.setItem("user", JSON.stringify(userInfo)); - - const data = await res.json(); - if (data.ok) { - msgEl.style.color = "#23a559"; - msgEl.textContent = "Address added."; - document.getElementById("newAddress").value = ""; - loadAddressesTab(); - } else { - msgEl.style.color = "#ff5555"; - msgEl.textContent = "Error: " + (data.error || "Unknown error"); - } -}; - -// --- Linked Computers Tab --- -async function loadComputersTab() { - const user = getLoggedInUser(); - const listEl = document.getElementById("computersList"); - const msgEl = document.getElementById("computersMsg"); - listEl.innerHTML = ""; - msgEl.textContent = ""; - if (!user) { - listEl.innerHTML = "Not logged in."; - return; - } - const res = await fetch( - "/api/users/" + encodeURIComponent(user.username) + "/computers", - ); - const data = await res.json(); - if (!data.ok || !Array.isArray(data.computers)) { - listEl.innerHTML = "No linked computers found."; - return; - } - if (!data.computers.length) { - listEl.innerHTML = "
No linked computers.
"; - } else { - data.computers.forEach((comp) => { - const div = document.createElement("div"); - div.style.display = "flex"; - div.style.alignItems = "center"; - div.style.marginBottom = "6px"; - div.innerHTML = `Computer #${comp.id} - `; - listEl.appendChild(div); - }); - } -} -window.removeComputer = async function (id) { - const user = getLoggedInUser(); - const msgEl = document.getElementById("computersMsg"); - msgEl.textContent = ""; - if (!user) return; - const res = await fetch("/api/computers/" + id, { - method: "PUT", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify({ linked_user: null }), - }); - const data = await res.json(); - if (data.ok) { - msgEl.style.color = "#23a559"; - msgEl.textContent = "Computer unlinked."; - loadComputersTab(); - } else { - msgEl.style.color = "#ff5555"; - msgEl.textContent = "Error: " + (data.error || "Unknown error"); - } -}; - -document.getElementById("loginBtn").onclick = openLoginModal; -document.getElementById("logoutBtn").onclick = logout; - -document.getElementById("loginForm").onsubmit = async function (e) { - e.preventDefault(); - const username = document.getElementById("loginUsername").value.trim(); - const password = document.getElementById("loginPassword").value; - if (!username || !password) return; - const hash = await sha256(password); - // Fetch user info to verify login - let res = await fetch("/api/users/" + encodeURIComponent(username)); - let data = await res.json(); - if (!data.ok || !data.user) { - document.getElementById("loginMsg").textContent = "User not found"; - return; - } - if (data.user.password !== hash) { - document.getElementById("loginMsg").textContent = "Incorrect password"; - return; - } - setLoggedInUser({ - username: data.user.username, - adresses: data.user.adresses, - }); - closeLoginModal(); - updateBalance(); - cartPosition(); -}; - -// --- Cart logic --- -function getCart() { - try { - return JSON.parse(localStorage.getItem("cart")) || []; - } catch { - return []; - } -} -function setCart(cart) { - localStorage.setItem("cart", JSON.stringify(cart)); - updateCartUI(); -} -function addToCart(item, qty = 1) { - let cart = getCart(); - const idx = cart.findIndex((i) => i.id === item.id); - if (idx >= 0) { - cart[idx].qty += qty * item.quantity || 1; - } else { - cart.push({ ...item, qty: qty * item.quantity || 1 }); - } - setCart(cart); -} -function removeFromCart(id) { - let cart = getCart().filter((i) => i.id !== id); - setCart(cart); -} -function updateCartUI() { - const cart = getCart(); - const count = cart.reduce((a, i) => a + i.qty, 0); - document.getElementById("cartCount").textContent = count; - document.getElementById("cartCount").style.display = count ? "" : "none"; -} -function openCart() { - renderCart(); - document.getElementById("cartWindow").style.display = "flex"; -} -function closeCart() { - document.getElementById("cartWindow").style.display = "none"; -} - -document.getElementById("cartBtn").addEventListener("click", () => { - openCart(); -}); - -async function getItemSellQuantity(id) { - const res = await fetch("/api/shop/items"); - const data = await res.json(); - if (!data.ok) throw new Error(data.error || "Failed to load"); - const item = data.items.find((i) => i.id === id); - return item ? item.quantity : 1; -} - -function renderCart() { - const cart = getCart(); - const cartItems = document.getElementById("cartItems"); - const cartTotal = document.getElementById("cartTotal"); - if (!cart.length) { - cartItems.innerHTML = "
Your cart is empty.
"; - cartTotal.textContent = ""; - document.getElementById("checkoutBtn").disabled = true; - return; - } - cartItems.innerHTML = ""; - let total = 0; - Promise.all( - cart.map(async (item) => { - const sellQuantity = await getItemSellQuantity(item.id); - const orderAmount = item.qty / sellQuantity; - const price = item.price * orderAmount; - - const div = document.createElement("div"); - div.style.display = "flex"; - div.style.justifyContent = "space-between"; - div.style.alignItems = "center"; - div.style.marginBottom = "8px"; - - div.innerHTML = ` - ${item.name} - ${formatItemId(item.name)} × ${item.qty} - ${price.toFixed(2)} $ - - `; - - cartItems.appendChild(div); - return price; - }), - ).then((prices) => { - total = prices.reduce((sum, p) => sum + p, 0); - cartTotal.textContent = "Total: " + total.toFixed(2) + " $"; - document.getElementById("checkoutBtn").disabled = false; - }); -} - -// --- Address selection and checkout --- -function openAddressModal() { - const user = getLoggedInUser(); - if (!user || !Array.isArray(user.adresses) || !user.adresses.length) { - document.getElementById("addressMsg").textContent = - "No addresses found for your account."; - document.getElementById("addressList").innerHTML = ""; - document.getElementById("addressModal").style.display = "flex"; - return; - } - document.getElementById("addressMsg").textContent = ""; - const list = document.getElementById("addressList"); - list.innerHTML = ""; - user.adresses.forEach((addr, idx) => { - const id = "addr_" + idx; - const label = document.createElement("label"); - label.innerHTML = ` ${addr}`; - list.appendChild(label); - }); - // add separator for other user addresses - const separator = document.createElement("hr"); - separator.style.margin = "10px 0"; - list.appendChild(separator); - - getAllAddresses().then((addresses) => { - const otherAddr = addresses.filter((addr) => !user.adresses.includes(addr)); - otherAddr.forEach((addr, idx) => { - const id = "addr_" + idx; - const label = document.createElement("label"); - label.innerHTML = ` ${addr}`; - list.appendChild(label); - }); - }); - document.getElementById("addressModal").style.display = "flex"; -} -function closeAddressModal() { - document.getElementById("addressModal").style.display = "none"; -} -document.getElementById("checkoutBtn").onclick = function () { - const user = getLoggedInUser(); - if (!user) { - closeCart(); - openLoginModal(); - return; - } - openAddressModal(); -}; -document.getElementById("addressForm").onsubmit = function (e) { - e.preventDefault(); - const addr = document.querySelector('input[name="address"]:checked'); - if (!addr) { - document.getElementById("addressMsg").textContent = - "Please select an address."; - return; - } - - // from client send post to API - const user = getLoggedInUser(); - const cart = getCart(); - const items = cart.map((item) => ({ - id: item.name, - quantity: item.qty, - sellQuantity: item.quantity, - })); - const request = { - userId: user.username, - addressId: addr.value, - items: items, - }; - console.log(request); - fetch("/api/shop/items/buy", { - method: "POST", - headers: { - "Content-Type": "application/json", - }, - body: JSON.stringify(request), - }) - .then((response) => response.json()) - .then((data) => { - // Conditional check - if (data.ok === true) { - console.log("Purchase successful!"); - showMsg("Order placed for address: " + addr.value); - updateBalance(); - } else { - console.log("Purchase failed or message did not match:", data); - showMsg("Order failed"); - } - }) - .catch((error) => { - console.error("Error during fetch:", error); - }); - - closeAddressModal(); - closeCart(); - setCart([]); - updateCartUI(); -}; - -//get Item stock -async function getItemStock(itemId) { - try { - const res = await fetch(`/api/item/${itemId}`); - const data = await res.json(); - if (!data.ok) throw new Error(data.error || "Failed to load"); - return data.item.count; - } catch (error) { - console.error("Error during fetch:", error); - return null; - } -} -function getCartItemCount(itemId) { - const cart = getCart(); - const item = cart.find((item) => item.id === itemId); - return item ? item.count : 0; -} - -//check if item can be added to cart (if item_stock > cart_item_count) -async function canAddToCart(itemId) { - const item_stock = (await getItemStock(itemId)) || 0; - const cart_item_count = getCartItemCount(itemId); - return item_stock > cart_item_count; -} - -function convertStockToStackPlusRest(stock, quantity) { - const stackSize = 64; - const stacks = Math.floor(stock / stackSize); - const rest = stock % stackSize; - return { stacks, rest }; -} - -// --- Shop items logic --- -async function fetchItems() { - const tableBody = document.querySelector("#items-list tbody"); - if (!tableBody) return; - - // Clear table and show loader - tableBody.innerHTML = "Loading items..."; - - try { - const res = await fetch("/api/shop/items"); - const data = await res.json(); - if (!data.ok) throw new Error(data.error || "Failed to load"); - - if (!data.items.length) { - tableBody.innerHTML = - "No items available to buy."; - return; - } - - tableBody.innerHTML = ""; // Clear loader - // sort items alphabetically - const sortedItems = [...data.items].sort((a, b) => - a.name.localeCompare(b.name), - ); - - const rows = await Promise.all( - sortedItems.map(async (item) => { - const item_stock = (await getItemStock(item.name)) || 0; - const row = document.createElement("tr"); - row.innerHTML = ` - ${item.name} - ${formatItemId(item.name)} - ${item.quantity} - ${item.price.toFixed(2)} $ - ${convertStockToStackPlusRest(item_stock, item.quantity).stacks ? `${convertStockToStackPlusRest(item_stock, item.quantity).stacks} stacks
` : ""}${convertStockToStackPlusRest(item_stock, item.quantity).rest ? `${convertStockToStackPlusRest(item_stock, item.quantity).rest} in stock` : ""} ${!convertStockToStackPlusRest(item_stock, item.quantity).stacks && !convertStockToStackPlusRest(item_stock, item.quantity).rest ? "Out of stock" : ""} - - - `; - return row; - }), - ); - - tableBody.innerHTML = ""; - rows.forEach((row) => tableBody.appendChild(row)); - - function getItemSellQuantity(item) { - const quantity = parseInt( - document.getElementById(`quantity-input-${item.id}`).value, - 10, - ); - return quantity; - } - - // Add event listeners for buy buttons - Array.from(tableBody.getElementsByClassName("buy-btn")).forEach((btn) => { - btn.onclick = function () { - const item = { - id: parseInt(this.dataset.id, 10), - name: this.dataset.name, - price: parseFloat(this.dataset.price), - quantity: parseInt(this.dataset.quantity, 10), - }; - addToCart(item, getItemSellQuantity(item)); - updateCartUI(); - }; - }); - } catch (err) { - tableBody.innerHTML = - "Error loading items."; - } -} - -// --- Initialization --- -updateLoginUI(); -updateCartUI(); -fetchItems(); -updateBalance(); -cartPosition(); - -// Close modals on outside click -window.onclick = function (event) { - ["loginModal", "cartWindow", "addressModal"].forEach((id) => { - const el = document.getElementById(id); - if (event.target === el) el.style.display = "none"; - }); -}; diff --git a/public/msg.html b/public/msg.html deleted file mode 100644 index e4451839..00000000 --- a/public/msg.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - WebSocket Test UI - - - -

WebSocket Chat

-
Not connected
-
- - - - - - diff --git a/public/register.html b/public/register.html deleted file mode 100644 index b3d4724d..00000000 --- a/public/register.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - Register New Account - - - - -

Register New Account

-
-
- - -
-
- - -
-
- - - You can pin multiple addresses to your account. -
- -
-
- - - diff --git a/public/textures/ae2/16k_crafting_storage.png b/public/textures/ae2/16k_crafting_storage.png deleted file mode 100644 index 095c7ffb..00000000 Binary files a/public/textures/ae2/16k_crafting_storage.png and /dev/null differ diff --git a/public/textures/ae2/1k_crafting_storage.png b/public/textures/ae2/1k_crafting_storage.png deleted file mode 100644 index 3125dfca..00000000 Binary files a/public/textures/ae2/1k_crafting_storage.png and /dev/null differ diff --git a/public/textures/ae2/256k_crafting_storage.png b/public/textures/ae2/256k_crafting_storage.png deleted file mode 100644 index 755554b6..00000000 Binary files a/public/textures/ae2/256k_crafting_storage.png and /dev/null differ diff --git a/public/textures/ae2/4k_crafting_storage.png b/public/textures/ae2/4k_crafting_storage.png deleted file mode 100644 index 6fbb5e2a..00000000 Binary files a/public/textures/ae2/4k_crafting_storage.png and /dev/null differ diff --git a/public/textures/ae2/64k_crafting_storage.png b/public/textures/ae2/64k_crafting_storage.png deleted file mode 100644 index b2c0d1b3..00000000 Binary files a/public/textures/ae2/64k_crafting_storage.png and /dev/null differ diff --git a/public/textures/ae2/advanced_card.png b/public/textures/ae2/advanced_card.png deleted file mode 100644 index b7bb2d45..00000000 Binary files a/public/textures/ae2/advanced_card.png and /dev/null differ diff --git a/public/textures/ae2/annihilation_core.png b/public/textures/ae2/annihilation_core.png deleted file mode 100644 index cd872d27..00000000 Binary files a/public/textures/ae2/annihilation_core.png and /dev/null differ diff --git a/public/textures/ae2/annihilation_plane.png b/public/textures/ae2/annihilation_plane.png deleted file mode 100644 index 0769a227..00000000 Binary files a/public/textures/ae2/annihilation_plane.png and /dev/null differ diff --git a/public/textures/ae2/basic_card.png b/public/textures/ae2/basic_card.png deleted file mode 100644 index dbaf7608..00000000 Binary files a/public/textures/ae2/basic_card.png and /dev/null differ diff --git a/public/textures/ae2/black_covered_cable.png b/public/textures/ae2/black_covered_cable.png deleted file mode 100644 index 97ced0e0..00000000 Binary files a/public/textures/ae2/black_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/black_covered_dense_cable.png b/public/textures/ae2/black_covered_dense_cable.png deleted file mode 100644 index 8f0fe3f5..00000000 Binary files a/public/textures/ae2/black_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/black_glass_cable.png b/public/textures/ae2/black_glass_cable.png deleted file mode 100644 index 73ff6747..00000000 Binary files a/public/textures/ae2/black_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/black_lumen_paint_ball.png b/public/textures/ae2/black_lumen_paint_ball.png deleted file mode 100644 index d0c33d6e..00000000 Binary files a/public/textures/ae2/black_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/black_paint_ball.png b/public/textures/ae2/black_paint_ball.png deleted file mode 100644 index 6071072e..00000000 Binary files a/public/textures/ae2/black_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/black_smart_cable.png b/public/textures/ae2/black_smart_cable.png deleted file mode 100644 index b7c42c9b..00000000 Binary files a/public/textures/ae2/black_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/black_smart_dense_cable.png b/public/textures/ae2/black_smart_dense_cable.png deleted file mode 100644 index 2b2b920d..00000000 Binary files a/public/textures/ae2/black_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/blank_pattern.png b/public/textures/ae2/blank_pattern.png deleted file mode 100644 index 26c50968..00000000 Binary files a/public/textures/ae2/blank_pattern.png and /dev/null differ diff --git a/public/textures/ae2/blue_covered_cable.png b/public/textures/ae2/blue_covered_cable.png deleted file mode 100644 index 0247d7e3..00000000 Binary files a/public/textures/ae2/blue_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/blue_covered_dense_cable.png b/public/textures/ae2/blue_covered_dense_cable.png deleted file mode 100644 index d991a091..00000000 Binary files a/public/textures/ae2/blue_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/blue_glass_cable.png b/public/textures/ae2/blue_glass_cable.png deleted file mode 100644 index 5272e481..00000000 Binary files a/public/textures/ae2/blue_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/blue_lumen_paint_ball.png b/public/textures/ae2/blue_lumen_paint_ball.png deleted file mode 100644 index f4a8d6d9..00000000 Binary files a/public/textures/ae2/blue_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/blue_paint_ball.png b/public/textures/ae2/blue_paint_ball.png deleted file mode 100644 index f09ad1e5..00000000 Binary files a/public/textures/ae2/blue_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/blue_smart_cable.png b/public/textures/ae2/blue_smart_cable.png deleted file mode 100644 index 849d9e54..00000000 Binary files a/public/textures/ae2/blue_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/blue_smart_dense_cable.png b/public/textures/ae2/blue_smart_dense_cable.png deleted file mode 100644 index 189f6685..00000000 Binary files a/public/textures/ae2/blue_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/brown_covered_cable.png b/public/textures/ae2/brown_covered_cable.png deleted file mode 100644 index 4ccb09d3..00000000 Binary files a/public/textures/ae2/brown_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/brown_covered_dense_cable.png b/public/textures/ae2/brown_covered_dense_cable.png deleted file mode 100644 index b8c12236..00000000 Binary files a/public/textures/ae2/brown_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/brown_glass_cable.png b/public/textures/ae2/brown_glass_cable.png deleted file mode 100644 index 9df0a91d..00000000 Binary files a/public/textures/ae2/brown_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/brown_lumen_paint_ball.png b/public/textures/ae2/brown_lumen_paint_ball.png deleted file mode 100644 index e838aa48..00000000 Binary files a/public/textures/ae2/brown_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/brown_paint_ball.png b/public/textures/ae2/brown_paint_ball.png deleted file mode 100644 index 0b5c37fb..00000000 Binary files a/public/textures/ae2/brown_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/brown_smart_cable.png b/public/textures/ae2/brown_smart_cable.png deleted file mode 100644 index 991cbf2f..00000000 Binary files a/public/textures/ae2/brown_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/brown_smart_dense_cable.png b/public/textures/ae2/brown_smart_dense_cable.png deleted file mode 100644 index c1c889d9..00000000 Binary files a/public/textures/ae2/brown_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/cable_anchor.png b/public/textures/ae2/cable_anchor.png deleted file mode 100644 index 38c1f4e7..00000000 Binary files a/public/textures/ae2/cable_anchor.png and /dev/null differ diff --git a/public/textures/ae2/cable_energy_acceptor.png b/public/textures/ae2/cable_energy_acceptor.png deleted file mode 100644 index c32c3379..00000000 Binary files a/public/textures/ae2/cable_energy_acceptor.png and /dev/null differ diff --git a/public/textures/ae2/cable_interface.png b/public/textures/ae2/cable_interface.png deleted file mode 100644 index 0b76589c..00000000 Binary files a/public/textures/ae2/cable_interface.png and /dev/null differ diff --git a/public/textures/ae2/cable_pattern_provider.png b/public/textures/ae2/cable_pattern_provider.png deleted file mode 100644 index 6f537382..00000000 Binary files a/public/textures/ae2/cable_pattern_provider.png and /dev/null differ diff --git a/public/textures/ae2/calculation_processor.png b/public/textures/ae2/calculation_processor.png deleted file mode 100644 index ba052e5c..00000000 Binary files a/public/textures/ae2/calculation_processor.png and /dev/null differ diff --git a/public/textures/ae2/calculation_processor_press.png b/public/textures/ae2/calculation_processor_press.png deleted file mode 100644 index 9f24d1d3..00000000 Binary files a/public/textures/ae2/calculation_processor_press.png and /dev/null differ diff --git a/public/textures/ae2/capacity_card.png b/public/textures/ae2/capacity_card.png deleted file mode 100644 index 402c5265..00000000 Binary files a/public/textures/ae2/capacity_card.png and /dev/null differ diff --git a/public/textures/ae2/cell_component_16k.png b/public/textures/ae2/cell_component_16k.png deleted file mode 100644 index 63003556..00000000 Binary files a/public/textures/ae2/cell_component_16k.png and /dev/null differ diff --git a/public/textures/ae2/cell_component_1k.png b/public/textures/ae2/cell_component_1k.png deleted file mode 100644 index 3b86ff30..00000000 Binary files a/public/textures/ae2/cell_component_1k.png and /dev/null differ diff --git a/public/textures/ae2/cell_component_256k.png b/public/textures/ae2/cell_component_256k.png deleted file mode 100644 index ef67c4aa..00000000 Binary files a/public/textures/ae2/cell_component_256k.png and /dev/null differ diff --git a/public/textures/ae2/cell_component_4k.png b/public/textures/ae2/cell_component_4k.png deleted file mode 100644 index 87f82068..00000000 Binary files a/public/textures/ae2/cell_component_4k.png and /dev/null differ diff --git a/public/textures/ae2/cell_component_64k.png b/public/textures/ae2/cell_component_64k.png deleted file mode 100644 index b1fc3f06..00000000 Binary files a/public/textures/ae2/cell_component_64k.png and /dev/null differ diff --git a/public/textures/ae2/cell_workbench.png b/public/textures/ae2/cell_workbench.png deleted file mode 100644 index 5dead010..00000000 Binary files a/public/textures/ae2/cell_workbench.png and /dev/null differ diff --git a/public/textures/ae2/certus_quartz_axe.png b/public/textures/ae2/certus_quartz_axe.png deleted file mode 100644 index 212deb65..00000000 Binary files a/public/textures/ae2/certus_quartz_axe.png and /dev/null differ diff --git a/public/textures/ae2/certus_quartz_crystal.png b/public/textures/ae2/certus_quartz_crystal.png deleted file mode 100644 index 663f8dc2..00000000 Binary files a/public/textures/ae2/certus_quartz_crystal.png and /dev/null differ diff --git a/public/textures/ae2/certus_quartz_cutting_knife.png b/public/textures/ae2/certus_quartz_cutting_knife.png deleted file mode 100644 index f75229e8..00000000 Binary files a/public/textures/ae2/certus_quartz_cutting_knife.png and /dev/null differ diff --git a/public/textures/ae2/certus_quartz_dust.png b/public/textures/ae2/certus_quartz_dust.png deleted file mode 100644 index ee711ae7..00000000 Binary files a/public/textures/ae2/certus_quartz_dust.png and /dev/null differ diff --git a/public/textures/ae2/certus_quartz_hoe.png b/public/textures/ae2/certus_quartz_hoe.png deleted file mode 100644 index 1e74424a..00000000 Binary files a/public/textures/ae2/certus_quartz_hoe.png and /dev/null differ diff --git a/public/textures/ae2/certus_quartz_pickaxe.png b/public/textures/ae2/certus_quartz_pickaxe.png deleted file mode 100644 index ad654a2d..00000000 Binary files a/public/textures/ae2/certus_quartz_pickaxe.png and /dev/null differ diff --git a/public/textures/ae2/certus_quartz_shovel.png b/public/textures/ae2/certus_quartz_shovel.png deleted file mode 100644 index 249ea85b..00000000 Binary files a/public/textures/ae2/certus_quartz_shovel.png and /dev/null differ diff --git a/public/textures/ae2/certus_quartz_sword.png b/public/textures/ae2/certus_quartz_sword.png deleted file mode 100644 index a0d7967c..00000000 Binary files a/public/textures/ae2/certus_quartz_sword.png and /dev/null differ diff --git a/public/textures/ae2/certus_quartz_wrench.png b/public/textures/ae2/certus_quartz_wrench.png deleted file mode 100644 index b9bc2cbd..00000000 Binary files a/public/textures/ae2/certus_quartz_wrench.png and /dev/null differ diff --git a/public/textures/ae2/charged_certus_quartz_crystal.png b/public/textures/ae2/charged_certus_quartz_crystal.png deleted file mode 100644 index 15fc6da3..00000000 Binary files a/public/textures/ae2/charged_certus_quartz_crystal.png and /dev/null differ diff --git a/public/textures/ae2/charged_staff.png b/public/textures/ae2/charged_staff.png deleted file mode 100644 index 887c1fd2..00000000 Binary files a/public/textures/ae2/charged_staff.png and /dev/null differ diff --git a/public/textures/ae2/charged_staff__{'ae2__stored_energy'__8000.0d}.png b/public/textures/ae2/charged_staff__{'ae2__stored_energy'__8000.0d}.png deleted file mode 100644 index 887c1fd2..00000000 Binary files a/public/textures/ae2/charged_staff__{'ae2__stored_energy'__8000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/charger.png b/public/textures/ae2/charger.png deleted file mode 100644 index 553e3185..00000000 Binary files a/public/textures/ae2/charger.png and /dev/null differ diff --git a/public/textures/ae2/chest.png b/public/textures/ae2/chest.png deleted file mode 100644 index 3910ba39..00000000 Binary files a/public/textures/ae2/chest.png and /dev/null differ diff --git a/public/textures/ae2/chipped_budding_quartz.png b/public/textures/ae2/chipped_budding_quartz.png deleted file mode 100644 index 9eca9337..00000000 Binary files a/public/textures/ae2/chipped_budding_quartz.png and /dev/null differ diff --git a/public/textures/ae2/chiseled_quartz_block.png b/public/textures/ae2/chiseled_quartz_block.png deleted file mode 100644 index e3a4ae39..00000000 Binary files a/public/textures/ae2/chiseled_quartz_block.png and /dev/null differ diff --git a/public/textures/ae2/chiseled_quartz_slab.png b/public/textures/ae2/chiseled_quartz_slab.png deleted file mode 100644 index 4ec48433..00000000 Binary files a/public/textures/ae2/chiseled_quartz_slab.png and /dev/null differ diff --git a/public/textures/ae2/chiseled_quartz_stairs.png b/public/textures/ae2/chiseled_quartz_stairs.png deleted file mode 100644 index 482674f6..00000000 Binary files a/public/textures/ae2/chiseled_quartz_stairs.png and /dev/null differ diff --git a/public/textures/ae2/chiseled_quartz_wall.png b/public/textures/ae2/chiseled_quartz_wall.png deleted file mode 100644 index 2de852bc..00000000 Binary files a/public/textures/ae2/chiseled_quartz_wall.png and /dev/null differ diff --git a/public/textures/ae2/color_applicator.png b/public/textures/ae2/color_applicator.png deleted file mode 100644 index 636c0e9c..00000000 Binary files a/public/textures/ae2/color_applicator.png and /dev/null differ diff --git a/public/textures/ae2/color_applicator__{'ae2__stored_energy'__20000.0d}.png b/public/textures/ae2/color_applicator__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index 636c0e9c..00000000 Binary files a/public/textures/ae2/color_applicator__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/condenser.png b/public/textures/ae2/condenser.png deleted file mode 100644 index 64d1f39f..00000000 Binary files a/public/textures/ae2/condenser.png and /dev/null differ diff --git a/public/textures/ae2/controller.png b/public/textures/ae2/controller.png deleted file mode 100644 index 2581d5b7..00000000 Binary files a/public/textures/ae2/controller.png and /dev/null differ diff --git a/public/textures/ae2/conversion_monitor.png b/public/textures/ae2/conversion_monitor.png deleted file mode 100644 index be622ece..00000000 Binary files a/public/textures/ae2/conversion_monitor.png and /dev/null differ diff --git a/public/textures/ae2/crafting_accelerator.png b/public/textures/ae2/crafting_accelerator.png deleted file mode 100644 index 53e6b597..00000000 Binary files a/public/textures/ae2/crafting_accelerator.png and /dev/null differ diff --git a/public/textures/ae2/crafting_card.png b/public/textures/ae2/crafting_card.png deleted file mode 100644 index 74c41af4..00000000 Binary files a/public/textures/ae2/crafting_card.png and /dev/null differ diff --git a/public/textures/ae2/crafting_monitor.png b/public/textures/ae2/crafting_monitor.png deleted file mode 100644 index df05508a..00000000 Binary files a/public/textures/ae2/crafting_monitor.png and /dev/null differ diff --git a/public/textures/ae2/crafting_terminal.png b/public/textures/ae2/crafting_terminal.png deleted file mode 100644 index 5aa9700d..00000000 Binary files a/public/textures/ae2/crafting_terminal.png and /dev/null differ diff --git a/public/textures/ae2/crafting_unit.png b/public/textures/ae2/crafting_unit.png deleted file mode 100644 index 679ac839..00000000 Binary files a/public/textures/ae2/crafting_unit.png and /dev/null differ diff --git a/public/textures/ae2/crank.png b/public/textures/ae2/crank.png deleted file mode 100644 index f04bd2bb..00000000 Binary files a/public/textures/ae2/crank.png and /dev/null differ diff --git a/public/textures/ae2/creative_energy_cell.png b/public/textures/ae2/creative_energy_cell.png deleted file mode 100644 index 967d3cf9..00000000 Binary files a/public/textures/ae2/creative_energy_cell.png and /dev/null differ diff --git a/public/textures/ae2/creative_storage_cell.png b/public/textures/ae2/creative_storage_cell.png deleted file mode 100644 index 46f6b354..00000000 Binary files a/public/textures/ae2/creative_storage_cell.png and /dev/null differ diff --git a/public/textures/ae2/crystal_resonance_generator.png b/public/textures/ae2/crystal_resonance_generator.png deleted file mode 100644 index 2764f633..00000000 Binary files a/public/textures/ae2/crystal_resonance_generator.png and /dev/null differ diff --git a/public/textures/ae2/cut_quartz_block.png b/public/textures/ae2/cut_quartz_block.png deleted file mode 100644 index 5fca2cc1..00000000 Binary files a/public/textures/ae2/cut_quartz_block.png and /dev/null differ diff --git a/public/textures/ae2/cut_quartz_slab.png b/public/textures/ae2/cut_quartz_slab.png deleted file mode 100644 index b4569d96..00000000 Binary files a/public/textures/ae2/cut_quartz_slab.png and /dev/null differ diff --git a/public/textures/ae2/cut_quartz_stairs.png b/public/textures/ae2/cut_quartz_stairs.png deleted file mode 100644 index fc327099..00000000 Binary files a/public/textures/ae2/cut_quartz_stairs.png and /dev/null differ diff --git a/public/textures/ae2/cut_quartz_wall.png b/public/textures/ae2/cut_quartz_wall.png deleted file mode 100644 index f7eeb268..00000000 Binary files a/public/textures/ae2/cut_quartz_wall.png and /dev/null differ diff --git a/public/textures/ae2/cyan_covered_cable.png b/public/textures/ae2/cyan_covered_cable.png deleted file mode 100644 index b58d59cd..00000000 Binary files a/public/textures/ae2/cyan_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/cyan_covered_dense_cable.png b/public/textures/ae2/cyan_covered_dense_cable.png deleted file mode 100644 index 22842a4a..00000000 Binary files a/public/textures/ae2/cyan_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/cyan_glass_cable.png b/public/textures/ae2/cyan_glass_cable.png deleted file mode 100644 index fcef24fd..00000000 Binary files a/public/textures/ae2/cyan_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/cyan_lumen_paint_ball.png b/public/textures/ae2/cyan_lumen_paint_ball.png deleted file mode 100644 index 2358442e..00000000 Binary files a/public/textures/ae2/cyan_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/cyan_paint_ball.png b/public/textures/ae2/cyan_paint_ball.png deleted file mode 100644 index ea29fd03..00000000 Binary files a/public/textures/ae2/cyan_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/cyan_smart_cable.png b/public/textures/ae2/cyan_smart_cable.png deleted file mode 100644 index a9a744e7..00000000 Binary files a/public/textures/ae2/cyan_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/cyan_smart_dense_cable.png b/public/textures/ae2/cyan_smart_dense_cable.png deleted file mode 100644 index 0b106845..00000000 Binary files a/public/textures/ae2/cyan_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/damaged_budding_quartz.png b/public/textures/ae2/damaged_budding_quartz.png deleted file mode 100644 index f2ef312d..00000000 Binary files a/public/textures/ae2/damaged_budding_quartz.png and /dev/null differ diff --git a/public/textures/ae2/dark_monitor.png b/public/textures/ae2/dark_monitor.png deleted file mode 100644 index 9f776aea..00000000 Binary files a/public/textures/ae2/dark_monitor.png and /dev/null differ diff --git a/public/textures/ae2/debug_card.png b/public/textures/ae2/debug_card.png deleted file mode 100644 index 1fc15855..00000000 Binary files a/public/textures/ae2/debug_card.png and /dev/null differ diff --git a/public/textures/ae2/dense_energy_cell.png b/public/textures/ae2/dense_energy_cell.png deleted file mode 100644 index 654466f2..00000000 Binary files a/public/textures/ae2/dense_energy_cell.png and /dev/null differ diff --git a/public/textures/ae2/dense_energy_cell__{'ae2__stored_energy'__1600000.0d}.png b/public/textures/ae2/dense_energy_cell__{'ae2__stored_energy'__1600000.0d}.png deleted file mode 100644 index 3a5ee3b4..00000000 Binary files a/public/textures/ae2/dense_energy_cell__{'ae2__stored_energy'__1600000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/drive.png b/public/textures/ae2/drive.png deleted file mode 100644 index d6ac66ea..00000000 Binary files a/public/textures/ae2/drive.png and /dev/null differ diff --git a/public/textures/ae2/ender_dust.png b/public/textures/ae2/ender_dust.png deleted file mode 100644 index 8ec1760d..00000000 Binary files a/public/textures/ae2/ender_dust.png and /dev/null differ diff --git a/public/textures/ae2/energy_acceptor.png b/public/textures/ae2/energy_acceptor.png deleted file mode 100644 index 3172ef27..00000000 Binary files a/public/textures/ae2/energy_acceptor.png and /dev/null differ diff --git a/public/textures/ae2/energy_card.png b/public/textures/ae2/energy_card.png deleted file mode 100644 index 635e76f8..00000000 Binary files a/public/textures/ae2/energy_card.png and /dev/null differ diff --git a/public/textures/ae2/energy_cell.png b/public/textures/ae2/energy_cell.png deleted file mode 100644 index b2cb62ba..00000000 Binary files a/public/textures/ae2/energy_cell.png and /dev/null differ diff --git a/public/textures/ae2/energy_cell__{'ae2__stored_energy'__200000.0d}.png b/public/textures/ae2/energy_cell__{'ae2__stored_energy'__200000.0d}.png deleted file mode 100644 index 84715c6d..00000000 Binary files a/public/textures/ae2/energy_cell__{'ae2__stored_energy'__200000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/energy_level_emitter.png b/public/textures/ae2/energy_level_emitter.png deleted file mode 100644 index 44a07f9d..00000000 Binary files a/public/textures/ae2/energy_level_emitter.png and /dev/null differ diff --git a/public/textures/ae2/engineering_processor.png b/public/textures/ae2/engineering_processor.png deleted file mode 100644 index efd21b46..00000000 Binary files a/public/textures/ae2/engineering_processor.png and /dev/null differ diff --git a/public/textures/ae2/engineering_processor_press.png b/public/textures/ae2/engineering_processor_press.png deleted file mode 100644 index cee9e386..00000000 Binary files a/public/textures/ae2/engineering_processor_press.png and /dev/null differ diff --git a/public/textures/ae2/entropy_manipulator.png b/public/textures/ae2/entropy_manipulator.png deleted file mode 100644 index 5416c16f..00000000 Binary files a/public/textures/ae2/entropy_manipulator.png and /dev/null differ diff --git a/public/textures/ae2/entropy_manipulator__{'ae2__stored_energy'__200000.0d}.png b/public/textures/ae2/entropy_manipulator__{'ae2__stored_energy'__200000.0d}.png deleted file mode 100644 index 5416c16f..00000000 Binary files a/public/textures/ae2/entropy_manipulator__{'ae2__stored_energy'__200000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/equal_distribution_card.png b/public/textures/ae2/equal_distribution_card.png deleted file mode 100644 index 7f5a1f20..00000000 Binary files a/public/textures/ae2/equal_distribution_card.png and /dev/null differ diff --git a/public/textures/ae2/export_bus.png b/public/textures/ae2/export_bus.png deleted file mode 100644 index 12c0912d..00000000 Binary files a/public/textures/ae2/export_bus.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__16k_crafting_storage'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__16k_crafting_storage'}.png deleted file mode 100644 index bcd2f7d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__16k_crafting_storage'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__1k_crafting_storage'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__1k_crafting_storage'}.png deleted file mode 100644 index 58571b1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__1k_crafting_storage'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__256k_crafting_storage'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__256k_crafting_storage'}.png deleted file mode 100644 index 4a2e10b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__256k_crafting_storage'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__4k_crafting_storage'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__4k_crafting_storage'}.png deleted file mode 100644 index 36c2d3b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__4k_crafting_storage'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__64k_crafting_storage'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__64k_crafting_storage'}.png deleted file mode 100644 index 7c6bf435..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__64k_crafting_storage'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__chipped_budding_quartz'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__chipped_budding_quartz'}.png deleted file mode 100644 index 70aa5f6e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__chipped_budding_quartz'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__chiseled_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__chiseled_quartz_block'}.png deleted file mode 100644 index 5428c6c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__chiseled_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__controller'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__controller'}.png deleted file mode 100644 index d6c1546c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__controller'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__crafting_accelerator'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__crafting_accelerator'}.png deleted file mode 100644 index 908c04af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__crafting_accelerator'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__crafting_monitor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__crafting_monitor'}.png deleted file mode 100644 index 02f9949c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__crafting_monitor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__crafting_unit'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__crafting_unit'}.png deleted file mode 100644 index 5fe530bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__crafting_unit'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__cut_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__cut_quartz_block'}.png deleted file mode 100644 index 534c4c60..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__cut_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__damaged_budding_quartz'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__damaged_budding_quartz'}.png deleted file mode 100644 index 39ab803c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__damaged_budding_quartz'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__flawed_budding_quartz'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__flawed_budding_quartz'}.png deleted file mode 100644 index 1b81d0bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__flawed_budding_quartz'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__flawless_budding_quartz'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__flawless_budding_quartz'}.png deleted file mode 100644 index dec3d951..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__flawless_budding_quartz'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__fluix_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__fluix_block'}.png deleted file mode 100644 index efd08f7a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__fluix_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__not_so_mysterious_cube'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__not_so_mysterious_cube'}.png deleted file mode 100644 index f11bf5ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__not_so_mysterious_cube'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_block'}.png deleted file mode 100644 index ea3abe7b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_bricks'}.png deleted file mode 100644 index 4b83c372..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_glass'}.png deleted file mode 100644 index 0b2dd75c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_pillar'}.png deleted file mode 100644 index 161e4c16..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_vibrant_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_vibrant_glass'}.png deleted file mode 100644 index 0b2dd75c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__quartz_vibrant_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__sky_stone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__sky_stone_block'}.png deleted file mode 100644 index 9f55ec4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__sky_stone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__sky_stone_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__sky_stone_brick'}.png deleted file mode 100644 index 6f40d093..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__sky_stone_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__sky_stone_small_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__sky_stone_small_brick'}.png deleted file mode 100644 index 673e6842..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__sky_stone_small_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__smooth_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__smooth_quartz_block'}.png deleted file mode 100644 index 8ef6a4e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__smooth_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__smooth_sky_stone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__smooth_sky_stone_block'}.png deleted file mode 100644 index 9b9c24ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ae2__smooth_sky_stone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__allium_petal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__allium_petal_block'}.png deleted file mode 100644 index d92f0d1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__allium_petal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__araucaria_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__araucaria_leaves'}.png deleted file mode 100644 index 80870197..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__araucaria_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_bookshelf'}.png deleted file mode 100644 index a0d0ef7a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_crafting_table'}.png deleted file mode 100644 index a529224f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_leaves'}.png deleted file mode 100644 index 5cf5affc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_log'}.png deleted file mode 100644 index 9a888681..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_planks'}.png deleted file mode 100644 index 2e4a0362..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_wood'}.png deleted file mode 100644 index 9a888681..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__aspen_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_bookshelf'}.png deleted file mode 100644 index da715f44..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_crafting_table'}.png deleted file mode 100644 index 93d6ef80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_leaves'}.png deleted file mode 100644 index 2279c8cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_log'}.png deleted file mode 100644 index 1bd30b1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_planks'}.png deleted file mode 100644 index eb0d6edc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_wood'}.png deleted file mode 100644 index acaf35bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__baobab_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__black_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__black_ice'}.png deleted file mode 100644 index 9bcce72f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__black_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__black_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__black_sand'}.png deleted file mode 100644 index 37f8322b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__black_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__black_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__black_sandstone'}.png deleted file mode 100644 index 9f283aa0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__black_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blooming_witch_hazel_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blooming_witch_hazel_leaves'}.png deleted file mode 100644 index f97e059f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blooming_witch_hazel_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_bookshelf'}.png deleted file mode 100644 index 8176eef7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_crafting_table'}.png deleted file mode 100644 index d546b6d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_leaves'}.png deleted file mode 100644 index 47846d1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_log'}.png deleted file mode 100644 index e198165d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_planks'}.png deleted file mode 100644 index 76c6c234..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_wood'}.png deleted file mode 100644 index 450b366a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_enchanted_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_sand'}.png deleted file mode 100644 index b0586f47..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_sandstone'}.png deleted file mode 100644 index dec41323..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_spruce_leaves'}.png deleted file mode 100644 index 7c02db71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__blue_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__borealis_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__borealis_ice'}.png deleted file mode 100644 index 09263e15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__borealis_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_birch_leaves'}.png deleted file mode 100644 index 5c0b4c13..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_mushroom_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_mushroom_stem'}.png deleted file mode 100644 index 28943b6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_mushroom_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_oak_leaves'}.png deleted file mode 100644 index e92989dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_zelkova_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_zelkova_leaves'}.png deleted file mode 100644 index 7fa4a67f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__brown_zelkova_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__carved_pale_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__carved_pale_pumpkin'}.png deleted file mode 100644 index ecb01d10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__carved_pale_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cattail_thatch'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cattail_thatch'}.png deleted file mode 100644 index 44234dc6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cattail_thatch'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_black_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_black_sandstone'}.png deleted file mode 100644 index 4e5a4302..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_black_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_blue_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_blue_sandstone'}.png deleted file mode 100644 index 7cafe66b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_blue_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_pink_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_pink_sandstone'}.png deleted file mode 100644 index 8e971889..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_pink_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_purple_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_purple_sandstone'}.png deleted file mode 100644 index 1c1de944..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_purple_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_red_rock_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_red_rock_bricks'}.png deleted file mode 100644 index 07d28f05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_red_rock_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_white_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_white_sandstone'}.png deleted file mode 100644 index 0bdd1a33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_white_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_windswept_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_windswept_sandstone'}.png deleted file mode 100644 index 30844f69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__chiseled_windswept_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_bookshelf'}.png deleted file mode 100644 index d0571267..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_crafting_table'}.png deleted file mode 100644 index 30f9d7fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_leaves'}.png deleted file mode 100644 index c1b9c779..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_log'}.png deleted file mode 100644 index 6b66f468..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_planks'}.png deleted file mode 100644 index 70db13bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_wood'}.png deleted file mode 100644 index 37119cd5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cika_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cracked_red_rock_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cracked_red_rock_bricks'}.png deleted file mode 100644 index de9267b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cracked_red_rock_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cracked_red_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cracked_red_sand'}.png deleted file mode 100644 index 1c88c6c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cracked_red_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cracked_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cracked_sand'}.png deleted file mode 100644 index f885f083..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cracked_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_black_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_black_sandstone'}.png deleted file mode 100644 index cf024697..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_black_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_blue_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_blue_sandstone'}.png deleted file mode 100644 index 760c4976..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_blue_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_pink_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_pink_sandstone'}.png deleted file mode 100644 index 1e603fab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_pink_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_purple_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_purple_sandstone'}.png deleted file mode 100644 index 7af5b90c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_purple_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_white_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_white_sandstone'}.png deleted file mode 100644 index f5ab11d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_white_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_windswept_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_windswept_sandstone'}.png deleted file mode 100644 index e97f4853..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cut_windswept_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_bookshelf'}.png deleted file mode 100644 index 01f31b38..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_crafting_table'}.png deleted file mode 100644 index 8ec38082..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_leaves'}.png deleted file mode 100644 index ca2aa3ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_log'}.png deleted file mode 100644 index 50607abb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_planks'}.png deleted file mode 100644 index 749f01e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_wood'}.png deleted file mode 100644 index b1fbd8c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__cypress_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite'}.png deleted file mode 100644 index 9e7a7187..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_bricks'}.png deleted file mode 100644 index 5e91ed51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_cobblestone'}.png deleted file mode 100644 index e9e329d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_pillar'}.png deleted file mode 100644 index 5a02a7d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_tile'}.png deleted file mode 100644 index ee46b180..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__dacite_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_bookshelf'}.png deleted file mode 100644 index 85b63ba1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_crafting_table'}.png deleted file mode 100644 index 986882e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_leaves'}.png deleted file mode 100644 index 203df84a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_log'}.png deleted file mode 100644 index 4d120d9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_planks'}.png deleted file mode 100644 index 32a12fd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_wood'}.png deleted file mode 100644 index 4d120d9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ebony_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_bookshelf'}.png deleted file mode 100644 index 3e9c13f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_crafting_table'}.png deleted file mode 100644 index 77fd24b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_leaves'}.png deleted file mode 100644 index 60512c9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_log'}.png deleted file mode 100644 index 0fa1f8d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_planks'}.png deleted file mode 100644 index 177eceeb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_wood'}.png deleted file mode 100644 index 0fa1f8d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__fir_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__firecracker_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__firecracker_leaves'}.png deleted file mode 100644 index e34d19bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__firecracker_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_bookshelf'}.png deleted file mode 100644 index 15479498..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_crafting_table'}.png deleted file mode 100644 index 0cff2b54..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_planks'}.png deleted file mode 100644 index edc330df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_stem'}.png deleted file mode 100644 index 67d25a58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_wood'}.png deleted file mode 100644 index 20464488..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__florus_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_baobab_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_baobab_leaves'}.png deleted file mode 100644 index 70e5e196..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_baobab_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_indigo_jacaranda_bush'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_indigo_jacaranda_bush'}.png deleted file mode 100644 index ab8e0d30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_indigo_jacaranda_bush'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_indigo_jacaranda_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_indigo_jacaranda_leaves'}.png deleted file mode 100644 index 5d624092..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_indigo_jacaranda_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_ironwood_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_ironwood_leaves'}.png deleted file mode 100644 index d590a841..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_ironwood_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_jacaranda_bush'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_jacaranda_bush'}.png deleted file mode 100644 index 8cb6722c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_jacaranda_bush'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_jacaranda_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_jacaranda_leaves'}.png deleted file mode 100644 index 7e8003b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_jacaranda_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_orchard_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_orchard_leaves'}.png deleted file mode 100644 index 12853652..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_orchard_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_palo_verde_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_palo_verde_leaves'}.png deleted file mode 100644 index 7ffa7b8b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_palo_verde_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_skyris_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_skyris_leaves'}.png deleted file mode 100644 index 5177f80c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_skyris_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_spirit_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_spirit_leaves'}.png deleted file mode 100644 index aff9cd22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_spirit_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_yucca_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_yucca_leaves'}.png deleted file mode 100644 index f40b66b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__flowering_yucca_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__foragers_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__foragers_table'}.png deleted file mode 100644 index ac5cef77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__foragers_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_apple_skyris_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_apple_skyris_leaves'}.png deleted file mode 100644 index 155472cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_apple_skyris_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_bookshelf'}.png deleted file mode 100644 index bd029cf0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_crafting_table'}.png deleted file mode 100644 index b3e365bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_leaves'}.png deleted file mode 100644 index 73198bb0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_log'}.png deleted file mode 100644 index 25a88fff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_planks'}.png deleted file mode 100644 index 0e5cced6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_wood'}.png deleted file mode 100644 index aa91544b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_enchanted_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_mushroom_block'}.png deleted file mode 100644 index 0a0136e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__green_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_berry_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_berry_leaves'}.png deleted file mode 100644 index 9886c6b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_berry_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_bookshelf'}.png deleted file mode 100644 index ad798ded..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_crafting_table'}.png deleted file mode 100644 index fbc5649a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_leaves'}.png deleted file mode 100644 index 26d93d1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_log'}.png deleted file mode 100644 index d5fd168f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_planks'}.png deleted file mode 100644 index 31d7aaf7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_wood'}.png deleted file mode 100644 index d5fd168f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__holly_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__imbued_blue_enchanted_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__imbued_blue_enchanted_wood'}.png deleted file mode 100644 index 351979c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__imbued_blue_enchanted_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__imbued_green_enchanted_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__imbued_green_enchanted_wood'}.png deleted file mode 100644 index 95e1309d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__imbued_green_enchanted_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__indigo_jacaranda_bush'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__indigo_jacaranda_bush'}.png deleted file mode 100644 index e0691f4e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__indigo_jacaranda_bush'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__indigo_jacaranda_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__indigo_jacaranda_leaves'}.png deleted file mode 100644 index 3075f003..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__indigo_jacaranda_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_bookshelf'}.png deleted file mode 100644 index 025b2e02..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_crafting_table'}.png deleted file mode 100644 index 8989cbe3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_leaves'}.png deleted file mode 100644 index 4dcdbfa8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_log'}.png deleted file mode 100644 index 7237fa0b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_planks'}.png deleted file mode 100644 index c0ef7b78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_wood'}.png deleted file mode 100644 index f5657933..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ironwood_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_bookshelf'}.png deleted file mode 100644 index aa17c064..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_bush'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_bush'}.png deleted file mode 100644 index 6523e5d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_bush'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_crafting_table'}.png deleted file mode 100644 index 1db59acc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_leaves'}.png deleted file mode 100644 index 797c88b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_log'}.png deleted file mode 100644 index 071cd7d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_planks'}.png deleted file mode 100644 index 5321bb00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_wood'}.png deleted file mode 100644 index 071cd7d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__jacaranda_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__lush_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__lush_dirt'}.png deleted file mode 100644 index ddc2781e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__lush_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__lush_grass_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__lush_grass_block'}.png deleted file mode 100644 index 015184e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__lush_grass_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_bookshelf'}.png deleted file mode 100644 index 75e6b47c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_crafting_table'}.png deleted file mode 100644 index 304f1006..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_leaves'}.png deleted file mode 100644 index fd3ba93f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_log'}.png deleted file mode 100644 index 69221328..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_planks'}.png deleted file mode 100644 index 24009d2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_wood'}.png deleted file mode 100644 index f241d81a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mahogany_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_bookshelf'}.png deleted file mode 100644 index 03757964..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_crafting_table'}.png deleted file mode 100644 index 8a66b410..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_leaves'}.png deleted file mode 100644 index c3a65a15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_log'}.png deleted file mode 100644 index c5342602..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_planks'}.png deleted file mode 100644 index b776fe8a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_wood'}.png deleted file mode 100644 index 36b94200..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__maple_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mossy_red_rock_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mossy_red_rock_bricks'}.png deleted file mode 100644 index dc0cdebc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mossy_red_rock_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mossy_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mossy_stone'}.png deleted file mode 100644 index 33651ad3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__mossy_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orange_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orange_birch_leaves'}.png deleted file mode 100644 index e28a3f09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orange_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orange_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orange_oak_leaves'}.png deleted file mode 100644 index efca848e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orange_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orange_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orange_spruce_leaves'}.png deleted file mode 100644 index da2234db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orange_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orchard_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orchard_leaves'}.png deleted file mode 100644 index 78ed49c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__orchard_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__overgrown_dacite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__overgrown_dacite'}.png deleted file mode 100644 index b93fc9a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__overgrown_dacite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__overgrown_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__overgrown_stone'}.png deleted file mode 100644 index b93fc9a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__overgrown_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__packed_black_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__packed_black_ice'}.png deleted file mode 100644 index b698b9ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__packed_black_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__packed_borealis_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__packed_borealis_ice'}.png deleted file mode 100644 index 9f65ad42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__packed_borealis_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__packed_pale_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__packed_pale_mud'}.png deleted file mode 100644 index bb6fc0a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__packed_pale_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pale_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pale_jack_o_lantern'}.png deleted file mode 100644 index d9198720..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pale_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pale_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pale_mud_bricks'}.png deleted file mode 100644 index 8231caa5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pale_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pale_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pale_pumpkin'}.png deleted file mode 100644 index 1189022f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pale_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_bookshelf'}.png deleted file mode 100644 index 13034551..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_crafting_table'}.png deleted file mode 100644 index 3ff5ae25..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_leaves'}.png deleted file mode 100644 index b318215b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_log'}.png deleted file mode 100644 index 72c3876b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_planks'}.png deleted file mode 100644 index 260f7296..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_wood'}.png deleted file mode 100644 index 5798ad73..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palm_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palo_verde_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palo_verde_leaves'}.png deleted file mode 100644 index fbbddb00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palo_verde_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palo_verde_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palo_verde_log'}.png deleted file mode 100644 index 800af8ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palo_verde_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palo_verde_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palo_verde_wood'}.png deleted file mode 100644 index ddb9adbd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__palo_verde_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__peat'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__peat'}.png deleted file mode 100644 index 6a873d20..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__peat'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_bookshelf'}.png deleted file mode 100644 index ceb1bd7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_crafting_table'}.png deleted file mode 100644 index 018a7e13..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_leaves'}.png deleted file mode 100644 index 3e50b0aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_log'}.png deleted file mode 100644 index 7eead43f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_planks'}.png deleted file mode 100644 index f6f619d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_wood'}.png deleted file mode 100644 index b4ae4bcf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pine_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pink_allium_petal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pink_allium_petal_block'}.png deleted file mode 100644 index 3439c41e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pink_allium_petal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pink_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pink_sand'}.png deleted file mode 100644 index eef704bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pink_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pink_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pink_sandstone'}.png deleted file mode 100644 index 1fe2f4d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__pink_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__podzol_dacite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__podzol_dacite'}.png deleted file mode 100644 index f3767d17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__podzol_dacite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__purple_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__purple_sand'}.png deleted file mode 100644 index 1a9f0515..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__purple_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__purple_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__purple_sandstone'}.png deleted file mode 100644 index 1f476545..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__purple_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_bookshelf'}.png deleted file mode 100644 index 9d8e22cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_crafting_table'}.png deleted file mode 100644 index c7972ee0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_leaves'}.png deleted file mode 100644 index f9a45877..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_log'}.png deleted file mode 100644 index 5a26b89a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_planks'}.png deleted file mode 100644 index fa08d352..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_wood'}.png deleted file mode 100644 index f86c47c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rainbow_eucalyptus_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_birch_leaves'}.png deleted file mode 100644 index 98777ec9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_maple_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_maple_leaves'}.png deleted file mode 100644 index 7f82247c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_maple_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_oak_leaves'}.png deleted file mode 100644 index ac1407d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_rock'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_rock'}.png deleted file mode 100644 index 1ecc9a4f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_rock'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_rock_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_rock_bricks'}.png deleted file mode 100644 index 8d6ac08c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_rock_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_spruce_leaves'}.png deleted file mode 100644 index 5fbb0e0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__red_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_bookshelf'}.png deleted file mode 100644 index 29eca0bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_crafting_table'}.png deleted file mode 100644 index 83115bff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_leaves'}.png deleted file mode 100644 index 338d59b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_log'}.png deleted file mode 100644 index fa880bb7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_planks'}.png deleted file mode 100644 index 467c4808..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_wood'}.png deleted file mode 100644 index 89e7a83d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__redwood_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ripe_baobab_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ripe_baobab_leaves'}.png deleted file mode 100644 index e47b420b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ripe_baobab_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ripe_orchard_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ripe_orchard_leaves'}.png deleted file mode 100644 index 15ba3672..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ripe_orchard_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ripe_yucca_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ripe_yucca_leaves'}.png deleted file mode 100644 index d5284cf5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__ripe_yucca_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rocky_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rocky_stone'}.png deleted file mode 100644 index e42093c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rocky_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rose_petal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rose_petal_block'}.png deleted file mode 100644 index 6b70a4d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__rose_petal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_bookshelf'}.png deleted file mode 100644 index e9e572dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_crafting_table'}.png deleted file mode 100644 index 1c4a5bf0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_log'}.png deleted file mode 100644 index 05d62b18..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_planks'}.png deleted file mode 100644 index 2764b687..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_wood'}.png deleted file mode 100644 index b9a1cc2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sakura_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sandy_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sandy_dirt'}.png deleted file mode 100644 index 529874d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__sandy_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__silver_maple_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__silver_maple_leaves'}.png deleted file mode 100644 index 7730027f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__silver_maple_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_bookshelf'}.png deleted file mode 100644 index a6f30a20..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_crafting_table'}.png deleted file mode 100644 index 9662468b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_leaves'}.png deleted file mode 100644 index ecbcb29e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_log'}.png deleted file mode 100644 index 544abd00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_planks'}.png deleted file mode 100644 index c8a1cb0e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_wood'}.png deleted file mode 100644 index dc5b8351..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__skyris_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_black_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_black_sandstone'}.png deleted file mode 100644 index cdc01d88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_black_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_blue_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_blue_sandstone'}.png deleted file mode 100644 index efef6320..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_blue_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_pink_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_pink_sandstone'}.png deleted file mode 100644 index fb414be2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_pink_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_purple_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_purple_sandstone'}.png deleted file mode 100644 index 228130cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_purple_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_white_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_white_sandstone'}.png deleted file mode 100644 index 391ff261..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_white_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_windswept_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_windswept_sandstone'}.png deleted file mode 100644 index 3712d743..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__smooth_windswept_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_bookshelf'}.png deleted file mode 100644 index 003bb9ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_crafting_table'}.png deleted file mode 100644 index 903e4566..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_leaves'}.png deleted file mode 100644 index 5925b6eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_log'}.png deleted file mode 100644 index e8654115..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_planks'}.png deleted file mode 100644 index fcde568c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_roots'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_roots'}.png deleted file mode 100644 index 59323367..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_roots'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_wood'}.png deleted file mode 100644 index fc4328ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__spirit_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_aspen_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_aspen_log'}.png deleted file mode 100644 index a4ebadb4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_aspen_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_aspen_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_aspen_wood'}.png deleted file mode 100644 index a4ebadb4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_aspen_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_baobab_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_baobab_log'}.png deleted file mode 100644 index e7149bc9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_baobab_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_baobab_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_baobab_wood'}.png deleted file mode 100644 index bce525fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_baobab_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_blue_enchanted_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_blue_enchanted_log'}.png deleted file mode 100644 index d73b7e24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_blue_enchanted_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_blue_enchanted_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_blue_enchanted_wood'}.png deleted file mode 100644 index 7c8a63e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_blue_enchanted_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cika_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cika_log'}.png deleted file mode 100644 index 90e8374f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cika_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cika_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cika_wood'}.png deleted file mode 100644 index 3958dd30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cika_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cypress_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cypress_log'}.png deleted file mode 100644 index ffdf857d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cypress_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cypress_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cypress_wood'}.png deleted file mode 100644 index 9ac18e8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_cypress_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ebony_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ebony_log'}.png deleted file mode 100644 index 64970436..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ebony_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ebony_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ebony_wood'}.png deleted file mode 100644 index c21278a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ebony_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_fir_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_fir_log'}.png deleted file mode 100644 index 767ff21d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_fir_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_fir_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_fir_wood'}.png deleted file mode 100644 index 767ff21d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_fir_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_florus_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_florus_stem'}.png deleted file mode 100644 index baf2eed5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_florus_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_florus_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_florus_wood'}.png deleted file mode 100644 index 9312b071..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_florus_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_green_enchanted_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_green_enchanted_log'}.png deleted file mode 100644 index 8f7abc1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_green_enchanted_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_green_enchanted_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_green_enchanted_wood'}.png deleted file mode 100644 index 9019972e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_green_enchanted_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_holly_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_holly_log'}.png deleted file mode 100644 index 0745d93b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_holly_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_holly_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_holly_wood'}.png deleted file mode 100644 index 9286c4fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_holly_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ironwood_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ironwood_log'}.png deleted file mode 100644 index 23a50f40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ironwood_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ironwood_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ironwood_wood'}.png deleted file mode 100644 index 23a50f40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_ironwood_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_jacaranda_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_jacaranda_log'}.png deleted file mode 100644 index 9bf5d12e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_jacaranda_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_jacaranda_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_jacaranda_wood'}.png deleted file mode 100644 index 65d89130..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_jacaranda_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_mahogany_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_mahogany_log'}.png deleted file mode 100644 index a3e6ae6b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_mahogany_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_mahogany_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_mahogany_wood'}.png deleted file mode 100644 index a3e6ae6b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_mahogany_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_maple_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_maple_log'}.png deleted file mode 100644 index df1c981d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_maple_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_maple_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_maple_wood'}.png deleted file mode 100644 index 248cdf29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_maple_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palm_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palm_log'}.png deleted file mode 100644 index 74de7da6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palm_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palm_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palm_wood'}.png deleted file mode 100644 index 74de7da6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palm_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palo_verde_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palo_verde_log'}.png deleted file mode 100644 index c03f294c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palo_verde_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palo_verde_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palo_verde_wood'}.png deleted file mode 100644 index e5cf62a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_palo_verde_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_pine_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_pine_log'}.png deleted file mode 100644 index c3d4b983..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_pine_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_pine_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_pine_wood'}.png deleted file mode 100644 index b1e56c78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_pine_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_rainbow_eucalyptus_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_rainbow_eucalyptus_log'}.png deleted file mode 100644 index 24e456fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_rainbow_eucalyptus_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_rainbow_eucalyptus_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_rainbow_eucalyptus_wood'}.png deleted file mode 100644 index d4f57f5f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_rainbow_eucalyptus_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_redwood_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_redwood_log'}.png deleted file mode 100644 index b412e61e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_redwood_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_redwood_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_redwood_wood'}.png deleted file mode 100644 index d64ec447..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_redwood_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_sakura_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_sakura_log'}.png deleted file mode 100644 index b54806d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_sakura_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_sakura_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_sakura_wood'}.png deleted file mode 100644 index e7cc9472..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_sakura_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_skyris_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_skyris_log'}.png deleted file mode 100644 index 28d7c462..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_skyris_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_skyris_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_skyris_wood'}.png deleted file mode 100644 index 28d7c462..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_skyris_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_spirit_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_spirit_log'}.png deleted file mode 100644 index 97e12f92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_spirit_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_spirit_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_spirit_wood'}.png deleted file mode 100644 index 8efc4daf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_spirit_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_white_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_white_mangrove_log'}.png deleted file mode 100644 index 5516eeca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_white_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_white_mangrove_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_white_mangrove_wood'}.png deleted file mode 100644 index e97dc6f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_white_mangrove_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_willow_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_willow_log'}.png deleted file mode 100644 index 92d263a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_willow_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_willow_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_willow_wood'}.png deleted file mode 100644 index 750e3234..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_willow_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_witch_hazel_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_witch_hazel_log'}.png deleted file mode 100644 index f88197cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_witch_hazel_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_witch_hazel_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_witch_hazel_wood'}.png deleted file mode 100644 index a2b03525..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_witch_hazel_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_zelkova_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_zelkova_log'}.png deleted file mode 100644 index a5aab3ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_zelkova_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_zelkova_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_zelkova_wood'}.png deleted file mode 100644 index a947d035..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__stripped_zelkova_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__weeping_milkcap_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__weeping_milkcap_mushroom_block'}.png deleted file mode 100644 index 3bdc6bd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__weeping_milkcap_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_allium_petal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_allium_petal_block'}.png deleted file mode 100644 index 100cbaab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_allium_petal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_bookshelf'}.png deleted file mode 100644 index fc82c583..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_crafting_table'}.png deleted file mode 100644 index aa84d851..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_leaves'}.png deleted file mode 100644 index 3b55fd1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_log'}.png deleted file mode 100644 index fb53776d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_planks'}.png deleted file mode 100644 index 16cf82a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_wood'}.png deleted file mode 100644 index 7411dfdb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mangrove_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mushroom_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mushroom_stem'}.png deleted file mode 100644 index 79d4da2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_mushroom_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_sakura_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_sakura_leaves'}.png deleted file mode 100644 index ecb16988..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_sakura_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_sand'}.png deleted file mode 100644 index cdf185bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_sandstone'}.png deleted file mode 100644 index 12daecf5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__white_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_bookshelf'}.png deleted file mode 100644 index 9540ec4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_crafting_table'}.png deleted file mode 100644 index 617d6df8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_leaves'}.png deleted file mode 100644 index 88106abf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_log'}.png deleted file mode 100644 index 91431d30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_planks'}.png deleted file mode 100644 index 6b8f4079..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_wood'}.png deleted file mode 100644 index 286282a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__willow_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__windswept_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__windswept_sand'}.png deleted file mode 100644 index ffe2e91c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__windswept_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__windswept_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__windswept_sandstone'}.png deleted file mode 100644 index 55ad4875..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__windswept_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__windswept_sandstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__windswept_sandstone_pillar'}.png deleted file mode 100644 index 53d255fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__windswept_sandstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_bookshelf'}.png deleted file mode 100644 index ba9d0027..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_crafting_table'}.png deleted file mode 100644 index c2c6fc5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_leaves'}.png deleted file mode 100644 index 9b0aa062..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_log'}.png deleted file mode 100644 index b2ea3780..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_planks'}.png deleted file mode 100644 index c8098574..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_wood'}.png deleted file mode 100644 index 9ddd5f15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__witch_hazel_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__wood_blewit_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__wood_blewit_mushroom_block'}.png deleted file mode 100644 index 1ccb23d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__wood_blewit_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yellow_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yellow_birch_leaves'}.png deleted file mode 100644 index 9dcc69de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yellow_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yellow_sakura_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yellow_sakura_leaves'}.png deleted file mode 100644 index 25ae164b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yellow_sakura_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yellow_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yellow_spruce_leaves'}.png deleted file mode 100644 index a3f1399f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yellow_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yucca_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yucca_leaves'}.png deleted file mode 100644 index 985a1337..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__yucca_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_bookshelf'}.png deleted file mode 100644 index f4efa529..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_crafting_table'}.png deleted file mode 100644 index ecfca9c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_leaves'}.png deleted file mode 100644 index 54b95216..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_log'}.png deleted file mode 100644 index e8278483..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_planks'}.png deleted file mode 100644 index 539d4a35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_wood'}.png deleted file mode 100644 index e8278483..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'biomeswevegone__zelkova_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'brewinandchewin__heating_cask'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'brewinandchewin__heating_cask'}.png deleted file mode 100644 index d32c248f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'brewinandchewin__heating_cask'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'brewinandchewin__ice_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'brewinandchewin__ice_crate'}.png deleted file mode 100644 index 8bd40ad3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'brewinandchewin__ice_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__acacia_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__acacia_planks_mosaic'}.png deleted file mode 100644 index a84107f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__acacia_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__acacia_planks_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__acacia_planks_panel'}.png deleted file mode 100644 index 07a37a80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__acacia_planks_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__acacia_planks_shavings'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__acacia_planks_shavings'}.png deleted file mode 100644 index 39d82c4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__acacia_planks_shavings'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ad_astra_ochre_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ad_astra_ochre_froglight'}.png deleted file mode 100644 index 5642a92c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ad_astra_ochre_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ad_astra_pearlescent_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ad_astra_pearlescent_froglight'}.png deleted file mode 100644 index db7038bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ad_astra_pearlescent_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ad_astra_verdant_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ad_astra_verdant_froglight'}.png deleted file mode 100644 index 26054120..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ad_astra_verdant_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__alchemy_bench'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__alchemy_bench'}.png deleted file mode 100644 index 22dfea34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__alchemy_bench'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_bricks'}.png deleted file mode 100644 index 91583ce5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_mini_tiles'}.png deleted file mode 100644 index 522af874..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_pillar'}.png deleted file mode 100644 index 645353fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_pillar_top'}.png deleted file mode 100644 index d5aa7e58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_scales'}.png deleted file mode 100644 index fcd7c91c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__amethyst_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_cubed_oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_cubed_oak_bookshelf'}.png deleted file mode 100644 index f3a95e27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_cubed_oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_bricks'}.png deleted file mode 100644 index e380c662..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_mini_tiles'}.png deleted file mode 100644 index 593f911a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_pillar'}.png deleted file mode 100644 index 630dfaf0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_pillar_top'}.png deleted file mode 100644 index d33c80d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_scales'}.png deleted file mode 100644 index 2e0b5ec4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_debris_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_diamond_block'}.png deleted file mode 100644 index e0cc4936..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_emerald_block'}.png deleted file mode 100644 index 47fce49b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_gold_block'}.png deleted file mode 100644 index be116071..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_iron_block'}.png deleted file mode 100644 index 9bf3f0ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_oak_bookshelf'}.png deleted file mode 100644 index ad39c150..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_oak_large_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_oak_large_bookshelf'}.png deleted file mode 100644 index 120b4d26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_oak_large_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_ochre_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_ochre_froglight'}.png deleted file mode 100644 index 7980ac2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_ochre_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_pearlescent_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_pearlescent_froglight'}.png deleted file mode 100644 index 025cedb2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_pearlescent_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_verdant_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_verdant_froglight'}.png deleted file mode 100644 index 8818b70c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_verdant_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_vertical_oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_vertical_oak_bookshelf'}.png deleted file mode 100644 index 57400896..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_vertical_oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_copper_block'}.png deleted file mode 100644 index b871e1aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_exposed_copper'}.png deleted file mode 100644 index 021ab20f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_oxidized_copper'}.png deleted file mode 100644 index 62a45ad5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_weathered_copper'}.png deleted file mode 100644 index 96c6f0c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ancient_waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_bricks'}.png deleted file mode 100644 index f30b8652..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_gravel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_gravel'}.png deleted file mode 100644 index 0314b4b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_gravel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_mini_tiles'}.png deleted file mode 100644 index 2fb97b37..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_pillar'}.png deleted file mode 100644 index 5e78c02c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_pillar_top'}.png deleted file mode 100644 index e8eef78e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_scales'}.png deleted file mode 100644 index 28f3bb96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__andesite_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angled_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angled_mud_bricks'}.png deleted file mode 100644 index db17963c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angled_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angled_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angled_mud_bricks_bricks'}.png deleted file mode 100644 index adc3aa97..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angled_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angled_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angled_packed_mud_bricks'}.png deleted file mode 100644 index bbc9b87b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angled_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_amethyst_block'}.png deleted file mode 100644 index 515b9a79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_ancient_debris'}.png deleted file mode 100644 index 2a446009..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_andesite'}.png deleted file mode 100644 index 3b8bee1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_basalt'}.png deleted file mode 100644 index 4839a697..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_blackstone'}.png deleted file mode 100644 index 5bbc2004..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_blue_ice'}.png deleted file mode 100644 index 776ca8b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_borderless_bricks'}.png deleted file mode 100644 index d3aca642..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_bricks'}.png deleted file mode 100644 index 2c974651..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_calcite'}.png deleted file mode 100644 index 6bfa2323..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_clay'}.png deleted file mode 100644 index a0f844ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_coal_block'}.png deleted file mode 100644 index 8e1459f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_cobblestone'}.png deleted file mode 100644 index 4c80e434..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_crying_obsidian'}.png deleted file mode 100644 index f59f8e3a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_dark_prismarine'}.png deleted file mode 100644 index 5297a1a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_deepslate'}.png deleted file mode 100644 index 6983ce48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_diorite'}.png deleted file mode 100644 index 658dd061..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_dirt'}.png deleted file mode 100644 index 5921d15e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_dripstone_block'}.png deleted file mode 100644 index 9d0c42e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_end_stone'}.png deleted file mode 100644 index 68ed66ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_gilded_blackstone'}.png deleted file mode 100644 index a1799831..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_granite'}.png deleted file mode 100644 index 6c82eefe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_ice'}.png deleted file mode 100644 index 759d1b2b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_lapis_block'}.png deleted file mode 100644 index 78d47f30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_lodestone'}.png deleted file mode 100644 index 54bed20e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_magma_block'}.png deleted file mode 100644 index bcafd828..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mossy_cobblestone'}.png deleted file mode 100644 index 60cb7cba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mossy_stone_bricks'}.png deleted file mode 100644 index 78f2efe2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mud'}.png deleted file mode 100644 index 83d77ff5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mud_bricks'}.png deleted file mode 100644 index be1fa399..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_nether_bricks'}.png deleted file mode 100644 index c1f5f94c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_netherrack'}.png deleted file mode 100644 index 361b47f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_obsidian'}.png deleted file mode 100644 index 6266c0c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_packed_ice'}.png deleted file mode 100644 index 97a6405b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_packed_mud'}.png deleted file mode 100644 index f0ef003a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_prismarine'}.png deleted file mode 100644 index 41379fad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_purpur_block'}.png deleted file mode 100644 index fe0d5850..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_quartz_block'}.png deleted file mode 100644 index 422a2227..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_raw_copper_block'}.png deleted file mode 100644 index 9bda1c5c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_raw_gold_block'}.png deleted file mode 100644 index a6e4c625..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_raw_iron_block'}.png deleted file mode 100644 index 37323c2b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_red_nether_bricks'}.png deleted file mode 100644 index e9898a86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_red_sandstone'}.png deleted file mode 100644 index f79d0a18..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_redstone_block'}.png deleted file mode 100644 index f5fddfd4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_sandstone'}.png deleted file mode 100644 index 967e0f3f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_smooth_stone'}.png deleted file mode 100644 index 886b3ed1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_snow_block'}.png deleted file mode 100644 index bb85b753..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_stone'}.png deleted file mode 100644 index 37e81f1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_tuff'}.png deleted file mode 100644 index 9ed0c31f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__angry_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__anguished_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__anguished_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__anguished_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__anguished_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__anguished_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__anguished_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__antique_hay_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__antique_hay_block'}.png deleted file mode 100644 index 55c16d2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__antique_hay_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_acacia_leaves'}.png deleted file mode 100644 index c65c6707..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_birch_leaves'}.png deleted file mode 100644 index dd153cbc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_dark_oak_leaves'}.png deleted file mode 100644 index 6986d233..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_jungle_leaves'}.png deleted file mode 100644 index 370f32e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_oak_leaves'}.png deleted file mode 100644 index da6beb5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_spruce_leaves'}.png deleted file mode 100644 index 01cdf5e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__apple_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_black_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_black_stained_glass_pillar'}.png deleted file mode 100644 index 06fee9f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_black_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_blue_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_blue_stained_glass_pillar'}.png deleted file mode 100644 index d3fe09b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_blue_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_brown_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_brown_stained_glass_pillar'}.png deleted file mode 100644 index f27520b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_brown_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_cyan_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_cyan_stained_glass_pillar'}.png deleted file mode 100644 index 1827624e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_cyan_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_gray_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_gray_stained_glass_pillar'}.png deleted file mode 100644 index a1fa973b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_gray_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_green_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_green_stained_glass_pillar'}.png deleted file mode 100644 index 5d877aee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_green_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_leaded_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_leaded_glass_pillar'}.png deleted file mode 100644 index 18234543..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_leaded_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_light_blue_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_light_blue_stained_glass_pillar'}.png deleted file mode 100644 index cd6c75fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_light_blue_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_light_gray_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_light_gray_stained_glass_pillar'}.png deleted file mode 100644 index aca3ccbf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_light_gray_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_lime_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_lime_stained_glass_pillar'}.png deleted file mode 100644 index 803f811b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_lime_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_magenta_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_magenta_stained_glass_pillar'}.png deleted file mode 100644 index f182f172..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_magenta_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_orange_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_orange_stained_glass_pillar'}.png deleted file mode 100644 index 444d23f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_orange_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_pink_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_pink_stained_glass_pillar'}.png deleted file mode 100644 index da4d2b17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_pink_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_purple_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_purple_stained_glass_pillar'}.png deleted file mode 100644 index 14ae6c27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_purple_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_red_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_red_stained_glass_pillar'}.png deleted file mode 100644 index 3e806dcc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_red_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_white_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_white_stained_glass_pillar'}.png deleted file mode 100644 index 924e326f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_white_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_yellow_stained_glass_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_yellow_stained_glass_pillar'}.png deleted file mode 100644 index fdd82e81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arched_yellow_stained_glass_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arrow_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arrow_mud'}.png deleted file mode 100644 index d7e8f98c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arrow_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arrow_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arrow_mud_bricks'}.png deleted file mode 100644 index 59010b75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arrow_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arrow_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arrow_packed_mud'}.png deleted file mode 100644 index 58456fff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__arrow_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ash_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ash_sand'}.png deleted file mode 100644 index 50c148f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ash_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__autumnkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__autumnkin'}.png deleted file mode 100644 index b20100b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__autumnkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bad_time_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bad_time_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bad_time_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bad_time_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bad_time_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bad_time_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_dried_kelp_block'}.png deleted file mode 100644 index 70b90e90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_planks_fine_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_planks_fine_mosaic'}.png deleted file mode 100644 index 52af11bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_planks_fine_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_planks_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_planks_panel'}.png deleted file mode 100644 index 9dbb8c7e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_planks_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_planks_shavings'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_planks_shavings'}.png deleted file mode 100644 index bf21ff8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bamboo_planks_shavings'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_black_wool'}.png deleted file mode 100644 index 85e17baa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_blue_wool'}.png deleted file mode 100644 index e6aad1ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_brown_wool'}.png deleted file mode 100644 index 26af221c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_cyan_wool'}.png deleted file mode 100644 index ce5a5f4f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_gray_wool'}.png deleted file mode 100644 index 1d8161f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_green_wool'}.png deleted file mode 100644 index d557afc0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_light_blue_wool'}.png deleted file mode 100644 index 74dcc68e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_light_gray_wool'}.png deleted file mode 100644 index 4b1bbe1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_lime_wool'}.png deleted file mode 100644 index e46f4a0b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_magenta_wool'}.png deleted file mode 100644 index abc19ba2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_orange_wool'}.png deleted file mode 100644 index 0ed6ab75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_pink_wool'}.png deleted file mode 100644 index 35099fd2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_purple_wool'}.png deleted file mode 100644 index 8d03b353..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_red_wool'}.png deleted file mode 100644 index fb484531..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_white_wool'}.png deleted file mode 100644 index 92afbda9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_yellow_wool'}.png deleted file mode 100644 index 7cbc58d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barky_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barred_ochre_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barred_ochre_froglight'}.png deleted file mode 100644 index 9c23e420..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barred_ochre_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barred_pearlescent_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barred_pearlescent_froglight'}.png deleted file mode 100644 index 52f4b69e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barred_pearlescent_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barred_verdant_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barred_verdant_froglight'}.png deleted file mode 100644 index 0bd0b08b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__barred_verdant_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_bricks'}.png deleted file mode 100644 index de1cbf3f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_mini_tiles'}.png deleted file mode 100644 index ae86e223..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_pillar'}.png deleted file mode 100644 index 51c3ad7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_pillar_top'}.png deleted file mode 100644 index e9c3cba6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_scales'}.png deleted file mode 100644 index c1162136..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basalt_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_acacia_planks'}.png deleted file mode 100644 index d0d62654..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_bamboo_planks'}.png deleted file mode 100644 index 9bea5bb0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_birch_planks'}.png deleted file mode 100644 index 230ce226..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_cherry_planks'}.png deleted file mode 100644 index d694c6f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_crimson_planks'}.png deleted file mode 100644 index f5eaf4fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_dark_oak_planks'}.png deleted file mode 100644 index 9b8aea48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_jungle_planks'}.png deleted file mode 100644 index ba4d6f3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_mangrove_planks'}.png deleted file mode 100644 index d56c274a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_oak_planks'}.png deleted file mode 100644 index 31cf9e8f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_spruce_planks'}.png deleted file mode 100644 index 3f390ef0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_warped_planks'}.png deleted file mode 100644 index 3d3d744a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__basket_woven_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__birch_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__birch_planks_mosaic'}.png deleted file mode 100644 index e1217def..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__birch_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__birch_planks_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__birch_planks_panel'}.png deleted file mode 100644 index 6fe0e640..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__birch_planks_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__birch_planks_shavings'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__birch_planks_shavings'}.png deleted file mode 100644 index ff6bef0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__birch_planks_shavings'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_bricks'}.png deleted file mode 100644 index 43d4f781..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_panel'}.png deleted file mode 100644 index c2306d86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_pillar'}.png deleted file mode 100644 index 67251b11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_tiles'}.png deleted file mode 100644 index 05cac39a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 9148e3ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index 76272ddd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index 807d9544..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_tiles'}.png deleted file mode 100644 index 95916b07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_bricks'}.png deleted file mode 100644 index 8354e08d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_column'}.png deleted file mode 100644 index 52a0b7fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_pillar'}.png deleted file mode 100644 index a8a5f0f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_tile'}.png deleted file mode 100644 index 4aaf71b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_tiles'}.png deleted file mode 100644 index 722c318d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__black_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_mini_tiles'}.png deleted file mode 100644 index a7725e1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_pillar'}.png deleted file mode 100644 index afeaf553..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_pillar_top'}.png deleted file mode 100644 index 9511e845..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_scales'}.png deleted file mode 100644 index e364992a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blackstone_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_amethyst_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_amethyst_block_carving'}.png deleted file mode 100644 index 8dfdb08b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_amethyst_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_ancient_debris_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_ancient_debris_carving'}.png deleted file mode 100644 index a9d1fbda..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_ancient_debris_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_andesite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_andesite_carving'}.png deleted file mode 100644 index 3048f788..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_andesite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_basalt_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_basalt_carving'}.png deleted file mode 100644 index 1162d2d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_basalt_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_blackstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_blackstone_carving'}.png deleted file mode 100644 index 36b3e460..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_blackstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_blue_ice_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_blue_ice_carving'}.png deleted file mode 100644 index 95b99fdb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_blue_ice_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_borderless_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_borderless_bricks_carving'}.png deleted file mode 100644 index fdcd35f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_borderless_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_bricks_carving'}.png deleted file mode 100644 index ba2a9add..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_calcite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_calcite_carving'}.png deleted file mode 100644 index 757eaae0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_calcite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_clay_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_clay_carving'}.png deleted file mode 100644 index 171b6442..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_clay_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_coal_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_coal_block_carving'}.png deleted file mode 100644 index 5b8c2cf7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_coal_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_cobblestone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_cobblestone_carving'}.png deleted file mode 100644 index 5772c1d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_cobblestone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_crying_obsidian_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_crying_obsidian_carving'}.png deleted file mode 100644 index 0fa21782..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_crying_obsidian_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_dark_prismarine_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_dark_prismarine_carving'}.png deleted file mode 100644 index 1e73411b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_dark_prismarine_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_deepslate_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_deepslate_carving'}.png deleted file mode 100644 index bd424973..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_deepslate_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_diorite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_diorite_carving'}.png deleted file mode 100644 index bf5c6fe3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_diorite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_dirt_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_dirt_carving'}.png deleted file mode 100644 index 3321fd1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_dirt_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_dripstone_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_dripstone_block_carving'}.png deleted file mode 100644 index 12bbd41a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_dripstone_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_end_stone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_end_stone_carving'}.png deleted file mode 100644 index 5b45c1c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_end_stone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_gilded_blackstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_gilded_blackstone_carving'}.png deleted file mode 100644 index f69b195d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_gilded_blackstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_granite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_granite_carving'}.png deleted file mode 100644 index cc0be5ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_granite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_ice_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_ice_carving'}.png deleted file mode 100644 index 15dc9088..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_ice_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_lapis_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_lapis_block_carving'}.png deleted file mode 100644 index 377a4473..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_lapis_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_lodestone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_lodestone_carving'}.png deleted file mode 100644 index 82a9a6c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_lodestone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_lodestone_side'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_lodestone_side'}.png deleted file mode 100644 index 41177f7e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_lodestone_side'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_magma_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_magma_block_carving'}.png deleted file mode 100644 index 59e39c09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_magma_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_mossy_cobblestone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_mossy_cobblestone_carving'}.png deleted file mode 100644 index 38e728a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_mossy_cobblestone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_mossy_stone_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_mossy_stone_bricks_carving'}.png deleted file mode 100644 index f4d412d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_mossy_stone_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_nether_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_nether_bricks_carving'}.png deleted file mode 100644 index e161e210..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_nether_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_netherrack_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_netherrack_carving'}.png deleted file mode 100644 index c8a8a6e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_netherrack_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_obsidian_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_obsidian_carving'}.png deleted file mode 100644 index 6ec26aba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_obsidian_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_packed_ice_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_packed_ice_carving'}.png deleted file mode 100644 index 9fcbd9ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_packed_ice_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_prismarine_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_prismarine_carving'}.png deleted file mode 100644 index 0809b782..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_prismarine_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_purpur_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_purpur_block_carving'}.png deleted file mode 100644 index de789082..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_purpur_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_quartz_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_quartz_block_carving'}.png deleted file mode 100644 index 68eef1ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_quartz_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_raw_copper_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_raw_copper_block_carving'}.png deleted file mode 100644 index caf8337c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_raw_copper_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_raw_gold_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_raw_gold_block_carving'}.png deleted file mode 100644 index ac71d4bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_raw_gold_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_raw_iron_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_raw_iron_block_carving'}.png deleted file mode 100644 index 702faa30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_raw_iron_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_red_nether_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_red_nether_bricks_carving'}.png deleted file mode 100644 index bcab5220..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_red_nether_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_red_sandstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_red_sandstone_carving'}.png deleted file mode 100644 index e7460fc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_red_sandstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_redstone_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_redstone_block_carving'}.png deleted file mode 100644 index a8fe82d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_redstone_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_sandstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_sandstone_carving'}.png deleted file mode 100644 index c0995b06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_sandstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_smooth_stone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_smooth_stone_carving'}.png deleted file mode 100644 index f56f0702..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_smooth_stone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_snow_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_snow_block_carving'}.png deleted file mode 100644 index d8aa37e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_snow_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_stone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_stone_carving'}.png deleted file mode 100644 index 26f7aae7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_stone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_tuff_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_tuff_carving'}.png deleted file mode 100644 index f0104ae9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blank_tuff_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blobby_moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blobby_moss_block'}.png deleted file mode 100644 index bfe27788..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blobby_moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_black_wool'}.png deleted file mode 100644 index 0f5821a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_blue_wool'}.png deleted file mode 100644 index 1d1415f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_brown_wool'}.png deleted file mode 100644 index 0381f38e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_cyan_wool'}.png deleted file mode 100644 index 36af3cb7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_gray_wool'}.png deleted file mode 100644 index 90933e78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_green_wool'}.png deleted file mode 100644 index 02e7d7a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_light_blue_wool'}.png deleted file mode 100644 index 0cdb483e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_light_gray_wool'}.png deleted file mode 100644 index 906ff9e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_lime_wool'}.png deleted file mode 100644 index 38867c5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_magenta_wool'}.png deleted file mode 100644 index 0e30a418..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_orange_wool'}.png deleted file mode 100644 index f9bfd03c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_pink_wool'}.png deleted file mode 100644 index ca91a1dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_purple_wool'}.png deleted file mode 100644 index f2023e56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_red_wool'}.png deleted file mode 100644 index af9384fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_white_wool'}.png deleted file mode 100644 index 40228085..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_yellow_wool'}.png deleted file mode 100644 index c531cda6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blocky_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blooming_mushroom_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blooming_mushroom_stem'}.png deleted file mode 100644 index 1e91b12d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blooming_mushroom_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_bricks'}.png deleted file mode 100644 index 506c452a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_panel'}.png deleted file mode 100644 index af1904de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_pillar'}.png deleted file mode 100644 index e82b24b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_tiles'}.png deleted file mode 100644 index ca39b8d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_dried_kelp_block'}.png deleted file mode 100644 index 4fa5211c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 578ff340..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index a0d6e60a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index 892c6dcb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_tiles'}.png deleted file mode 100644 index d446bc66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_bricks'}.png deleted file mode 100644 index 82d7b8a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_mini_tiles'}.png deleted file mode 100644 index 044ff459..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_pillar'}.png deleted file mode 100644 index 0e705492..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_pillar_top'}.png deleted file mode 100644 index 80e249b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_scales'}.png deleted file mode 100644 index cc17401a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_ice_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_mangrove_roots'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_mangrove_roots'}.png deleted file mode 100644 index bf15493f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_mangrove_roots'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_moss_block'}.png deleted file mode 100644 index 1cbc3672..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_bricks'}.png deleted file mode 100644 index 544018a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_column'}.png deleted file mode 100644 index 909f254c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_pillar'}.png deleted file mode 100644 index 9c003482..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_tile'}.png deleted file mode 100644 index d38c7827..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_tiles'}.png deleted file mode 100644 index f42db2ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__blue_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_black_concrete'}.png deleted file mode 100644 index f13f0dd3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_blue_concrete'}.png deleted file mode 100644 index b864d3ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_brown_concrete'}.png deleted file mode 100644 index 13b5b7ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_cyan_concrete'}.png deleted file mode 100644 index 39bd03bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_gray_concrete'}.png deleted file mode 100644 index 7c38db22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_green_concrete'}.png deleted file mode 100644 index 37b9228a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_light_blue_concrete'}.png deleted file mode 100644 index 8fbba1a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_light_gray_concrete'}.png deleted file mode 100644 index 781037f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_lime_concrete'}.png deleted file mode 100644 index b53e3c31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_magenta_concrete'}.png deleted file mode 100644 index 71677791..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_orange_concrete'}.png deleted file mode 100644 index 9716ad35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_pink_concrete'}.png deleted file mode 100644 index 5632f279..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_purple_concrete'}.png deleted file mode 100644 index 1d7146f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_red_concrete'}.png deleted file mode 100644 index 5c065242..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_white_concrete'}.png deleted file mode 100644 index 02e92aff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_yellow_concrete'}.png deleted file mode 100644 index d48116e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bolted_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boo_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boo_carved_pumpkin'}.png deleted file mode 100644 index e1f7da17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boo_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boo_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boo_jack_o_lantern'}.png deleted file mode 100644 index e1f7da17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boo_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_amethyst_block'}.png deleted file mode 100644 index eb09919d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_ancient_debris'}.png deleted file mode 100644 index 05d62c30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_andesite'}.png deleted file mode 100644 index 700ee859..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_basalt'}.png deleted file mode 100644 index 6bcdaa5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_blackstone'}.png deleted file mode 100644 index 7889edbb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_blue_ice'}.png deleted file mode 100644 index 38995b13..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_borderless_bricks'}.png deleted file mode 100644 index 979eb1d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_bricks'}.png deleted file mode 100644 index d70f539d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_calcite'}.png deleted file mode 100644 index d8b52f01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_clay'}.png deleted file mode 100644 index f3b4297e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_coal_block'}.png deleted file mode 100644 index 89f754a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_cobblestone'}.png deleted file mode 100644 index 4f5b7735..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_crying_obsidian'}.png deleted file mode 100644 index 1ab1ffd6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_dark_prismarine'}.png deleted file mode 100644 index 8a42cf8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_deepslate'}.png deleted file mode 100644 index a86e77be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_diorite'}.png deleted file mode 100644 index 78aba68f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_dirt'}.png deleted file mode 100644 index eb036cf5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_dripstone_block'}.png deleted file mode 100644 index e0a29293..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_end_stone'}.png deleted file mode 100644 index 48076527..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_gilded_blackstone'}.png deleted file mode 100644 index 0b59feb7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_granite'}.png deleted file mode 100644 index 81c658cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_ice'}.png deleted file mode 100644 index b435f7d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_lapis_block'}.png deleted file mode 100644 index 58311efb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_lodestone'}.png deleted file mode 100644 index cd9a5d51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_magma_block'}.png deleted file mode 100644 index 37d925d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mossy_cobblestone'}.png deleted file mode 100644 index 533e4930..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mossy_stone_bricks'}.png deleted file mode 100644 index d252817b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mud'}.png deleted file mode 100644 index d3a05b84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mud_bricks'}.png deleted file mode 100644 index 2b8bcff8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_nether_bricks'}.png deleted file mode 100644 index 6cda8ec7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_netherrack'}.png deleted file mode 100644 index 79098cb2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_obsidian'}.png deleted file mode 100644 index 5bf42285..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_packed_ice'}.png deleted file mode 100644 index ba63bfb0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_packed_mud'}.png deleted file mode 100644 index c705bcba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_prismarine'}.png deleted file mode 100644 index 133f695d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_purpur_block'}.png deleted file mode 100644 index 59b2d076..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_quartz_block'}.png deleted file mode 100644 index 55029ad4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_raw_copper_block'}.png deleted file mode 100644 index cb80340f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_raw_gold_block'}.png deleted file mode 100644 index 510f61bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_raw_iron_block'}.png deleted file mode 100644 index bcff4e76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_red_nether_bricks'}.png deleted file mode 100644 index 958d4b28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_red_sandstone'}.png deleted file mode 100644 index 7b171302..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_redstone_block'}.png deleted file mode 100644 index 8fed1d46..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_sandstone'}.png deleted file mode 100644 index 195e4e7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_smooth_stone'}.png deleted file mode 100644 index 91149ba3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_snow_block'}.png deleted file mode 100644 index 7d2eeb88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_stone'}.png deleted file mode 100644 index 02dae9a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_tuff'}.png deleted file mode 100644 index bb1134f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bordered_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_bricks'}.png deleted file mode 100644 index c7f15f7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_mini_tiles'}.png deleted file mode 100644 index dde5f3cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_pillar'}.png deleted file mode 100644 index 181d0a7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_pillar_top'}.png deleted file mode 100644 index 25258d29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_scales'}.png deleted file mode 100644 index bea12727..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__borderless_bricks_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanical_oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanical_oak_bookshelf'}.png deleted file mode 100644 index a9243932..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanical_oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanical_oak_cubed_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanical_oak_cubed_bookshelf'}.png deleted file mode 100644 index 2dff28d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanical_oak_cubed_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanical_oak_large_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanical_oak_large_bookshelf'}.png deleted file mode 100644 index f5b07da0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanical_oak_large_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanist_workbench'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanist_workbench'}.png deleted file mode 100644 index b8c46d5b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__botanist_workbench'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_acacia_planks'}.png deleted file mode 100644 index 821b09ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_bamboo_planks'}.png deleted file mode 100644 index a69fa351..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_birch_planks'}.png deleted file mode 100644 index 69cfc0ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_cherry_planks'}.png deleted file mode 100644 index 71f59fe0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_crimson_planks'}.png deleted file mode 100644 index e568dd93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_dark_oak_planks'}.png deleted file mode 100644 index cf2e42b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_jungle_planks'}.png deleted file mode 100644 index f634a44f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_mangrove_planks'}.png deleted file mode 100644 index 8c66b69c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_oak_planks'}.png deleted file mode 100644 index 47c1da2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_spruce_planks'}.png deleted file mode 100644 index d2ed6781..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_warped_planks'}.png deleted file mode 100644 index ef4611d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__boxed_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_acacia_planks'}.png deleted file mode 100644 index fd7e8fc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_bamboo_planks'}.png deleted file mode 100644 index 011f4be7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_birch_planks'}.png deleted file mode 100644 index 3af1e063..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_cherry_planks'}.png deleted file mode 100644 index e34e07a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_crimson_planks'}.png deleted file mode 100644 index 4fe95710..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_dark_oak_planks'}.png deleted file mode 100644 index 563c8022..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_jungle_planks'}.png deleted file mode 100644 index 4575222e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_mangrove_planks'}.png deleted file mode 100644 index acaa483c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_oak_planks'}.png deleted file mode 100644 index ce4b5ebf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_spruce_planks'}.png deleted file mode 100644 index 490ea241..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_warped_planks'}.png deleted file mode 100644 index 83442742..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bond_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_amethyst_block'}.png deleted file mode 100644 index 2e362c41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_ancient_debris'}.png deleted file mode 100644 index 801d9ec1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_andesite'}.png deleted file mode 100644 index 182d80f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_basalt'}.png deleted file mode 100644 index d5ba32c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_blackstone'}.png deleted file mode 100644 index 4ff294b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_blue_ice'}.png deleted file mode 100644 index 5a9b5595..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_borderless_bricks'}.png deleted file mode 100644 index cc9a1c1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_bricks'}.png deleted file mode 100644 index fca62a33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_calcite'}.png deleted file mode 100644 index 6783875d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_clay'}.png deleted file mode 100644 index b19fcaf0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_coal_block'}.png deleted file mode 100644 index 244a56ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_cobblestone'}.png deleted file mode 100644 index dc55bd95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_crying_obsidian'}.png deleted file mode 100644 index c8fb2ade..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_dark_prismarine'}.png deleted file mode 100644 index 79e57d97..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_deepslate'}.png deleted file mode 100644 index 59d735cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_diorite'}.png deleted file mode 100644 index 2a447340..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_dirt'}.png deleted file mode 100644 index 59a61e37..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_dripstone_block'}.png deleted file mode 100644 index 0a3c028f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_end_stone'}.png deleted file mode 100644 index d720d8f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_gilded_blackstone'}.png deleted file mode 100644 index c143d50e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_granite'}.png deleted file mode 100644 index 9e4f11c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_ice'}.png deleted file mode 100644 index 7caf5de6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_lapis_block'}.png deleted file mode 100644 index 81839625..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_lodestone'}.png deleted file mode 100644 index 9e78b4d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_magma_block'}.png deleted file mode 100644 index c02f24c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mossy_cobblestone'}.png deleted file mode 100644 index 01efcf35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mossy_stone_bricks'}.png deleted file mode 100644 index fb7d14fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mud'}.png deleted file mode 100644 index afcf37e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mud_bricks'}.png deleted file mode 100644 index 8b5d3bba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_nether_bricks'}.png deleted file mode 100644 index e13f1522..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_netherrack'}.png deleted file mode 100644 index ccb262a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_obsidian'}.png deleted file mode 100644 index 35e93d2b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_packed_ice'}.png deleted file mode 100644 index 5f8a9766..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_packed_mud'}.png deleted file mode 100644 index 44af7f5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_prismarine'}.png deleted file mode 100644 index b47d2dee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_purpur_block'}.png deleted file mode 100644 index c7fa48cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_quartz_block'}.png deleted file mode 100644 index c29696be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_raw_copper_block'}.png deleted file mode 100644 index cf54fef9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_raw_gold_block'}.png deleted file mode 100644 index cf3892bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_raw_iron_block'}.png deleted file mode 100644 index d53d1de9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_red_nether_bricks'}.png deleted file mode 100644 index a8f4e472..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_red_sandstone'}.png deleted file mode 100644 index a6755efc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_redstone_block'}.png deleted file mode 100644 index 44894fbf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_sandstone'}.png deleted file mode 100644 index ddbd2f72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_smooth_stone'}.png deleted file mode 100644 index 43708d71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_snow_block'}.png deleted file mode 100644 index dd2e21de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_stone'}.png deleted file mode 100644 index 8f300e3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_tuff'}.png deleted file mode 100644 index 34f0523a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brick_bordered_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricked_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricked_mangrove_planks'}.png deleted file mode 100644 index a838bc3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricked_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_bricks'}.png deleted file mode 100644 index 0f505f33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_mini_tiles'}.png deleted file mode 100644 index 9132d0c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_pillar'}.png deleted file mode 100644 index 7ab03fcc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_pillar_top'}.png deleted file mode 100644 index 461ad4e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_scales'}.png deleted file mode 100644 index 27dadce1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricks_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_acacia_planks'}.png deleted file mode 100644 index 41eaade3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_bamboo_planks'}.png deleted file mode 100644 index abc36bc1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_birch_planks'}.png deleted file mode 100644 index 595927ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_cherry_planks'}.png deleted file mode 100644 index 965de6ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_crimson_planks'}.png deleted file mode 100644 index ebc38acf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_dark_oak_planks'}.png deleted file mode 100644 index 6e5df5b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_jungle_planks'}.png deleted file mode 100644 index 4bf367a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_mangrove_planks'}.png deleted file mode 100644 index f1c1530c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_oak_planks'}.png deleted file mode 100644 index 59ace812..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_spruce_planks'}.png deleted file mode 100644 index 28c4be3a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_warped_planks'}.png deleted file mode 100644 index 5d310c10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bricky_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bright_melon'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bright_melon'}.png deleted file mode 100644 index 4c013933..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bright_melon'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_glowstone'}.png deleted file mode 100644 index 0dffd112..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_mushroom_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_mushroom_stem'}.png deleted file mode 100644 index 22952308..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_mushroom_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_sea_lantern'}.png deleted file mode 100644 index 3712fc28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_shroomlight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_shroomlight'}.png deleted file mode 100644 index a320016c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__broken_shroomlight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_bricks'}.png deleted file mode 100644 index aceb7cdd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_panel'}.png deleted file mode 100644 index 291c0a12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_pillar'}.png deleted file mode 100644 index df880be3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_tiles'}.png deleted file mode 100644 index 055adb24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_dried_kelp_block'}.png deleted file mode 100644 index c91fc4db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 13ad780d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index 2706d909..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index 02ebeb35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_tiles'}.png deleted file mode 100644 index 8642ff07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_bricks'}.png deleted file mode 100644 index a287d35e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_column'}.png deleted file mode 100644 index 1b54147b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_pillar'}.png deleted file mode 100644 index 5e0ed6b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_tile'}.png deleted file mode 100644 index 3bd6416a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_tiles'}.png deleted file mode 100644 index 662703ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__brown_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bubbling_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bubbling_nether_wart_block'}.png deleted file mode 100644 index c430e951..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bubbling_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bubbling_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bubbling_warped_wart_block'}.png deleted file mode 100644 index 576f5af3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bubbling_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bulbed_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bulbed_glowstone'}.png deleted file mode 100644 index 06e6e41c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bulbed_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bulbed_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bulbed_sea_lantern'}.png deleted file mode 100644 index 3016172f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bulbed_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bulby_sponge'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bulby_sponge'}.png deleted file mode 100644 index 956defa1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bulby_sponge'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_acacia_log'}.png deleted file mode 100644 index d9875d46..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_birch_log'}.png deleted file mode 100644 index 8d63ace8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_black_wool'}.png deleted file mode 100644 index fcb11695..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_blue_wool'}.png deleted file mode 100644 index 6782dab9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_brown_wool'}.png deleted file mode 100644 index 6f582843..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_cherry_log'}.png deleted file mode 100644 index 801230e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_crimson_stem'}.png deleted file mode 100644 index 50b0a966..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_cyan_wool'}.png deleted file mode 100644 index b03d2314..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_dark_oak_log'}.png deleted file mode 100644 index 1189ab2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_gray_wool'}.png deleted file mode 100644 index bb2d7e35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_green_wool'}.png deleted file mode 100644 index 4706b165..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_hay_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_hay_block'}.png deleted file mode 100644 index 14da86d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_hay_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_jungle_log'}.png deleted file mode 100644 index 3e1a9035..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_light_blue_wool'}.png deleted file mode 100644 index df169d85..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_light_gray_wool'}.png deleted file mode 100644 index 0d8ee7ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_lime_wool'}.png deleted file mode 100644 index 694a9ab8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_magenta_wool'}.png deleted file mode 100644 index e0ee1fdc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_mangrove_log'}.png deleted file mode 100644 index a17b7828..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_oak_log'}.png deleted file mode 100644 index e7e06a9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_orange_wool'}.png deleted file mode 100644 index 8fb0f386..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_pink_wool'}.png deleted file mode 100644 index a5e062df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_purple_wool'}.png deleted file mode 100644 index baf5b3d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_red_wool'}.png deleted file mode 100644 index 4a01dffb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_spruce_log'}.png deleted file mode 100644 index 4c30b96a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_warped_stem'}.png deleted file mode 100644 index 50c44eb1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_white_wool'}.png deleted file mode 100644 index 11a5fc96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_yellow_wool'}.png deleted file mode 100644 index af431681..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__bundled_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__button_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__button_mud'}.png deleted file mode 100644 index c746a98f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__button_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__button_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__button_mud_bricks'}.png deleted file mode 100644 index 2a445a08..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__button_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__button_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__button_packed_mud'}.png deleted file mode 100644 index 957bd05e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__button_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_bricks'}.png deleted file mode 100644 index 507f9295..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_mini_tiles'}.png deleted file mode 100644 index ba21ccab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_pillar'}.png deleted file mode 100644 index 629f48c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_pillar_top'}.png deleted file mode 100644 index 0db9b48d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_scales'}.png deleted file mode 100644 index 8a42621a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__calcite_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carpenters_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carpenters_table'}.png deleted file mode 100644 index 1031e827..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carpenters_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_amethyst_block'}.png deleted file mode 100644 index ab12405b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_ancient_debris'}.png deleted file mode 100644 index 804bc408..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_andesite'}.png deleted file mode 100644 index 01ed1692..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_basalt'}.png deleted file mode 100644 index a2007def..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_blackstone'}.png deleted file mode 100644 index 766ca097..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_blue_ice'}.png deleted file mode 100644 index ba59ca29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_borderless_bricks'}.png deleted file mode 100644 index b5a043bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_bricks'}.png deleted file mode 100644 index fdc96f6b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_calcite'}.png deleted file mode 100644 index 3ae9b38f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_clay'}.png deleted file mode 100644 index 980c175b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_coal_block'}.png deleted file mode 100644 index 4f79a5d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_cobblestone'}.png deleted file mode 100644 index a5cc5f05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_crying_obsidian'}.png deleted file mode 100644 index b1441255..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_dark_prismarine'}.png deleted file mode 100644 index e77306a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_deepslate'}.png deleted file mode 100644 index ee4b031a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_diorite'}.png deleted file mode 100644 index 0570c6a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_dirt'}.png deleted file mode 100644 index bea388f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_dripstone_block'}.png deleted file mode 100644 index f9df50af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_end_stone'}.png deleted file mode 100644 index 5e93b5e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_gilded_blackstone'}.png deleted file mode 100644 index 54e55698..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_granite'}.png deleted file mode 100644 index a7985225..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_ice'}.png deleted file mode 100644 index 8ec2720e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_lapis_block'}.png deleted file mode 100644 index 7711eb3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_lodestone'}.png deleted file mode 100644 index a5e5a4db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_magma_block'}.png deleted file mode 100644 index 0216dfde..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mangrove_planks'}.png deleted file mode 100644 index d880eb45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mossy_cobblestone'}.png deleted file mode 100644 index 666171c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mossy_stone_bricks'}.png deleted file mode 100644 index 02593826..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud'}.png deleted file mode 100644 index 435326b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud_bricks'}.png deleted file mode 100644 index 935a7a29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud_bricks_pillar'}.png deleted file mode 100644 index 0e3052db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud_pillar'}.png deleted file mode 100644 index d3c0467d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_nether_bricks'}.png deleted file mode 100644 index e0887494..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_netherrack'}.png deleted file mode 100644 index 4206d084..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_obsidian'}.png deleted file mode 100644 index 074f915d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_packed_ice'}.png deleted file mode 100644 index 6502e418..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_packed_mud'}.png deleted file mode 100644 index 51811e65..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_packed_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_packed_mud_pillar'}.png deleted file mode 100644 index ea042368..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_packed_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_prismarine'}.png deleted file mode 100644 index 964e7eb6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_purpur_block'}.png deleted file mode 100644 index 8d5c888f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_raw_copper_block'}.png deleted file mode 100644 index d2ebac9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_raw_gold_block'}.png deleted file mode 100644 index 32d2827c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_raw_iron_block'}.png deleted file mode 100644 index 0c0abe94..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_red_nether_bricks'}.png deleted file mode 100644 index 24d3dbb7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_red_sandstone'}.png deleted file mode 100644 index 2198f98f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_redstone_block'}.png deleted file mode 100644 index db3f5b13..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_sandstone'}.png deleted file mode 100644 index 312a0b60..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_smooth_stone'}.png deleted file mode 100644 index b422afd9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_snow_block'}.png deleted file mode 100644 index a846cd46..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stone'}.png deleted file mode 100644 index 932956cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_acacia_log'}.png deleted file mode 100644 index 565c58ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_birch_log'}.png deleted file mode 100644 index 808aabd6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_cherry_log'}.png deleted file mode 100644 index 4b19190e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_crimson_stem'}.png deleted file mode 100644 index 902c7f92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_dark_oak_log'}.png deleted file mode 100644 index d9f5cc06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_jungle_log'}.png deleted file mode 100644 index fd6632d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_mangrove_log'}.png deleted file mode 100644 index 06ae8d6a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_oak_log'}.png deleted file mode 100644 index 4e7ecf07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_spruce_log'}.png deleted file mode 100644 index 5d1a4786..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_warped_stem'}.png deleted file mode 100644 index db344e11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_tuff'}.png deleted file mode 100644 index e3ebf240..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__carved_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_acacia_log'}.png deleted file mode 100644 index a5d1fd6f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_birch_log'}.png deleted file mode 100644 index 78026d8e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_cherry_log'}.png deleted file mode 100644 index 8ab447d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_crimson_stem'}.png deleted file mode 100644 index e084ba1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_dark_oak_log'}.png deleted file mode 100644 index 3d332c74..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_jungle_log'}.png deleted file mode 100644 index 92348b30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_mangrove_log'}.png deleted file mode 100644 index 609bb0bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_oak_log'}.png deleted file mode 100644 index bcfbbdb3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_spruce_log'}.png deleted file mode 100644 index d82202f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_warped_stem'}.png deleted file mode 100644 index 9fcc36f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__center_cut_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__centered_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__centered_mud'}.png deleted file mode 100644 index 9786f86b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__centered_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__centered_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__centered_mud_bricks'}.png deleted file mode 100644 index 29358452..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__centered_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__centered_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__centered_packed_mud'}.png deleted file mode 100644 index f2098386..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__centered_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_amethyst_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_amethyst_block_tiles'}.png deleted file mode 100644 index 0f5d0a46..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_amethyst_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_ancient_debris_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_ancient_debris_tiles'}.png deleted file mode 100644 index b8b804d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_ancient_debris_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_andesite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_andesite_tiles'}.png deleted file mode 100644 index aae482ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_andesite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_basalt_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_basalt_tiles'}.png deleted file mode 100644 index bd18b091..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_basalt_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_blackstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_blackstone_tiles'}.png deleted file mode 100644 index 9ab250be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_blackstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_blue_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_blue_ice_tiles'}.png deleted file mode 100644 index 6ae6b9b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_blue_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_borderless_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_borderless_bricks_tiles'}.png deleted file mode 100644 index 680a2712..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_borderless_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_bricks_tiles'}.png deleted file mode 100644 index c922a416..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_calcite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_calcite_tiles'}.png deleted file mode 100644 index 2d8effa5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_calcite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_clay_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_clay_tiles'}.png deleted file mode 100644 index a116f191..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_clay_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_coal_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_coal_block_tiles'}.png deleted file mode 100644 index ec3bfd31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_coal_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_cobblestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_cobblestone_tiles'}.png deleted file mode 100644 index c776a7bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_cobblestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_crying_obsidian_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_crying_obsidian_tiles'}.png deleted file mode 100644 index f0799e4e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_crying_obsidian_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_dark_prismarine_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_dark_prismarine_tiles'}.png deleted file mode 100644 index a6aeb3ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_dark_prismarine_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_deepslate_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_deepslate_tiles'}.png deleted file mode 100644 index c7f3bdc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_deepslate_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_diorite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_diorite_tiles'}.png deleted file mode 100644 index 16cf5969..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_diorite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_dirt_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_dirt_tiles'}.png deleted file mode 100644 index 6ab955cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_dirt_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_dripstone_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_dripstone_block_tiles'}.png deleted file mode 100644 index 4eed5c4c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_dripstone_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_end_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_end_stone_tiles'}.png deleted file mode 100644 index 9c7e629d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_end_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_gilded_blackstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_gilded_blackstone_tiles'}.png deleted file mode 100644 index a15206ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_gilded_blackstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_granite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_granite_tiles'}.png deleted file mode 100644 index 2231e7e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_granite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_ice_tiles'}.png deleted file mode 100644 index 32908563..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_lapis_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_lapis_block_tiles'}.png deleted file mode 100644 index 76c67b40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_lapis_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_lodestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_lodestone_tiles'}.png deleted file mode 100644 index 4c4d218b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_lodestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_magma_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_magma_block_tiles'}.png deleted file mode 100644 index 38f8207f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_magma_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_mossy_cobblestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_mossy_cobblestone_tiles'}.png deleted file mode 100644 index 8c273384..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_mossy_cobblestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_mossy_stone_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_mossy_stone_bricks_tiles'}.png deleted file mode 100644 index 26a176d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_mossy_stone_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_nether_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_nether_bricks_tiles'}.png deleted file mode 100644 index 6915e9d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_nether_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_netherrack_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_netherrack_tiles'}.png deleted file mode 100644 index a1756601..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_netherrack_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_obsidian_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_obsidian_tiles'}.png deleted file mode 100644 index 0ee07182..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_obsidian_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_packed_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_packed_ice_tiles'}.png deleted file mode 100644 index 84202794..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_packed_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_prismarine_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_prismarine_tiles'}.png deleted file mode 100644 index 27eba417..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_prismarine_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_quartz_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_quartz_block_tiles'}.png deleted file mode 100644 index 07e417ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_quartz_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_raw_copper_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_raw_copper_block_tiles'}.png deleted file mode 100644 index 6779dc0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_raw_copper_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_raw_gold_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_raw_gold_block_tiles'}.png deleted file mode 100644 index 91532c6d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_raw_gold_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_raw_iron_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_raw_iron_block_tiles'}.png deleted file mode 100644 index fc4b7281..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_raw_iron_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_red_nether_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_red_nether_bricks_tiles'}.png deleted file mode 100644 index dff7a53d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_red_nether_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_red_sandstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_red_sandstone_tiles'}.png deleted file mode 100644 index 5bbd3b10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_red_sandstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_redstone_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_redstone_block_tiles'}.png deleted file mode 100644 index a83c97f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_redstone_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_sandstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_sandstone_tiles'}.png deleted file mode 100644 index 55dbe854..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_sandstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_smooth_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_smooth_stone_tiles'}.png deleted file mode 100644 index 1b144e7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_smooth_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_snow_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_snow_block_tiles'}.png deleted file mode 100644 index 0d1bee58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_snow_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_stone_tiles'}.png deleted file mode 100644 index da0b7ee5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_tuff_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_tuff_tiles'}.png deleted file mode 100644 index f5d83b90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__checkered_tuff_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_acacia_leaves'}.png deleted file mode 100644 index 8c2f30b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_birch_leaves'}.png deleted file mode 100644 index 18d8c090..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_dark_oak_leaves'}.png deleted file mode 100644 index 8ff8d459..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_jungle_leaves'}.png deleted file mode 100644 index abce8c60..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_oak_leaves'}.png deleted file mode 100644 index ca8ab975..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_planks_mosaic'}.png deleted file mode 100644 index 91c82c01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_planks_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_planks_panel'}.png deleted file mode 100644 index 1b8fc7f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_planks_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_planks_shavings'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_planks_shavings'}.png deleted file mode 100644 index 49b91e49..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_planks_shavings'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_spruce_leaves'}.png deleted file mode 100644 index 83bc3ca8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cherry_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_diamond_block'}.png deleted file mode 100644 index dfadd90d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_emerald_block'}.png deleted file mode 100644 index 9f322f63..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_gold_block'}.png deleted file mode 100644 index 0f0d278e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_iron_block'}.png deleted file mode 100644 index 8e515894..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_netherite_block'}.png deleted file mode 100644 index 38f2d5b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_acacia_log'}.png deleted file mode 100644 index f4bb96a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_birch_log'}.png deleted file mode 100644 index 82711438..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_cherry_log'}.png deleted file mode 100644 index 65ae09a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_crimson_stem'}.png deleted file mode 100644 index 4642d521..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_dark_oak_log'}.png deleted file mode 100644 index 994b351c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_jungle_log'}.png deleted file mode 100644 index 09cbb19d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_mangrove_log'}.png deleted file mode 100644 index 30d2ead4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_oak_log'}.png deleted file mode 100644 index 39b08da8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_spruce_log'}.png deleted file mode 100644 index 7cee5da1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_warped_stem'}.png deleted file mode 100644 index c6036798..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_copper_block'}.png deleted file mode 100644 index ef0039be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_exposed_copper'}.png deleted file mode 100644 index 571c2057..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_oxidized_copper'}.png deleted file mode 100644 index f525559b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_weathered_copper'}.png deleted file mode 100644 index 813a77ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chipped_waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_black_terracotta'}.png deleted file mode 100644 index 84ec78f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_blue_terracotta'}.png deleted file mode 100644 index 312da71b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_brown_terracotta'}.png deleted file mode 100644 index 4d014ebc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_cyan_terracotta'}.png deleted file mode 100644 index d99b6d1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_gray_terracotta'}.png deleted file mode 100644 index 85bc2266..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_green_terracotta'}.png deleted file mode 100644 index 81d60a60..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_light_blue_terracotta'}.png deleted file mode 100644 index 63a95e54..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_light_gray_terracotta'}.png deleted file mode 100644 index 24b46982..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_lime_terracotta'}.png deleted file mode 100644 index c764cffa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_magenta_terracotta'}.png deleted file mode 100644 index 4c28f106..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_mangrove_planks'}.png deleted file mode 100644 index 8ce8e49d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_mud'}.png deleted file mode 100644 index 28b1efbd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_mud_bricks'}.png deleted file mode 100644 index 9fd21663..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_orange_terracotta'}.png deleted file mode 100644 index f96b0450..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_packed_mud'}.png deleted file mode 100644 index eae53dd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_pink_terracotta'}.png deleted file mode 100644 index 694cd27a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_purple_terracotta'}.png deleted file mode 100644 index 11077ee6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_red_terracotta'}.png deleted file mode 100644 index bb4171da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_stripped_mangrove_log'}.png deleted file mode 100644 index eaa3a1d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_terracotta'}.png deleted file mode 100644 index 6cbb627a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_white_terracotta'}.png deleted file mode 100644 index ad15b720..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_yellow_terracotta'}.png deleted file mode 100644 index 12abe784..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chiseled_yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chunky_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chunky_gilded_blackstone'}.png deleted file mode 100644 index 3d331a66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__chunky_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circle_oak_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circle_oak_glass'}.png deleted file mode 100644 index 987247b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circle_oak_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_black_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_black_stained_glass'}.png deleted file mode 100644 index 06fee9f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_black_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_black_terracotta'}.png deleted file mode 100644 index 57e336fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_blue_stained_glass'}.png deleted file mode 100644 index d3fe09b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_blue_terracotta'}.png deleted file mode 100644 index 8a20594c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_brown_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_brown_stained_glass'}.png deleted file mode 100644 index f27520b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_brown_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_brown_terracotta'}.png deleted file mode 100644 index f3e8b35e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_cyan_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_cyan_stained_glass'}.png deleted file mode 100644 index 1827624e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_cyan_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_cyan_terracotta'}.png deleted file mode 100644 index eddcfc3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_gray_stained_glass'}.png deleted file mode 100644 index a1fa973b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_gray_terracotta'}.png deleted file mode 100644 index 6951f75b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_green_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_green_stained_glass'}.png deleted file mode 100644 index 5d877aee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_green_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_green_terracotta'}.png deleted file mode 100644 index f0f43c12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_blue_stained_glass'}.png deleted file mode 100644 index cd6c75fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_blue_terracotta'}.png deleted file mode 100644 index d1d0672b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_gray_stained_glass'}.png deleted file mode 100644 index aca3ccbf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_gray_terracotta'}.png deleted file mode 100644 index 7644a254..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_lime_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_lime_stained_glass'}.png deleted file mode 100644 index 803f811b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_lime_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_lime_terracotta'}.png deleted file mode 100644 index 771bddb9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_magenta_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_magenta_stained_glass'}.png deleted file mode 100644 index f182f172..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_magenta_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_magenta_terracotta'}.png deleted file mode 100644 index 8edcb8bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_orange_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_orange_stained_glass'}.png deleted file mode 100644 index 444d23f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_orange_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_orange_terracotta'}.png deleted file mode 100644 index cba2d563..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_pink_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_pink_stained_glass'}.png deleted file mode 100644 index da4d2b17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_pink_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_pink_terracotta'}.png deleted file mode 100644 index 1fe882c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_purple_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_purple_stained_glass'}.png deleted file mode 100644 index 14ae6c27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_purple_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_purple_terracotta'}.png deleted file mode 100644 index 7d90fab4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_red_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_red_stained_glass'}.png deleted file mode 100644 index 3e806dcc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_red_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_red_terracotta'}.png deleted file mode 100644 index 8385186c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_terracotta'}.png deleted file mode 100644 index 6da50d21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_white_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_white_stained_glass'}.png deleted file mode 100644 index 924e326f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_white_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_white_terracotta'}.png deleted file mode 100644 index ec9a2b26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_yellow_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_yellow_stained_glass'}.png deleted file mode 100644 index fdd82e81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_yellow_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_yellow_terracotta'}.png deleted file mode 100644 index 8d9db383..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__circular_yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_bricks'}.png deleted file mode 100644 index c84d68e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_mini_tiles'}.png deleted file mode 100644 index 27c7fdaa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_pillar'}.png deleted file mode 100644 index 7b12349a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_pillar_top'}.png deleted file mode 100644 index 35b352e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_scales'}.png deleted file mode 100644 index a35fd848..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clay_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clear_leaded_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clear_leaded_glass'}.png deleted file mode 100644 index 0d827dab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__clear_leaded_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_bricks'}.png deleted file mode 100644 index 24dd6114..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_mini_tiles'}.png deleted file mode 100644 index 835690ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_pillar'}.png deleted file mode 100644 index 8fb5ea76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_pillar_top'}.png deleted file mode 100644 index 5147b685..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_scales'}.png deleted file mode 100644 index 8a983c62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coal_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coarse_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coarse_sand'}.png deleted file mode 100644 index 542c2dd6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__coarse_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_amethyst_block'}.png deleted file mode 100644 index 14359fd2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_ancient_debris'}.png deleted file mode 100644 index e91c12b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_andesite'}.png deleted file mode 100644 index fc6ced12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_basalt'}.png deleted file mode 100644 index 8e360d8c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_blackstone'}.png deleted file mode 100644 index d5b8c181..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_blue_ice'}.png deleted file mode 100644 index e6c83d5f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_borderless_bricks'}.png deleted file mode 100644 index b03830f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_bricks'}.png deleted file mode 100644 index b03830f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_calcite'}.png deleted file mode 100644 index c0add4e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_clay'}.png deleted file mode 100644 index 40731b3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_coal_block'}.png deleted file mode 100644 index 720c5ed1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_cobblestone'}.png deleted file mode 100644 index b0d08e0d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_crying_obsidian'}.png deleted file mode 100644 index a1dfbe65..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_dark_prismarine'}.png deleted file mode 100644 index 6ca90028..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_diorite'}.png deleted file mode 100644 index c181b709..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_dirt'}.png deleted file mode 100644 index 61493827..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_dripstone_block'}.png deleted file mode 100644 index e6c3a0cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_end_stone'}.png deleted file mode 100644 index ba3e8ddc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_gilded_blackstone'}.png deleted file mode 100644 index 51dcca9a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_granite'}.png deleted file mode 100644 index 0bfaafc6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_ice'}.png deleted file mode 100644 index 56788a20..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_lapis_block'}.png deleted file mode 100644 index d3062707..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_lodestone'}.png deleted file mode 100644 index 48520792..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_magma_block'}.png deleted file mode 100644 index b23b00d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_mossy_cobblestone'}.png deleted file mode 100644 index 8b2f22ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_mossy_stone_bricks'}.png deleted file mode 100644 index 88f8719e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_nether_bricks'}.png deleted file mode 100644 index 8be59be4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_netherrack'}.png deleted file mode 100644 index 4b130d76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_obsidian'}.png deleted file mode 100644 index c9efb5f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_packed_ice'}.png deleted file mode 100644 index 9d755e31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_prismarine'}.png deleted file mode 100644 index cbd61a3f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_purpur_block'}.png deleted file mode 100644 index 84b5198c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_quartz_block'}.png deleted file mode 100644 index f4f4c055..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_raw_copper_block'}.png deleted file mode 100644 index 4f1162d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_raw_gold_block'}.png deleted file mode 100644 index 65e5f68f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_raw_iron_block'}.png deleted file mode 100644 index 5852ef80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_red_nether_bricks'}.png deleted file mode 100644 index be63cc57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_red_sandstone'}.png deleted file mode 100644 index 25102fa8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_redstone_block'}.png deleted file mode 100644 index 111c405e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_sandstone'}.png deleted file mode 100644 index 7ca7f44c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_smooth_stone'}.png deleted file mode 100644 index 607e0a68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_snow_block'}.png deleted file mode 100644 index e889c958..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_stone'}.png deleted file mode 100644 index c82f6d78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_tuff'}.png deleted file mode 100644 index f1e2d37b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobbled_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_bricks'}.png deleted file mode 100644 index 94c88343..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_mini_tiles'}.png deleted file mode 100644 index b3d4c89c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_pillar'}.png deleted file mode 100644 index f0a5a2a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_pillar_top'}.png deleted file mode 100644 index 0b5aa148..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_scales'}.png deleted file mode 100644 index 7d17d024..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cobblestone_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__compact_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__compact_dried_kelp_block'}.png deleted file mode 100644 index c3cdeb8a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__compact_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_acacia_planks'}.png deleted file mode 100644 index 94443ef9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_bamboo_planks'}.png deleted file mode 100644 index 79e37489..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_birch_planks'}.png deleted file mode 100644 index c4423ebc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_black_wool'}.png deleted file mode 100644 index f178c2e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_blue_wool'}.png deleted file mode 100644 index 22bda420..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_brown_wool'}.png deleted file mode 100644 index 9128dfce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_cherry_planks'}.png deleted file mode 100644 index 225761b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_crimson_planks'}.png deleted file mode 100644 index ec68b6eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_cyan_wool'}.png deleted file mode 100644 index fe79f2be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_dark_oak_planks'}.png deleted file mode 100644 index c095f6ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_gray_wool'}.png deleted file mode 100644 index ad225447..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_green_wool'}.png deleted file mode 100644 index 78b297cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_jungle_planks'}.png deleted file mode 100644 index 36b8f197..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_light_blue_wool'}.png deleted file mode 100644 index 05704bbb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_light_gray_wool'}.png deleted file mode 100644 index f2ce1f4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_lime_wool'}.png deleted file mode 100644 index 0cd0ac7b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_magenta_wool'}.png deleted file mode 100644 index 6257a4b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_mangrove_planks'}.png deleted file mode 100644 index 3bd3c15d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_oak_planks'}.png deleted file mode 100644 index 82b19135..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_orange_wool'}.png deleted file mode 100644 index f9989122..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_pink_wool'}.png deleted file mode 100644 index 6584d3a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_purple_wool'}.png deleted file mode 100644 index a1192b74..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_red_wool'}.png deleted file mode 100644 index cb7b45d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_spruce_planks'}.png deleted file mode 100644 index 4c5a300c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_warped_planks'}.png deleted file mode 100644 index de9ad507..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_white_wool'}.png deleted file mode 100644 index b44027cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_yellow_wool'}.png deleted file mode 100644 index f734aeff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cornered_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_amethyst_block_bricks'}.png deleted file mode 100644 index a707730c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_ancient_debris_bricks'}.png deleted file mode 100644 index 0b5f3a1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_andesite_bricks'}.png deleted file mode 100644 index 72c4d973..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_basalt_bricks'}.png deleted file mode 100644 index 99c81c6f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_blue_ice_bricks'}.png deleted file mode 100644 index 2417be80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_bone_block'}.png deleted file mode 100644 index 450578f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_borderless_bricks_bricks'}.png deleted file mode 100644 index da73ac67..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_bricks_bricks'}.png deleted file mode 100644 index 39c9eaf5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_calcite_bricks'}.png deleted file mode 100644 index fbb767ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_clay_bricks'}.png deleted file mode 100644 index 24ce0963..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_coal_block_bricks'}.png deleted file mode 100644 index e611b53f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_cobblestone_bricks'}.png deleted file mode 100644 index 713d0560..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_crying_obsidian_bricks'}.png deleted file mode 100644 index 5f2b187d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_dark_prismarine_bricks'}.png deleted file mode 100644 index a20ffb70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_diorite_bricks'}.png deleted file mode 100644 index 020a80a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_dirt_bricks'}.png deleted file mode 100644 index fa57b731..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_amethyst_block_bricks'}.png deleted file mode 100644 index 65900e61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_ancient_debris_bricks'}.png deleted file mode 100644 index 69a74309..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_andesite_bricks'}.png deleted file mode 100644 index b5a4af9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_basalt_bricks'}.png deleted file mode 100644 index 83d3bb75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_blackstone_bricks'}.png deleted file mode 100644 index ddef8258..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_blue_ice_bricks'}.png deleted file mode 100644 index c203f9e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_borderless_bricks_bricks'}.png deleted file mode 100644 index fbb46933..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_bricks_bricks'}.png deleted file mode 100644 index bf8c5497..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_calcite_bricks'}.png deleted file mode 100644 index 2104a581..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_clay_bricks'}.png deleted file mode 100644 index 410e3517..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_coal_block_bricks'}.png deleted file mode 100644 index 9a28d975..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_cobblestone_bricks'}.png deleted file mode 100644 index 7cb63041..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_crying_obsidian_bricks'}.png deleted file mode 100644 index 8046d954..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_dark_prismarine_bricks'}.png deleted file mode 100644 index d9a7a574..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_deepslate_bricks'}.png deleted file mode 100644 index 08612b41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_diorite_bricks'}.png deleted file mode 100644 index 12a51215..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_dirt_bricks'}.png deleted file mode 100644 index f48c5352..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_dripstone_block_bricks'}.png deleted file mode 100644 index 9c4e0ff2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_end_stone_bricks'}.png deleted file mode 100644 index e5800c2b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_gilded_blackstone_bricks'}.png deleted file mode 100644 index dfe8d33b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_granite_bricks'}.png deleted file mode 100644 index 8bd80b94..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_ice_bricks'}.png deleted file mode 100644 index a0857f15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_lapis_block_bricks'}.png deleted file mode 100644 index 81820fc6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_lodestone_bricks'}.png deleted file mode 100644 index 157bfa2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_magma_block_bricks'}.png deleted file mode 100644 index 2131cc59..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_mossy_cobblestone_bricks'}.png deleted file mode 100644 index f60d6362..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index 80386c14..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_nether_bricks_bricks'}.png deleted file mode 100644 index b1656070..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_netherrack_bricks'}.png deleted file mode 100644 index 73064904..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_obsidian_bricks'}.png deleted file mode 100644 index 3e3187fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_packed_ice_bricks'}.png deleted file mode 100644 index 895930a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_prismarine_bricks'}.png deleted file mode 100644 index 3dedcbc6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_purpur_block_bricks'}.png deleted file mode 100644 index 1b4b311d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_quartz_block_bricks'}.png deleted file mode 100644 index ea33119e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_raw_copper_block_bricks'}.png deleted file mode 100644 index 4e8db863..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_raw_gold_block_bricks'}.png deleted file mode 100644 index 9f342b45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_raw_iron_block_bricks'}.png deleted file mode 100644 index 40cfc2be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_red_nether_bricks_bricks'}.png deleted file mode 100644 index e9b8cdcf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_red_sandstone_bricks'}.png deleted file mode 100644 index 166da743..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_redstone_block_bricks'}.png deleted file mode 100644 index f9fdc420..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_sandstone_bricks'}.png deleted file mode 100644 index 25440c77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_smooth_stone_bricks'}.png deleted file mode 100644 index d0a17203..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_snow_block_bricks'}.png deleted file mode 100644 index d203b515..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_stone_bricks'}.png deleted file mode 100644 index 33bc2c16..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_tuff_bricks'}.png deleted file mode 100644 index fa000c91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_disordered_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_dripstone_block_bricks'}.png deleted file mode 100644 index dfc10e15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_end_stone_bricks'}.png deleted file mode 100644 index cb0b8041..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_amethyst_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_amethyst_block_tiles'}.png deleted file mode 100644 index 85a75301..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_amethyst_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_ancient_debris_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_ancient_debris_tiles'}.png deleted file mode 100644 index 1c36a08b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_ancient_debris_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_andesite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_andesite_tiles'}.png deleted file mode 100644 index 1d203f70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_andesite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_basalt_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_basalt_tiles'}.png deleted file mode 100644 index 698ff6f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_basalt_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_blackstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_blackstone_tiles'}.png deleted file mode 100644 index 202c0b9f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_blackstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_blue_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_blue_ice_tiles'}.png deleted file mode 100644 index 35188e93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_blue_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_borderless_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_borderless_bricks_tiles'}.png deleted file mode 100644 index 59b58491..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_borderless_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_bricks_tiles'}.png deleted file mode 100644 index 41bea0f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_calcite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_calcite_tiles'}.png deleted file mode 100644 index e677e243..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_calcite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_clay_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_clay_tiles'}.png deleted file mode 100644 index 85309b58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_clay_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_coal_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_coal_block_tiles'}.png deleted file mode 100644 index f6aa51ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_coal_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_cobblestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_cobblestone_tiles'}.png deleted file mode 100644 index a9b7c0ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_cobblestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_crying_obsidian_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_crying_obsidian_tiles'}.png deleted file mode 100644 index 564bc0a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_crying_obsidian_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_dark_prismarine_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_dark_prismarine_tiles'}.png deleted file mode 100644 index 3d480241..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_dark_prismarine_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_diorite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_diorite_tiles'}.png deleted file mode 100644 index b4a6206d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_diorite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_dirt_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_dirt_tiles'}.png deleted file mode 100644 index 2bb3bf98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_dirt_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_dripstone_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_dripstone_block_tiles'}.png deleted file mode 100644 index c6f1fdfb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_dripstone_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_end_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_end_stone_tiles'}.png deleted file mode 100644 index aafc1447..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_end_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_gilded_blackstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_gilded_blackstone_tiles'}.png deleted file mode 100644 index e3f1e27a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_gilded_blackstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_granite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_granite_tiles'}.png deleted file mode 100644 index 16221005..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_granite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_ice_tiles'}.png deleted file mode 100644 index 63c8594e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_lapis_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_lapis_block_tiles'}.png deleted file mode 100644 index c95e080f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_lapis_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_lodestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_lodestone_tiles'}.png deleted file mode 100644 index 63724e7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_lodestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_magma_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_magma_block_tiles'}.png deleted file mode 100644 index f67530bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_magma_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_mossy_cobblestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_mossy_cobblestone_tiles'}.png deleted file mode 100644 index a5ce7f63..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_mossy_cobblestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_mossy_stone_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_mossy_stone_bricks_tiles'}.png deleted file mode 100644 index ecbffb29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_mossy_stone_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_nether_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_nether_bricks_tiles'}.png deleted file mode 100644 index a412f53c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_nether_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_netherrack_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_netherrack_tiles'}.png deleted file mode 100644 index 7e7afc25..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_netherrack_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_obsidian_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_obsidian_tiles'}.png deleted file mode 100644 index 0f16ef75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_obsidian_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_packed_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_packed_ice_tiles'}.png deleted file mode 100644 index 9caa63ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_packed_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_prismarine_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_prismarine_tiles'}.png deleted file mode 100644 index cc2d431f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_prismarine_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_purpur_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_purpur_block_tiles'}.png deleted file mode 100644 index 69c66eba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_purpur_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_quartz_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_quartz_block_tiles'}.png deleted file mode 100644 index bcb1a9f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_quartz_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_raw_copper_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_raw_copper_block_tiles'}.png deleted file mode 100644 index 45ba9b32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_raw_copper_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_raw_gold_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_raw_gold_block_tiles'}.png deleted file mode 100644 index 8215b8a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_raw_gold_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_raw_iron_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_raw_iron_block_tiles'}.png deleted file mode 100644 index dc3a837d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_raw_iron_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_red_nether_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_red_nether_bricks_tiles'}.png deleted file mode 100644 index f3778806..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_red_nether_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_red_sandstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_red_sandstone_tiles'}.png deleted file mode 100644 index f0290001..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_red_sandstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_redstone_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_redstone_block_tiles'}.png deleted file mode 100644 index 2ee08a37..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_redstone_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_sandstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_sandstone_tiles'}.png deleted file mode 100644 index d6133d1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_sandstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_smooth_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_smooth_stone_tiles'}.png deleted file mode 100644 index 60b54ff7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_smooth_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_snow_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_snow_block_tiles'}.png deleted file mode 100644 index 2c951c28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_snow_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_stone_tiles'}.png deleted file mode 100644 index aa92fa41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_tuff_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_tuff_tiles'}.png deleted file mode 100644 index 50437a61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_flat_tuff_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_gilded_blackstone_bricks'}.png deleted file mode 100644 index dffba6ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_glowstone'}.png deleted file mode 100644 index 25471b77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_granite_bricks'}.png deleted file mode 100644 index 66152b80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_ice_bricks'}.png deleted file mode 100644 index b6015600..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_lapis_block_bricks'}.png deleted file mode 100644 index 3b45f359..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_lodestone_bricks'}.png deleted file mode 100644 index 444ed12a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_magma_block_bricks'}.png deleted file mode 100644 index b860766a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mossy_cobblestone_bricks'}.png deleted file mode 100644 index 6ab760cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index 37343e7f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mud_bricks'}.png deleted file mode 100644 index 26b76254..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mud_bricks_bricks'}.png deleted file mode 100644 index b56e0e3f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_nether_bricks_bricks'}.png deleted file mode 100644 index 99d58e56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_netherrack_bricks'}.png deleted file mode 100644 index d799b8c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_obsidian_bricks'}.png deleted file mode 100644 index f4d6f129..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_packed_ice_bricks'}.png deleted file mode 100644 index f69ade50..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_packed_mud_bricks'}.png deleted file mode 100644 index 72bb9e15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_prismarine_bricks'}.png deleted file mode 100644 index a70f552e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_purpur_block_bricks'}.png deleted file mode 100644 index 978fcde5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_quartz_block_bricks'}.png deleted file mode 100644 index ddb71db0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_raw_copper_block_bricks'}.png deleted file mode 100644 index e1c563a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_raw_gold_block_bricks'}.png deleted file mode 100644 index 5ff8033e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_raw_iron_block_bricks'}.png deleted file mode 100644 index c6230bfb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_red_nether_bricks_bricks'}.png deleted file mode 100644 index 7b24e4b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_red_sandstone_bricks'}.png deleted file mode 100644 index 6827de78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_redstone_block_bricks'}.png deleted file mode 100644 index b1b687cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_sandstone_bricks'}.png deleted file mode 100644 index cbdfadf3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_sea_lantern'}.png deleted file mode 100644 index 500b5495..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_shroomlight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_shroomlight'}.png deleted file mode 100644 index 78b3235a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_shroomlight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_smooth_stone_bricks'}.png deleted file mode 100644 index 13fb4dc3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_snow_block_bricks'}.png deleted file mode 100644 index d864f540..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_tuff_bricks'}.png deleted file mode 100644 index b3f9011d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cracked_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_black_wool'}.png deleted file mode 100644 index 5a9b8017..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_blue_wool'}.png deleted file mode 100644 index a25aca07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_brown_wool'}.png deleted file mode 100644 index e42d2336..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_cyan_wool'}.png deleted file mode 100644 index e77379b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_gray_wool'}.png deleted file mode 100644 index fe12ac6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_green_wool'}.png deleted file mode 100644 index 5086c79b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_light_blue_wool'}.png deleted file mode 100644 index 1adcc133..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_light_gray_wool'}.png deleted file mode 100644 index af1a0c9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_lime_wool'}.png deleted file mode 100644 index eebd57fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_magenta_wool'}.png deleted file mode 100644 index 9bc34d61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_orange_wool'}.png deleted file mode 100644 index 1a38dbb8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_pink_wool'}.png deleted file mode 100644 index da812546..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_purple_wool'}.png deleted file mode 100644 index b1746b1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_red_wool'}.png deleted file mode 100644 index 0ee0e5fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_white_wool'}.png deleted file mode 100644 index 41af220c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_yellow_wool'}.png deleted file mode 100644 index 32e463b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crafted_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_acacia_planks'}.png deleted file mode 100644 index 57e672e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_bamboo_planks'}.png deleted file mode 100644 index 9a5a5844..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_birch_planks'}.png deleted file mode 100644 index 472e3c9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_cherry_planks'}.png deleted file mode 100644 index 1c56cdf5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_crimson_planks'}.png deleted file mode 100644 index 8b36f6a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_dark_oak_planks'}.png deleted file mode 100644 index f8a74f0d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_jungle_planks'}.png deleted file mode 100644 index 43fbd1ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_mangrove_planks'}.png deleted file mode 100644 index 8c66b69c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_oak_planks'}.png deleted file mode 100644 index 11402aa0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_spruce_planks'}.png deleted file mode 100644 index f886c8bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_warped_planks'}.png deleted file mode 100644 index f4668183..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crated_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_amethyst_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_amethyst_block_carving'}.png deleted file mode 100644 index c37ab214..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_amethyst_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_ancient_debris_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_ancient_debris_carving'}.png deleted file mode 100644 index 10bb8ecd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_ancient_debris_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_andesite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_andesite_carving'}.png deleted file mode 100644 index 9680ab33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_andesite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_basalt_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_basalt_carving'}.png deleted file mode 100644 index 1e81cb96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_basalt_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_black_concrete'}.png deleted file mode 100644 index 50cb4e1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_blackstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_blackstone_carving'}.png deleted file mode 100644 index 2b0bc5e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_blackstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_blue_concrete'}.png deleted file mode 100644 index 908c12d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_blue_ice_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_blue_ice_carving'}.png deleted file mode 100644 index daa18448..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_blue_ice_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_borderless_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_borderless_bricks_carving'}.png deleted file mode 100644 index 726ed500..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_borderless_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_bricks_carving'}.png deleted file mode 100644 index 9ccc59e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_brown_concrete'}.png deleted file mode 100644 index 057239df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_calcite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_calcite_carving'}.png deleted file mode 100644 index 8c9f19bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_calcite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_clay_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_clay_carving'}.png deleted file mode 100644 index 3bcdd1ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_clay_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_coal_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_coal_block_carving'}.png deleted file mode 100644 index 3911047b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_coal_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_cobblestone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_cobblestone_carving'}.png deleted file mode 100644 index c358390c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_cobblestone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_crying_obsidian_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_crying_obsidian_carving'}.png deleted file mode 100644 index cef10ba8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_crying_obsidian_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_cyan_concrete'}.png deleted file mode 100644 index 5ad77900..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_dark_prismarine_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_dark_prismarine_carving'}.png deleted file mode 100644 index f1f270cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_dark_prismarine_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_deepslate_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_deepslate_carving'}.png deleted file mode 100644 index 9ffca4c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_deepslate_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_diorite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_diorite_carving'}.png deleted file mode 100644 index bc249fb1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_diorite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_dirt_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_dirt_carving'}.png deleted file mode 100644 index ff248079..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_dirt_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_dripstone_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_dripstone_block_carving'}.png deleted file mode 100644 index ef0e3cf5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_dripstone_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_end_stone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_end_stone_carving'}.png deleted file mode 100644 index f3a5c595..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_end_stone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_gilded_blackstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_gilded_blackstone_carving'}.png deleted file mode 100644 index e342c843..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_gilded_blackstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_granite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_granite_carving'}.png deleted file mode 100644 index 00b2bb38..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_granite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_gray_concrete'}.png deleted file mode 100644 index eb61f744..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_green_concrete'}.png deleted file mode 100644 index 90d12116..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_ice_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_ice_carving'}.png deleted file mode 100644 index f422233f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_ice_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_lapis_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_lapis_block_carving'}.png deleted file mode 100644 index 636f03df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_lapis_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_light_blue_concrete'}.png deleted file mode 100644 index 3172c30f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_light_gray_concrete'}.png deleted file mode 100644 index d73ad127..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_lime_concrete'}.png deleted file mode 100644 index f732ef76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_lodestone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_lodestone_carving'}.png deleted file mode 100644 index 6d3f03af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_lodestone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_magenta_concrete'}.png deleted file mode 100644 index c957778d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_magma_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_magma_block_carving'}.png deleted file mode 100644 index c40810ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_magma_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mossy_cobblestone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mossy_cobblestone_carving'}.png deleted file mode 100644 index 99b0b3e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mossy_cobblestone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mossy_stone_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mossy_stone_bricks_carving'}.png deleted file mode 100644 index 22a2f2fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mossy_stone_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mud_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mud_bricks_carving'}.png deleted file mode 100644 index 9ea718ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mud_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mud_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mud_carving'}.png deleted file mode 100644 index 21d57016..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_mud_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_nether_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_nether_bricks_carving'}.png deleted file mode 100644 index bfa2c47a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_nether_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_netherrack_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_netherrack_carving'}.png deleted file mode 100644 index dd9dfda5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_netherrack_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_obsidian_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_obsidian_carving'}.png deleted file mode 100644 index fa3e025b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_obsidian_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_orange_concrete'}.png deleted file mode 100644 index ee471841..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_packed_ice_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_packed_ice_carving'}.png deleted file mode 100644 index 8002d577..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_packed_ice_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_packed_mud_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_packed_mud_carving'}.png deleted file mode 100644 index 3f4e29fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_packed_mud_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_pink_concrete'}.png deleted file mode 100644 index 46ecf25d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_prismarine_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_prismarine_carving'}.png deleted file mode 100644 index b37c441e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_prismarine_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_purple_concrete'}.png deleted file mode 100644 index 2d494d30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_purpur_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_purpur_block_carving'}.png deleted file mode 100644 index 0ce28d51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_purpur_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_quartz_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_quartz_block_carving'}.png deleted file mode 100644 index c1846cc3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_quartz_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_raw_copper_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_raw_copper_block_carving'}.png deleted file mode 100644 index b542c47a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_raw_copper_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_raw_gold_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_raw_gold_block_carving'}.png deleted file mode 100644 index aa688327..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_raw_gold_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_raw_iron_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_raw_iron_block_carving'}.png deleted file mode 100644 index 50972926..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_raw_iron_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_red_concrete'}.png deleted file mode 100644 index b7de97f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_red_nether_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_red_nether_bricks_carving'}.png deleted file mode 100644 index 005bb211..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_red_nether_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_red_sandstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_red_sandstone_carving'}.png deleted file mode 100644 index ca2902e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_red_sandstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_redstone_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_redstone_block_carving'}.png deleted file mode 100644 index fd4c60d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_redstone_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_sandstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_sandstone_carving'}.png deleted file mode 100644 index b0475d34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_sandstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_smooth_stone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_smooth_stone_carving'}.png deleted file mode 100644 index a7aea224..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_smooth_stone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_snow_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_snow_block_carving'}.png deleted file mode 100644 index ea01a63c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_snow_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_stone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_stone_carving'}.png deleted file mode 100644 index a57aaab8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_stone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_tuff_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_tuff_carving'}.png deleted file mode 100644 index 705bc58e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_tuff_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_white_concrete'}.png deleted file mode 100644 index 505b2b52..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_yellow_concrete'}.png deleted file mode 100644 index c14ed87b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creeper_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creepy_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creepy_carved_pumpkin'}.png deleted file mode 100644 index 91cba426..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creepy_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creepy_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creepy_jack_o_lantern'}.png deleted file mode 100644 index 91cba426..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__creepy_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_dried_kelp_block'}.png deleted file mode 100644 index f67e3926..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_mangrove_roots'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_mangrove_roots'}.png deleted file mode 100644 index 767438b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_mangrove_roots'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_planks_mosaic'}.png deleted file mode 100644 index 0353ce34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_planks_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_planks_panel'}.png deleted file mode 100644 index 1cd4db39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_planks_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_planks_shavings'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_planks_shavings'}.png deleted file mode 100644 index 1d9f75b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crimson_planks_shavings'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_black_wool'}.png deleted file mode 100644 index 3eaad187..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_blue_wool'}.png deleted file mode 100644 index b3baf687..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_brown_wool'}.png deleted file mode 100644 index 23a71309..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_cyan_wool'}.png deleted file mode 100644 index 1e71a403..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_gray_wool'}.png deleted file mode 100644 index 7aa7cb78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_green_wool'}.png deleted file mode 100644 index de88848a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_light_blue_wool'}.png deleted file mode 100644 index 5587f911..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_light_gray_wool'}.png deleted file mode 100644 index d710b13f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_lime_wool'}.png deleted file mode 100644 index 5b793666..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_magenta_wool'}.png deleted file mode 100644 index 28b681c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_orange_wool'}.png deleted file mode 100644 index f5757a7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_pink_wool'}.png deleted file mode 100644 index 21ff253a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_purple_wool'}.png deleted file mode 100644 index c839d013..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_red_wool'}.png deleted file mode 100644 index ee33fe0e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_white_wool'}.png deleted file mode 100644 index b21f28c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_yellow_wool'}.png deleted file mode 100644 index cc2c4829..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_haired_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_acacia_planks'}.png deleted file mode 100644 index 7d0fc71d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_bamboo_planks'}.png deleted file mode 100644 index 2421ec54..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_birch_planks'}.png deleted file mode 100644 index 0fd88e15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_cherry_planks'}.png deleted file mode 100644 index 075157b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_crimson_planks'}.png deleted file mode 100644 index b86c4948..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_dark_oak_planks'}.png deleted file mode 100644 index c6ed1a47..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_jungle_planks'}.png deleted file mode 100644 index 78731d19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_mangrove_planks'}.png deleted file mode 100644 index 0587d317..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_oak_planks'}.png deleted file mode 100644 index 321b7b31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_spruce_planks'}.png deleted file mode 100644 index 1e0b866f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_warped_planks'}.png deleted file mode 100644 index 49323e85..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cross_laced_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_acacia_planks'}.png deleted file mode 100644 index e46b0138..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_bamboo_planks'}.png deleted file mode 100644 index c58f1947..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_birch_planks'}.png deleted file mode 100644 index cb0dad44..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_black_terracotta'}.png deleted file mode 100644 index 9d63e1d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_blue_terracotta'}.png deleted file mode 100644 index cd2f3498..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_brown_terracotta'}.png deleted file mode 100644 index 862b4514..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_cherry_planks'}.png deleted file mode 100644 index 4bb2a7d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_crimson_planks'}.png deleted file mode 100644 index ff61b414..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_cyan_terracotta'}.png deleted file mode 100644 index f746da6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_dark_oak_planks'}.png deleted file mode 100644 index 05395f43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_gray_terracotta'}.png deleted file mode 100644 index 5b042763..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_green_terracotta'}.png deleted file mode 100644 index 35922095..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_jungle_planks'}.png deleted file mode 100644 index eb322448..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_light_blue_terracotta'}.png deleted file mode 100644 index d5e33f65..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_light_gray_terracotta'}.png deleted file mode 100644 index 95859aa0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_lime_terracotta'}.png deleted file mode 100644 index 44c33403..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_magenta_terracotta'}.png deleted file mode 100644 index 9e8f0a65..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_mangrove_planks'}.png deleted file mode 100644 index ff55e415..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_oak_planks'}.png deleted file mode 100644 index 03ae596e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_orange_terracotta'}.png deleted file mode 100644 index 8f2c8b9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_pink_terracotta'}.png deleted file mode 100644 index 87887847..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_purple_terracotta'}.png deleted file mode 100644 index 39f6b0c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_red_terracotta'}.png deleted file mode 100644 index 5a325834..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_spruce_planks'}.png deleted file mode 100644 index 7c71939c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_terracotta'}.png deleted file mode 100644 index c8426a3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_warped_planks'}.png deleted file mode 100644 index 82c19100..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_white_terracotta'}.png deleted file mode 100644 index 7dd9d92c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_yellow_terracotta'}.png deleted file mode 100644 index 71e720b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crossed_yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crumbled_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crumbled_nether_wart_block'}.png deleted file mode 100644 index bda32e96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crumbled_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crumbled_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crumbled_warped_wart_block'}.png deleted file mode 100644 index bd340546..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crumbled_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_bone_block'}.png deleted file mode 100644 index 88e3ffde..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_mud_bricks'}.png deleted file mode 100644 index 32cd3ab8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_mud_bricks_bricks'}.png deleted file mode 100644 index 765ecdd1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_packed_mud_bricks'}.png deleted file mode 100644 index e3e48053..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunched_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunchy_moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunchy_moss_block'}.png deleted file mode 100644 index d7e5dad6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crunchy_moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_amethyst_block'}.png deleted file mode 100644 index 415b0fb8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_ancient_debris'}.png deleted file mode 100644 index b3bec0ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_andesite'}.png deleted file mode 100644 index 74582656..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_basalt'}.png deleted file mode 100644 index 32042572..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_blackstone'}.png deleted file mode 100644 index 519c8667..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_blue_ice'}.png deleted file mode 100644 index 8ec80cc3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_borderless_bricks'}.png deleted file mode 100644 index 712ef940..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_bricks'}.png deleted file mode 100644 index c920975f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_calcite'}.png deleted file mode 100644 index 4777b94f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_clay'}.png deleted file mode 100644 index 83d842ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_coal_block'}.png deleted file mode 100644 index 93912d39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_cobblestone'}.png deleted file mode 100644 index 34a17abc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_crimson_stem'}.png deleted file mode 100644 index 173e8118..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_crying_obsidian'}.png deleted file mode 100644 index 7f0ce1ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_dark_prismarine'}.png deleted file mode 100644 index 7baf7a5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_deepslate'}.png deleted file mode 100644 index 3c0158b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_diorite'}.png deleted file mode 100644 index 9844c1c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_dirt'}.png deleted file mode 100644 index ddc17cb8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_dripstone_block'}.png deleted file mode 100644 index 1058164d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_end_stone'}.png deleted file mode 100644 index 41cdc399..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_gilded_blackstone'}.png deleted file mode 100644 index 1be709db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_granite'}.png deleted file mode 100644 index 9655ca88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_ice'}.png deleted file mode 100644 index 97e70b30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_lapis_block'}.png deleted file mode 100644 index 431a8af0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_lodestone'}.png deleted file mode 100644 index 588ebda5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_magma_block'}.png deleted file mode 100644 index 00d340fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mossy_cobblestone'}.png deleted file mode 100644 index 947bb98a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mossy_stone_bricks'}.png deleted file mode 100644 index 580bcd25..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mud'}.png deleted file mode 100644 index 71058736..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mud_bricks'}.png deleted file mode 100644 index d65bea31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_nether_bricks'}.png deleted file mode 100644 index 64626944..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_netherrack'}.png deleted file mode 100644 index 502974e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian'}.png deleted file mode 100644 index 9f6eee91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_bricks'}.png deleted file mode 100644 index 4c527282..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_mini_tiles'}.png deleted file mode 100644 index 1e718fa1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_pillar'}.png deleted file mode 100644 index 6eb214e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_pillar_top'}.png deleted file mode 100644 index 4b7a2318..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_scales'}.png deleted file mode 100644 index 4e76bb04..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_obsidian_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_packed_ice'}.png deleted file mode 100644 index daeb3d35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_packed_mud'}.png deleted file mode 100644 index 13ef7e75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_prismarine'}.png deleted file mode 100644 index 95a6a604..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_purpur_block'}.png deleted file mode 100644 index 439c1e3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_quartz_block'}.png deleted file mode 100644 index a427f7f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_raw_copper_block'}.png deleted file mode 100644 index ec15148e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_raw_gold_block'}.png deleted file mode 100644 index 905850df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_raw_iron_block'}.png deleted file mode 100644 index 3f3ebfe3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_red_nether_bricks'}.png deleted file mode 100644 index 14a55b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_red_sandstone'}.png deleted file mode 100644 index 8214d35a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_redstone_block'}.png deleted file mode 100644 index 47dabf74..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_sandstone'}.png deleted file mode 100644 index c3f1a0d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_smooth_stone'}.png deleted file mode 100644 index 62c23190..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_snow_block'}.png deleted file mode 100644 index a129db24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_stone'}.png deleted file mode 100644 index de76b870..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_tuff'}.png deleted file mode 100644 index 04a3d617..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__crying_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_black_wool'}.png deleted file mode 100644 index 988aceea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_blue_wool'}.png deleted file mode 100644 index da276150..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_brown_wool'}.png deleted file mode 100644 index 279df058..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_cyan_wool'}.png deleted file mode 100644 index b3112e1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_gray_wool'}.png deleted file mode 100644 index 994850c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_green_wool'}.png deleted file mode 100644 index 2e925053..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_light_blue_wool'}.png deleted file mode 100644 index e46216b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_light_gray_wool'}.png deleted file mode 100644 index 83a120ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_lime_wool'}.png deleted file mode 100644 index 08da3d86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_magenta_wool'}.png deleted file mode 100644 index 39da6f68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_bookshelf'}.png deleted file mode 100644 index d54e46bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_empty_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_empty_bookshelf'}.png deleted file mode 100644 index f416d41e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_empty_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_spaced_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_spaced_bookshelf'}.png deleted file mode 100644 index c9c3be8f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_spaced_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_webbed_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_webbed_bookshelf'}.png deleted file mode 100644 index 4c74e270..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_oak_webbed_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_orange_wool'}.png deleted file mode 100644 index 51e94b0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_pink_wool'}.png deleted file mode 100644 index c61b10bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_purple_wool'}.png deleted file mode 100644 index dc768291..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_red_wool'}.png deleted file mode 100644 index e7717b67..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_white_wool'}.png deleted file mode 100644 index f46071be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_yellow_wool'}.png deleted file mode 100644 index 0976cb71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cubed_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_black_terracotta'}.png deleted file mode 100644 index e1d1cb0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_blue_terracotta'}.png deleted file mode 100644 index a60bdb6e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_brown_terracotta'}.png deleted file mode 100644 index d1379a71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_cyan_terracotta'}.png deleted file mode 100644 index 52d0abc3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_gray_terracotta'}.png deleted file mode 100644 index 0533e031..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_green_terracotta'}.png deleted file mode 100644 index db8cc009..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_light_blue_terracotta'}.png deleted file mode 100644 index 83008536..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_light_gray_terracotta'}.png deleted file mode 100644 index 4bacaa5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_lime_terracotta'}.png deleted file mode 100644 index f9cf3501..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_magenta_terracotta'}.png deleted file mode 100644 index efb87e81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_orange_terracotta'}.png deleted file mode 100644 index d7374d6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_pink_terracotta'}.png deleted file mode 100644 index 4e8b9043..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_purple_terracotta'}.png deleted file mode 100644 index 0bf1d0fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_red_terracotta'}.png deleted file mode 100644 index ea9c2a1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_terracotta'}.png deleted file mode 100644 index d4124ef5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_white_terracotta'}.png deleted file mode 100644 index cd3370ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_yellow_terracotta'}.png deleted file mode 100644 index 2254f31e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curled_yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_amethyst_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_amethyst_block_pillar'}.png deleted file mode 100644 index feedb13f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_amethyst_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_ancient_debris_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_ancient_debris_pillar'}.png deleted file mode 100644 index 16f5d461..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_ancient_debris_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_andesite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_andesite_pillar'}.png deleted file mode 100644 index 9ab36075..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_andesite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_basalt_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_basalt_pillar'}.png deleted file mode 100644 index 0bc730bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_basalt_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_blackstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_blackstone_pillar'}.png deleted file mode 100644 index 78164e7a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_blackstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_blue_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_blue_ice_pillar'}.png deleted file mode 100644 index 024c79c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_blue_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_borderless_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_borderless_bricks_pillar'}.png deleted file mode 100644 index 2c8637f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_borderless_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_bricks_pillar'}.png deleted file mode 100644 index 43f67214..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_calcite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_calcite_pillar'}.png deleted file mode 100644 index 8443e08b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_calcite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_clay_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_clay_pillar'}.png deleted file mode 100644 index a2764b30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_clay_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_coal_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_coal_block_pillar'}.png deleted file mode 100644 index ae835ce6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_coal_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_cobblestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_cobblestone_pillar'}.png deleted file mode 100644 index a5a05f9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_cobblestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_crying_obsidian_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_crying_obsidian_pillar'}.png deleted file mode 100644 index 9740a4bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_crying_obsidian_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_dark_prismarine_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_dark_prismarine_pillar'}.png deleted file mode 100644 index 1f5d7df0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_dark_prismarine_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_deepslate_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_deepslate_pillar'}.png deleted file mode 100644 index 22ab0f62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_deepslate_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_diorite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_diorite_pillar'}.png deleted file mode 100644 index a9471657..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_diorite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_dirt_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_dirt_pillar'}.png deleted file mode 100644 index 6e6d8cab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_dirt_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_dripstone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_dripstone_block_pillar'}.png deleted file mode 100644 index 0665fa79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_dripstone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_end_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_end_stone_pillar'}.png deleted file mode 100644 index a5908cad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_end_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_gilded_blackstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_gilded_blackstone_pillar'}.png deleted file mode 100644 index 33512526..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_gilded_blackstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_granite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_granite_pillar'}.png deleted file mode 100644 index 10dfb5b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_granite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_ice_pillar'}.png deleted file mode 100644 index a7b46ef7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_lapis_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_lapis_block_pillar'}.png deleted file mode 100644 index 3e50c68d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_lapis_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_lodestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_lodestone_pillar'}.png deleted file mode 100644 index 25711eb4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_lodestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_magma_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_magma_block_pillar'}.png deleted file mode 100644 index 5b631249..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_magma_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mossy_cobblestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mossy_cobblestone_pillar'}.png deleted file mode 100644 index 161e194e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mossy_cobblestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mossy_stone_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mossy_stone_bricks_pillar'}.png deleted file mode 100644 index fbde7dcf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mossy_stone_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mud_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mud_bricks_pillar'}.png deleted file mode 100644 index 914a7a0b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mud_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mud_pillar'}.png deleted file mode 100644 index 6d8ee26a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_nether_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_nether_bricks_pillar'}.png deleted file mode 100644 index e54a5066..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_nether_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_netherrack_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_netherrack_pillar'}.png deleted file mode 100644 index 3daab01b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_netherrack_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_obsidian_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_obsidian_pillar'}.png deleted file mode 100644 index 6072c060..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_obsidian_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_packed_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_packed_ice_pillar'}.png deleted file mode 100644 index 2e2295c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_packed_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_packed_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_packed_mud_pillar'}.png deleted file mode 100644 index 1440aca0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_packed_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_prismarine_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_prismarine_pillar'}.png deleted file mode 100644 index f35dd267..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_prismarine_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_purpur_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_purpur_block_pillar'}.png deleted file mode 100644 index e050e391..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_purpur_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_quartz_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_quartz_block_pillar'}.png deleted file mode 100644 index 3e6e2a83..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_quartz_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_raw_copper_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_raw_copper_block_pillar'}.png deleted file mode 100644 index c880a3a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_raw_copper_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_raw_gold_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_raw_gold_block_pillar'}.png deleted file mode 100644 index 1a253632..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_raw_gold_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_raw_iron_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_raw_iron_block_pillar'}.png deleted file mode 100644 index 7e90069a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_raw_iron_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_red_nether_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_red_nether_bricks_pillar'}.png deleted file mode 100644 index 15347371..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_red_nether_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_red_sandstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_red_sandstone_pillar'}.png deleted file mode 100644 index 51b57811..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_red_sandstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_redstone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_redstone_block_pillar'}.png deleted file mode 100644 index 787108ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_redstone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_sandstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_sandstone_pillar'}.png deleted file mode 100644 index a18ad076..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_sandstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_smooth_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_smooth_stone_pillar'}.png deleted file mode 100644 index bc6f0e86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_smooth_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_snow_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_snow_block_pillar'}.png deleted file mode 100644 index 4536edfd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_snow_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_stone_pillar'}.png deleted file mode 100644 index 34f14fdc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_tuff_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_tuff_pillar'}.png deleted file mode 100644 index 69c763a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curly_tuff_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curvy_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curvy_bookshelf'}.png deleted file mode 100644 index a192cb8e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__curvy_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_amethyst_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_amethyst_block_column'}.png deleted file mode 100644 index bce5f91f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_amethyst_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_ancient_debris_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_ancient_debris_column'}.png deleted file mode 100644 index 60a70895..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_ancient_debris_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_andesite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_andesite_column'}.png deleted file mode 100644 index dbe4f82b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_andesite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_basalt_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_basalt_column'}.png deleted file mode 100644 index c26ab870..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_basalt_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_black_terracotta'}.png deleted file mode 100644 index e4c5f48f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blackstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blackstone_column'}.png deleted file mode 100644 index 100ad552..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blackstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_amethyst_block'}.png deleted file mode 100644 index a6527529..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_ancient_debris'}.png deleted file mode 100644 index 0787cce7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_andesite'}.png deleted file mode 100644 index 00dbee06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_basalt'}.png deleted file mode 100644 index 399b9b3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_blackstone'}.png deleted file mode 100644 index ad81ea06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_blue_ice'}.png deleted file mode 100644 index 0c93b4ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_borderless_bricks'}.png deleted file mode 100644 index 3adef270..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_bricks'}.png deleted file mode 100644 index 8cb9f2f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_calcite'}.png deleted file mode 100644 index 1778b4e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_clay'}.png deleted file mode 100644 index bc50bc16..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_coal_block'}.png deleted file mode 100644 index 9a347fc9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_cobblestone'}.png deleted file mode 100644 index b197b055..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_crying_obsidian'}.png deleted file mode 100644 index 1790fc5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_dark_prismarine'}.png deleted file mode 100644 index cf0949f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_deepslate'}.png deleted file mode 100644 index fcd0acf9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_diorite'}.png deleted file mode 100644 index f353e021..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_dirt'}.png deleted file mode 100644 index dd467601..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_dripstone_block'}.png deleted file mode 100644 index 208625b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_end_stone'}.png deleted file mode 100644 index 8326da00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_gilded_blackstone'}.png deleted file mode 100644 index 94e45725..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_granite'}.png deleted file mode 100644 index 6054738d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_ice'}.png deleted file mode 100644 index 331a205f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_lapis_block'}.png deleted file mode 100644 index 69a7e8c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_lodestone'}.png deleted file mode 100644 index 3f6bc109..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_magma_block'}.png deleted file mode 100644 index a630a0c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mossy_cobblestone'}.png deleted file mode 100644 index a889a651..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mossy_stone_bricks'}.png deleted file mode 100644 index f210b7cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mud'}.png deleted file mode 100644 index 9d1f8c3a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mud_bricks'}.png deleted file mode 100644 index 2fd1e69e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_nether_bricks'}.png deleted file mode 100644 index 53f52b8e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_netherrack'}.png deleted file mode 100644 index 28ca3ef6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_obsidian'}.png deleted file mode 100644 index 33865ab0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_packed_ice'}.png deleted file mode 100644 index 91b76334..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_packed_mud'}.png deleted file mode 100644 index c036b71e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_prismarine'}.png deleted file mode 100644 index e98e9fae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_purpur_block'}.png deleted file mode 100644 index 002791e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_quartz_block'}.png deleted file mode 100644 index d2e58642..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_raw_copper_block'}.png deleted file mode 100644 index f8c88e88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_raw_gold_block'}.png deleted file mode 100644 index 26a7f99a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_raw_iron_block'}.png deleted file mode 100644 index 0ea58de5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_red_nether_bricks'}.png deleted file mode 100644 index b61a4dc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_red_sandstone'}.png deleted file mode 100644 index 94add455..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_redstone_block'}.png deleted file mode 100644 index e0bf7589..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_sandstone'}.png deleted file mode 100644 index 510ea923..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_smooth_stone'}.png deleted file mode 100644 index e16ee8c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_snow_block'}.png deleted file mode 100644 index c53652ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_stone'}.png deleted file mode 100644 index 23d90940..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_tuff'}.png deleted file mode 100644 index b3aab0c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blank_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blue_ice_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blue_ice_column'}.png deleted file mode 100644 index ce7dbb02..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blue_ice_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blue_terracotta'}.png deleted file mode 100644 index 53fddced..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_borderless_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_borderless_bricks_column'}.png deleted file mode 100644 index 113a6a6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_borderless_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_bricks_column'}.png deleted file mode 100644 index 12ce366f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_brown_terracotta'}.png deleted file mode 100644 index 26c30801..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_calcite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_calcite_column'}.png deleted file mode 100644 index 4cad7b56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_calcite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_clay_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_clay_column'}.png deleted file mode 100644 index 84a87db2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_clay_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_coal_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_coal_block_column'}.png deleted file mode 100644 index 5ddc5c29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_coal_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_cobblestone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_cobblestone_column'}.png deleted file mode 100644 index ca7c5cc1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_cobblestone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_crying_obsidian_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_crying_obsidian_column'}.png deleted file mode 100644 index 352d408a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_crying_obsidian_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_cyan_terracotta'}.png deleted file mode 100644 index defbed33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_dark_prismarine_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_dark_prismarine_column'}.png deleted file mode 100644 index 968aa28d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_dark_prismarine_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_deepslate_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_deepslate_column'}.png deleted file mode 100644 index 76b2e451..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_deepslate_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_diorite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_diorite_column'}.png deleted file mode 100644 index 199e226e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_diorite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_dirt_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_dirt_column'}.png deleted file mode 100644 index f37528c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_dirt_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_dripstone_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_dripstone_block_column'}.png deleted file mode 100644 index 3ded05ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_dripstone_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_end_stone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_end_stone_column'}.png deleted file mode 100644 index df951dc1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_end_stone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_gilded_blackstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_gilded_blackstone_column'}.png deleted file mode 100644 index ecbc94c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_gilded_blackstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_granite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_granite_column'}.png deleted file mode 100644 index af6bd77e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_granite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_gray_terracotta'}.png deleted file mode 100644 index b1845b77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_green_terracotta'}.png deleted file mode 100644 index b8c0f419..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_ice_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_ice_column'}.png deleted file mode 100644 index ba2e6990..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_ice_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_lapis_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_lapis_block_column'}.png deleted file mode 100644 index d5fe4385..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_lapis_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_light_blue_terracotta'}.png deleted file mode 100644 index 7efd1925..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_light_gray_terracotta'}.png deleted file mode 100644 index 035d921e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_lime_terracotta'}.png deleted file mode 100644 index 12cf004f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_lodestone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_lodestone_column'}.png deleted file mode 100644 index daa50360..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_lodestone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_magenta_terracotta'}.png deleted file mode 100644 index 44ea2887..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_magma_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_magma_block_column'}.png deleted file mode 100644 index 2f049ef4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_magma_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_mangrove_planks'}.png deleted file mode 100644 index 3bd3c15d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_mossy_cobblestone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_mossy_cobblestone_column'}.png deleted file mode 100644 index aa944474..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_mossy_cobblestone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_mossy_stone_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_mossy_stone_bricks_column'}.png deleted file mode 100644 index e8238dd2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_mossy_stone_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_nether_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_nether_bricks_column'}.png deleted file mode 100644 index 3f66e6e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_nether_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_netherrack_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_netherrack_column'}.png deleted file mode 100644 index 6168bf6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_netherrack_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_obsidian_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_obsidian_column'}.png deleted file mode 100644 index a01278d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_obsidian_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_orange_terracotta'}.png deleted file mode 100644 index d17479ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_packed_ice_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_packed_ice_column'}.png deleted file mode 100644 index d452af2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_packed_ice_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_pink_terracotta'}.png deleted file mode 100644 index 08ae864c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_prismarine_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_prismarine_column'}.png deleted file mode 100644 index 55296fde..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_prismarine_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_purple_terracotta'}.png deleted file mode 100644 index eb798fa3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_purpur_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_purpur_block_column'}.png deleted file mode 100644 index eb4c1b10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_purpur_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_quartz_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_quartz_block_column'}.png deleted file mode 100644 index c6f1123c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_quartz_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_raw_copper_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_raw_copper_block_column'}.png deleted file mode 100644 index ff4c550a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_raw_copper_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_raw_gold_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_raw_gold_block_column'}.png deleted file mode 100644 index b27fcbdc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_raw_gold_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_raw_iron_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_raw_iron_block_column'}.png deleted file mode 100644 index 3232b66b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_raw_iron_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_red_nether_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_red_nether_bricks_column'}.png deleted file mode 100644 index 77cca079..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_red_nether_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_red_sandstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_red_sandstone_column'}.png deleted file mode 100644 index e00ac75e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_red_sandstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_red_terracotta'}.png deleted file mode 100644 index 41b991b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_redstone_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_redstone_block_column'}.png deleted file mode 100644 index ec95ebd2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_redstone_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_sandstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_sandstone_column'}.png deleted file mode 100644 index 682aed7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_sandstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_smooth_stone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_smooth_stone_column'}.png deleted file mode 100644 index ae549fed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_smooth_stone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_snow_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_snow_block_column'}.png deleted file mode 100644 index 4c44b0e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_snow_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_stone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_stone_column'}.png deleted file mode 100644 index 0ab067eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_stone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_terracotta'}.png deleted file mode 100644 index aa71a0f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_tuff_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_tuff_column'}.png deleted file mode 100644 index 34e3b1fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_tuff_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_white_terracotta'}.png deleted file mode 100644 index b775a0d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_yellow_terracotta'}.png deleted file mode 100644 index 8c57fcd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cut_yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_bricks'}.png deleted file mode 100644 index 7d3b6b03..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_panel'}.png deleted file mode 100644 index 4f25ceb3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_pillar'}.png deleted file mode 100644 index bdd303dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_tiles'}.png deleted file mode 100644 index 9ae0166e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 9dd3fe6b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index 2f14a7bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index e09194a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_tiles'}.png deleted file mode 100644 index 005efa0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_bricks'}.png deleted file mode 100644 index f09c84db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_column'}.png deleted file mode 100644 index 48a159ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_pillar'}.png deleted file mode 100644 index 01e7bbc4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_tile'}.png deleted file mode 100644 index 53947b2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_tiles'}.png deleted file mode 100644 index 5d8539f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__cyan_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_acacia_log'}.png deleted file mode 100644 index b2be7292..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_birch_log'}.png deleted file mode 100644 index 89252c3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_cherry_log'}.png deleted file mode 100644 index 32a3a6e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_crimson_stem'}.png deleted file mode 100644 index defb3c99..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_dark_oak_log'}.png deleted file mode 100644 index e74845ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_jungle_log'}.png deleted file mode 100644 index a1a15794..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_mangrove_log'}.png deleted file mode 100644 index 7610e9f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_oak_log'}.png deleted file mode 100644 index ca255640..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_spruce_log'}.png deleted file mode 100644 index 5bb30579..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_warped_stem'}.png deleted file mode 100644 index c1643e84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__d_sign_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_acacia_log'}.png deleted file mode 100644 index 00ebbabf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_birch_log'}.png deleted file mode 100644 index c3cc2711..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_cherry_log'}.png deleted file mode 100644 index 092a6d02..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_crimson_stem'}.png deleted file mode 100644 index c863b6be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_dark_oak_log'}.png deleted file mode 100644 index 46ab16a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_jungle_log'}.png deleted file mode 100644 index f6496024..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_mangrove_log'}.png deleted file mode 100644 index 570520e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_oak_log'}.png deleted file mode 100644 index f132fed8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_spruce_log'}.png deleted file mode 100644 index 76484408..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_warped_stem'}.png deleted file mode 100644 index 6de6570c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__damaged_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_bone_block'}.png deleted file mode 100644 index 514f8d50..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_dotted_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_dotted_red_mushroom_block'}.png deleted file mode 100644 index fcc0b5e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_dotted_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_dusted_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_dusted_brown_mushroom_block'}.png deleted file mode 100644 index 3992d396..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_dusted_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_dusted_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_dusted_red_mushroom_block'}.png deleted file mode 100644 index cacd7119..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_dusted_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_freckled_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_freckled_brown_mushroom_block'}.png deleted file mode 100644 index ac99f8bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_freckled_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_freckled_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_freckled_red_mushroom_block'}.png deleted file mode 100644 index e7228ffc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_freckled_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_melon'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_melon'}.png deleted file mode 100644 index 7fe12355..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_melon'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_oak_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_oak_planks_mosaic'}.png deleted file mode 100644 index fd49f6e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_oak_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_oak_planks_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_oak_planks_panel'}.png deleted file mode 100644 index 234509b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_oak_planks_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_oak_planks_shavings'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_oak_planks_shavings'}.png deleted file mode 100644 index 36cfa2d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_oak_planks_shavings'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_bricks'}.png deleted file mode 100644 index 4545ae54..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_pillar'}.png deleted file mode 100644 index 384a14ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_pillar_top'}.png deleted file mode 100644 index dba6520d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_scales'}.png deleted file mode 100644 index 8a5b863b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_prismarine_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_scaled_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_scaled_brown_mushroom_block'}.png deleted file mode 100644 index 1ecc3540..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_scaled_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_smooth_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_smooth_brown_mushroom_block'}.png deleted file mode 100644 index 7e5f98d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_smooth_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_smooth_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_smooth_red_mushroom_block'}.png deleted file mode 100644 index 15ed2f96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_smooth_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_spotted_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_spotted_brown_mushroom_block'}.png deleted file mode 100644 index ba0b475c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_spotted_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_spotted_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_spotted_red_mushroom_block'}.png deleted file mode 100644 index c0ea8f03..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_spotted_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_sprinkled_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_sprinkled_brown_mushroom_block'}.png deleted file mode 100644 index 3e3e9e4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dark_sprinkled_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_acacia_leaves'}.png deleted file mode 100644 index ca432e9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_birch_leaves'}.png deleted file mode 100644 index f871ccef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_dark_oak_leaves'}.png deleted file mode 100644 index 063d1f72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_jungle_leaves'}.png deleted file mode 100644 index 850f4818..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_oak_leaves'}.png deleted file mode 100644 index 063d1f72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_spruce_leaves'}.png deleted file mode 100644 index 99a3961f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dead_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_black_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_black_glazed_terracotta'}.png deleted file mode 100644 index ee345fad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_black_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_black_terracotta'}.png deleted file mode 100644 index 0427081c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_blue_glazed_terracotta'}.png deleted file mode 100644 index 1b80af0b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_blue_terracotta'}.png deleted file mode 100644 index 481955c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_brown_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_brown_glazed_terracotta'}.png deleted file mode 100644 index f2ed6059..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_brown_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_brown_terracotta'}.png deleted file mode 100644 index cabe5de3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_cyan_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_cyan_glazed_terracotta'}.png deleted file mode 100644 index 87e18719..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_cyan_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_cyan_terracotta'}.png deleted file mode 100644 index 7b78e248..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_gray_glazed_terracotta'}.png deleted file mode 100644 index 541784e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_gray_terracotta'}.png deleted file mode 100644 index bb7c1bee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_green_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_green_glazed_terracotta'}.png deleted file mode 100644 index 06504548..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_green_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_green_terracotta'}.png deleted file mode 100644 index 4599509a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_blue_glazed_terracotta'}.png deleted file mode 100644 index b1244fc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_blue_terracotta'}.png deleted file mode 100644 index c306bdff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_gray_glazed_terracotta'}.png deleted file mode 100644 index 73c542d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_gray_terracotta'}.png deleted file mode 100644 index e46c2f7a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_lime_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_lime_glazed_terracotta'}.png deleted file mode 100644 index d08cdce2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_lime_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_lime_terracotta'}.png deleted file mode 100644 index 0eb9e70d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_magenta_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_magenta_glazed_terracotta'}.png deleted file mode 100644 index 839e5e2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_magenta_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_magenta_terracotta'}.png deleted file mode 100644 index 28aacae2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_orange_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_orange_glazed_terracotta'}.png deleted file mode 100644 index b6f178c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_orange_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_orange_terracotta'}.png deleted file mode 100644 index f90202b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_pink_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_pink_glazed_terracotta'}.png deleted file mode 100644 index 21ea03e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_pink_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_pink_terracotta'}.png deleted file mode 100644 index ee8123a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_purple_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_purple_glazed_terracotta'}.png deleted file mode 100644 index f13650bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_purple_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_purple_terracotta'}.png deleted file mode 100644 index fe4f591d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_red_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_red_glazed_terracotta'}.png deleted file mode 100644 index f0fdeb9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_red_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_red_terracotta'}.png deleted file mode 100644 index 3b92b88e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_terracotta'}.png deleted file mode 100644 index 3b4980a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_white_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_white_glazed_terracotta'}.png deleted file mode 100644 index f8bf3d17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_white_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_white_terracotta'}.png deleted file mode 100644 index a0490262..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_yellow_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_yellow_glazed_terracotta'}.png deleted file mode 100644 index 8b1f5557..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_yellow_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_yellow_terracotta'}.png deleted file mode 100644 index 550a4cc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__decorated_yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_mini_tiles'}.png deleted file mode 100644 index 789b318f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_pillar'}.png deleted file mode 100644 index 2d35880e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_pillar_top'}.png deleted file mode 100644 index 629305f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_scales'}.png deleted file mode 100644 index 63b39347..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__deepslate_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__desert_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__desert_sand'}.png deleted file mode 100644 index 93934c61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__desert_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_acacia_planks'}.png deleted file mode 100644 index 17716f71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_bamboo_planks'}.png deleted file mode 100644 index f89280b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_birch_planks'}.png deleted file mode 100644 index 1fdbeb1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_cherry_planks'}.png deleted file mode 100644 index ad07f3c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_crimson_planks'}.png deleted file mode 100644 index 13efd16f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_dark_oak_planks'}.png deleted file mode 100644 index 95585ecc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_hay_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_hay_block'}.png deleted file mode 100644 index 5ce430da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_hay_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_jungle_planks'}.png deleted file mode 100644 index 7d3959a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_mangrove_planks'}.png deleted file mode 100644 index b343b48b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_oak_planks'}.png deleted file mode 100644 index c52db846..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_spruce_planks'}.png deleted file mode 100644 index d0e6d88d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_warped_planks'}.png deleted file mode 100644 index 55b623f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__detailed_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__devious_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__devious_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__devious_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__devious_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__devious_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__devious_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dewkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dewkin'}.png deleted file mode 100644 index 05e5660b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dewkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_acacia_planks'}.png deleted file mode 100644 index 8dad8b00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_bamboo_planks'}.png deleted file mode 100644 index 488cf512..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_birch_planks'}.png deleted file mode 100644 index da5d5b33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_cherry_planks'}.png deleted file mode 100644 index e7339608..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_crimson_planks'}.png deleted file mode 100644 index de602424..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_dark_oak_planks'}.png deleted file mode 100644 index 4ef0d3f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_jungle_planks'}.png deleted file mode 100644 index 5da23171..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_mangrove_planks'}.png deleted file mode 100644 index 0ceedeb8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_oak_planks'}.png deleted file mode 100644 index a12d71cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_spruce_planks'}.png deleted file mode 100644 index 814d23f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_warped_planks'}.png deleted file mode 100644 index 024166f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diagonal_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_acacia_planks'}.png deleted file mode 100644 index 2e3c6bbb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_bamboo_planks'}.png deleted file mode 100644 index 8e430da4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_birch_planks'}.png deleted file mode 100644 index ca679e1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_block_panels'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_block_panels'}.png deleted file mode 100644 index e958173f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_block_panels'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_cherry_planks'}.png deleted file mode 100644 index f1e3c6df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_crimson_planks'}.png deleted file mode 100644 index b7a14fe9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_dark_oak_planks'}.png deleted file mode 100644 index 97514340..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_jungle_planks'}.png deleted file mode 100644 index 4bb137e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_lodestone'}.png deleted file mode 100644 index 0bddf5d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_mangrove_planks'}.png deleted file mode 100644 index 573f29fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_mud_bricks'}.png deleted file mode 100644 index 0707f81e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_mud_bricks_bricks'}.png deleted file mode 100644 index 2462a94b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_oak_planks'}.png deleted file mode 100644 index 7052da5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_packed_mud_bricks'}.png deleted file mode 100644 index a9c16752..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_spruce_planks'}.png deleted file mode 100644 index fa49255c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_warped_planks'}.png deleted file mode 100644 index 5846d3c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diamond_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_bricks'}.png deleted file mode 100644 index 27f42ae8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_mini_tiles'}.png deleted file mode 100644 index 52481786..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_pillar'}.png deleted file mode 100644 index 304dca3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_pillar_top'}.png deleted file mode 100644 index c51cccdb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_scales'}.png deleted file mode 100644 index 640e32ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__diorite_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_bricks'}.png deleted file mode 100644 index fa6098ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_mini_tiles'}.png deleted file mode 100644 index 3dc91c06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_pillar'}.png deleted file mode 100644 index 5da82881..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_pillar_top'}.png deleted file mode 100644 index 54f3ad86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_scales'}.png deleted file mode 100644 index 1956d0c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirt_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_dewkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_dewkin'}.png deleted file mode 100644 index fe246df1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_dewkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_goldkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_goldkin'}.png deleted file mode 100644 index 39074527..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_goldkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_gravel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_gravel'}.png deleted file mode 100644 index 9c25bb2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_gravel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_rosekin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_rosekin'}.png deleted file mode 100644 index 5e2eb921..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dirty_rosekin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dot_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dot_lodestone'}.png deleted file mode 100644 index 9f3df937..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dot_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dotted_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dotted_red_mushroom_block'}.png deleted file mode 100644 index 02a217dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dotted_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_acacia_planks'}.png deleted file mode 100644 index 808dba71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_bamboo_planks'}.png deleted file mode 100644 index d0bbbdbd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_birch_planks'}.png deleted file mode 100644 index f60e7ba5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_cherry_planks'}.png deleted file mode 100644 index 7f4a4081..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_crimson_planks'}.png deleted file mode 100644 index 7a6a356d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_dark_oak_planks'}.png deleted file mode 100644 index 6a992568..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_jungle_planks'}.png deleted file mode 100644 index c0011689..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_mangrove_planks'}.png deleted file mode 100644 index a3d97e89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_oak_planks'}.png deleted file mode 100644 index e625a7f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_spruce_planks'}.png deleted file mode 100644 index a7d9612e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_warped_planks'}.png deleted file mode 100644 index 6cd577ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_herringbone_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_inlayed_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_inlayed_glowstone'}.png deleted file mode 100644 index 6bccb449..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_inlayed_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_inlayed_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_inlayed_sea_lantern'}.png deleted file mode 100644 index 2b9f84a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_inlayed_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_inlayed_shroomlight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_inlayed_shroomlight'}.png deleted file mode 100644 index c1b04d79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_inlayed_shroomlight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_mud_bricks'}.png deleted file mode 100644 index feed3325..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_mud_bricks_bricks'}.png deleted file mode 100644 index 36163097..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_packed_mud_bricks'}.png deleted file mode 100644 index 68b26ccf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_roped_bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_roped_bone_block'}.png deleted file mode 100644 index 3b78cb22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__double_roped_bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dried_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dried_nether_wart_block'}.png deleted file mode 100644 index 0ab659df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dried_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dried_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dried_warped_wart_block'}.png deleted file mode 100644 index 5c0ecff9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dried_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_bricks'}.png deleted file mode 100644 index 1e894c83..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_mini_tiles'}.png deleted file mode 100644 index dca2fdaa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_pillar'}.png deleted file mode 100644 index 0886ef2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_pillar_top'}.png deleted file mode 100644 index 650ea89d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_scales'}.png deleted file mode 100644 index 76625ec8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dripstone_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_amethyst_block'}.png deleted file mode 100644 index f72aa01c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_ancient_debris'}.png deleted file mode 100644 index 38a637b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_andesite'}.png deleted file mode 100644 index 80504e07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_basalt'}.png deleted file mode 100644 index f3a2303e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_blackstone'}.png deleted file mode 100644 index ac64ecb3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_blue_ice'}.png deleted file mode 100644 index b6188e72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_borderless_bricks'}.png deleted file mode 100644 index b73ae1f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_bricks'}.png deleted file mode 100644 index c9bb3670..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_calcite'}.png deleted file mode 100644 index 764f988c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_clay'}.png deleted file mode 100644 index 440bff84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_coal_block'}.png deleted file mode 100644 index 6c04a108..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_cobblestone'}.png deleted file mode 100644 index 8d5745b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_crying_obsidian'}.png deleted file mode 100644 index bcefdaa8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_dark_prismarine'}.png deleted file mode 100644 index f504a7b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_deepslate'}.png deleted file mode 100644 index 87110d03..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_diorite'}.png deleted file mode 100644 index f271b3bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_dirt'}.png deleted file mode 100644 index ad18fa84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_dripstone_block'}.png deleted file mode 100644 index 5184d809..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_end_stone'}.png deleted file mode 100644 index 2b4703c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_gilded_blackstone'}.png deleted file mode 100644 index c5e32b0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_granite'}.png deleted file mode 100644 index f8115fa7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_ice'}.png deleted file mode 100644 index 59023c9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_lapis_block'}.png deleted file mode 100644 index 6eaebb60..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_lodestone'}.png deleted file mode 100644 index cd652c46..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_magma_block'}.png deleted file mode 100644 index 40a8c316..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mossy_cobblestone'}.png deleted file mode 100644 index 82aaa237..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mossy_stone_bricks'}.png deleted file mode 100644 index 023c7fe6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mud'}.png deleted file mode 100644 index 8b02403c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mud_bricks'}.png deleted file mode 100644 index ca52dda3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_nether_bricks'}.png deleted file mode 100644 index 9c4ebedd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_netherrack'}.png deleted file mode 100644 index 9959a69b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_obsidian'}.png deleted file mode 100644 index 5f2923d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_packed_ice'}.png deleted file mode 100644 index d957c0b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_packed_mud'}.png deleted file mode 100644 index dcbc2e6f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_prismarine'}.png deleted file mode 100644 index 7e83da42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_purpur_block'}.png deleted file mode 100644 index 0bc13e71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_quartz_block'}.png deleted file mode 100644 index e8bf2632..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_raw_copper_block'}.png deleted file mode 100644 index 1ba6d12f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_raw_gold_block'}.png deleted file mode 100644 index 3497b809..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_raw_iron_block'}.png deleted file mode 100644 index 5822f2dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_red_nether_bricks'}.png deleted file mode 100644 index 9201ce51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_red_sandstone'}.png deleted file mode 100644 index bb77babc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_redstone_block'}.png deleted file mode 100644 index 1a808d5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_sandstone'}.png deleted file mode 100644 index e2554dbb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_smooth_stone'}.png deleted file mode 100644 index c3815bf7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_snow_block'}.png deleted file mode 100644 index 3efc9b89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_stone'}.png deleted file mode 100644 index 027cf07f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_tuff'}.png deleted file mode 100644 index fac4cba8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__duh_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusted_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusted_brown_mushroom_block'}.png deleted file mode 100644 index f93f2a4b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusted_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusted_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusted_red_mushroom_block'}.png deleted file mode 100644 index 92986824..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusted_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusty_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusty_bookshelf'}.png deleted file mode 100644 index 9125de48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusty_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusty_gravel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusty_gravel'}.png deleted file mode 100644 index 4b106946..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__dusty_gravel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_acacia_log'}.png deleted file mode 100644 index ddb63ada..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_birch_log'}.png deleted file mode 100644 index 68bc8a00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_cherry_log'}.png deleted file mode 100644 index 32bd91be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_crimson_stem'}.png deleted file mode 100644 index 194bcb71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_dark_oak_log'}.png deleted file mode 100644 index e813272d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_jungle_log'}.png deleted file mode 100644 index 28132a87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_mangrove_log'}.png deleted file mode 100644 index f4e16531..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_oak_log'}.png deleted file mode 100644 index 39f3b494..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_spruce_log'}.png deleted file mode 100644 index b4276976..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_warped_stem'}.png deleted file mode 100644 index 97ac9f96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edge_cut_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_amethyst_block_bricks'}.png deleted file mode 100644 index dbe094e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_ancient_debris_bricks'}.png deleted file mode 100644 index 8a8a7927..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_andesite_bricks'}.png deleted file mode 100644 index 85fc59aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_basalt_bricks'}.png deleted file mode 100644 index ef92d7bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_blackstone_bricks'}.png deleted file mode 100644 index 75755f9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_blue_ice_bricks'}.png deleted file mode 100644 index 0c180643..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_borderless_bricks_bricks'}.png deleted file mode 100644 index b839013b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_bricks_bricks'}.png deleted file mode 100644 index 33c2c505..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_calcite_bricks'}.png deleted file mode 100644 index 1df98211..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_clay_bricks'}.png deleted file mode 100644 index 8857aeaf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_coal_block_bricks'}.png deleted file mode 100644 index d489e9aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_cobblestone_bricks'}.png deleted file mode 100644 index 77d73273..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_crying_obsidian_bricks'}.png deleted file mode 100644 index 6cea26a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_dark_prismarine_bricks'}.png deleted file mode 100644 index ba9bc235..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_deepslate_bricks'}.png deleted file mode 100644 index ca3fdfaa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_diorite_bricks'}.png deleted file mode 100644 index 92eb5e53..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_dirt_bricks'}.png deleted file mode 100644 index 61c3819d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_dripstone_block_bricks'}.png deleted file mode 100644 index 4e756108..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_end_stone_bricks'}.png deleted file mode 100644 index b960e677..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_gilded_blackstone_bricks'}.png deleted file mode 100644 index d914d216..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_glowstone_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_glowstone_lantern'}.png deleted file mode 100644 index 39df021a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_glowstone_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_granite_bricks'}.png deleted file mode 100644 index b048cace..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_ice_bricks'}.png deleted file mode 100644 index ea2494ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_lapis_block_bricks'}.png deleted file mode 100644 index 955b2ca1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_lodestone_bricks'}.png deleted file mode 100644 index 33dac1d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_magma_block_bricks'}.png deleted file mode 100644 index 87f61068..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mossy_cobblestone_bricks'}.png deleted file mode 100644 index b2ea9caf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index 75ca5a32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mud_bricks'}.png deleted file mode 100644 index 7de4b218..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mud_bricks_bricks'}.png deleted file mode 100644 index 0f960593..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_nether_bricks_bricks'}.png deleted file mode 100644 index 0f988121..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_netherrack_bricks'}.png deleted file mode 100644 index 016ac776..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_obsidian_bricks'}.png deleted file mode 100644 index 4a06d5ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_packed_ice_bricks'}.png deleted file mode 100644 index a1f89717..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_packed_mud_bricks'}.png deleted file mode 100644 index 1c239b62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_prismarine_bricks'}.png deleted file mode 100644 index 443278ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_purpur_block_bricks'}.png deleted file mode 100644 index 8ae96a23..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_quartz_block_bricks'}.png deleted file mode 100644 index 12872128..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_raw_copper_block_bricks'}.png deleted file mode 100644 index cd902c3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_raw_gold_block_bricks'}.png deleted file mode 100644 index c1dd6d1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_raw_iron_block_bricks'}.png deleted file mode 100644 index e6add0e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_red_nether_bricks_bricks'}.png deleted file mode 100644 index ade3168d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_red_sandstone_bricks'}.png deleted file mode 100644 index 44891280..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_redstone_block_bricks'}.png deleted file mode 100644 index 3b2c00f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_redstone_lamp'}.png deleted file mode 100644 index 6b2461b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_sandstone_bricks'}.png deleted file mode 100644 index bb8f3b70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_shroomlight_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_shroomlight_lantern'}.png deleted file mode 100644 index 8e394f71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_shroomlight_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_smooth_stone_bricks'}.png deleted file mode 100644 index 4c7035b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_snow_block_bricks'}.png deleted file mode 100644 index e918f778..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stone_bricks'}.png deleted file mode 100644 index 05329bef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_acacia_log'}.png deleted file mode 100644 index 90e8cf33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_birch_log'}.png deleted file mode 100644 index c30df2b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_cherry_log'}.png deleted file mode 100644 index 3525a6c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_crimson_stem'}.png deleted file mode 100644 index e9806b64..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_dark_oak_log'}.png deleted file mode 100644 index 98532d72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_jungle_log'}.png deleted file mode 100644 index 2fd94b59..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_mangrove_log'}.png deleted file mode 100644 index cee4acb7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_oak_log'}.png deleted file mode 100644 index 1afb9da3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_spruce_log'}.png deleted file mode 100644 index 067ac78c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_warped_stem'}.png deleted file mode 100644 index aab7f278..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_tuff_bricks'}.png deleted file mode 100644 index 33741efb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_white_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_white_redstone_lamp'}.png deleted file mode 100644 index 421b3cca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__edged_white_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__elemental_ochre_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__elemental_ochre_froglight'}.png deleted file mode 100644 index 7b754d4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__elemental_ochre_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__elemental_pearlescent_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__elemental_pearlescent_froglight'}.png deleted file mode 100644 index 452d4264..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__elemental_pearlescent_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__elemental_verdant_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__elemental_verdant_froglight'}.png deleted file mode 100644 index 1c43f2e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__elemental_verdant_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_diamond_block'}.png deleted file mode 100644 index 9298f6b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_emerald_block'}.png deleted file mode 100644 index a9c3ca06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_gold_block'}.png deleted file mode 100644 index 55d9bb37..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_netherite_block'}.png deleted file mode 100644 index 52ea64f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_copper_block'}.png deleted file mode 100644 index ff9dd0c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_exposed_copper'}.png deleted file mode 100644 index 2c8c72aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_oxidized_copper'}.png deleted file mode 100644 index 6ef3d772..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_weathered_copper'}.png deleted file mode 100644 index 5d888494..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__embossed_waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__emerald_block_panels'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__emerald_block_panels'}.png deleted file mode 100644 index 773a5a87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__emerald_block_panels'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_acacia_planks'}.png deleted file mode 100644 index e9102dcd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_bamboo_planks'}.png deleted file mode 100644 index 79e37489..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_birch_planks'}.png deleted file mode 100644 index e46b99e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_cherry_planks'}.png deleted file mode 100644 index c3b0d653..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_crimson_planks'}.png deleted file mode 100644 index fa0e4ac6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_dark_oak_planks'}.png deleted file mode 100644 index c427843a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_jungle_planks'}.png deleted file mode 100644 index e858461d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_mangrove_planks'}.png deleted file mode 100644 index c3a562d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_oak_planks'}.png deleted file mode 100644 index c22313da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_spruce_planks'}.png deleted file mode 100644 index 14697a09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_warped_planks'}.png deleted file mode 100644 index c13c3cbd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__enclosed_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_carved_pumpkin'}.png deleted file mode 100644 index ccf1fce7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_jack_o_lantern'}.png deleted file mode 100644 index ccf1fce7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_pumpkin'}.png deleted file mode 100644 index ccf1fce7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_pumpkin_purple'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_pumpkin_purple'}.png deleted file mode 100644 index 094ef3c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_pumpkin_purple'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_purple_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_purple_carved_pumpkin'}.png deleted file mode 100644 index 094ef3c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_purple_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_purple_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_purple_jack_o_lantern'}.png deleted file mode 100644 index 094ef3c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_purple_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_bricks'}.png deleted file mode 100644 index bc97eb0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_mini_tiles'}.png deleted file mode 100644 index 2bffacdf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_pillar'}.png deleted file mode 100644 index 284e6827..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_pillar_top'}.png deleted file mode 100644 index 8a19a172..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_scales'}.png deleted file mode 100644 index 3602404b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__end_stone_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_amethyst_block'}.png deleted file mode 100644 index 188ff9e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_ancient_debris'}.png deleted file mode 100644 index 52769cc3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_andesite'}.png deleted file mode 100644 index 5e7aa4d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_basalt'}.png deleted file mode 100644 index 538f698b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_blackstone'}.png deleted file mode 100644 index de547be5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_blue_ice'}.png deleted file mode 100644 index 70c75112..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_borderless_bricks'}.png deleted file mode 100644 index 92a33b18..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_bricks'}.png deleted file mode 100644 index 4ab6d616..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_calcite'}.png deleted file mode 100644 index a03d811a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_clay'}.png deleted file mode 100644 index a5b8247d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_coal_block'}.png deleted file mode 100644 index c5593dc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_cobblestone'}.png deleted file mode 100644 index 7fcfc5fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_crying_obsidian'}.png deleted file mode 100644 index 0fa3b27a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_dark_prismarine'}.png deleted file mode 100644 index 03e508ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_deepslate'}.png deleted file mode 100644 index 6cff062c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_diamond_block'}.png deleted file mode 100644 index c58bef95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_diorite'}.png deleted file mode 100644 index 6bef9a4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_dirt'}.png deleted file mode 100644 index a0fbf094..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_dripstone_block'}.png deleted file mode 100644 index abe33d75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_emerald_block'}.png deleted file mode 100644 index 858ba2bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_end_stone'}.png deleted file mode 100644 index 1f877c05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_gilded_blackstone'}.png deleted file mode 100644 index 3d78039d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_gold_block'}.png deleted file mode 100644 index 40e08d58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_granite'}.png deleted file mode 100644 index acb4dffd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_ice'}.png deleted file mode 100644 index 18c648cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_iron_block'}.png deleted file mode 100644 index ef187086..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_lapis_block'}.png deleted file mode 100644 index 59615ebb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_lodestone'}.png deleted file mode 100644 index 7baa93e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_magma_block'}.png deleted file mode 100644 index 2ab9b0ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mossy_cobblestone'}.png deleted file mode 100644 index a84d984d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mossy_stone_bricks'}.png deleted file mode 100644 index f4f35c07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mud'}.png deleted file mode 100644 index f362bd22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mud_bricks'}.png deleted file mode 100644 index c6532c3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_nether_bricks'}.png deleted file mode 100644 index 1f069c3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_netherite_block'}.png deleted file mode 100644 index 7e71bd24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_netherrack'}.png deleted file mode 100644 index e212d3cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_obsidian'}.png deleted file mode 100644 index 43aaa648..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_packed_ice'}.png deleted file mode 100644 index 305f22f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_packed_mud'}.png deleted file mode 100644 index d2b9a323..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_prismarine'}.png deleted file mode 100644 index 3e71e68f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_purpur_block'}.png deleted file mode 100644 index 34089ba8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_quartz_block'}.png deleted file mode 100644 index 5566deb3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_raw_copper_block'}.png deleted file mode 100644 index bf15d0e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_raw_gold_block'}.png deleted file mode 100644 index 66b45b84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_raw_iron_block'}.png deleted file mode 100644 index b3d3b5c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_red_nether_bricks'}.png deleted file mode 100644 index e144f33b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_red_sandstone'}.png deleted file mode 100644 index f6fe361e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_redstone_block'}.png deleted file mode 100644 index 967e8a39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_sandstone'}.png deleted file mode 100644 index 41d7e6a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_smooth_stone'}.png deleted file mode 100644 index de31cefe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_snow_block'}.png deleted file mode 100644 index 24bb2c26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_stone'}.png deleted file mode 100644 index a8c3a30d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_tuff'}.png deleted file mode 100644 index f0d7075d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_copper_block'}.png deleted file mode 100644 index e8a306bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_exposed_copper'}.png deleted file mode 100644 index 08dc3402..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_oxidized_copper'}.png deleted file mode 100644 index a20d9b75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_weathered_copper'}.png deleted file mode 100644 index cac23a34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__engraved_waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_amethyst_block'}.png deleted file mode 100644 index 6ce79308..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_ancient_debris'}.png deleted file mode 100644 index fabf4fa4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_andesite'}.png deleted file mode 100644 index 30703133..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_basalt'}.png deleted file mode 100644 index 633c8422..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_blackstone'}.png deleted file mode 100644 index 4fbae99a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_blue_ice'}.png deleted file mode 100644 index 9c7ecd3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_borderless_bricks'}.png deleted file mode 100644 index eeeec3a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_bricks'}.png deleted file mode 100644 index eeeec3a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_calcite'}.png deleted file mode 100644 index ba245602..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_coal_block'}.png deleted file mode 100644 index bfa8865d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_cobblestone'}.png deleted file mode 100644 index 4660fa1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_crying_obsidian'}.png deleted file mode 100644 index 28522376..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_dark_prismarine'}.png deleted file mode 100644 index 22c1824b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_deepslate'}.png deleted file mode 100644 index 1c6011b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_diorite'}.png deleted file mode 100644 index fe246c57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_dirt'}.png deleted file mode 100644 index 887b15e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_dripstone_block'}.png deleted file mode 100644 index 64b39941..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_end_stone'}.png deleted file mode 100644 index 69ab4971..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_gilded_blackstone'}.png deleted file mode 100644 index 454fc338..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_granite'}.png deleted file mode 100644 index 61bbfe4f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_ice'}.png deleted file mode 100644 index df428dca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_lapis_block'}.png deleted file mode 100644 index 4e4728cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_lodestone'}.png deleted file mode 100644 index 4a8f40d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_magma_block'}.png deleted file mode 100644 index 91dd3fe1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_mossy_cobblestone'}.png deleted file mode 100644 index 3423e7cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_mossy_stone_bricks'}.png deleted file mode 100644 index ccca1930..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_nether_bricks'}.png deleted file mode 100644 index 7b694cf1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_netherrack'}.png deleted file mode 100644 index 2eec25ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_obsidian'}.png deleted file mode 100644 index ee2fc7ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_packed_ice'}.png deleted file mode 100644 index 19d87ba1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_prismarine'}.png deleted file mode 100644 index a49392f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_purpur_block'}.png deleted file mode 100644 index d915bb9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_quartz_block'}.png deleted file mode 100644 index 6a73979c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_raw_copper_block'}.png deleted file mode 100644 index c5d4677f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_raw_gold_block'}.png deleted file mode 100644 index 6db51755..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_raw_iron_block'}.png deleted file mode 100644 index b6c486f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_red_nether_bricks'}.png deleted file mode 100644 index 7f445a22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_red_sandstone'}.png deleted file mode 100644 index 22e0e2ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_redstone_block'}.png deleted file mode 100644 index 32966e17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_sandstone'}.png deleted file mode 100644 index b529dd3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_smooth_stone'}.png deleted file mode 100644 index 854f8751..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_snow_block'}.png deleted file mode 100644 index 201b949a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_tuff'}.png deleted file mode 100644 index 32798cc3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eroded_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__erratic_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__erratic_nether_wart_block'}.png deleted file mode 100644 index bb4550fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__erratic_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__erratic_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__erratic_warped_wart_block'}.png deleted file mode 100644 index 0df1ec7b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__erratic_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_amethyst_block_bricks'}.png deleted file mode 100644 index b9d7b026..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_ancient_debris_bricks'}.png deleted file mode 100644 index 5c8bac62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_andesite_bricks'}.png deleted file mode 100644 index 0227d2cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_basalt_bricks'}.png deleted file mode 100644 index 516dfa4e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_blackstone_bricks'}.png deleted file mode 100644 index 012203b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_blue_ice_bricks'}.png deleted file mode 100644 index 4753ccb1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_borderless_bricks_bricks'}.png deleted file mode 100644 index d79279fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_bricks_bricks'}.png deleted file mode 100644 index a3cf626a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_calcite_bricks'}.png deleted file mode 100644 index 9728d52f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_clay_bricks'}.png deleted file mode 100644 index e3eb63d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_coal_block_bricks'}.png deleted file mode 100644 index d06ed7a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_cobblestone_bricks'}.png deleted file mode 100644 index 0ee8e1be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_crying_obsidian_bricks'}.png deleted file mode 100644 index a6acef0d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_dark_prismarine_bricks'}.png deleted file mode 100644 index 0d1bbc95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_deepslate_bricks'}.png deleted file mode 100644 index ed5a59e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_diorite_bricks'}.png deleted file mode 100644 index 67f83fca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_dirt_bricks'}.png deleted file mode 100644 index 5eaf1d59..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_dripstone_block_bricks'}.png deleted file mode 100644 index 31b393cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_end_stone_bricks'}.png deleted file mode 100644 index 7161b5db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_gilded_blackstone_bricks'}.png deleted file mode 100644 index 280d2c1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_granite_bricks'}.png deleted file mode 100644 index 058af83f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_ice_bricks'}.png deleted file mode 100644 index 23b1ac84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_lapis_block_bricks'}.png deleted file mode 100644 index 7f49e401..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_lodestone_bricks'}.png deleted file mode 100644 index bccfef9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_magma_block_bricks'}.png deleted file mode 100644 index 7c24ade3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mossy_cobblestone_bricks'}.png deleted file mode 100644 index d87e0db1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index bfc9e2d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mud_bricks'}.png deleted file mode 100644 index 1ccddd2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mud_bricks_bricks'}.png deleted file mode 100644 index 466ef646..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_nether_bricks_bricks'}.png deleted file mode 100644 index b3611f7e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_netherrack_bricks'}.png deleted file mode 100644 index 85db2da8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_obsidian_bricks'}.png deleted file mode 100644 index a204fede..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_packed_ice_bricks'}.png deleted file mode 100644 index cadd6574..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_packed_mud_bricks'}.png deleted file mode 100644 index 6a0c3e90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_prismarine_bricks'}.png deleted file mode 100644 index a50716e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_purpur_block_bricks'}.png deleted file mode 100644 index b6ccd76c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_quartz_block_bricks'}.png deleted file mode 100644 index 3f2a85ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_raw_copper_block_bricks'}.png deleted file mode 100644 index 6c19ee7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_raw_gold_block_bricks'}.png deleted file mode 100644 index cf94cc1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_raw_iron_block_bricks'}.png deleted file mode 100644 index 81c1e304..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_red_nether_bricks_bricks'}.png deleted file mode 100644 index 49bc6bf9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_red_sandstone_bricks'}.png deleted file mode 100644 index 00ab2067..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_redstone_block_bricks'}.png deleted file mode 100644 index 6a184adc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_sandstone_bricks'}.png deleted file mode 100644 index d18096fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_smooth_stone_bricks'}.png deleted file mode 100644 index 3677d805..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_snow_block_bricks'}.png deleted file mode 100644 index 538cd82e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_stone_bricks'}.png deleted file mode 100644 index eb9fa3b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_tuff_bricks'}.png deleted file mode 100644 index b6c48bd7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__etched_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__exposed_ochre_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__exposed_ochre_froglight'}.png deleted file mode 100644 index c1231d5b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__exposed_ochre_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__exposed_pearlescent_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__exposed_pearlescent_froglight'}.png deleted file mode 100644 index 76b38b2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__exposed_pearlescent_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__exposed_verdant_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__exposed_verdant_froglight'}.png deleted file mode 100644 index 870aaf21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__exposed_verdant_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eye_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eye_mud'}.png deleted file mode 100644 index ae6dd5c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eye_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eye_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eye_mud_bricks'}.png deleted file mode 100644 index b29b49ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eye_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eye_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eye_packed_mud'}.png deleted file mode 100644 index 8a0fa4a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eye_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eyed_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eyed_nether_wart_block'}.png deleted file mode 100644 index de5b6282..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eyed_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eyed_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eyed_warped_wart_block'}.png deleted file mode 100644 index 8705cd45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__eyed_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_acacia_log'}.png deleted file mode 100644 index e8cee166..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_birch_log'}.png deleted file mode 100644 index 5722fe3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_cherry_log'}.png deleted file mode 100644 index d8d2a6b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_crimson_stem'}.png deleted file mode 100644 index c33ac178..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_dark_oak_log'}.png deleted file mode 100644 index b5f731c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_jungle_log'}.png deleted file mode 100644 index c130eedf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_mangrove_log'}.png deleted file mode 100644 index f0463fed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_oak_log'}.png deleted file mode 100644 index c2253474..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_spruce_log'}.png deleted file mode 100644 index 662457a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_warped_stem'}.png deleted file mode 100644 index c664bfc4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__f_sign_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_black_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_black_stained_glass'}.png deleted file mode 100644 index 45550c34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_black_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_blue_stained_glass'}.png deleted file mode 100644 index ce9a7815..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_brown_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_brown_stained_glass'}.png deleted file mode 100644 index 38841daf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_brown_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_chiseled_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_chiseled_mud'}.png deleted file mode 100644 index 54b0cacb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_chiseled_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_chiseled_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_chiseled_mud_bricks'}.png deleted file mode 100644 index 0aaa1ee2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_chiseled_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_chiseled_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_chiseled_packed_mud'}.png deleted file mode 100644 index b9cc50e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_chiseled_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_cyan_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_cyan_stained_glass'}.png deleted file mode 100644 index 60628f0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_cyan_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_glowstone_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_glowstone_lantern'}.png deleted file mode 100644 index b5d43598..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_glowstone_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_gray_stained_glass'}.png deleted file mode 100644 index 090a3646..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_green_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_green_stained_glass'}.png deleted file mode 100644 index 636fd5e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_green_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_leaded_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_leaded_glass'}.png deleted file mode 100644 index 18234543..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_leaded_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_light_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_light_blue_stained_glass'}.png deleted file mode 100644 index 06439503..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_light_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_light_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_light_gray_stained_glass'}.png deleted file mode 100644 index 7104ac32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_light_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_lime_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_lime_stained_glass'}.png deleted file mode 100644 index 2592e239..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_lime_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_magenta_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_magenta_stained_glass'}.png deleted file mode 100644 index ab771850..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_magenta_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud'}.png deleted file mode 100644 index ecaf20b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud_bricks'}.png deleted file mode 100644 index 4ca5234a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud_bricks_pillar'}.png deleted file mode 100644 index 000bcfc7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud_pillar'}.png deleted file mode 100644 index ab4696dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_orange_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_orange_stained_glass'}.png deleted file mode 100644 index 83291bcb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_orange_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_packed_mud'}.png deleted file mode 100644 index 8bc4d3f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_packed_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_packed_mud_pillar'}.png deleted file mode 100644 index be3a9f4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_packed_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_pink_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_pink_stained_glass'}.png deleted file mode 100644 index 8d500888..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_pink_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_purple_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_purple_stained_glass'}.png deleted file mode 100644 index a1e1aa90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_purple_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_red_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_red_stained_glass'}.png deleted file mode 100644 index e28a235b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_red_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_redstone_lamp'}.png deleted file mode 100644 index 5014706e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_sea_lantern'}.png deleted file mode 100644 index b5004f91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_shroomlight_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_shroomlight_lantern'}.png deleted file mode 100644 index d35a5d86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_shroomlight_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_white_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_white_redstone_lamp'}.png deleted file mode 100644 index 19614954..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_white_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_white_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_white_stained_glass'}.png deleted file mode 100644 index 3cf6ee55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_white_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_yellow_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_yellow_stained_glass'}.png deleted file mode 100644 index 8f78db3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fancy_yellow_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fertile_hay_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fertile_hay_block'}.png deleted file mode 100644 index d847341e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fertile_hay_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_acacia_planks'}.png deleted file mode 100644 index 232203f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_amethyst_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_amethyst_block_pillar'}.png deleted file mode 100644 index 001d7e62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_amethyst_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_ancient_debris_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_ancient_debris_pillar'}.png deleted file mode 100644 index 80de963c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_ancient_debris_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_andesite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_andesite_pillar'}.png deleted file mode 100644 index 9ab36075..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_andesite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_bamboo_planks'}.png deleted file mode 100644 index de0be396..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_basalt_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_basalt_pillar'}.png deleted file mode 100644 index 73c06827..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_basalt_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_birch_planks'}.png deleted file mode 100644 index f4de9e92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_blackstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_blackstone_pillar'}.png deleted file mode 100644 index d5555182..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_blackstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_blue_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_blue_ice_pillar'}.png deleted file mode 100644 index 024c79c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_blue_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_borderless_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_borderless_bricks_pillar'}.png deleted file mode 100644 index 1d2eb0bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_borderless_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_bricks_pillar'}.png deleted file mode 100644 index 246974be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_calcite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_calcite_pillar'}.png deleted file mode 100644 index 5e90b231..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_calcite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_cherry_planks'}.png deleted file mode 100644 index 0789f2f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_clay_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_clay_pillar'}.png deleted file mode 100644 index 0e19aa00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_clay_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_coal_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_coal_block_pillar'}.png deleted file mode 100644 index 6b2ad2a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_coal_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_cobblestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_cobblestone_pillar'}.png deleted file mode 100644 index 05163046..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_cobblestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_crimson_planks'}.png deleted file mode 100644 index 1ea1b77a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_crying_obsidian_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_crying_obsidian_pillar'}.png deleted file mode 100644 index 9f9c943e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_crying_obsidian_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dark_oak_planks'}.png deleted file mode 100644 index d44d52af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dark_prismarine_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dark_prismarine_pillar'}.png deleted file mode 100644 index 136cbaea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dark_prismarine_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_deepslate_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_deepslate_pillar'}.png deleted file mode 100644 index c360b7ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_deepslate_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_diorite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_diorite_pillar'}.png deleted file mode 100644 index 39525239..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_diorite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dirt_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dirt_pillar'}.png deleted file mode 100644 index b90f4720..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dirt_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dripstone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dripstone_block_pillar'}.png deleted file mode 100644 index 99635709..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_dripstone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_end_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_end_stone_pillar'}.png deleted file mode 100644 index d0313218..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_end_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_gilded_blackstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_gilded_blackstone_pillar'}.png deleted file mode 100644 index 400d5ff0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_gilded_blackstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_granite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_granite_pillar'}.png deleted file mode 100644 index 998bca96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_granite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_ice_pillar'}.png deleted file mode 100644 index 268d14b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_jungle_planks'}.png deleted file mode 100644 index 827caa62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_lapis_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_lapis_block_pillar'}.png deleted file mode 100644 index 2e25d572..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_lapis_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_lodestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_lodestone_pillar'}.png deleted file mode 100644 index 2daccc9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_lodestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_magma_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_magma_block_pillar'}.png deleted file mode 100644 index 5bbb8ebe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_magma_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mangrove_planks'}.png deleted file mode 100644 index 3db525eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mossy_cobblestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mossy_cobblestone_pillar'}.png deleted file mode 100644 index a16de2a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mossy_cobblestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mossy_stone_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mossy_stone_bricks_pillar'}.png deleted file mode 100644 index 21fd9c87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mossy_stone_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mud_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mud_bricks_pillar'}.png deleted file mode 100644 index c7f95286..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mud_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mud_pillar'}.png deleted file mode 100644 index 7ddbef88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_nether_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_nether_bricks_pillar'}.png deleted file mode 100644 index 062ea85a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_nether_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_netherrack_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_netherrack_pillar'}.png deleted file mode 100644 index 6f2b78e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_netherrack_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_oak_planks'}.png deleted file mode 100644 index ce741559..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_obsidian_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_obsidian_pillar'}.png deleted file mode 100644 index 0e7a5f26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_obsidian_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_packed_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_packed_ice_pillar'}.png deleted file mode 100644 index 837f2454..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_packed_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_packed_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_packed_mud_pillar'}.png deleted file mode 100644 index b22ed2a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_packed_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_prismarine_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_prismarine_pillar'}.png deleted file mode 100644 index 46fa165d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_prismarine_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_purpur_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_purpur_block_pillar'}.png deleted file mode 100644 index e050e391..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_purpur_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_quartz_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_quartz_block_pillar'}.png deleted file mode 100644 index d751d6d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_quartz_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_raw_copper_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_raw_copper_block_pillar'}.png deleted file mode 100644 index 2ecf2d57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_raw_copper_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_raw_gold_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_raw_gold_block_pillar'}.png deleted file mode 100644 index 2b3f4c6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_raw_gold_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_raw_iron_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_raw_iron_block_pillar'}.png deleted file mode 100644 index 451bb45d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_raw_iron_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_red_nether_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_red_nether_bricks_pillar'}.png deleted file mode 100644 index 29c29de1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_red_nether_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_red_sandstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_red_sandstone_pillar'}.png deleted file mode 100644 index ab78c7a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_red_sandstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_redstone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_redstone_block_pillar'}.png deleted file mode 100644 index 7a3e678a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_redstone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_sandstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_sandstone_pillar'}.png deleted file mode 100644 index ff179b37..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_sandstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_smooth_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_smooth_stone_pillar'}.png deleted file mode 100644 index 432f1c11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_smooth_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_snow_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_snow_block_pillar'}.png deleted file mode 100644 index 4536edfd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_snow_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_sponge'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_sponge'}.png deleted file mode 100644 index 4826f287..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_sponge'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_spruce_planks'}.png deleted file mode 100644 index ec528d95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_stone_pillar'}.png deleted file mode 100644 index 7cd9d27b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_tuff_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_tuff_pillar'}.png deleted file mode 100644 index 893e9b49..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_tuff_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_acacia_planks'}.png deleted file mode 100644 index 8c1ac066..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_bamboo_planks'}.png deleted file mode 100644 index f91e7017..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_birch_planks'}.png deleted file mode 100644 index 17b55612..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_cherry_planks'}.png deleted file mode 100644 index b3d27182..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_crimson_planks'}.png deleted file mode 100644 index f9b98630..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_dark_oak_planks'}.png deleted file mode 100644 index 317bd1a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_jungle_planks'}.png deleted file mode 100644 index d059d501..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_mangrove_planks'}.png deleted file mode 100644 index 2c906525..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_oak_planks'}.png deleted file mode 100644 index d615bbe2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_spruce_planks'}.png deleted file mode 100644 index 3988f2f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_warped_planks'}.png deleted file mode 100644 index 29a00f24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_vertical_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_warped_planks'}.png deleted file mode 100644 index 0d8a358f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fine_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_acacia_log'}.png deleted file mode 100644 index 496713c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_birch_log'}.png deleted file mode 100644 index f68dad9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_cherry_log'}.png deleted file mode 100644 index 190d4e07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_crimson_stem'}.png deleted file mode 100644 index 5c37b0d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_dark_oak_log'}.png deleted file mode 100644 index 84f42382..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_jungle_log'}.png deleted file mode 100644 index 0dcc5253..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_mangrove_log'}.png deleted file mode 100644 index da7751c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_oak_log'}.png deleted file mode 100644 index 6355207f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_spruce_log'}.png deleted file mode 100644 index bdc5bc41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_warped_stem'}.png deleted file mode 100644 index 422ee6a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__firewood_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_amethyst_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_amethyst_block_tiles'}.png deleted file mode 100644 index de6cdf88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_amethyst_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_ancient_debris_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_ancient_debris_tiles'}.png deleted file mode 100644 index 28c3b28a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_ancient_debris_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_andesite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_andesite_tiles'}.png deleted file mode 100644 index 0ee7f4b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_andesite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_basalt_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_basalt_tiles'}.png deleted file mode 100644 index 1087761f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_basalt_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_blackstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_blackstone_tiles'}.png deleted file mode 100644 index d832b9be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_blackstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_blue_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_blue_ice_tiles'}.png deleted file mode 100644 index 82a04f88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_blue_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_borderless_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_borderless_bricks_tiles'}.png deleted file mode 100644 index 35d99e05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_borderless_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_bricks_tiles'}.png deleted file mode 100644 index 7e5d9b9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_calcite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_calcite_tiles'}.png deleted file mode 100644 index eda338b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_calcite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_clay_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_clay_tiles'}.png deleted file mode 100644 index 600ba504..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_clay_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_coal_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_coal_block_tiles'}.png deleted file mode 100644 index e9dca188..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_coal_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_cobblestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_cobblestone_tiles'}.png deleted file mode 100644 index ede4d741..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_cobblestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_crying_obsidian_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_crying_obsidian_tiles'}.png deleted file mode 100644 index 3167a778..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_crying_obsidian_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_dark_prismarine_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_dark_prismarine_tiles'}.png deleted file mode 100644 index 079cd3db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_dark_prismarine_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_diorite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_diorite_tiles'}.png deleted file mode 100644 index edb507cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_diorite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_dirt_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_dirt_tiles'}.png deleted file mode 100644 index fb7948d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_dirt_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_dripstone_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_dripstone_block_tiles'}.png deleted file mode 100644 index 84d0b523..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_dripstone_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_end_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_end_stone_tiles'}.png deleted file mode 100644 index 8cda67db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_end_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_gilded_blackstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_gilded_blackstone_tiles'}.png deleted file mode 100644 index 51e91cac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_gilded_blackstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_granite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_granite_tiles'}.png deleted file mode 100644 index 71cccd7f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_granite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_ice_tiles'}.png deleted file mode 100644 index 32a18583..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_lapis_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_lapis_block_tiles'}.png deleted file mode 100644 index cf3121bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_lapis_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_lodestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_lodestone_tiles'}.png deleted file mode 100644 index cc4450e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_lodestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_magma_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_magma_block_tiles'}.png deleted file mode 100644 index 7ac1e986..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_magma_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_mossy_cobblestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_mossy_cobblestone_tiles'}.png deleted file mode 100644 index 5d9fd7d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_mossy_cobblestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_mossy_stone_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_mossy_stone_bricks_tiles'}.png deleted file mode 100644 index 09492fb4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_mossy_stone_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_nether_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_nether_bricks_tiles'}.png deleted file mode 100644 index c19d9212..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_nether_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_netherrack_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_netherrack_tiles'}.png deleted file mode 100644 index 55396f02..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_netherrack_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_obsidian_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_obsidian_tiles'}.png deleted file mode 100644 index 6382efbb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_obsidian_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_packed_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_packed_ice_tiles'}.png deleted file mode 100644 index e402755d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_packed_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_prismarine_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_prismarine_tiles'}.png deleted file mode 100644 index 5db79f9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_prismarine_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_purpur_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_purpur_block_tiles'}.png deleted file mode 100644 index dbe4f6b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_purpur_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_quartz_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_quartz_block_tiles'}.png deleted file mode 100644 index c626b57f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_quartz_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_raw_copper_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_raw_copper_block_tiles'}.png deleted file mode 100644 index 0f6ecc98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_raw_copper_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_raw_gold_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_raw_gold_block_tiles'}.png deleted file mode 100644 index 07b4cd6f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_raw_gold_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_raw_iron_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_raw_iron_block_tiles'}.png deleted file mode 100644 index 130e5870..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_raw_iron_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_red_nether_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_red_nether_bricks_tiles'}.png deleted file mode 100644 index d9966d21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_red_nether_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_red_sandstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_red_sandstone_tiles'}.png deleted file mode 100644 index 16005830..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_red_sandstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_redstone_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_redstone_block_tiles'}.png deleted file mode 100644 index eeb61e76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_redstone_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_sandstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_sandstone_tiles'}.png deleted file mode 100644 index 9428e9ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_sandstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_smooth_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_smooth_stone_tiles'}.png deleted file mode 100644 index f434da0d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_smooth_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_snow_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_snow_block_tiles'}.png deleted file mode 100644 index 43cc6613..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_snow_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_stone_tiles'}.png deleted file mode 100644 index b4c4f104..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_tuff_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_tuff_tiles'}.png deleted file mode 100644 index cc99571c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flat_tuff_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_acacia_log'}.png deleted file mode 100644 index 6c00b2cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_birch_log'}.png deleted file mode 100644 index f3cf16fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_cherry_log'}.png deleted file mode 100644 index f06cf27d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_dark_oak_log'}.png deleted file mode 100644 index cf7c4f66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_jungle_log'}.png deleted file mode 100644 index 51ff026f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_mangrove_log'}.png deleted file mode 100644 index 1d84d0fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_oak_log'}.png deleted file mode 100644 index eafbf858..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_spruce_log'}.png deleted file mode 100644 index b051171b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowering_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowery_mangrove_roots'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowery_mangrove_roots'}.png deleted file mode 100644 index d633d826..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__flowery_mangrove_roots'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fractured_bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fractured_bone_block'}.png deleted file mode 100644 index 5debed15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__fractured_bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_acacia_planks'}.png deleted file mode 100644 index 3a22f040..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_bamboo_planks'}.png deleted file mode 100644 index 2ce316c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_birch_planks'}.png deleted file mode 100644 index 28d77fea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_cherry_planks'}.png deleted file mode 100644 index ed7a2a1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_crimson_planks'}.png deleted file mode 100644 index 77ad1f84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_dark_oak_planks'}.png deleted file mode 100644 index 4a15d5b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_glowstone_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_glowstone_lantern'}.png deleted file mode 100644 index a4818bf3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_glowstone_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_jungle_planks'}.png deleted file mode 100644 index 3c39a7d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_mangrove_planks'}.png deleted file mode 100644 index d880eb45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_oak_planks'}.png deleted file mode 100644 index 3e81d2ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_sea_lantern'}.png deleted file mode 100644 index 258edfa8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_shroomlight_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_shroomlight_lantern'}.png deleted file mode 100644 index c5d47f4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_shroomlight_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_spruce_planks'}.png deleted file mode 100644 index f0b4dab2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_warped_planks'}.png deleted file mode 100644 index 9525cdaf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__framed_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__freckled_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__freckled_brown_mushroom_block'}.png deleted file mode 100644 index 466c28bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__freckled_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__freckled_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__freckled_red_mushroom_block'}.png deleted file mode 100644 index deacd21a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__freckled_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_acacia_leaves'}.png deleted file mode 100644 index b7c1730f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_birch_leaves'}.png deleted file mode 100644 index ca4c1c16..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_dark_oak_leaves'}.png deleted file mode 100644 index 507eacc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_jungle_leaves'}.png deleted file mode 100644 index 0a25b548..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_oak_leaves'}.png deleted file mode 100644 index bb396a1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_spruce_leaves'}.png deleted file mode 100644 index 80bd7186..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__frosted_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__full_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__full_bookshelf'}.png deleted file mode 100644 index 2adad93c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__full_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__giant_sponge'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__giant_sponge'}.png deleted file mode 100644 index f612d099..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__giant_sponge'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_basalt_bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_basalt_bone_block'}.png deleted file mode 100644 index 5bf98a97..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_basalt_bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_bricks'}.png deleted file mode 100644 index 498393a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_mini_tiles'}.png deleted file mode 100644 index 0abb730a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_pillar'}.png deleted file mode 100644 index ec6e049c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_pillar_top'}.png deleted file mode 100644 index 9511e845..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_scales'}.png deleted file mode 100644 index 82dc8e43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gilded_blackstone_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_amethyst_block'}.png deleted file mode 100644 index 4c19f224..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_ancient_debris'}.png deleted file mode 100644 index 6920b8b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_andesite'}.png deleted file mode 100644 index a0300c7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_basalt'}.png deleted file mode 100644 index ad88a52a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_blackstone'}.png deleted file mode 100644 index a7562d2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_blue_ice'}.png deleted file mode 100644 index c6c28a00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_borderless_bricks'}.png deleted file mode 100644 index 7380a2a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_bricks'}.png deleted file mode 100644 index 92c74a83..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_calcite'}.png deleted file mode 100644 index 0d69ead0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_clay'}.png deleted file mode 100644 index ddffd2a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_coal_block'}.png deleted file mode 100644 index 68eb7489..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_cobblestone'}.png deleted file mode 100644 index 3e3889e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_crying_obsidian'}.png deleted file mode 100644 index d5417fda..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_dark_prismarine'}.png deleted file mode 100644 index 4900058a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_deepslate'}.png deleted file mode 100644 index f0ae0347..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_diorite'}.png deleted file mode 100644 index 23e58de7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_dirt'}.png deleted file mode 100644 index 8f1d5773..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_dripstone_block'}.png deleted file mode 100644 index 62de76ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_end_stone'}.png deleted file mode 100644 index 62da1676..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_gilded_blackstone'}.png deleted file mode 100644 index 22efb3c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_granite'}.png deleted file mode 100644 index 51de73bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_ice'}.png deleted file mode 100644 index c4c3e82c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_lapis_block'}.png deleted file mode 100644 index 46176a06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_lodestone'}.png deleted file mode 100644 index c837c924..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_magma_block'}.png deleted file mode 100644 index ce81c950..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mossy_cobblestone'}.png deleted file mode 100644 index dca9a0eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mossy_stone_bricks'}.png deleted file mode 100644 index 7088c85b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mud'}.png deleted file mode 100644 index f895689b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mud_bricks'}.png deleted file mode 100644 index d8528624..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_nether_bricks'}.png deleted file mode 100644 index 81d5856a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_netherrack'}.png deleted file mode 100644 index a21d2f90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_obsidian'}.png deleted file mode 100644 index e1627e27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_packed_ice'}.png deleted file mode 100644 index 49b6502e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_packed_mud'}.png deleted file mode 100644 index 83bb7f98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_prismarine'}.png deleted file mode 100644 index 67844fb1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_purpur_block'}.png deleted file mode 100644 index a7c3865d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_quartz_block'}.png deleted file mode 100644 index 25f44df1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_raw_copper_block'}.png deleted file mode 100644 index 0fcd8233..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_raw_gold_block'}.png deleted file mode 100644 index 7dadfcfb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_raw_iron_block'}.png deleted file mode 100644 index f80c6af8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_red_nether_bricks'}.png deleted file mode 100644 index b8698e10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_red_sandstone'}.png deleted file mode 100644 index febd2e5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_redstone_block'}.png deleted file mode 100644 index 77de807d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_sandstone'}.png deleted file mode 100644 index 25fd39b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_smooth_stone'}.png deleted file mode 100644 index 672a59da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_snow_block'}.png deleted file mode 100644 index ed21857e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_stone'}.png deleted file mode 100644 index 8ad130dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_tuff'}.png deleted file mode 100644 index 2c8f934b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glad_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glass_ochre_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glass_ochre_froglight'}.png deleted file mode 100644 index 513b2451..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glass_ochre_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glass_pearlescent_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glass_pearlescent_froglight'}.png deleted file mode 100644 index bc1ae50e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glass_pearlescent_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glass_verdant_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glass_verdant_froglight'}.png deleted file mode 100644 index c80b8255..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glass_verdant_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glassblower'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glassblower'}.png deleted file mode 100644 index 20891006..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glassblower'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glittering_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glittering_crimson_stem'}.png deleted file mode 100644 index fb921e54..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glittering_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glowing_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glowing_crimson_stem'}.png deleted file mode 100644 index d4d13819..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glowing_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glowing_lodestone_side'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glowing_lodestone_side'}.png deleted file mode 100644 index e073f7d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glowing_lodestone_side'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glowstone_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glowstone_lantern'}.png deleted file mode 100644 index 3411a084..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__glowstone_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gold_block_panels'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gold_block_panels'}.png deleted file mode 100644 index 292ac4cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gold_block_panels'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_acacia_leaves'}.png deleted file mode 100644 index 4ed54262..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_acacia_leaves'}.png deleted file mode 100644 index d3c77173..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_birch_leaves'}.png deleted file mode 100644 index e251092c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_dark_oak_leaves'}.png deleted file mode 100644 index 35a3bfa1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_jungle_leaves'}.png deleted file mode 100644 index f30ea7b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_oak_leaves'}.png deleted file mode 100644 index d12fd846..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_spruce_leaves'}.png deleted file mode 100644 index 99be9708..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_apple_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_birch_leaves'}.png deleted file mode 100644 index 12cd4afe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_acacia_leaves'}.png deleted file mode 100644 index 61d779ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_birch_leaves'}.png deleted file mode 100644 index 06af1b94..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_dark_oak_leaves'}.png deleted file mode 100644 index b45f2e4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_jungle_leaves'}.png deleted file mode 100644 index 42a6a10c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_oak_leaves'}.png deleted file mode 100644 index f26a3d31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_spruce_leaves'}.png deleted file mode 100644 index 76beca09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_cherry_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_dark_oak_leaves'}.png deleted file mode 100644 index 572330e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_jungle_leaves'}.png deleted file mode 100644 index 0231d136..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_melon'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_melon'}.png deleted file mode 100644 index c5b42079..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_melon'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_oak_leaves'}.png deleted file mode 100644 index 572330e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_spruce_leaves'}.png deleted file mode 100644 index 94584ae5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__golden_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__goldkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__goldkin'}.png deleted file mode 100644 index efc5b392..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__goldkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_bricks'}.png deleted file mode 100644 index 0fdd22d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_mini_tiles'}.png deleted file mode 100644 index fe79e5ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_pillar'}.png deleted file mode 100644 index 9f427012..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_pillar_top'}.png deleted file mode 100644 index e62bce35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_prismarine'}.png deleted file mode 100644 index f9f8a8dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_scales'}.png deleted file mode 100644 index ebfcaf92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__granite_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_bricks'}.png deleted file mode 100644 index e26b7b07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_panel'}.png deleted file mode 100644 index 48ec8a14..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_pillar'}.png deleted file mode 100644 index d073d03e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_tiles'}.png deleted file mode 100644 index 58038609..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 2b1845b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index 6ca066e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index e293ed02..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_tiles'}.png deleted file mode 100644 index 6b51b9ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_bricks'}.png deleted file mode 100644 index 7bc7af2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_column'}.png deleted file mode 100644 index 77f2f8ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_pillar'}.png deleted file mode 100644 index c6263c73..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_tile'}.png deleted file mode 100644 index 434106ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_tiles'}.png deleted file mode 100644 index 80ada527..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__gray_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_bricks'}.png deleted file mode 100644 index 557e300b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_panel'}.png deleted file mode 100644 index 262626aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_pillar'}.png deleted file mode 100644 index da7aa2b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_tiles'}.png deleted file mode 100644 index 2240e3c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 3c98893a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index 9b1a6fe6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index f1ee2946..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_tiles'}.png deleted file mode 100644 index e21de970..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_bricks'}.png deleted file mode 100644 index 96f4d910..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_column'}.png deleted file mode 100644 index e70f4da9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_pillar'}.png deleted file mode 100644 index 118e416b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_tile'}.png deleted file mode 100644 index dd576565..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_tiles'}.png deleted file mode 100644 index 1474d8e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__green_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_black_concrete'}.png deleted file mode 100644 index 2dedc42f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_blue_concrete'}.png deleted file mode 100644 index 69a702cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_brown_concrete'}.png deleted file mode 100644 index e951f8b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_cyan_concrete'}.png deleted file mode 100644 index 7c58484c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_gray_concrete'}.png deleted file mode 100644 index ca122b6d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_green_concrete'}.png deleted file mode 100644 index 4c3d15bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_light_blue_concrete'}.png deleted file mode 100644 index 69035b5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_light_gray_concrete'}.png deleted file mode 100644 index 8c097d1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_lime_concrete'}.png deleted file mode 100644 index 264d0d1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_magenta_concrete'}.png deleted file mode 100644 index cae3de9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_orange_concrete'}.png deleted file mode 100644 index f4ac424f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_pink_concrete'}.png deleted file mode 100644 index 71e607e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_purple_concrete'}.png deleted file mode 100644 index 956532eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_red_concrete'}.png deleted file mode 100644 index 86209be3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_white_concrete'}.png deleted file mode 100644 index 5c08f2dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_yellow_concrete'}.png deleted file mode 100644 index 8d482804..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grid_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_black_concrete'}.png deleted file mode 100644 index 699d0f12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_blue_concrete'}.png deleted file mode 100644 index ec825e34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_brown_concrete'}.png deleted file mode 100644 index 1cfb2204..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_cyan_concrete'}.png deleted file mode 100644 index 789f9a5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_gray_concrete'}.png deleted file mode 100644 index 7f95385c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_green_concrete'}.png deleted file mode 100644 index d23a69b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_light_blue_concrete'}.png deleted file mode 100644 index dc86eb21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_light_gray_concrete'}.png deleted file mode 100644 index eddb0974..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_lime_concrete'}.png deleted file mode 100644 index 615e7360..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_magenta_concrete'}.png deleted file mode 100644 index c1d5927e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_orange_concrete'}.png deleted file mode 100644 index 1853b62a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_pink_concrete'}.png deleted file mode 100644 index d0a145cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_purple_concrete'}.png deleted file mode 100644 index 748edcf2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_red_concrete'}.png deleted file mode 100644 index 73f31bdc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_white_concrete'}.png deleted file mode 100644 index 6871ac15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_yellow_concrete'}.png deleted file mode 100644 index 20390180..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grill_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grimy_mushroom_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grimy_mushroom_stem'}.png deleted file mode 100644 index ad31da8b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__grimy_mushroom_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hard_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hard_mud'}.png deleted file mode 100644 index b375f60c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hard_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hard_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hard_mud_bricks'}.png deleted file mode 100644 index 63443610..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hard_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hard_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hard_packed_mud'}.png deleted file mode 100644 index eb58efd8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hard_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_black_wool'}.png deleted file mode 100644 index 3b1dc6b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_blue_wool'}.png deleted file mode 100644 index a48c1ef2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_brown_wool'}.png deleted file mode 100644 index 64b11f33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_cyan_wool'}.png deleted file mode 100644 index 6cf2006e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_gray_wool'}.png deleted file mode 100644 index 66e3ca03..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_green_wool'}.png deleted file mode 100644 index f15add31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_light_blue_wool'}.png deleted file mode 100644 index 2913a8d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_light_gray_wool'}.png deleted file mode 100644 index c5990f8c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_lime_wool'}.png deleted file mode 100644 index 61a40872..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_magenta_wool'}.png deleted file mode 100644 index d5e9a199..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_orange_wool'}.png deleted file mode 100644 index db3cecf5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_pink_wool'}.png deleted file mode 100644 index da3e024e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_purple_wool'}.png deleted file mode 100644 index 0bc8e8a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_red_wool'}.png deleted file mode 100644 index 9aa1f80f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_white_wool'}.png deleted file mode 100644 index aae0793c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_yellow_wool'}.png deleted file mode 100644 index a1af73da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__harsh_quilted_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_black_concrete'}.png deleted file mode 100644 index f5899a79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_blue_concrete'}.png deleted file mode 100644 index 372f165a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_brown_concrete'}.png deleted file mode 100644 index 7d318cde..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_cyan_concrete'}.png deleted file mode 100644 index c6420dbf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_gray_concrete'}.png deleted file mode 100644 index 281baa2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_green_concrete'}.png deleted file mode 100644 index 7f202d8f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_light_blue_concrete'}.png deleted file mode 100644 index c8d0e3a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_light_gray_concrete'}.png deleted file mode 100644 index b812afcd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_lime_concrete'}.png deleted file mode 100644 index 653bf4f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_magenta_concrete'}.png deleted file mode 100644 index 1de96b57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_orange_concrete'}.png deleted file mode 100644 index 96d3aafa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_pink_concrete'}.png deleted file mode 100644 index d805ce80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_purple_concrete'}.png deleted file mode 100644 index 06bb7979..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_red_concrete'}.png deleted file mode 100644 index 7d6e3572..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_white_concrete'}.png deleted file mode 100644 index 059b34b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_yellow_concrete'}.png deleted file mode 100644 index 967026e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hazard_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__heart_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__heart_mud'}.png deleted file mode 100644 index d3a05b84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__heart_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__heart_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__heart_mud_bricks'}.png deleted file mode 100644 index 2b8bcff8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__heart_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__heart_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__heart_packed_mud'}.png deleted file mode 100644 index c705bcba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__heart_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_acacia_planks'}.png deleted file mode 100644 index 6423280e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_bamboo_planks'}.png deleted file mode 100644 index 46ab55d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_birch_planks'}.png deleted file mode 100644 index bfccc8af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_cherry_planks'}.png deleted file mode 100644 index cd84a796..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_crimson_planks'}.png deleted file mode 100644 index c1067afa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_dark_oak_planks'}.png deleted file mode 100644 index f7b68a03..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_jungle_planks'}.png deleted file mode 100644 index c3265887..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_mangrove_planks'}.png deleted file mode 100644 index 9316c52e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_oak_planks'}.png deleted file mode 100644 index 75f22517..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_spruce_planks'}.png deleted file mode 100644 index 9d802ffe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_warped_planks'}.png deleted file mode 100644 index 1aaa6215..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__herringbone_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_acacia_planks'}.png deleted file mode 100644 index 4bb26609..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_bamboo_planks'}.png deleted file mode 100644 index 0f0dac21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_birch_planks'}.png deleted file mode 100644 index 4cbaca38..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_cherry_planks'}.png deleted file mode 100644 index 725f9ee2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_crimson_planks'}.png deleted file mode 100644 index 32a1576f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_dark_oak_planks'}.png deleted file mode 100644 index 547dea23..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_jungle_planks'}.png deleted file mode 100644 index 92123dcb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_mangrove_planks'}.png deleted file mode 100644 index aad5caa6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_oak_planks'}.png deleted file mode 100644 index df407d06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_spruce_planks'}.png deleted file mode 100644 index 58b31f62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_warped_planks'}.png deleted file mode 100644 index 02f12df5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hewn_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_black_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_black_glazed_terracotta'}.png deleted file mode 100644 index 7732afec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_black_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_black_terracotta'}.png deleted file mode 100644 index df036b21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_blue_glazed_terracotta'}.png deleted file mode 100644 index ba9adf31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_blue_terracotta'}.png deleted file mode 100644 index d3ddf481..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_brown_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_brown_glazed_terracotta'}.png deleted file mode 100644 index 68c0d85b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_brown_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_brown_terracotta'}.png deleted file mode 100644 index bf6a87d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_cyan_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_cyan_glazed_terracotta'}.png deleted file mode 100644 index 8b4c2830..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_cyan_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_cyan_terracotta'}.png deleted file mode 100644 index dab4aff5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_gray_glazed_terracotta'}.png deleted file mode 100644 index af275161..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_gray_terracotta'}.png deleted file mode 100644 index a18aa792..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_green_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_green_glazed_terracotta'}.png deleted file mode 100644 index ed41d036..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_green_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_green_terracotta'}.png deleted file mode 100644 index d82fa6f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_blue_glazed_terracotta'}.png deleted file mode 100644 index 0e12ba9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_blue_terracotta'}.png deleted file mode 100644 index 18454a63..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_gray_glazed_terracotta'}.png deleted file mode 100644 index 34b9c1fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_gray_terracotta'}.png deleted file mode 100644 index a08b4430..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_lime_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_lime_glazed_terracotta'}.png deleted file mode 100644 index 7e4a6697..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_lime_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_lime_terracotta'}.png deleted file mode 100644 index 21c2dfc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_magenta_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_magenta_glazed_terracotta'}.png deleted file mode 100644 index fe1692c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_magenta_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_magenta_terracotta'}.png deleted file mode 100644 index d7005771..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_orange_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_orange_glazed_terracotta'}.png deleted file mode 100644 index 8665c617..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_orange_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_orange_terracotta'}.png deleted file mode 100644 index 4a7b54ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_pink_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_pink_glazed_terracotta'}.png deleted file mode 100644 index bfba16a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_pink_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_pink_terracotta'}.png deleted file mode 100644 index a39079dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_purple_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_purple_glazed_terracotta'}.png deleted file mode 100644 index e516a24c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_purple_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_purple_terracotta'}.png deleted file mode 100644 index 14522dfd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_red_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_red_glazed_terracotta'}.png deleted file mode 100644 index e980353d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_red_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_red_terracotta'}.png deleted file mode 100644 index b51c0d9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_terracotta'}.png deleted file mode 100644 index 98b81566..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_white_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_white_glazed_terracotta'}.png deleted file mode 100644 index 926cb6bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_white_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_white_terracotta'}.png deleted file mode 100644 index de9b6985..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_yellow_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_yellow_glazed_terracotta'}.png deleted file mode 100644 index 9865fbc3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_yellow_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_yellow_terracotta'}.png deleted file mode 100644 index 06f33fa2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hexagonical_yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__historical_oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__historical_oak_bookshelf'}.png deleted file mode 100644 index ac91868d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__historical_oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__historical_oak_large_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__historical_oak_large_bookshelf'}.png deleted file mode 100644 index 78f52871..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__historical_oak_large_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_glowstone'}.png deleted file mode 100644 index c9c52225..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_redstone_lamp'}.png deleted file mode 100644 index 54c34ae4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_sea_lantern'}.png deleted file mode 100644 index 2cce4caa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_shroomlight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_shroomlight'}.png deleted file mode 100644 index 56cf9c04..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_shroomlight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_white_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_white_redstone_lamp'}.png deleted file mode 100644 index 555e2914..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__hived_white_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horned_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horned_mud'}.png deleted file mode 100644 index 19ff42a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horned_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horned_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horned_mud_bricks'}.png deleted file mode 100644 index 093374c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horned_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horned_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horned_packed_mud'}.png deleted file mode 100644 index 9f4bc802..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horned_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horrified_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horrified_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horrified_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horrified_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horrified_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__horrified_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_acacia_log'}.png deleted file mode 100644 index 6cafa886..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_birch_log'}.png deleted file mode 100644 index c0f8f781..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_cherry_log'}.png deleted file mode 100644 index 6953ff95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_crimson_stem'}.png deleted file mode 100644 index 53d68503..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_dark_oak_log'}.png deleted file mode 100644 index 8ba82654..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_jungle_log'}.png deleted file mode 100644 index 7ac3b9ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_mangrove_log'}.png deleted file mode 100644 index 85e35099..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_oak_log'}.png deleted file mode 100644 index a51798af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_spruce_log'}.png deleted file mode 100644 index 8ed16497..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_warped_stem'}.png deleted file mode 100644 index ac018ff3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__i_sign_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_bricks'}.png deleted file mode 100644 index 0c438e90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_mini_tiles'}.png deleted file mode 100644 index a4d7eb05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_pillar'}.png deleted file mode 100644 index f850165d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_pillar_top'}.png deleted file mode 100644 index 3330523e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_scales'}.png deleted file mode 100644 index a34d3137..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ice_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_amethyst_block'}.png deleted file mode 100644 index 6f32d7f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_ancient_debris'}.png deleted file mode 100644 index 111f9c7f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_andesite'}.png deleted file mode 100644 index 90b08d84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_basalt'}.png deleted file mode 100644 index 22219f32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_blackstone'}.png deleted file mode 100644 index e32ab16e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_blue_ice'}.png deleted file mode 100644 index 52698a3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_borderless_bricks'}.png deleted file mode 100644 index 04108f19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_bricks'}.png deleted file mode 100644 index 97f1dc51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_calcite'}.png deleted file mode 100644 index 520903d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_clay'}.png deleted file mode 100644 index 1182163a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_coal_block'}.png deleted file mode 100644 index 11c7e7bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_cobblestone'}.png deleted file mode 100644 index 6a6998c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_crying_obsidian'}.png deleted file mode 100644 index 824874a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_dark_prismarine'}.png deleted file mode 100644 index 7b187ba7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_deepslate'}.png deleted file mode 100644 index a12dfdf4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_diorite'}.png deleted file mode 100644 index a86478dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_dirt'}.png deleted file mode 100644 index 5e1fa8eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_dripstone_block'}.png deleted file mode 100644 index b4077b0e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_end_stone'}.png deleted file mode 100644 index 1ded5ee1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_gilded_blackstone'}.png deleted file mode 100644 index 72d881c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_glowstone'}.png deleted file mode 100644 index 924082ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_granite'}.png deleted file mode 100644 index 7502b41a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_ice'}.png deleted file mode 100644 index f1adf645..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_lapis_block'}.png deleted file mode 100644 index b611a212..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_lodestone'}.png deleted file mode 100644 index 8710ad76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_magma_block'}.png deleted file mode 100644 index 7d026b6a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mossy_cobblestone'}.png deleted file mode 100644 index 893a5a34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mossy_stone_bricks'}.png deleted file mode 100644 index ab77f737..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mud'}.png deleted file mode 100644 index 5ab36809..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mud_bricks'}.png deleted file mode 100644 index 2f73dbda..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_nether_bricks'}.png deleted file mode 100644 index 7dbc7dd4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_netherrack'}.png deleted file mode 100644 index ede0070f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_obsidian'}.png deleted file mode 100644 index 09965457..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_packed_ice'}.png deleted file mode 100644 index 722b2717..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_packed_mud'}.png deleted file mode 100644 index a55a8293..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_prismarine'}.png deleted file mode 100644 index 1424b542..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_purpur_block'}.png deleted file mode 100644 index aad0a8b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_quartz_block'}.png deleted file mode 100644 index 8e13acd3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_raw_copper_block'}.png deleted file mode 100644 index 6255daa1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_raw_gold_block'}.png deleted file mode 100644 index d34cf585..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_raw_iron_block'}.png deleted file mode 100644 index 6c04b365..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_red_nether_bricks'}.png deleted file mode 100644 index e5182c4e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_red_sandstone'}.png deleted file mode 100644 index e0fc80e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_redstone_block'}.png deleted file mode 100644 index 800bba82..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_redstone_lamp'}.png deleted file mode 100644 index 0f52aac0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_sandstone'}.png deleted file mode 100644 index 6d8d099b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_sea_lantern'}.png deleted file mode 100644 index b14f87ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_shroomlight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_shroomlight'}.png deleted file mode 100644 index 4aea7e00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_shroomlight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_smooth_stone'}.png deleted file mode 100644 index 2e758a79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_snow_block'}.png deleted file mode 100644 index bab27c4b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_stone'}.png deleted file mode 100644 index 678227a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_tuff'}.png deleted file mode 100644 index d554abf7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_white_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_white_redstone_lamp'}.png deleted file mode 100644 index f8e576c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inlayed_white_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_amethyst_block'}.png deleted file mode 100644 index 26a87474..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_ancient_debris'}.png deleted file mode 100644 index 1dda383a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_andesite'}.png deleted file mode 100644 index 00f97300..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_basalt'}.png deleted file mode 100644 index 2a667f00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_black_terracotta'}.png deleted file mode 100644 index 81108e07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_blackstone'}.png deleted file mode 100644 index 2a0eea1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_blue_ice'}.png deleted file mode 100644 index af9861da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_blue_terracotta'}.png deleted file mode 100644 index 475b697f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_bone_block'}.png deleted file mode 100644 index a5304c60..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_borderless_bricks'}.png deleted file mode 100644 index 12112bf8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_bricks'}.png deleted file mode 100644 index 676ab0d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_brown_terracotta'}.png deleted file mode 100644 index fcb92725..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_calcite'}.png deleted file mode 100644 index f0316b6a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_clay'}.png deleted file mode 100644 index 32b611dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_coal_block'}.png deleted file mode 100644 index e8f3a713..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_cobblestone'}.png deleted file mode 100644 index c8ac3afd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_crying_obsidian'}.png deleted file mode 100644 index e84f82e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_cyan_terracotta'}.png deleted file mode 100644 index 889265b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_dark_prismarine'}.png deleted file mode 100644 index 6f1537e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_deepslate'}.png deleted file mode 100644 index bfd287db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_diorite'}.png deleted file mode 100644 index a5ad8833..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_dirt'}.png deleted file mode 100644 index 3d47f3ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_dripstone_block'}.png deleted file mode 100644 index 63b90407..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_end_stone'}.png deleted file mode 100644 index 498be12c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_gilded_blackstone'}.png deleted file mode 100644 index 703536f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_granite'}.png deleted file mode 100644 index 9fbd3a08..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_gray_terracotta'}.png deleted file mode 100644 index 901dfb8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_green_terracotta'}.png deleted file mode 100644 index 02cf6b87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_ice'}.png deleted file mode 100644 index c8daa636..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_lapis_block'}.png deleted file mode 100644 index 5916cc6e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_light_blue_terracotta'}.png deleted file mode 100644 index 438a450c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_light_gray_terracotta'}.png deleted file mode 100644 index d5b95d35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_lime_terracotta'}.png deleted file mode 100644 index cc6556dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_lodestone'}.png deleted file mode 100644 index dee7b213..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_magenta_terracotta'}.png deleted file mode 100644 index 052662ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_magma_block'}.png deleted file mode 100644 index c32b7251..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_mossy_cobblestone'}.png deleted file mode 100644 index 1cdd9884..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_mossy_stone_bricks'}.png deleted file mode 100644 index 7fa6527c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_nether_bricks'}.png deleted file mode 100644 index 76571217..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_netherrack'}.png deleted file mode 100644 index 15f1a6db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_obsidian'}.png deleted file mode 100644 index 13487d4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_orange_terracotta'}.png deleted file mode 100644 index ed7c7942..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_packed_ice'}.png deleted file mode 100644 index e81d39aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_pink_terracotta'}.png deleted file mode 100644 index c8294c35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_prismarine'}.png deleted file mode 100644 index a307f5ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_purple_terracotta'}.png deleted file mode 100644 index 4e74ae4f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_purpur_block'}.png deleted file mode 100644 index 0c4ad147..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_quartz_block'}.png deleted file mode 100644 index 29c9e37e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_raw_copper_block'}.png deleted file mode 100644 index 8e9d9d6b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_raw_gold_block'}.png deleted file mode 100644 index cf262260..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_raw_iron_block'}.png deleted file mode 100644 index 5d4d5765..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_red_nether_bricks'}.png deleted file mode 100644 index 8e4b3faf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_red_sandstone'}.png deleted file mode 100644 index f6abf14d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_red_terracotta'}.png deleted file mode 100644 index b8be1742..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_redstone_block'}.png deleted file mode 100644 index dbb16d91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_sandstone'}.png deleted file mode 100644 index 1aec5b9f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_smooth_stone'}.png deleted file mode 100644 index 86b4d238..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_snow_block'}.png deleted file mode 100644 index 4f0ebb85..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_stone'}.png deleted file mode 100644 index b488d02f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_terracotta'}.png deleted file mode 100644 index 1e424a12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_tuff'}.png deleted file mode 100644 index 2e1b64d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_white_terracotta'}.png deleted file mode 100644 index 10450fa0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_yellow_terracotta'}.png deleted file mode 100644 index 4264ce5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__inscribed_yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__iron_block_panels'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__iron_block_panels'}.png deleted file mode 100644 index 679330ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__iron_block_panels'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_hay_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_hay_block'}.png deleted file mode 100644 index bd3a94fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_hay_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_planks_mosaic'}.png deleted file mode 100644 index ab42d00e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_planks_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_planks_panel'}.png deleted file mode 100644 index 13f53b8b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_planks_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_planks_shavings'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_planks_shavings'}.png deleted file mode 100644 index b7a495a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__jungle_planks_shavings'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_acacia_log'}.png deleted file mode 100644 index 1f92c6a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_birch_log'}.png deleted file mode 100644 index cd0d8fc9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_cherry_log'}.png deleted file mode 100644 index 815f4490..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_crimson_stem'}.png deleted file mode 100644 index 48db7c2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_dark_oak_log'}.png deleted file mode 100644 index cd88a057..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_jungle_log'}.png deleted file mode 100644 index 5b394b96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_mangrove_log'}.png deleted file mode 100644 index 7261a582..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_oak_log'}.png deleted file mode 100644 index d9ea23b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_spruce_log'}.png deleted file mode 100644 index d4d0d112..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_warped_stem'}.png deleted file mode 100644 index 1769f95b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__k_sign_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kabotchkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kabotchkin'}.png deleted file mode 100644 index d634150d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kabotchkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kelp_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kelp_sand'}.png deleted file mode 100644 index 98b06e0e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kelp_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__keyhole_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__keyhole_mud'}.png deleted file mode 100644 index 15ef1c26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__keyhole_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__keyhole_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__keyhole_mud_bricks'}.png deleted file mode 100644 index ad99ed21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__keyhole_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__keyhole_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__keyhole_packed_mud'}.png deleted file mode 100644 index 9f5f10b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__keyhole_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kitty_faced_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kitty_faced_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kitty_faced_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kitty_faced_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kitty_faced_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__kitty_faced_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_black_wool'}.png deleted file mode 100644 index d2e327cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_blue_wool'}.png deleted file mode 100644 index f2a9cdc2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_brown_wool'}.png deleted file mode 100644 index ac13fc2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_cyan_wool'}.png deleted file mode 100644 index 5b4a15f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_gray_wool'}.png deleted file mode 100644 index 53a8e82e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_green_wool'}.png deleted file mode 100644 index 9903f3ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_light_blue_wool'}.png deleted file mode 100644 index 49243e6f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_light_gray_wool'}.png deleted file mode 100644 index 773982b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_lime_wool'}.png deleted file mode 100644 index 1703ecd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_magenta_wool'}.png deleted file mode 100644 index 1cf18123..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_orange_wool'}.png deleted file mode 100644 index ccc69963..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_pink_wool'}.png deleted file mode 100644 index f3416692..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_purple_wool'}.png deleted file mode 100644 index 541b9ccc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_red_wool'}.png deleted file mode 100644 index 6edf2e3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_white_wool'}.png deleted file mode 100644 index c4a1021a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_yellow_wool'}.png deleted file mode 100644 index f07e6a2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knitted_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_acacia_log'}.png deleted file mode 100644 index 6df19b85..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_birch_log'}.png deleted file mode 100644 index db323614..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_cherry_log'}.png deleted file mode 100644 index 77d043ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_crimson_stem'}.png deleted file mode 100644 index a1a3115f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_dark_oak_log'}.png deleted file mode 100644 index 1fc51698..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_jungle_log'}.png deleted file mode 100644 index 554cb32d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_mangrove_log'}.png deleted file mode 100644 index e120c55e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_oak_log'}.png deleted file mode 100644 index 0ad2c34f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_spruce_log'}.png deleted file mode 100644 index a164fd1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_warped_stem'}.png deleted file mode 100644 index bd20f355..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__knotted_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_acacia_log'}.png deleted file mode 100644 index c2fdc6e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_birch_log'}.png deleted file mode 100644 index 0121c21c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_cherry_log'}.png deleted file mode 100644 index 53cba4be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_crimson_stem'}.png deleted file mode 100644 index 894883c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_dark_oak_log'}.png deleted file mode 100644 index ff13c23a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_jungle_log'}.png deleted file mode 100644 index 3e176595..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_mangrove_log'}.png deleted file mode 100644 index ea1a6ca6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_oak_log'}.png deleted file mode 100644 index bfa1413b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_spruce_log'}.png deleted file mode 100644 index d297652f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_warped_stem'}.png deleted file mode 100644 index d5ccd6e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__l_sign_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_acacia_planks'}.png deleted file mode 100644 index 7b84312d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_bamboo_planks'}.png deleted file mode 100644 index 093bbebf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_birch_planks'}.png deleted file mode 100644 index 1f5da918..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_cherry_planks'}.png deleted file mode 100644 index 9dcd22eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_crimson_planks'}.png deleted file mode 100644 index 193f3016..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_dark_oak_planks'}.png deleted file mode 100644 index e7c36be6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_jungle_planks'}.png deleted file mode 100644 index 11d63f47..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_mangrove_planks'}.png deleted file mode 100644 index 5c21614a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_oak_planks'}.png deleted file mode 100644 index 0061b512..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_spruce_planks'}.png deleted file mode 100644 index 41fc0c85..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_warped_planks'}.png deleted file mode 100644 index da827013..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__laced_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_bricks'}.png deleted file mode 100644 index 49af90fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_mini_tiles'}.png deleted file mode 100644 index 369efdd9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_pillar'}.png deleted file mode 100644 index 4afefbfe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_pillar_top'}.png deleted file mode 100644 index f9bd7484..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_scales'}.png deleted file mode 100644 index a428a4dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lapis_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_black_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_black_stained_glass'}.png deleted file mode 100644 index c29048aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_black_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_blue_stained_glass'}.png deleted file mode 100644 index 75afd4ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_brown_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_brown_stained_glass'}.png deleted file mode 100644 index 3ad798cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_brown_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_cyan_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_cyan_stained_glass'}.png deleted file mode 100644 index e25b5552..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_cyan_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_gray_stained_glass'}.png deleted file mode 100644 index 1b41000d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_green_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_green_stained_glass'}.png deleted file mode 100644 index 11431851..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_green_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_leaded_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_leaded_glass'}.png deleted file mode 100644 index 2086699f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_leaded_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_light_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_light_blue_stained_glass'}.png deleted file mode 100644 index bd895cfe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_light_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_light_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_light_gray_stained_glass'}.png deleted file mode 100644 index 04c12f42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_light_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_lime_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_lime_stained_glass'}.png deleted file mode 100644 index 257f91ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_lime_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_magenta_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_magenta_stained_glass'}.png deleted file mode 100644 index a9e1343e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_magenta_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_orange_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_orange_stained_glass'}.png deleted file mode 100644 index a7a05c52..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_orange_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_pink_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_pink_stained_glass'}.png deleted file mode 100644 index 93bf2b20..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_pink_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_purple_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_purple_stained_glass'}.png deleted file mode 100644 index 84a77a28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_purple_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_red_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_red_stained_glass'}.png deleted file mode 100644 index fc86452e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_red_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_white_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_white_stained_glass'}.png deleted file mode 100644 index 94d66844..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_white_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_yellow_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_yellow_stained_glass'}.png deleted file mode 100644 index 45a9ec37..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_diamond_yellow_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_mud_bricks_sigil'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_mud_bricks_sigil'}.png deleted file mode 100644 index 90da59fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_mud_bricks_sigil'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_mud_sigil'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_mud_sigil'}.png deleted file mode 100644 index 07d35ce0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_mud_sigil'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_packed_mud_sigil'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_packed_mud_sigil'}.png deleted file mode 100644 index beb549e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_packed_mud_sigil'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_tiled_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_tiled_mud'}.png deleted file mode 100644 index 80264cc2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_tiled_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_tiled_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_tiled_mud_bricks'}.png deleted file mode 100644 index 5597af4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_tiled_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_tiled_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_tiled_packed_mud'}.png deleted file mode 100644 index 184c9d82..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__large_tiled_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_amethyst_block_bricks'}.png deleted file mode 100644 index cd6734d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_ancient_debris_bricks'}.png deleted file mode 100644 index c07a3584..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_andesite_bricks'}.png deleted file mode 100644 index 9e773ee4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_basalt_bricks'}.png deleted file mode 100644 index 56643e84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_blackstone_bricks'}.png deleted file mode 100644 index 379729bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_blue_ice_bricks'}.png deleted file mode 100644 index cb21f682..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_calcite_bricks'}.png deleted file mode 100644 index b2859736..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_clay_bricks'}.png deleted file mode 100644 index 25035c53..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_coal_block_bricks'}.png deleted file mode 100644 index b7dedba5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_cobblestone_bricks'}.png deleted file mode 100644 index c514a295..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_crying_obsidian_bricks'}.png deleted file mode 100644 index c70db743..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_dark_prismarine_bricks'}.png deleted file mode 100644 index 236a7635..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_diorite_bricks'}.png deleted file mode 100644 index 9e0938e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_dirt_bricks'}.png deleted file mode 100644 index ad8521fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_dripstone_block_bricks'}.png deleted file mode 100644 index fd3e73a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_end_stone_bricks'}.png deleted file mode 100644 index 17829b1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_gilded_blackstone_bricks'}.png deleted file mode 100644 index 31b29888..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_granite_bricks'}.png deleted file mode 100644 index 021b43b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_ice_bricks'}.png deleted file mode 100644 index 771c9c16..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_lapis_block_bricks'}.png deleted file mode 100644 index 844860bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_lodestone_bricks'}.png deleted file mode 100644 index fcf9ac08..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_magma_block_bricks'}.png deleted file mode 100644 index c004b720..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_mossy_cobblestone_bricks'}.png deleted file mode 100644 index 7d86e818..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index 9bbd804e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_nether_bricks_bricks'}.png deleted file mode 100644 index bd246c5f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_netherrack_bricks'}.png deleted file mode 100644 index 98649795..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_obsidian_bricks'}.png deleted file mode 100644 index 1a862e3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_packed_ice_bricks'}.png deleted file mode 100644 index ba485799..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_prismarine_bricks'}.png deleted file mode 100644 index 177e2129..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_purpur_block_bricks'}.png deleted file mode 100644 index 07fcecf3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_quartz_block_bricks'}.png deleted file mode 100644 index d6d4370c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_raw_copper_block_bricks'}.png deleted file mode 100644 index 3a215ddd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_raw_gold_block_bricks'}.png deleted file mode 100644 index a927e96b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_raw_iron_block_bricks'}.png deleted file mode 100644 index 31247e3a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_red_nether_bricks_bricks'}.png deleted file mode 100644 index fa7d7560..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_red_sandstone_bricks'}.png deleted file mode 100644 index 5f53166d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_redstone_block_bricks'}.png deleted file mode 100644 index 4fb70429..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_sandstone_bricks'}.png deleted file mode 100644 index 3f8dc8e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_smooth_stone_bricks'}.png deleted file mode 100644 index 9159b598..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_snow_block_bricks'}.png deleted file mode 100644 index fdde86b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_stone_bricks'}.png deleted file mode 100644 index 66a0899b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_tuff_bricks'}.png deleted file mode 100644 index 0fc8fe49..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layed_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_black_terracotta'}.png deleted file mode 100644 index 86b51919..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_blue_terracotta'}.png deleted file mode 100644 index db82f769..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_brown_terracotta'}.png deleted file mode 100644 index 8a379d23..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_cyan_terracotta'}.png deleted file mode 100644 index 2de66991..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_diamond_block'}.png deleted file mode 100644 index bb311d2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_emerald_block'}.png deleted file mode 100644 index e17e1b71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_gold_block'}.png deleted file mode 100644 index 94ed1db9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_gray_terracotta'}.png deleted file mode 100644 index c839d073..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_green_terracotta'}.png deleted file mode 100644 index 147b251c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_iron_block'}.png deleted file mode 100644 index ee180564..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_light_blue_terracotta'}.png deleted file mode 100644 index bf655afb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_light_gray_terracotta'}.png deleted file mode 100644 index fd2107d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_lime_terracotta'}.png deleted file mode 100644 index 1a1d65d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_magenta_terracotta'}.png deleted file mode 100644 index 6ee1554b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_netherite_block'}.png deleted file mode 100644 index c9d49e85..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_orange_terracotta'}.png deleted file mode 100644 index c60409c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_pink_terracotta'}.png deleted file mode 100644 index bcc5e2f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_purple_terracotta'}.png deleted file mode 100644 index 5919973a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_red_terracotta'}.png deleted file mode 100644 index d5b9d4ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_acacia_log'}.png deleted file mode 100644 index 39902610..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_birch_log'}.png deleted file mode 100644 index 6001a4c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_cherry_log'}.png deleted file mode 100644 index e9a80c2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_crimson_stem'}.png deleted file mode 100644 index f71fdef2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_dark_oak_log'}.png deleted file mode 100644 index db2bd048..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_jungle_log'}.png deleted file mode 100644 index 8b8f2d13..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_oak_log'}.png deleted file mode 100644 index 2f542394..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_spruce_log'}.png deleted file mode 100644 index a4d0e12c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_warped_stem'}.png deleted file mode 100644 index cd4f3f45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_terracotta'}.png deleted file mode 100644 index 7e0481ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_copper_block'}.png deleted file mode 100644 index 275cca75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_exposed_copper'}.png deleted file mode 100644 index 6ab1fc73..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_oxidized_copper'}.png deleted file mode 100644 index bacb0291..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_weathered_copper'}.png deleted file mode 100644 index 6672e191..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_white_terracotta'}.png deleted file mode 100644 index d2654d61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_yellow_terracotta'}.png deleted file mode 100644 index b31999dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__layered_yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lead_woven_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lead_woven_glass'}.png deleted file mode 100644 index f1ea526c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lead_woven_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leafy_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leafy_dried_kelp_block'}.png deleted file mode 100644 index 44203c75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leafy_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leafy_mangrove_roots'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leafy_mangrove_roots'}.png deleted file mode 100644 index 7ca85384..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leafy_mangrove_roots'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leaning_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leaning_mud'}.png deleted file mode 100644 index 2846daf7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leaning_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leaning_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leaning_mud_bricks'}.png deleted file mode 100644 index 6798564e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leaning_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leaning_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leaning_packed_mud'}.png deleted file mode 100644 index 38b34be2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__leaning_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_bricks'}.png deleted file mode 100644 index 70fcdfdd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_panel'}.png deleted file mode 100644 index 8df0f38c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_pillar'}.png deleted file mode 100644 index 36443029..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_tiles'}.png deleted file mode 100644 index 04f5295f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 25211619..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index bc9821b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index 15272a3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_tiles'}.png deleted file mode 100644 index 2684a01d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_bricks'}.png deleted file mode 100644 index d5c94e06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_column'}.png deleted file mode 100644 index 046e3f33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_pillar'}.png deleted file mode 100644 index a6a896d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_tile'}.png deleted file mode 100644 index 0dfc442c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_tiles'}.png deleted file mode 100644 index c3de3a1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_blue_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_dotted_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_dotted_red_mushroom_block'}.png deleted file mode 100644 index 0838e19e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_dotted_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_dusted_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_dusted_brown_mushroom_block'}.png deleted file mode 100644 index 56fe0e2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_dusted_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_dusted_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_dusted_red_mushroom_block'}.png deleted file mode 100644 index dc233f82..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_dusted_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_freckled_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_freckled_brown_mushroom_block'}.png deleted file mode 100644 index 1681d14f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_freckled_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_freckled_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_freckled_red_mushroom_block'}.png deleted file mode 100644 index 1a7917db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_freckled_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_bricks'}.png deleted file mode 100644 index 52e9f00d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_panel'}.png deleted file mode 100644 index 559ef6ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_pillar'}.png deleted file mode 100644 index 0ee08d3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_tiles'}.png deleted file mode 100644 index 02ed8fa8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 5ead4ce7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index 396554cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index b93089be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_tiles'}.png deleted file mode 100644 index 9a3416b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_bricks'}.png deleted file mode 100644 index bc62b98f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_column'}.png deleted file mode 100644 index 2cad0744..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_pillar'}.png deleted file mode 100644 index c7cf0c79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_tile'}.png deleted file mode 100644 index f02a36ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_tiles'}.png deleted file mode 100644 index 3e784b13..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_gray_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_scaled_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_scaled_brown_mushroom_block'}.png deleted file mode 100644 index 06bdd50e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_scaled_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_smooth_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_smooth_brown_mushroom_block'}.png deleted file mode 100644 index 1fd587b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_smooth_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_smooth_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_smooth_red_mushroom_block'}.png deleted file mode 100644 index 8fef323f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_smooth_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_spotted_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_spotted_brown_mushroom_block'}.png deleted file mode 100644 index 152132e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_spotted_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_spotted_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_spotted_red_mushroom_block'}.png deleted file mode 100644 index 85d112d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_spotted_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_sprinkled_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_sprinkled_brown_mushroom_block'}.png deleted file mode 100644 index db1dfc1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__light_sprinkled_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_bricks'}.png deleted file mode 100644 index 8558dd85..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_panel'}.png deleted file mode 100644 index 45407b01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_pillar'}.png deleted file mode 100644 index 187772cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_tiles'}.png deleted file mode 100644 index 1b08d474..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 9d12be40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index e3fef4c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index 0d2a6e6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_tiles'}.png deleted file mode 100644 index 3bea37a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_moss_block'}.png deleted file mode 100644 index 14f9b20d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_bricks'}.png deleted file mode 100644 index fe06f0b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_column'}.png deleted file mode 100644 index 5ef51a62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_pillar'}.png deleted file mode 100644 index 8bd3a3b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_tile'}.png deleted file mode 100644 index 41e76fed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_tiles'}.png deleted file mode 100644 index 9b5841e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lime_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_amethyst_block'}.png deleted file mode 100644 index 25e746e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_ancient_debris'}.png deleted file mode 100644 index 04e2fae7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_andesite'}.png deleted file mode 100644 index 5eb72242..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_basalt'}.png deleted file mode 100644 index d8b1c2d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_blackstone'}.png deleted file mode 100644 index 19b4f0fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_blue_ice'}.png deleted file mode 100644 index 4014eb2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_borderless_bricks'}.png deleted file mode 100644 index c743c179..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_bricks'}.png deleted file mode 100644 index d1b50dc4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_calcite'}.png deleted file mode 100644 index 339c6072..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_clay'}.png deleted file mode 100644 index 4ea497e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_coal_block'}.png deleted file mode 100644 index 4f82abd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_cobblestone'}.png deleted file mode 100644 index d02612b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_crying_obsidian'}.png deleted file mode 100644 index 44445dc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_dark_prismarine'}.png deleted file mode 100644 index 1885aff7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_deepslate'}.png deleted file mode 100644 index c2d69c96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_diorite'}.png deleted file mode 100644 index 06dcd061..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_dirt'}.png deleted file mode 100644 index 04f98e57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_dripstone_block'}.png deleted file mode 100644 index c5e48d8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_end_stone'}.png deleted file mode 100644 index 7100b424..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_gilded_blackstone'}.png deleted file mode 100644 index 3a09c24a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_granite'}.png deleted file mode 100644 index 08f311b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_ice'}.png deleted file mode 100644 index a2a097ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_lapis_block'}.png deleted file mode 100644 index 151f4b40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_magma_block'}.png deleted file mode 100644 index f0915018..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_mossy_cobblestone'}.png deleted file mode 100644 index aceb5fa3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_mossy_stone_bricks'}.png deleted file mode 100644 index 1d8112c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_nether_bricks'}.png deleted file mode 100644 index ca30a50a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_netherrack'}.png deleted file mode 100644 index a28b7855..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_obsidian'}.png deleted file mode 100644 index 88950084..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_packed_ice'}.png deleted file mode 100644 index a51c1406..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_prismarine'}.png deleted file mode 100644 index e51b8938..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_purpur_block'}.png deleted file mode 100644 index a4ac2b24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_quartz_block'}.png deleted file mode 100644 index 045a87da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_raw_copper_block'}.png deleted file mode 100644 index b39ededb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_raw_gold_block'}.png deleted file mode 100644 index 99fdcfcb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_raw_iron_block'}.png deleted file mode 100644 index f29bac33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_red_nether_bricks'}.png deleted file mode 100644 index 12b8b2ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_red_sandstone'}.png deleted file mode 100644 index 701b1003..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_redstone_block'}.png deleted file mode 100644 index 20594bf0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_sandstone'}.png deleted file mode 100644 index d8c93f14..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_smooth_stone'}.png deleted file mode 100644 index fa49137d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_snow_block'}.png deleted file mode 100644 index 484fc070..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_stone'}.png deleted file mode 100644 index 87d67a21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_tuff'}.png deleted file mode 100644 index 8f9f12b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loded_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_bricks'}.png deleted file mode 100644 index 6b7aab8e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_mini_tiles'}.png deleted file mode 100644 index 3c0a809b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_pillar'}.png deleted file mode 100644 index a825338a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_pillar_top'}.png deleted file mode 100644 index c78e2a99..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_scales'}.png deleted file mode 100644 index 8f28f4e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lodestone_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loom_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loom_table'}.png deleted file mode 100644 index 94a8270c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loom_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loreful_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loreful_mud'}.png deleted file mode 100644 index 0131ed1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loreful_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loreful_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loreful_mud_bricks'}.png deleted file mode 100644 index 928309ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loreful_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loreful_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loreful_packed_mud'}.png deleted file mode 100644 index 1500ef06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__loreful_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_acacia_log'}.png deleted file mode 100644 index 67fe6204..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_birch_log'}.png deleted file mode 100644 index 0b10271f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_cherry_log'}.png deleted file mode 100644 index 9690dd95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_crimson_stem'}.png deleted file mode 100644 index 3e903f60..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_dark_oak_log'}.png deleted file mode 100644 index cc0f5459..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_jungle_log'}.png deleted file mode 100644 index 90bfe004..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_mangrove_log'}.png deleted file mode 100644 index 0b801dd4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_oak_log'}.png deleted file mode 100644 index 760ef033..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_spruce_log'}.png deleted file mode 100644 index d5b89924..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_warped_stem'}.png deleted file mode 100644 index 98647fea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lumpy_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lush_mangrove_roots'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lush_mangrove_roots'}.png deleted file mode 100644 index 803f2a02..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lush_mangrove_roots'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lush_red_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lush_red_sand'}.png deleted file mode 100644 index e52730be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lush_red_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lush_sponge'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lush_sponge'}.png deleted file mode 100644 index 89abf0fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__lush_sponge'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_acacia_log'}.png deleted file mode 100644 index 40f822cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_birch_log'}.png deleted file mode 100644 index b7d3618b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_cherry_log'}.png deleted file mode 100644 index 01fc16bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_crimson_stem'}.png deleted file mode 100644 index 3de68f48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_dark_oak_log'}.png deleted file mode 100644 index 41e48d27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_jungle_log'}.png deleted file mode 100644 index 55eb066f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_mangrove_log'}.png deleted file mode 100644 index 022b475d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_oak_log'}.png deleted file mode 100644 index d421e54b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_spruce_log'}.png deleted file mode 100644 index 12e1c4a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_warped_stem'}.png deleted file mode 100644 index e4991f51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__m_sign_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_bricks'}.png deleted file mode 100644 index 2bdb4ddc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_panel'}.png deleted file mode 100644 index 37850ac2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_pillar'}.png deleted file mode 100644 index 46ab8ba5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_tiles'}.png deleted file mode 100644 index 5670deb3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_acacia_leaves'}.png deleted file mode 100644 index a4ac0455..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_birch_leaves'}.png deleted file mode 100644 index 6ffa9a7b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_dark_oak_leaves'}.png deleted file mode 100644 index 11811e1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_jungle_leaves'}.png deleted file mode 100644 index 35707b7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_oak_leaves'}.png deleted file mode 100644 index aad3e60f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_spruce_leaves'}.png deleted file mode 100644 index b2f15000..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_flower_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 2dbbd6d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index 34fecdd5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index 21e52778..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_tiles'}.png deleted file mode 100644 index f64d4a7f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_bricks'}.png deleted file mode 100644 index 24e2ac3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_column'}.png deleted file mode 100644 index fe3e884a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_pillar'}.png deleted file mode 100644 index e0f15858..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_tile'}.png deleted file mode 100644 index 0b2a7c2b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_tiles'}.png deleted file mode 100644 index af5e3ce5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magenta_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_bricks'}.png deleted file mode 100644 index 1a9d11dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_mini_tiles'}.png deleted file mode 100644 index 52095fe7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_pillar'}.png deleted file mode 100644 index 2aead4b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_pillar_top'}.png deleted file mode 100644 index 02512255..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_scales'}.png deleted file mode 100644 index b7e227b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__magma_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mangrove_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mangrove_planks_mosaic'}.png deleted file mode 100644 index 91e7b5ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mangrove_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mangrove_planks_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mangrove_planks_panel'}.png deleted file mode 100644 index d3268322..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mangrove_planks_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mangrove_planks_shavings'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mangrove_planks_shavings'}.png deleted file mode 100644 index 0616d9e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mangrove_planks_shavings'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mason_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mason_table'}.png deleted file mode 100644 index efa271fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mason_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_amethyst_block_bricks'}.png deleted file mode 100644 index 1e75061b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_ancient_debris_bricks'}.png deleted file mode 100644 index 2fcec2b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_andesite_bricks'}.png deleted file mode 100644 index b18b9dbb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_basalt_bricks'}.png deleted file mode 100644 index ed5630c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_blackstone_bricks'}.png deleted file mode 100644 index 6720d04a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_blue_ice_bricks'}.png deleted file mode 100644 index adcfd23b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_borderless_bricks_bricks'}.png deleted file mode 100644 index f663129e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_bricks_bricks'}.png deleted file mode 100644 index 199f46a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_calcite_bricks'}.png deleted file mode 100644 index d3183478..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_clay_bricks'}.png deleted file mode 100644 index 9d19277e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_coal_block_bricks'}.png deleted file mode 100644 index 38bbb3fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_cobblestone_bricks'}.png deleted file mode 100644 index 43ba57cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_crying_obsidian_bricks'}.png deleted file mode 100644 index 98413543..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_dark_prismarine_bricks'}.png deleted file mode 100644 index 7d86a80b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_deepslate_bricks'}.png deleted file mode 100644 index af854976..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_diorite_bricks'}.png deleted file mode 100644 index b2ae55b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_dirt_bricks'}.png deleted file mode 100644 index b8ef90c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_dripstone_block_bricks'}.png deleted file mode 100644 index 62e01be8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_end_stone_bricks'}.png deleted file mode 100644 index 0e7f935d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_gilded_blackstone_bricks'}.png deleted file mode 100644 index 6f75544c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_granite_bricks'}.png deleted file mode 100644 index fc8e52c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_ice_bricks'}.png deleted file mode 100644 index 59696290..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_lapis_block_bricks'}.png deleted file mode 100644 index abcba3cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_lodestone_bricks'}.png deleted file mode 100644 index c446acfe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_magma_block_bricks'}.png deleted file mode 100644 index cbabba8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mossy_cobblestone_bricks'}.png deleted file mode 100644 index e7f93fb6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index 60555750..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mud_bricks'}.png deleted file mode 100644 index 589d5f97..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mud_bricks_bricks'}.png deleted file mode 100644 index 9642bcdf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_nether_bricks_bricks'}.png deleted file mode 100644 index 3b78ceb0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_netherrack_bricks'}.png deleted file mode 100644 index ee5c0234..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_obsidian_bricks'}.png deleted file mode 100644 index 267eb80b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_packed_ice_bricks'}.png deleted file mode 100644 index 62672481..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_packed_mud_bricks'}.png deleted file mode 100644 index f5b5bbcb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_prismarine_bricks'}.png deleted file mode 100644 index 1cc730f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_purpur_block_bricks'}.png deleted file mode 100644 index 25c87d96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_quartz_block_bricks'}.png deleted file mode 100644 index fdfaf264..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_raw_copper_block_bricks'}.png deleted file mode 100644 index 79275925..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_raw_gold_block_bricks'}.png deleted file mode 100644 index 329d204f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_raw_iron_block_bricks'}.png deleted file mode 100644 index 9c4fe49e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_red_nether_bricks_bricks'}.png deleted file mode 100644 index 161c9c90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_red_sandstone_bricks'}.png deleted file mode 100644 index 1e530359..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_redstone_block_bricks'}.png deleted file mode 100644 index 37c4f6cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_sandstone_bricks'}.png deleted file mode 100644 index 81d4a8da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_smooth_stone_bricks'}.png deleted file mode 100644 index c617a8ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_snow_block_bricks'}.png deleted file mode 100644 index 9961b01e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_stone_bricks'}.png deleted file mode 100644 index 00eb0809..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_tuff_bricks'}.png deleted file mode 100644 index f2a74ff3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__massive_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mini_tiled_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mini_tiled_mud'}.png deleted file mode 100644 index a1e48662..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mini_tiled_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mini_tiled_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mini_tiled_mud_bricks'}.png deleted file mode 100644 index 8531112f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mini_tiled_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mini_tiled_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mini_tiled_packed_mud'}.png deleted file mode 100644 index 2e5ae576..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mini_tiled_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_black_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_black_glazed_terracotta'}.png deleted file mode 100644 index 8ad5ce29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_black_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_blue_glazed_terracotta'}.png deleted file mode 100644 index ea92b100..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_brown_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_brown_glazed_terracotta'}.png deleted file mode 100644 index a722cdbd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_brown_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_cyan_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_cyan_glazed_terracotta'}.png deleted file mode 100644 index e4f03ac4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_cyan_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_gray_glazed_terracotta'}.png deleted file mode 100644 index 7b035f8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_green_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_green_glazed_terracotta'}.png deleted file mode 100644 index 51d3e232..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_green_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_light_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_light_blue_glazed_terracotta'}.png deleted file mode 100644 index 3f8627f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_light_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_light_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_light_gray_glazed_terracotta'}.png deleted file mode 100644 index 366371c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_light_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_lime_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_lime_glazed_terracotta'}.png deleted file mode 100644 index 222b70db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_lime_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_magenta_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_magenta_glazed_terracotta'}.png deleted file mode 100644 index 8f440c40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_magenta_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_orange_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_orange_glazed_terracotta'}.png deleted file mode 100644 index 2801828b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_orange_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_pink_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_pink_glazed_terracotta'}.png deleted file mode 100644 index 0b31edda..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_pink_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_purple_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_purple_glazed_terracotta'}.png deleted file mode 100644 index c7662343..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_purple_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_red_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_red_glazed_terracotta'}.png deleted file mode 100644 index 53541aa0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_red_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_white_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_white_glazed_terracotta'}.png deleted file mode 100644 index b7788463..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_white_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_yellow_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_yellow_glazed_terracotta'}.png deleted file mode 100644 index 598bab57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__minimized_yellow_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_acacia_log'}.png deleted file mode 100644 index 3541405f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_birch_log'}.png deleted file mode 100644 index d949ab20..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_cherry_log'}.png deleted file mode 100644 index 18542b3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_crimson_stem'}.png deleted file mode 100644 index e2233d94..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_cubed_oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_cubed_oak_bookshelf'}.png deleted file mode 100644 index fd12dc29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_cubed_oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_dark_oak_log'}.png deleted file mode 100644 index dc5c8375..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_jungle_log'}.png deleted file mode 100644 index 93ece10f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_mangrove_log'}.png deleted file mode 100644 index 78a7dd0a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_oak_bookshelf'}.png deleted file mode 100644 index 82c16e4e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_oak_large_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_oak_large_bookshelf'}.png deleted file mode 100644 index 8a6d8d70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_oak_large_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_oak_log'}.png deleted file mode 100644 index 79757e05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_spruce_log'}.png deleted file mode 100644 index 8b6ce852..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mixed_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_black_concrete'}.png deleted file mode 100644 index 3b6bea4e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_blue_concrete'}.png deleted file mode 100644 index 1b301582..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_brown_concrete'}.png deleted file mode 100644 index c71eb3a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_cyan_concrete'}.png deleted file mode 100644 index d435de90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_gray_concrete'}.png deleted file mode 100644 index 56d31c1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_green_concrete'}.png deleted file mode 100644 index 4bb46dcc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_light_blue_concrete'}.png deleted file mode 100644 index a5d80694..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_light_gray_concrete'}.png deleted file mode 100644 index 981bd4bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_lime_concrete'}.png deleted file mode 100644 index 6bc0f2c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_magenta_concrete'}.png deleted file mode 100644 index c49d0359..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_orange_concrete'}.png deleted file mode 100644 index 4ef79219..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_pink_concrete'}.png deleted file mode 100644 index a49a9483..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_purple_concrete'}.png deleted file mode 100644 index 82c969c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_red_concrete'}.png deleted file mode 100644 index 5868380e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_white_concrete'}.png deleted file mode 100644 index 3d607b06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_yellow_concrete'}.png deleted file mode 100644 index 4c4726bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mosaic_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_bricks'}.png deleted file mode 100644 index 81fcbcbf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_mini_tiles'}.png deleted file mode 100644 index 506e7930..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_pillar'}.png deleted file mode 100644 index 0ea2dfce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_pillar_top'}.png deleted file mode 100644 index 3d5aeef6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_scales'}.png deleted file mode 100644 index c287bf1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_cobblestone_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_dried_kelp_block'}.png deleted file mode 100644 index 1038c76d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_mini_tiles'}.png deleted file mode 100644 index 7b7a1854..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_pillar'}.png deleted file mode 100644 index 23ceb55d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_pillar_top'}.png deleted file mode 100644 index 713c82ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_scales'}.png deleted file mode 100644 index edb7c1d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mossy_stone_bricks_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks'}.png deleted file mode 100644 index c62f7fa3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_bricks'}.png deleted file mode 100644 index 0082bdbe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_pillar'}.png deleted file mode 100644 index aaf87e61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_pillar_top'}.png deleted file mode 100644 index 77adefd5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_scales'}.png deleted file mode 100644 index cc880fd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_bricks_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_pillar'}.png deleted file mode 100644 index 35281828..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_pillar_top'}.png deleted file mode 100644 index 56d8f82b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_scales'}.png deleted file mode 100644 index 67a2f318..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__mud_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__muddy_mangrove_roots'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__muddy_mangrove_roots'}.png deleted file mode 100644 index 3c77d4ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__muddy_mangrove_roots'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_acacia_log'}.png deleted file mode 100644 index 16ceaf2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_acacia_planks'}.png deleted file mode 100644 index 6f7bdcd7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_birch_log'}.png deleted file mode 100644 index 8aacd759..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_birch_planks'}.png deleted file mode 100644 index ff54b833..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_cherry_log'}.png deleted file mode 100644 index af86a7bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_cherry_planks'}.png deleted file mode 100644 index 879a0172..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_crimson_planks'}.png deleted file mode 100644 index 466ff6e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_crimson_stem'}.png deleted file mode 100644 index ee06853f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_dark_oak_log'}.png deleted file mode 100644 index 81867907..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_dark_oak_planks'}.png deleted file mode 100644 index d4ad3e23..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_jungle_log'}.png deleted file mode 100644 index 39628b87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_jungle_planks'}.png deleted file mode 100644 index 6dc29688..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_mangrove_log'}.png deleted file mode 100644 index 97f4322c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_mangrove_planks'}.png deleted file mode 100644 index 87ef9411..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_oak_log'}.png deleted file mode 100644 index a30d398d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_oak_planks'}.png deleted file mode 100644 index b82758f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_spruce_log'}.png deleted file mode 100644 index 6558e02a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_spruce_planks'}.png deleted file mode 100644 index 3dcbb937..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_warped_planks'}.png deleted file mode 100644 index ba1f8541..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_warped_stem'}.png deleted file mode 100644 index a1a02b8b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nailed_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_acacia_planks'}.png deleted file mode 100644 index e895d74d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_bamboo_planks'}.png deleted file mode 100644 index 2ce316c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_birch_planks'}.png deleted file mode 100644 index c1f1b47d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_cherry_planks'}.png deleted file mode 100644 index a8d4a7e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_crimson_planks'}.png deleted file mode 100644 index 5a40ecfe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_dark_oak_planks'}.png deleted file mode 100644 index 195d6eb7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_jungle_planks'}.png deleted file mode 100644 index 255217f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_mangrove_planks'}.png deleted file mode 100644 index 3c208580..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_oak_planks'}.png deleted file mode 100644 index f687e1c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_spruce_planks'}.png deleted file mode 100644 index eb356dc7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_warped_planks'}.png deleted file mode 100644 index 0a93fd16..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__natural_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_bricks'}.png deleted file mode 100644 index 932aab7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_mini_tiles'}.png deleted file mode 100644 index 59a99049..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_pillar'}.png deleted file mode 100644 index df30f69c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_pillar_top'}.png deleted file mode 100644 index f9e53d9f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_scales'}.png deleted file mode 100644 index 1a165abe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_bricks_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_carved_pumpkin'}.png deleted file mode 100644 index 5cb2498f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_engraved_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_engraved_glowstone'}.png deleted file mode 100644 index e6577da0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_engraved_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_jack_o_lantern'}.png deleted file mode 100644 index 5cb2498f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_pumpkin'}.png deleted file mode 100644 index 6cb8ce26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nether_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherite_block_panels'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherite_block_panels'}.png deleted file mode 100644 index 0f7a4dd8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherite_block_panels'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_bricks'}.png deleted file mode 100644 index a55b1de3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_mini_tiles'}.png deleted file mode 100644 index c4befcd8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_pillar'}.png deleted file mode 100644 index 2f02500b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_pillar_top'}.png deleted file mode 100644 index 5a41455e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_scales'}.png deleted file mode 100644 index bf5d4d08..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherrack_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherwart_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherwart_dried_kelp_block'}.png deleted file mode 100644 index 4670e4a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__netherwart_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nice_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nice_redstone_lamp'}.png deleted file mode 100644 index 2460e277..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nice_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nice_white_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nice_white_redstone_lamp'}.png deleted file mode 100644 index 6c3c6542..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__nice_white_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_bared_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_bared_glass'}.png deleted file mode 100644 index ce8a2603..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_bared_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_bookshelf'}.png deleted file mode 100644 index a8567cdc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_bordered_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_bordered_glass'}.png deleted file mode 100644 index c47a2ddf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_bordered_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_diamond_bordered_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_diamond_bordered_glass'}.png deleted file mode 100644 index 9354b0a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_diamond_bordered_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_empty_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_empty_bookshelf'}.png deleted file mode 100644 index 76510f2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_empty_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_horizontal_lined_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_horizontal_lined_glass'}.png deleted file mode 100644 index 46914f09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_horizontal_lined_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_large_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_large_bookshelf'}.png deleted file mode 100644 index 4d695631..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_large_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_large_diamond_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_large_diamond_glass'}.png deleted file mode 100644 index ca228f76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_large_diamond_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_lighted_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_lighted_bookshelf'}.png deleted file mode 100644 index 70cd208c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_lighted_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_lighted_large_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_lighted_large_bookshelf'}.png deleted file mode 100644 index d74ccc2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_lighted_large_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_line_bared_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_line_bared_glass'}.png deleted file mode 100644 index d5390c2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_line_bared_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_ornate_bared_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_ornate_bared_glass'}.png deleted file mode 100644 index ab6ba66d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_ornate_bared_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_planks_mosaic'}.png deleted file mode 100644 index 76a75e05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_planks_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_planks_panel'}.png deleted file mode 100644 index 78cb0d3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_planks_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_planks_shavings'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_planks_shavings'}.png deleted file mode 100644 index 3c6ba79c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_planks_shavings'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_snowflake_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_snowflake_glass'}.png deleted file mode 100644 index 0e8158ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_snowflake_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_spaced_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_spaced_bookshelf'}.png deleted file mode 100644 index 337fefef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_spaced_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_spaced_large_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_spaced_large_bookshelf'}.png deleted file mode 100644 index ca3334e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_spaced_large_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_webbed_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_webbed_bookshelf'}.png deleted file mode 100644 index c291330c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_webbed_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_webbed_large_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_webbed_large_bookshelf'}.png deleted file mode 100644 index ba560277..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_webbed_large_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_woven_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_woven_glass'}.png deleted file mode 100644 index 78724752..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__oak_woven_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_bricks'}.png deleted file mode 100644 index 72d69868..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_mini_tiles'}.png deleted file mode 100644 index ab8684a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_pillar'}.png deleted file mode 100644 index 37baa0ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_pillar_top'}.png deleted file mode 100644 index 9b006387..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_scales'}.png deleted file mode 100644 index dc6015d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__obsidian_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_amethyst_block_bricks'}.png deleted file mode 100644 index 2be03931..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_ancient_debris_bricks'}.png deleted file mode 100644 index 8c08bd4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_andesite_bricks'}.png deleted file mode 100644 index cfa5596c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_basalt_bricks'}.png deleted file mode 100644 index ded20a7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_blackstone_bricks'}.png deleted file mode 100644 index 48c3aa1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_blue_ice_bricks'}.png deleted file mode 100644 index 794c3fb6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_borderless_bricks_bricks'}.png deleted file mode 100644 index 48999fab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_bricks_bricks'}.png deleted file mode 100644 index 85663b44..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_calcite_bricks'}.png deleted file mode 100644 index 2bdd73e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_clay_bricks'}.png deleted file mode 100644 index 70e26234..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_coal_block_bricks'}.png deleted file mode 100644 index fa11311b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_cobblestone_bricks'}.png deleted file mode 100644 index 5ec91030..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_crying_obsidian_bricks'}.png deleted file mode 100644 index dc2ecfcf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_dark_prismarine_bricks'}.png deleted file mode 100644 index 2f7a3ed7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_diorite_bricks'}.png deleted file mode 100644 index deeb16a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_dirt_bricks'}.png deleted file mode 100644 index 36bbdf8a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_dripstone_block_bricks'}.png deleted file mode 100644 index b9e72033..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_end_stone_bricks'}.png deleted file mode 100644 index 77a635fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_gilded_blackstone_bricks'}.png deleted file mode 100644 index bcf5ea2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_granite_bricks'}.png deleted file mode 100644 index 39abfe69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_ice_bricks'}.png deleted file mode 100644 index 0853e9ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_lapis_block_bricks'}.png deleted file mode 100644 index a7002674..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_lodestone_bricks'}.png deleted file mode 100644 index 7741869d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_magma_block_bricks'}.png deleted file mode 100644 index ea6dad09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mossy_cobblestone_bricks'}.png deleted file mode 100644 index 7a2ed3a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index 154e8827..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mud_bricks'}.png deleted file mode 100644 index 23a8a56e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mud_bricks_bricks'}.png deleted file mode 100644 index 82e08514..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_nether_bricks_bricks'}.png deleted file mode 100644 index 19d2b874..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_netherrack_bricks'}.png deleted file mode 100644 index a18e9200..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_obsidian_bricks'}.png deleted file mode 100644 index 59f46983..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_packed_ice_bricks'}.png deleted file mode 100644 index 2f9bb2d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_packed_mud_bricks'}.png deleted file mode 100644 index bcc219eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_prismarine_bricks'}.png deleted file mode 100644 index dcaf0b42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_purpur_block_bricks'}.png deleted file mode 100644 index b4846ced..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_raw_copper_block_bricks'}.png deleted file mode 100644 index 731093bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_raw_gold_block_bricks'}.png deleted file mode 100644 index db7a5996..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_raw_iron_block_bricks'}.png deleted file mode 100644 index e6882ad6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_red_nether_bricks_bricks'}.png deleted file mode 100644 index 04eb30cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_red_sandstone_bricks'}.png deleted file mode 100644 index e7aa5760..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_redstone_block_bricks'}.png deleted file mode 100644 index 97c2f187..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_sandstone_bricks'}.png deleted file mode 100644 index c7c25012..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_smooth_stone_bricks'}.png deleted file mode 100644 index a29f9253..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_snow_block_bricks'}.png deleted file mode 100644 index 61cac143..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_stone_bricks'}.png deleted file mode 100644 index 711b9620..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_tuff_bricks'}.png deleted file mode 100644 index 3e7f7873..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__offset_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__old_moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__old_moss_block'}.png deleted file mode 100644 index bec29d38..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__old_moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__old_mushroom_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__old_mushroom_stem'}.png deleted file mode 100644 index bb0da1a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__old_mushroom_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__old_sponge'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__old_sponge'}.png deleted file mode 100644 index 835eb62c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__old_sponge'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_acacia_leaves'}.png deleted file mode 100644 index a09ca741..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_birch_leaves'}.png deleted file mode 100644 index f9cc880b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_bricks'}.png deleted file mode 100644 index 36710d72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_panel'}.png deleted file mode 100644 index bc492690..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_pillar'}.png deleted file mode 100644 index af443c23..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_tiles'}.png deleted file mode 100644 index f86ae17c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_dark_oak_leaves'}.png deleted file mode 100644 index 73792ee5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index db379067..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index ec3961ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index b80ade88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_tiles'}.png deleted file mode 100644 index c9405a80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_gravel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_gravel'}.png deleted file mode 100644 index 2882f614..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_gravel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_jungle_leaves'}.png deleted file mode 100644 index 4927999c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_oak_leaves'}.png deleted file mode 100644 index 73792ee5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_spruce_leaves'}.png deleted file mode 100644 index 9db2a1fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_bricks'}.png deleted file mode 100644 index 9d5a05a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_column'}.png deleted file mode 100644 index bd40a73a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_pillar'}.png deleted file mode 100644 index a1ed9de9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_tile'}.png deleted file mode 100644 index d2c2af46..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_tiles'}.png deleted file mode 100644 index af3029d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__orange_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_amethyst_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_amethyst_block_pillar'}.png deleted file mode 100644 index 44443c44..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_amethyst_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_ancient_debris_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_ancient_debris_pillar'}.png deleted file mode 100644 index cd1cdb3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_ancient_debris_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_andesite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_andesite_pillar'}.png deleted file mode 100644 index 9ab36075..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_andesite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_basalt_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_basalt_pillar'}.png deleted file mode 100644 index a7838b4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_basalt_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_black_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_black_stained_glass'}.png deleted file mode 100644 index 487bf353..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_black_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_blackstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_blackstone_pillar'}.png deleted file mode 100644 index 13ec7dca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_blackstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_blue_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_blue_ice_pillar'}.png deleted file mode 100644 index 024c79c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_blue_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_blue_stained_glass'}.png deleted file mode 100644 index 38a83945..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_borderless_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_borderless_bricks_pillar'}.png deleted file mode 100644 index 5db9a2d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_borderless_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_bricks_pillar'}.png deleted file mode 100644 index 65fe1ef0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_brown_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_brown_stained_glass'}.png deleted file mode 100644 index c895f1ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_brown_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_calcite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_calcite_pillar'}.png deleted file mode 100644 index b44ab7b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_calcite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_clay_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_clay_pillar'}.png deleted file mode 100644 index 5b94b568..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_clay_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_coal_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_coal_block_pillar'}.png deleted file mode 100644 index 55ca4705..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_coal_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_cobblestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_cobblestone_pillar'}.png deleted file mode 100644 index 468bd712..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_cobblestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_crying_obsidian_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_crying_obsidian_pillar'}.png deleted file mode 100644 index 8ba71a54..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_crying_obsidian_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_cyan_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_cyan_stained_glass'}.png deleted file mode 100644 index d02b3762..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_cyan_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_dark_prismarine_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_dark_prismarine_pillar'}.png deleted file mode 100644 index 3e7e8133..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_dark_prismarine_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_deepslate_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_deepslate_pillar'}.png deleted file mode 100644 index ea9b86d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_deepslate_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_diorite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_diorite_pillar'}.png deleted file mode 100644 index 5329abf0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_diorite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_dirt_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_dirt_pillar'}.png deleted file mode 100644 index 79d40f97..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_dirt_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_dripstone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_dripstone_block_pillar'}.png deleted file mode 100644 index 2e127d2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_dripstone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_end_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_end_stone_pillar'}.png deleted file mode 100644 index 951f15ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_end_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_gilded_blackstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_gilded_blackstone_pillar'}.png deleted file mode 100644 index 5bb472d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_gilded_blackstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_glowstone_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_glowstone_lantern'}.png deleted file mode 100644 index 0462daf8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_glowstone_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_granite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_granite_pillar'}.png deleted file mode 100644 index b9444e11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_granite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_gray_stained_glass'}.png deleted file mode 100644 index 6b921d2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_green_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_green_stained_glass'}.png deleted file mode 100644 index be61e9d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_green_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_ice_pillar'}.png deleted file mode 100644 index 390dce41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_lapis_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_lapis_block_pillar'}.png deleted file mode 100644 index 31cbc4bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_lapis_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_leaded_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_leaded_glass'}.png deleted file mode 100644 index 8b5caed4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_leaded_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_light_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_light_blue_stained_glass'}.png deleted file mode 100644 index 036bd133..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_light_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_light_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_light_gray_stained_glass'}.png deleted file mode 100644 index bd1d8c9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_light_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_lime_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_lime_stained_glass'}.png deleted file mode 100644 index da0424cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_lime_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_lodestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_lodestone_pillar'}.png deleted file mode 100644 index 328c5267..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_lodestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_magenta_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_magenta_stained_glass'}.png deleted file mode 100644 index 91adb53f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_magenta_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_magma_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_magma_block_pillar'}.png deleted file mode 100644 index 4cbdafbe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_magma_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mossy_cobblestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mossy_cobblestone_pillar'}.png deleted file mode 100644 index c7f43741..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mossy_cobblestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mossy_stone_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mossy_stone_bricks_pillar'}.png deleted file mode 100644 index 33835de8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mossy_stone_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mud_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mud_bricks_pillar'}.png deleted file mode 100644 index c8196b57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mud_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mud_pillar'}.png deleted file mode 100644 index 943fb2b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_nether_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_nether_bricks_pillar'}.png deleted file mode 100644 index 5e3454b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_nether_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_netherrack_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_netherrack_pillar'}.png deleted file mode 100644 index 9f07710c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_netherrack_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_obsidian_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_obsidian_pillar'}.png deleted file mode 100644 index 2e06c0d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_obsidian_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_orange_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_orange_stained_glass'}.png deleted file mode 100644 index d4f248bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_orange_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_packed_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_packed_ice_pillar'}.png deleted file mode 100644 index 8d39110c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_packed_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_packed_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_packed_mud_pillar'}.png deleted file mode 100644 index 5925d11a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_packed_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_pink_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_pink_stained_glass'}.png deleted file mode 100644 index eb8b4e86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_pink_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_prismarine_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_prismarine_pillar'}.png deleted file mode 100644 index 07a03be3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_prismarine_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_purple_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_purple_stained_glass'}.png deleted file mode 100644 index 574ce4f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_purple_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_purpur_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_purpur_block_pillar'}.png deleted file mode 100644 index e050e391..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_purpur_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_quartz_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_quartz_block_pillar'}.png deleted file mode 100644 index 9e6a4628..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_quartz_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_raw_copper_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_raw_copper_block_pillar'}.png deleted file mode 100644 index b7c52274..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_raw_copper_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_raw_gold_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_raw_gold_block_pillar'}.png deleted file mode 100644 index 12157e27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_raw_gold_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_raw_iron_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_raw_iron_block_pillar'}.png deleted file mode 100644 index 7ce6ee66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_raw_iron_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_red_nether_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_red_nether_bricks_pillar'}.png deleted file mode 100644 index 962342d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_red_nether_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_red_sandstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_red_sandstone_pillar'}.png deleted file mode 100644 index b91ad937..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_red_sandstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_red_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_red_stained_glass'}.png deleted file mode 100644 index 4cdd08d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_red_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_redstone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_redstone_block_pillar'}.png deleted file mode 100644 index 4e963a07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_redstone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_redstone_lamp'}.png deleted file mode 100644 index 91dbf6ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_sandstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_sandstone_pillar'}.png deleted file mode 100644 index 87b17924..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_sandstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_sea_lantern'}.png deleted file mode 100644 index 2ea951cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_shroomlight_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_shroomlight_lantern'}.png deleted file mode 100644 index c9f8d4e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_shroomlight_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_smooth_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_smooth_stone_pillar'}.png deleted file mode 100644 index c62f892d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_smooth_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_snow_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_snow_block_pillar'}.png deleted file mode 100644 index 4536edfd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_snow_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_stone_pillar'}.png deleted file mode 100644 index 45de97c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_tuff_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_tuff_pillar'}.png deleted file mode 100644 index bac7436e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_tuff_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_white_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_white_redstone_lamp'}.png deleted file mode 100644 index c4cd580d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_white_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_white_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_white_stained_glass'}.png deleted file mode 100644 index c652ed36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_white_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_yellow_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_yellow_stained_glass'}.png deleted file mode 100644 index 249e0cc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ornate_yellow_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_acacia_log'}.png deleted file mode 100644 index a9656266..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_autumnkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_autumnkin'}.png deleted file mode 100644 index d547329a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_autumnkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_birch_log'}.png deleted file mode 100644 index c75d24ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_cherry_log'}.png deleted file mode 100644 index acb4ed30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_dark_oak_log'}.png deleted file mode 100644 index cdf0ec4b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_jungle_log'}.png deleted file mode 100644 index d33af220..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_lumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_lumpkin'}.png deleted file mode 100644 index e1880504..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_lumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_mangrove_log'}.png deleted file mode 100644 index 5d65fc57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_oak_log'}.png deleted file mode 100644 index bf291315..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_pimpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_pimpkin'}.png deleted file mode 100644 index fdb651f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_pimpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_pumpkin'}.png deleted file mode 100644 index 9c68fe93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_sand'}.png deleted file mode 100644 index 5813d7de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_spruce_log'}.png deleted file mode 100644 index ddca98aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overgrown_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overjoyed_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overjoyed_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overjoyed_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overjoyed_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overjoyed_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overjoyed_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_amethyst_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_amethyst_block_tiles'}.png deleted file mode 100644 index e420cc00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_amethyst_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_ancient_debris_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_ancient_debris_tiles'}.png deleted file mode 100644 index 37b0c71e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_ancient_debris_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_andesite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_andesite_tiles'}.png deleted file mode 100644 index 29c25f41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_andesite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_basalt_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_basalt_tiles'}.png deleted file mode 100644 index a7d36c5c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_basalt_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_blackstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_blackstone_tiles'}.png deleted file mode 100644 index 4d32025e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_blackstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_blue_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_blue_ice_tiles'}.png deleted file mode 100644 index 3d8370be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_blue_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_borderless_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_borderless_bricks_tiles'}.png deleted file mode 100644 index 2fea3ac3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_borderless_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_bricks_tiles'}.png deleted file mode 100644 index a6181752..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_calcite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_calcite_tiles'}.png deleted file mode 100644 index 462749c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_calcite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_clay_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_clay_tiles'}.png deleted file mode 100644 index 682aff0b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_clay_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_coal_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_coal_block_tiles'}.png deleted file mode 100644 index da14ea52..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_coal_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_cobblestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_cobblestone_tiles'}.png deleted file mode 100644 index 501f7652..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_cobblestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_crying_obsidian_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_crying_obsidian_tiles'}.png deleted file mode 100644 index b817c56c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_crying_obsidian_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_dark_prismarine_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_dark_prismarine_tiles'}.png deleted file mode 100644 index 96ddd8a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_dark_prismarine_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_deepslate_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_deepslate_tiles'}.png deleted file mode 100644 index b772818f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_deepslate_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_diorite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_diorite_tiles'}.png deleted file mode 100644 index 652b027f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_diorite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_dirt_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_dirt_tiles'}.png deleted file mode 100644 index 83dad22d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_dirt_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_dripstone_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_dripstone_block_tiles'}.png deleted file mode 100644 index cd585056..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_dripstone_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_end_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_end_stone_tiles'}.png deleted file mode 100644 index 0f581283..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_end_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_gilded_blackstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_gilded_blackstone_tiles'}.png deleted file mode 100644 index 601b5af1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_gilded_blackstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_granite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_granite_tiles'}.png deleted file mode 100644 index 8766474e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_granite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_ice_tiles'}.png deleted file mode 100644 index ee6a25de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_lapis_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_lapis_block_tiles'}.png deleted file mode 100644 index fa09db01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_lapis_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_lodestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_lodestone_tiles'}.png deleted file mode 100644 index 3b6af49f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_lodestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_magma_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_magma_block_tiles'}.png deleted file mode 100644 index f2e6a7da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_magma_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mossy_cobblestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mossy_cobblestone_tiles'}.png deleted file mode 100644 index 9326d197..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mossy_cobblestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mossy_stone_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mossy_stone_bricks_tiles'}.png deleted file mode 100644 index 409bdfcc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mossy_stone_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mud_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mud_bricks_tiles'}.png deleted file mode 100644 index 2682adce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mud_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mud_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mud_tiles'}.png deleted file mode 100644 index 4dc23d32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_mud_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_nether_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_nether_bricks_tiles'}.png deleted file mode 100644 index e1262a27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_nether_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_netherrack_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_netherrack_tiles'}.png deleted file mode 100644 index fe1d3bc4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_netherrack_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_obsidian_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_obsidian_tiles'}.png deleted file mode 100644 index 7dac8b64..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_obsidian_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_packed_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_packed_ice_tiles'}.png deleted file mode 100644 index 61f67e50..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_packed_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_packed_mud_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_packed_mud_tiles'}.png deleted file mode 100644 index eda3cb89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_packed_mud_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_prismarine_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_prismarine_tiles'}.png deleted file mode 100644 index 2c1a57ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_prismarine_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_purpur_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_purpur_block_tiles'}.png deleted file mode 100644 index e219a3ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_purpur_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_quartz_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_quartz_block_tiles'}.png deleted file mode 100644 index 2cf81df8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_quartz_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_raw_copper_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_raw_copper_block_tiles'}.png deleted file mode 100644 index 719200ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_raw_copper_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_raw_gold_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_raw_gold_block_tiles'}.png deleted file mode 100644 index 1ef3ce24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_raw_gold_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_raw_iron_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_raw_iron_block_tiles'}.png deleted file mode 100644 index 6cc9d284..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_raw_iron_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_red_nether_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_red_nether_bricks_tiles'}.png deleted file mode 100644 index 7cce180d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_red_nether_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_red_sandstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_red_sandstone_tiles'}.png deleted file mode 100644 index fcbd2192..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_red_sandstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_redstone_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_redstone_block_tiles'}.png deleted file mode 100644 index 27d50a12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_redstone_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_sandstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_sandstone_tiles'}.png deleted file mode 100644 index 8fe7256b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_sandstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_smooth_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_smooth_stone_tiles'}.png deleted file mode 100644 index 3989dc68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_smooth_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_snow_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_snow_block_tiles'}.png deleted file mode 100644 index e1f0c306..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_snow_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_stone_tiles'}.png deleted file mode 100644 index 5e9bcc45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_tuff_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_tuff_tiles'}.png deleted file mode 100644 index d198509d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__overlapping_tuff_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__owo_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__owo_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__owo_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__owo_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__owo_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__owo_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_bricks'}.png deleted file mode 100644 index b8b5cf01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_mini_tiles'}.png deleted file mode 100644 index 57ae6743..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_pillar'}.png deleted file mode 100644 index 9ba6ac2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_pillar_top'}.png deleted file mode 100644 index 50a89424..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_scales'}.png deleted file mode 100644 index 30e5a03e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_ice_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_bricks'}.png deleted file mode 100644 index ca0fabd3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_pillar'}.png deleted file mode 100644 index 963754bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_pillar_top'}.png deleted file mode 100644 index 7d6d887c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_scales'}.png deleted file mode 100644 index 6ad4f5a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__packed_mud_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pale_hay_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pale_hay_block'}.png deleted file mode 100644 index ec54df87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pale_hay_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pancake_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pancake_mud'}.png deleted file mode 100644 index 3d7146ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pancake_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pancake_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pancake_mud_bricks'}.png deleted file mode 100644 index 20f3c532..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pancake_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pancake_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pancake_packed_mud'}.png deleted file mode 100644 index 4a4ee158..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pancake_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__panelled_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__panelled_mud'}.png deleted file mode 100644 index b375f60c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__panelled_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__panelled_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__panelled_mud_bricks'}.png deleted file mode 100644 index 26886afd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__panelled_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__panelled_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__panelled_packed_mud'}.png deleted file mode 100644 index cd5cd0dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__panelled_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_black_wool'}.png deleted file mode 100644 index 2b803220..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_blue_wool'}.png deleted file mode 100644 index f7610826..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_brown_wool'}.png deleted file mode 100644 index bc78b8e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_cyan_wool'}.png deleted file mode 100644 index 3db8e41d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_gray_wool'}.png deleted file mode 100644 index 874441c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_green_wool'}.png deleted file mode 100644 index 440695be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_light_blue_wool'}.png deleted file mode 100644 index da5c8738..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_light_gray_wool'}.png deleted file mode 100644 index 79bfe8c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_lime_wool'}.png deleted file mode 100644 index fe12d26c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_magenta_wool'}.png deleted file mode 100644 index 1ca34f56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_nether_wart_block'}.png deleted file mode 100644 index 3d0ccfac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_orange_wool'}.png deleted file mode 100644 index 85f9565f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_pink_wool'}.png deleted file mode 100644 index a4863f60..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_purple_wool'}.png deleted file mode 100644 index 3963b13c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_red_wool'}.png deleted file mode 100644 index ff7a7535..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_warped_wart_block'}.png deleted file mode 100644 index 762e15aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_white_wool'}.png deleted file mode 100644 index d969d16c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_yellow_wool'}.png deleted file mode 100644 index 9ffefe76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patched_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_acacia_log'}.png deleted file mode 100644 index 6a860a9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_birch_log'}.png deleted file mode 100644 index 381410e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_cherry_log'}.png deleted file mode 100644 index 603e86c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_crimson_stem'}.png deleted file mode 100644 index 213d9c73..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_dark_oak_log'}.png deleted file mode 100644 index 13609e19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_jungle_log'}.png deleted file mode 100644 index b9e8373e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_mangrove_log'}.png deleted file mode 100644 index d7db75ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_oak_log'}.png deleted file mode 100644 index afd430ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_spruce_log'}.png deleted file mode 100644 index 524841b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_warped_stem'}.png deleted file mode 100644 index 7ce129c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patient_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patterned_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patterned_glowstone'}.png deleted file mode 100644 index 22f47342..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__patterned_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_black_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_black_glazed_terracotta'}.png deleted file mode 100644 index c665bcad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_black_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_blue_glazed_terracotta'}.png deleted file mode 100644 index 6e73ecc6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_brown_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_brown_glazed_terracotta'}.png deleted file mode 100644 index 3b20a052..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_brown_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_cyan_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_cyan_glazed_terracotta'}.png deleted file mode 100644 index 39e04f62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_cyan_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_gray_glazed_terracotta'}.png deleted file mode 100644 index dc2903d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_green_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_green_glazed_terracotta'}.png deleted file mode 100644 index 113faa44..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_green_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_light_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_light_blue_glazed_terracotta'}.png deleted file mode 100644 index a4e9458a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_light_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_light_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_light_gray_glazed_terracotta'}.png deleted file mode 100644 index 95a12aac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_light_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_lime_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_lime_glazed_terracotta'}.png deleted file mode 100644 index 81645a1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_lime_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_magenta_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_magenta_glazed_terracotta'}.png deleted file mode 100644 index 476b5aa1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_magenta_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_orange_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_orange_glazed_terracotta'}.png deleted file mode 100644 index 85a2376d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_orange_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_pink_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_pink_glazed_terracotta'}.png deleted file mode 100644 index 2d77ac31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_pink_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_purple_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_purple_glazed_terracotta'}.png deleted file mode 100644 index 81272dfc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_purple_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_red_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_red_glazed_terracotta'}.png deleted file mode 100644 index 51834ee0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_red_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_white_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_white_glazed_terracotta'}.png deleted file mode 100644 index 67b57295..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_white_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_yellow_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_yellow_glazed_terracotta'}.png deleted file mode 100644 index 303278f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__paved_yellow_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pearl_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pearl_sand'}.png deleted file mode 100644 index c5ed5f11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pearl_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_acacia_planks'}.png deleted file mode 100644 index fd6ed438..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_birch_planks'}.png deleted file mode 100644 index c0176afb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_black_concrete'}.png deleted file mode 100644 index 3fdbe82d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_blue_concrete'}.png deleted file mode 100644 index 7eedef72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_brown_concrete'}.png deleted file mode 100644 index 22969def..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_cherry_planks'}.png deleted file mode 100644 index f5e1df85..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_crimson_planks'}.png deleted file mode 100644 index 7c2771f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_cyan_concrete'}.png deleted file mode 100644 index 32922672..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_dark_oak_planks'}.png deleted file mode 100644 index be3acb1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_gray_concrete'}.png deleted file mode 100644 index d15c7b09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_green_concrete'}.png deleted file mode 100644 index f01da5b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_jungle_planks'}.png deleted file mode 100644 index 9f460f28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_light_blue_concrete'}.png deleted file mode 100644 index b8e21848..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_light_gray_concrete'}.png deleted file mode 100644 index 9eaa0a6f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_lime_concrete'}.png deleted file mode 100644 index 8def231d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_magenta_concrete'}.png deleted file mode 100644 index b4f8d778..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_mangrove_planks'}.png deleted file mode 100644 index 8fe21473..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_oak_planks'}.png deleted file mode 100644 index 52623e48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_orange_concrete'}.png deleted file mode 100644 index 866218a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_pink_concrete'}.png deleted file mode 100644 index d01471e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_purple_concrete'}.png deleted file mode 100644 index 94f0b9da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_red_concrete'}.png deleted file mode 100644 index cd7f3d6b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_spruce_planks'}.png deleted file mode 100644 index ae978471..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_warped_planks'}.png deleted file mode 100644 index 491a3251..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_white_concrete'}.png deleted file mode 100644 index e1bfee06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_yellow_concrete'}.png deleted file mode 100644 index b6fcf39b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pegged_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_amethyst_block_bricks'}.png deleted file mode 100644 index 893758f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_ancient_debris_bricks'}.png deleted file mode 100644 index 9950f141..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_andesite_bricks'}.png deleted file mode 100644 index 22e25fea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_basalt_bricks'}.png deleted file mode 100644 index 9361ef25..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_blackstone_bricks'}.png deleted file mode 100644 index dff60103..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_blue_ice_bricks'}.png deleted file mode 100644 index e69bc743..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_borderless_bricks_bricks'}.png deleted file mode 100644 index ec25ab20..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_bricks_bricks'}.png deleted file mode 100644 index 51406cf4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_calcite_bricks'}.png deleted file mode 100644 index 8e69efca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_clay_bricks'}.png deleted file mode 100644 index 90938b29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_coal_block_bricks'}.png deleted file mode 100644 index b35d8e23..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_cobblestone_bricks'}.png deleted file mode 100644 index a9416254..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_crying_obsidian_bricks'}.png deleted file mode 100644 index 16c03f19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_dark_prismarine_bricks'}.png deleted file mode 100644 index c7d9fcdd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_deepslate_bricks'}.png deleted file mode 100644 index 67bc486e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_diorite_bricks'}.png deleted file mode 100644 index c112b58b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_dirt_bricks'}.png deleted file mode 100644 index 63caa81d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_dripstone_block_bricks'}.png deleted file mode 100644 index fea5463d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_end_stone_bricks'}.png deleted file mode 100644 index b54894c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_gilded_blackstone_bricks'}.png deleted file mode 100644 index 6e02b37f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_granite_bricks'}.png deleted file mode 100644 index 86d5b7b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_ice_bricks'}.png deleted file mode 100644 index 20aa7c28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_lapis_block_bricks'}.png deleted file mode 100644 index 535dae32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_lodestone_bricks'}.png deleted file mode 100644 index a7c6ec2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_magma_block_bricks'}.png deleted file mode 100644 index 60e60902..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_mossy_cobblestone_bricks'}.png deleted file mode 100644 index 52f657c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index 2b6e628b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_nether_bricks_bricks'}.png deleted file mode 100644 index b35a7832..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_netherrack_bricks'}.png deleted file mode 100644 index c456fe6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_obsidian_bricks'}.png deleted file mode 100644 index a5b2d919..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_packed_ice_bricks'}.png deleted file mode 100644 index 50f79472..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_prismarine_bricks'}.png deleted file mode 100644 index 22e3d50e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_purpur_block_bricks'}.png deleted file mode 100644 index 87091350..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_quartz_block_bricks'}.png deleted file mode 100644 index 075b0581..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_raw_copper_block_bricks'}.png deleted file mode 100644 index ef6ae47e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_raw_gold_block_bricks'}.png deleted file mode 100644 index a6dacfb3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_raw_iron_block_bricks'}.png deleted file mode 100644 index 12515ebb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_red_nether_bricks_bricks'}.png deleted file mode 100644 index e8b05d93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_red_sandstone_bricks'}.png deleted file mode 100644 index 9f37c0b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_redstone_block_bricks'}.png deleted file mode 100644 index 010707a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_sandstone_bricks'}.png deleted file mode 100644 index 751d7d0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_smooth_stone_bricks'}.png deleted file mode 100644 index 90fbb203..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_snow_block_bricks'}.png deleted file mode 100644 index ae51be6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_stone_bricks'}.png deleted file mode 100644 index 1e0a0c56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_tuff_bricks'}.png deleted file mode 100644 index 28322ff2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pillar_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pimpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pimpkin'}.png deleted file mode 100644 index d1997d72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pimpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_bricks'}.png deleted file mode 100644 index 037459f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_panel'}.png deleted file mode 100644 index a7f99556..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_pillar'}.png deleted file mode 100644 index 6bef3009..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_tiles'}.png deleted file mode 100644 index a54a6e95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index f848808e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index efbbd2f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index 90698cb5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_tiles'}.png deleted file mode 100644 index 45f52e98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_bricks'}.png deleted file mode 100644 index 885d0d31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_column'}.png deleted file mode 100644 index 44b3b70c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_pillar'}.png deleted file mode 100644 index 9061adc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_tile'}.png deleted file mode 100644 index 47b5d3d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_tiles'}.png deleted file mode 100644 index faa0bf62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pink_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__placed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__placed_mud'}.png deleted file mode 100644 index b8373235..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__placed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__placed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__placed_mud_bricks'}.png deleted file mode 100644 index e4703e97..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__placed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__placed_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__placed_packed_mud'}.png deleted file mode 100644 index 23868b8a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__placed_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_acacia_log'}.png deleted file mode 100644 index aae5918f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_birch_log'}.png deleted file mode 100644 index f1836867..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_cherry_log'}.png deleted file mode 100644 index 0f709d9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_crimson_stem'}.png deleted file mode 100644 index 6666c2f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_dark_oak_log'}.png deleted file mode 100644 index 05d1654e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_jungle_log'}.png deleted file mode 100644 index 81a20af0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_mangrove_log'}.png deleted file mode 100644 index be509d56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_oak_log'}.png deleted file mode 100644 index f7d1b650..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_spruce_log'}.png deleted file mode 100644 index 63d5e382..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_warped_stem'}.png deleted file mode 100644 index cd99bc38..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__planked_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_diamond_block'}.png deleted file mode 100644 index e94ef815..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_emerald_block'}.png deleted file mode 100644 index d4501043..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_gold_block'}.png deleted file mode 100644 index fae76581..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_iron_block'}.png deleted file mode 100644 index ce0a55ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_netherite_block'}.png deleted file mode 100644 index 4dc1ae89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_copper_block'}.png deleted file mode 100644 index eefc9a21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_exposed_copper'}.png deleted file mode 100644 index dbabba73..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_oxidized_copper'}.png deleted file mode 100644 index 59ce5792..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_weathered_copper'}.png deleted file mode 100644 index f73886f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__plated_waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__poisonous_mushroom_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__poisonous_mushroom_stem'}.png deleted file mode 100644 index fe50c3de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__poisonous_mushroom_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_acacia_planks'}.png deleted file mode 100644 index 6051d296..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_amethyst_block'}.png deleted file mode 100644 index e214dc27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_ancient_debris'}.png deleted file mode 100644 index 7d21063d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_andesite'}.png deleted file mode 100644 index 9ab36075..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_bamboo_planks'}.png deleted file mode 100644 index 0517de8e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_basalt'}.png deleted file mode 100644 index 2ce6c277..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_birch_planks'}.png deleted file mode 100644 index 2d26de2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_blackstone'}.png deleted file mode 100644 index 8c64411a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_blue_ice'}.png deleted file mode 100644 index 024c79c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_borderless_bricks'}.png deleted file mode 100644 index 86271901..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_bricks'}.png deleted file mode 100644 index 99198355..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_calcite'}.png deleted file mode 100644 index d2dba4c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_cherry_planks'}.png deleted file mode 100644 index 10d28ec8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_clay'}.png deleted file mode 100644 index 6af1b9ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_coal_block'}.png deleted file mode 100644 index b58d2cb9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_cobblestone'}.png deleted file mode 100644 index d782f9b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_crimson_planks'}.png deleted file mode 100644 index cea18648..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_crying_obsidian'}.png deleted file mode 100644 index ad4f18fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dark_oak_planks'}.png deleted file mode 100644 index 11b6e3aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dark_prismarine'}.png deleted file mode 100644 index c7968792..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_deepslate'}.png deleted file mode 100644 index 806eab2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_diorite'}.png deleted file mode 100644 index 56ae9d66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dirt'}.png deleted file mode 100644 index 6c98da53..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dripstone_block'}.png deleted file mode 100644 index 528a78c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_emerald_block'}.png deleted file mode 100644 index 2880255e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_end_stone'}.png deleted file mode 100644 index b4fa32c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_gilded_blackstone'}.png deleted file mode 100644 index a4c604f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_glowstone'}.png deleted file mode 100644 index 799a576d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_granite'}.png deleted file mode 100644 index 32db6ff0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_ice'}.png deleted file mode 100644 index 1bac8be3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_iron_block'}.png deleted file mode 100644 index 6a21fea0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_jungle_planks'}.png deleted file mode 100644 index a73bf0bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_lapis_block'}.png deleted file mode 100644 index 7b763fbc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_lodestone'}.png deleted file mode 100644 index f242b13a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_magma_block'}.png deleted file mode 100644 index 57cc12e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mangrove_planks'}.png deleted file mode 100644 index 288ee0b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mossy_cobblestone'}.png deleted file mode 100644 index 6aada78f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mossy_stone_bricks'}.png deleted file mode 100644 index fd27f653..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mud'}.png deleted file mode 100644 index 2d2cd6ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mud_bricks'}.png deleted file mode 100644 index a00530ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_nether_bricks'}.png deleted file mode 100644 index 0d100a81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_netherite_block'}.png deleted file mode 100644 index ec7dbe0b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_netherrack'}.png deleted file mode 100644 index 0d36954c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_oak_planks'}.png deleted file mode 100644 index ccb8b30d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_obsidian'}.png deleted file mode 100644 index 492bf32a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_packed_ice'}.png deleted file mode 100644 index 7825fa24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_packed_mud'}.png deleted file mode 100644 index 5e28458d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_prismarine'}.png deleted file mode 100644 index 92c69ddd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_purpur_block'}.png deleted file mode 100644 index e050e391..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_quartz_block'}.png deleted file mode 100644 index 18c7fddd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_raw_copper_block'}.png deleted file mode 100644 index b979708d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_raw_gold_block'}.png deleted file mode 100644 index 52b00718..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_raw_iron_block'}.png deleted file mode 100644 index 40cc0a4e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_red_nether_bricks'}.png deleted file mode 100644 index 63efb878..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_red_sandstone'}.png deleted file mode 100644 index a8e8635e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_redstone_block'}.png deleted file mode 100644 index c9d27578..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_sandstone'}.png deleted file mode 100644 index fd43507f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_sea_lantern'}.png deleted file mode 100644 index 398dd7ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_shroomlight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_shroomlight'}.png deleted file mode 100644 index 39b1b82a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_shroomlight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_smooth_stone'}.png deleted file mode 100644 index e8eddf26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_snow_block'}.png deleted file mode 100644 index 4536edfd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_spruce_planks'}.png deleted file mode 100644 index 21856a88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_stone'}.png deleted file mode 100644 index a75a695e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_tuff'}.png deleted file mode 100644 index 9cf4002f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_warped_planks'}.png deleted file mode 100644 index 1061c5a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__polished_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__porous_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__porous_nether_wart_block'}.png deleted file mode 100644 index d3a55903..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__porous_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__porous_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__porous_warped_wart_block'}.png deleted file mode 100644 index 19ef3d7f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__porous_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_diamond_block'}.png deleted file mode 100644 index 045461a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_gold_block'}.png deleted file mode 100644 index f6b1e00c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_iron_block'}.png deleted file mode 100644 index 2cc705cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_netherite_block'}.png deleted file mode 100644 index 37681e96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_copper_block'}.png deleted file mode 100644 index ba8ebf06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_exposed_copper'}.png deleted file mode 100644 index 9970845c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_oxidized_copper'}.png deleted file mode 100644 index c0e55b13..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_weathered_copper'}.png deleted file mode 100644 index a3d8487d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__pressed_waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_amethyst_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_amethyst_block_remnants'}.png deleted file mode 100644 index c72e29dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_amethyst_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_ancient_debris_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_ancient_debris_remnants'}.png deleted file mode 100644 index d2e84e09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_ancient_debris_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_andesite_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_andesite_remnants'}.png deleted file mode 100644 index fdf60179..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_andesite_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_basalt_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_basalt_remnants'}.png deleted file mode 100644 index 87112a17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_basalt_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_blackstone_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_blackstone_remnants'}.png deleted file mode 100644 index 74d82022..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_blackstone_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_blue_ice_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_blue_ice_remnants'}.png deleted file mode 100644 index 4c26f69e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_blue_ice_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_borderless_bricks_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_borderless_bricks_remnants'}.png deleted file mode 100644 index 11f1ba5c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_borderless_bricks_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_bricks_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_bricks_remnants'}.png deleted file mode 100644 index 4d03b842..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_bricks_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_calcite_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_calcite_remnants'}.png deleted file mode 100644 index 7481abc9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_calcite_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_clay_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_clay_remnants'}.png deleted file mode 100644 index 9158e707..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_clay_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_coal_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_coal_block_remnants'}.png deleted file mode 100644 index 39650a69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_coal_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_cobblestone_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_cobblestone_remnants'}.png deleted file mode 100644 index 6e4e4e2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_cobblestone_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_crying_obsidian_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_crying_obsidian_remnants'}.png deleted file mode 100644 index bd7fc648..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_crying_obsidian_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_dark_prismarine_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_dark_prismarine_remnants'}.png deleted file mode 100644 index 14ce0a36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_dark_prismarine_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_deepslate_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_deepslate_remnants'}.png deleted file mode 100644 index 505f0a58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_deepslate_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_diorite_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_diorite_remnants'}.png deleted file mode 100644 index 4466adf5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_diorite_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_dirt_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_dirt_remnants'}.png deleted file mode 100644 index 06072f8a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_dirt_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_dripstone_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_dripstone_block_remnants'}.png deleted file mode 100644 index ef895766..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_dripstone_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_end_stone_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_end_stone_remnants'}.png deleted file mode 100644 index 0e4ed2ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_end_stone_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_gilded_blackstone_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_gilded_blackstone_remnants'}.png deleted file mode 100644 index c62d6bfe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_gilded_blackstone_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_granite_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_granite_remnants'}.png deleted file mode 100644 index e75c1afe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_granite_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_ice_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_ice_remnants'}.png deleted file mode 100644 index e8d81924..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_ice_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_lapis_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_lapis_block_remnants'}.png deleted file mode 100644 index 1a82d6de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_lapis_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_lodestone_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_lodestone_remnants'}.png deleted file mode 100644 index f5bcf8c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_lodestone_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_magma_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_magma_block_remnants'}.png deleted file mode 100644 index 0485aaa6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_magma_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mossy_cobblestone_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mossy_cobblestone_remnants'}.png deleted file mode 100644 index 16d8c7cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mossy_cobblestone_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mossy_stone_bricks_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mossy_stone_bricks_remnants'}.png deleted file mode 100644 index 40a1cb89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mossy_stone_bricks_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mud_bricks_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mud_bricks_remnants'}.png deleted file mode 100644 index 14cb89e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mud_bricks_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mud_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mud_remnants'}.png deleted file mode 100644 index 5f4e0501..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_mud_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_nether_bricks_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_nether_bricks_remnants'}.png deleted file mode 100644 index 2bf47ec4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_nether_bricks_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_netherrack_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_netherrack_remnants'}.png deleted file mode 100644 index ce7f1aea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_netherrack_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_obsidian_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_obsidian_remnants'}.png deleted file mode 100644 index 4be9ab48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_obsidian_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_packed_ice_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_packed_ice_remnants'}.png deleted file mode 100644 index 5de3fd3f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_packed_ice_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_packed_mud_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_packed_mud_remnants'}.png deleted file mode 100644 index e94b1963..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_packed_mud_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_purpur_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_purpur_block_remnants'}.png deleted file mode 100644 index f224b069..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_purpur_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_quartz_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_quartz_block_remnants'}.png deleted file mode 100644 index b6b3a52f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_quartz_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_raw_copper_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_raw_copper_block_remnants'}.png deleted file mode 100644 index 4d7b27a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_raw_copper_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_raw_gold_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_raw_gold_block_remnants'}.png deleted file mode 100644 index b972fc6a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_raw_gold_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_raw_iron_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_raw_iron_block_remnants'}.png deleted file mode 100644 index 1b6d78e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_raw_iron_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_red_nether_bricks_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_red_nether_bricks_remnants'}.png deleted file mode 100644 index e5630102..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_red_nether_bricks_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_red_sandstone_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_red_sandstone_remnants'}.png deleted file mode 100644 index e6d980e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_red_sandstone_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_redstone_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_redstone_block_remnants'}.png deleted file mode 100644 index de5395b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_redstone_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_sandstone_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_sandstone_remnants'}.png deleted file mode 100644 index d8f7e77d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_sandstone_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_smooth_stone_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_smooth_stone_remnants'}.png deleted file mode 100644 index 975df5f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_smooth_stone_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_snow_block_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_snow_block_remnants'}.png deleted file mode 100644 index b7a24725..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_snow_block_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_stone_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_stone_remnants'}.png deleted file mode 100644 index c936517f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_stone_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_tuff_remnants'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_tuff_remnants'}.png deleted file mode 100644 index 4bfee237..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismal_tuff_remnants'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_bricks'}.png deleted file mode 100644 index 3022712a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_mini_tiles'}.png deleted file mode 100644 index 62379982..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_pillar'}.png deleted file mode 100644 index 6a17afac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_pillar_top'}.png deleted file mode 100644 index b59f0311..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_scales'}.png deleted file mode 100644 index 3b561b8e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__prismarine_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_bricks'}.png deleted file mode 100644 index fdd60e69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_panel'}.png deleted file mode 100644 index 96a11f82..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_pillar'}.png deleted file mode 100644 index 2ca2fde2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_tiles'}.png deleted file mode 100644 index 291ac3c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 9f6c3ac0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index 72e112d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index 7f428472..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_tiles'}.png deleted file mode 100644 index 1071ba45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_bricks'}.png deleted file mode 100644 index 3b63f193..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_column'}.png deleted file mode 100644 index 7e9c3791..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_pillar'}.png deleted file mode 100644 index 805b0a1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_tile'}.png deleted file mode 100644 index 6e5b389e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_tiles'}.png deleted file mode 100644 index 072ffd01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purple_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_bricks'}.png deleted file mode 100644 index 77a3d364..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_mini_tiles'}.png deleted file mode 100644 index 829ee289..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_pillar'}.png deleted file mode 100644 index 07193999..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_pillar_top'}.png deleted file mode 100644 index 74a0a88c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_scales'}.png deleted file mode 100644 index 50113577..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__purpur_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quad_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quad_mud'}.png deleted file mode 100644 index 8102263b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quad_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quad_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quad_mud_bricks'}.png deleted file mode 100644 index cd15d00a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quad_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quad_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quad_packed_mud'}.png deleted file mode 100644 index f5f1437b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quad_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_bricks'}.png deleted file mode 100644 index 81b4786d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_mini_tiles'}.png deleted file mode 100644 index 791c5cae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_pillar'}.png deleted file mode 100644 index 0a25f5b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_scales'}.png deleted file mode 100644 index c61d3317..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__quartz_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_acacia_planks'}.png deleted file mode 100644 index 15a27ffc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_bamboo_planks'}.png deleted file mode 100644 index 6840ecdf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_birch_planks'}.png deleted file mode 100644 index 885ead2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_black_concrete'}.png deleted file mode 100644 index 566b1ede..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_blue_concrete'}.png deleted file mode 100644 index f4f50b19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_brown_concrete'}.png deleted file mode 100644 index e4012f81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_cherry_planks'}.png deleted file mode 100644 index 3c82d991..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_crimson_planks'}.png deleted file mode 100644 index d125068b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_cyan_concrete'}.png deleted file mode 100644 index 36fcc1b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_dark_oak_planks'}.png deleted file mode 100644 index b205f232..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_gray_concrete'}.png deleted file mode 100644 index 29d3c398..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_green_concrete'}.png deleted file mode 100644 index 272233fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_jungle_planks'}.png deleted file mode 100644 index 3814eb11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_light_blue_concrete'}.png deleted file mode 100644 index 0c317e25..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_light_gray_concrete'}.png deleted file mode 100644 index d7168678..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_lime_concrete'}.png deleted file mode 100644 index 70d3dcd4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_magenta_concrete'}.png deleted file mode 100644 index dc74c3a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_mangrove_planks'}.png deleted file mode 100644 index 1b923bf1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_oak_planks'}.png deleted file mode 100644 index 622d3604..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_orange_concrete'}.png deleted file mode 100644 index 35c90695..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_pink_concrete'}.png deleted file mode 100644 index 48ba6faf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_purple_concrete'}.png deleted file mode 100644 index fb14c970..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_red_concrete'}.png deleted file mode 100644 index 4a4fafe6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_spruce_planks'}.png deleted file mode 100644 index b548dc16..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_warped_planks'}.png deleted file mode 100644 index fd651937..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_white_concrete'}.png deleted file mode 100644 index fc377271..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_yellow_concrete'}.png deleted file mode 100644 index 9abcb94b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__railed_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_black_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_black_stained_glass'}.png deleted file mode 100644 index 05939b94..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_black_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_blue_stained_glass'}.png deleted file mode 100644 index c52e22f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_brown_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_brown_stained_glass'}.png deleted file mode 100644 index 735d9d3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_brown_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_cyan_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_cyan_stained_glass'}.png deleted file mode 100644 index d76b44cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_cyan_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_gray_stained_glass'}.png deleted file mode 100644 index 5ce132ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_green_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_green_stained_glass'}.png deleted file mode 100644 index be4d7633..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_green_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_leaded_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_leaded_glass'}.png deleted file mode 100644 index bec37aae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_leaded_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_light_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_light_blue_stained_glass'}.png deleted file mode 100644 index 04af4d45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_light_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_light_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_light_gray_stained_glass'}.png deleted file mode 100644 index 0389f007..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_light_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_lime_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_lime_stained_glass'}.png deleted file mode 100644 index 0a198314..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_lime_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_magenta_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_magenta_stained_glass'}.png deleted file mode 100644 index 8755dfb0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_magenta_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_orange_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_orange_stained_glass'}.png deleted file mode 100644 index 8ab87157..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_orange_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_pink_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_pink_stained_glass'}.png deleted file mode 100644 index 97ce720a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_pink_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_purple_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_purple_stained_glass'}.png deleted file mode 100644 index 2fdf56ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_purple_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_red_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_red_stained_glass'}.png deleted file mode 100644 index 1923565a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_red_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_white_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_white_stained_glass'}.png deleted file mode 100644 index bae1d9aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_white_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_yellow_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_yellow_stained_glass'}.png deleted file mode 100644 index bb412467..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raster_yellow_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_bricks'}.png deleted file mode 100644 index 4f04b0fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_mini_tiles'}.png deleted file mode 100644 index d6f37ae7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_pillar'}.png deleted file mode 100644 index e9dede22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_pillar_top'}.png deleted file mode 100644 index aacf054f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_scales'}.png deleted file mode 100644 index e735c55a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_copper_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_bricks'}.png deleted file mode 100644 index 6840911c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_mini_tiles'}.png deleted file mode 100644 index 3f85ab95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_pillar'}.png deleted file mode 100644 index ac4d39fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_pillar_top'}.png deleted file mode 100644 index 4ebbec09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_scales'}.png deleted file mode 100644 index e210f5ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_gold_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_bricks'}.png deleted file mode 100644 index 0cf742bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_mini_tiles'}.png deleted file mode 100644 index 34dbf7b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_pillar'}.png deleted file mode 100644 index 708ccb53..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_pillar_top'}.png deleted file mode 100644 index 659a85c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_scales'}.png deleted file mode 100644 index 844705b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__raw_iron_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_black_wool'}.png deleted file mode 100644 index e1494311..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_blue_wool'}.png deleted file mode 100644 index c2bac803..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_brown_wool'}.png deleted file mode 100644 index 00c9800a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_cyan_wool'}.png deleted file mode 100644 index 6fdf5b8c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_gray_wool'}.png deleted file mode 100644 index 60ff9d17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_green_wool'}.png deleted file mode 100644 index 2c41c8d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_light_blue_wool'}.png deleted file mode 100644 index 3d0b7e82..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_light_gray_wool'}.png deleted file mode 100644 index 4ccdb6d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_lime_wool'}.png deleted file mode 100644 index 7f20258b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_magenta_wool'}.png deleted file mode 100644 index 72aeefd5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_orange_wool'}.png deleted file mode 100644 index 6f23209a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_pink_wool'}.png deleted file mode 100644 index 62b4d2d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_purple_wool'}.png deleted file mode 100644 index ceef268b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_red_wool'}.png deleted file mode 100644 index ae251f26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_white_wool'}.png deleted file mode 100644 index 4bcb8635..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_yellow_wool'}.png deleted file mode 100644 index fbcf7209..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rectangle_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_acacia_leaves'}.png deleted file mode 100644 index 129c2eb6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_birch_leaves'}.png deleted file mode 100644 index 391a13c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_bricks'}.png deleted file mode 100644 index 2cfd8eb0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_panel'}.png deleted file mode 100644 index 8d901a07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_pillar'}.png deleted file mode 100644 index 17dfda63..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_tiles'}.png deleted file mode 100644 index 66a348e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_dark_oak_leaves'}.png deleted file mode 100644 index 0ddfcb68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index f7f17b6d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index 7869a969..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index 26d6f234..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_tiles'}.png deleted file mode 100644 index 54221f53..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_jungle_leaves'}.png deleted file mode 100644 index e32d5b9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_moss_block'}.png deleted file mode 100644 index 542dd267..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_bricks'}.png deleted file mode 100644 index 906f0a98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_mini_tiles'}.png deleted file mode 100644 index 9d7c398f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_pillar'}.png deleted file mode 100644 index 9f69b4c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_pillar_top'}.png deleted file mode 100644 index 6b536ded..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_scales'}.png deleted file mode 100644 index dc7eaa5b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_nether_bricks_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_oak_leaves'}.png deleted file mode 100644 index 0ddfcb68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_bricks'}.png deleted file mode 100644 index 8556f1de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_mini_tiles'}.png deleted file mode 100644 index 908d6c9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_pillar'}.png deleted file mode 100644 index a42df0f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_pillar_top'}.png deleted file mode 100644 index 5e2153eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_scales'}.png deleted file mode 100644 index 07151d55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_sandstone_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_spruce_leaves'}.png deleted file mode 100644 index 089a1039..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_bricks'}.png deleted file mode 100644 index ec20efd1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_column'}.png deleted file mode 100644 index 7345578f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_pillar'}.png deleted file mode 100644 index 46f3de0e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_tile'}.png deleted file mode 100644 index 41696016..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_tiles'}.png deleted file mode 100644 index 444378f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__red_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_bricks'}.png deleted file mode 100644 index f7b764e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_mini_tiles'}.png deleted file mode 100644 index 278a05cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_pillar'}.png deleted file mode 100644 index 27d6679a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_pillar_top'}.png deleted file mode 100644 index d98c1210..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_scales'}.png deleted file mode 100644 index 1ae6422e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__redstone_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_acacia_log'}.png deleted file mode 100644 index becaa1bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_bamboo_planks'}.png deleted file mode 100644 index 7001c156..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_birch_log'}.png deleted file mode 100644 index ac79b7e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_black_concrete'}.png deleted file mode 100644 index f94c7546..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_blue_concrete'}.png deleted file mode 100644 index ec281b0d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_bone_block'}.png deleted file mode 100644 index d27cab3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_brown_concrete'}.png deleted file mode 100644 index e120116b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_cherry_log'}.png deleted file mode 100644 index f54d0e3a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_cyan_concrete'}.png deleted file mode 100644 index 415cdeac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_dark_oak_log'}.png deleted file mode 100644 index 18040f84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_diamond_block'}.png deleted file mode 100644 index 97007861..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_emerald_block'}.png deleted file mode 100644 index daf7b26e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_gilded_blackstone'}.png deleted file mode 100644 index 0bba68b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_gold_block'}.png deleted file mode 100644 index 05d6cf87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_gray_concrete'}.png deleted file mode 100644 index 227c5809..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_green_concrete'}.png deleted file mode 100644 index e81b373e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_iron_block'}.png deleted file mode 100644 index 1cd82c85..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_jungle_log'}.png deleted file mode 100644 index 37e7a466..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_light_blue_concrete'}.png deleted file mode 100644 index 6494af94..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_light_gray_concrete'}.png deleted file mode 100644 index bcffd2d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_lime_concrete'}.png deleted file mode 100644 index 10e9bac1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_magenta_concrete'}.png deleted file mode 100644 index 49ad7005..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_mangrove_log'}.png deleted file mode 100644 index 41b7cb9f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_netherite_block'}.png deleted file mode 100644 index 3ffc5a81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_oak_log'}.png deleted file mode 100644 index a1226134..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_ochre_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_ochre_froglight'}.png deleted file mode 100644 index f5ff4760..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_ochre_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_orange_concrete'}.png deleted file mode 100644 index 260bbec1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_pearlescent_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_pearlescent_froglight'}.png deleted file mode 100644 index cc93a2f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_pearlescent_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_pink_concrete'}.png deleted file mode 100644 index bc701177..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_purple_concrete'}.png deleted file mode 100644 index 09ecbcb2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_red_concrete'}.png deleted file mode 100644 index df3734df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_redstone_lamp'}.png deleted file mode 100644 index 8042efdc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_sea_lantern'}.png deleted file mode 100644 index 064f9f58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_shroomlight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_shroomlight'}.png deleted file mode 100644 index 10b7d65e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_shroomlight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_spruce_log'}.png deleted file mode 100644 index a5e21112..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_acacia_log'}.png deleted file mode 100644 index 0b8751e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_birch_log'}.png deleted file mode 100644 index 5170ffe9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_cherry_log'}.png deleted file mode 100644 index 550c9870..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_crimson_stem'}.png deleted file mode 100644 index b883cc5f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_dark_oak_log'}.png deleted file mode 100644 index e074d4c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_jungle_log'}.png deleted file mode 100644 index 38d0d0b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_mangrove_log'}.png deleted file mode 100644 index aad04af4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_oak_log'}.png deleted file mode 100644 index f4f1f454..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_spruce_log'}.png deleted file mode 100644 index 8024e09c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_warped_stem'}.png deleted file mode 100644 index ca300862..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_verdant_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_verdant_froglight'}.png deleted file mode 100644 index 02595501..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_verdant_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_copper_block'}.png deleted file mode 100644 index ef0c325c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_exposed_copper'}.png deleted file mode 100644 index b281dde4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_oxidized_copper'}.png deleted file mode 100644 index 15bdf309..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_weathered_copper'}.png deleted file mode 100644 index a8076e43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_white_concrete'}.png deleted file mode 100644 index 58de09a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_white_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_white_redstone_lamp'}.png deleted file mode 100644 index bf5a3652..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_white_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_yellow_concrete'}.png deleted file mode 100644 index 7cf9cc29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__reinforced_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_black_wool'}.png deleted file mode 100644 index 61fa084d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_blue_wool'}.png deleted file mode 100644 index d810f01b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_brown_wool'}.png deleted file mode 100644 index c2abe86c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_cyan_wool'}.png deleted file mode 100644 index 8a252a5b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_gray_wool'}.png deleted file mode 100644 index 6a94618f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_green_wool'}.png deleted file mode 100644 index f530aba7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_light_blue_wool'}.png deleted file mode 100644 index 73c6ed00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_light_gray_wool'}.png deleted file mode 100644 index 05547ff6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_lime_wool'}.png deleted file mode 100644 index ceb8c084..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_magenta_wool'}.png deleted file mode 100644 index 98f3feae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_orange_wool'}.png deleted file mode 100644 index 80f8b59b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_pink_wool'}.png deleted file mode 100644 index 6d2126b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_purple_wool'}.png deleted file mode 100644 index 3b0538ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_red_wool'}.png deleted file mode 100644 index cc296d7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_white_wool'}.png deleted file mode 100644 index 8f945965..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_yellow_wool'}.png deleted file mode 100644 index 13b461b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ribbled_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rich_hay_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rich_hay_block'}.png deleted file mode 100644 index 4322553e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rich_hay_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ring_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ring_lodestone'}.png deleted file mode 100644 index 9743bc67..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ring_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ring_lodestone_side'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ring_lodestone_side'}.png deleted file mode 100644 index 9743bc67..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ring_lodestone_side'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ringed_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ringed_mangrove_planks'}.png deleted file mode 100644 index 3c208580..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ringed_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ripe_melon'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ripe_melon'}.png deleted file mode 100644 index 986437a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__ripe_melon'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__roped_bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__roped_bone_block'}.png deleted file mode 100644 index 6f6f7094..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__roped_bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rosekin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rosekin'}.png deleted file mode 100644 index 4b5444bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rosekin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rotted_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rotted_warped_stem'}.png deleted file mode 100644 index 87d3bae1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rotted_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rotten_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rotten_crimson_stem'}.png deleted file mode 100644 index 062bd266..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rotten_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_amethyst_block'}.png deleted file mode 100644 index a95eafd1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_ancient_debris'}.png deleted file mode 100644 index fb67da73..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_andesite'}.png deleted file mode 100644 index 8be8bffd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_blue_ice'}.png deleted file mode 100644 index bcf216e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_borderless_bricks'}.png deleted file mode 100644 index e35bdfa1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_bricks'}.png deleted file mode 100644 index e35bdfa1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_calcite'}.png deleted file mode 100644 index 2aba10d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_clay'}.png deleted file mode 100644 index a30636c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_coal_block'}.png deleted file mode 100644 index d8f1b8fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_cobblestone'}.png deleted file mode 100644 index 2eaa1767..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_crimson_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_crimson_dried_kelp_block'}.png deleted file mode 100644 index 04bbc05c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_crimson_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_crying_obsidian'}.png deleted file mode 100644 index ca01b8f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_dark_prismarine'}.png deleted file mode 100644 index fcfc5e5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_deepslate'}.png deleted file mode 100644 index 32cc73dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_diorite'}.png deleted file mode 100644 index 3d1e20c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_dirt'}.png deleted file mode 100644 index 13d8587f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_dripstone_block'}.png deleted file mode 100644 index a088d353..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_end_stone'}.png deleted file mode 100644 index dce852ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_granite'}.png deleted file mode 100644 index 1768b446..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_ice'}.png deleted file mode 100644 index f8381aed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_lapis_block'}.png deleted file mode 100644 index 55ec41ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_lodestone'}.png deleted file mode 100644 index fcdafb4b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_magma_block'}.png deleted file mode 100644 index aa3587dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mossy_cobblestone'}.png deleted file mode 100644 index 9e7a772e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mossy_stone_bricks'}.png deleted file mode 100644 index 056084d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mud'}.png deleted file mode 100644 index 54b18dfb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mud_bricks'}.png deleted file mode 100644 index 049ab124..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_nether_bricks'}.png deleted file mode 100644 index 18ee06dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_nether_wart_block'}.png deleted file mode 100644 index 1a3f1e87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_netherrack'}.png deleted file mode 100644 index 8415e64b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_obsidian'}.png deleted file mode 100644 index 72d406a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_packed_ice'}.png deleted file mode 100644 index f73be9c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_packed_mud'}.png deleted file mode 100644 index 5abc77da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_panelled_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_panelled_mud'}.png deleted file mode 100644 index 8cc0746e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_panelled_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_panelled_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_panelled_mud_bricks'}.png deleted file mode 100644 index 63443610..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_panelled_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_panelled_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_panelled_packed_mud'}.png deleted file mode 100644 index eb58efd8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_panelled_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_prismarine'}.png deleted file mode 100644 index 3cbeac9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_purpur_block'}.png deleted file mode 100644 index cb050a0a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_quartz_block'}.png deleted file mode 100644 index fb04c9b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_raw_copper_block'}.png deleted file mode 100644 index 45c48b6d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_raw_gold_block'}.png deleted file mode 100644 index 74349b59..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_raw_iron_block'}.png deleted file mode 100644 index 846bd6b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_red_nether_bricks'}.png deleted file mode 100644 index 7d42da72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_red_sandstone'}.png deleted file mode 100644 index 65aa18c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_redstone_block'}.png deleted file mode 100644 index 8862c751..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_sandstone'}.png deleted file mode 100644 index 26aa1fd2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_smooth_stone'}.png deleted file mode 100644 index e0a2b994..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_snow_block'}.png deleted file mode 100644 index 5293fd21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_stone'}.png deleted file mode 100644 index 932518e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_tuff'}.png deleted file mode 100644 index f9dc6bb4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_warped_wart_block'}.png deleted file mode 100644 index 596ee3af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rough_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rought_gravel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rought_gravel'}.png deleted file mode 100644 index 8810ee11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rought_gravel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__round_ochre_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__round_ochre_froglight'}.png deleted file mode 100644 index ef8dceff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__round_ochre_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__round_pearlescent_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__round_pearlescent_froglight'}.png deleted file mode 100644 index 25830234..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__round_pearlescent_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__round_verdant_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__round_verdant_froglight'}.png deleted file mode 100644 index 81a54e22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__round_verdant_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_amethyst_block_bricks'}.png deleted file mode 100644 index 455477b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_ancient_debris_bricks'}.png deleted file mode 100644 index 4bc9fd98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_andesite_bricks'}.png deleted file mode 100644 index 8e123c79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_basalt_bricks'}.png deleted file mode 100644 index 8da130bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_blackstone_bricks'}.png deleted file mode 100644 index 26c420f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_blue_ice_bricks'}.png deleted file mode 100644 index bef4c86f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_borderless_bricks_bricks'}.png deleted file mode 100644 index 24e361cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_bricks_bricks'}.png deleted file mode 100644 index c707668f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_calcite_bricks'}.png deleted file mode 100644 index a78ab8f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_clay_bricks'}.png deleted file mode 100644 index 2d40105c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_coal_block_bricks'}.png deleted file mode 100644 index 10855e32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_cobblestone_bricks'}.png deleted file mode 100644 index 738b0f40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_crying_obsidian_bricks'}.png deleted file mode 100644 index 90ede0a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_dark_prismarine_bricks'}.png deleted file mode 100644 index 4843ebd7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_deepslate_bricks'}.png deleted file mode 100644 index c35c4595..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_diorite_bricks'}.png deleted file mode 100644 index ca4c1d5f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_dirt_bricks'}.png deleted file mode 100644 index 39b26880..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_dripstone_block_bricks'}.png deleted file mode 100644 index 62df8236..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_end_stone_bricks'}.png deleted file mode 100644 index fb282606..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_gilded_blackstone_bricks'}.png deleted file mode 100644 index 54402091..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_granite_bricks'}.png deleted file mode 100644 index 85f4286b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_ice_bricks'}.png deleted file mode 100644 index dffae580..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_lapis_block_bricks'}.png deleted file mode 100644 index aac0c558..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_lodestone_bricks'}.png deleted file mode 100644 index ffa7fe70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_magma_block_bricks'}.png deleted file mode 100644 index b0c6e5df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_mossy_cobblestone_bricks'}.png deleted file mode 100644 index 3788034d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index 3327efa0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_nether_bricks_bricks'}.png deleted file mode 100644 index 62c941af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_netherrack_bricks'}.png deleted file mode 100644 index 00f8ec0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_obsidian_bricks'}.png deleted file mode 100644 index 0d1295ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_packed_ice_bricks'}.png deleted file mode 100644 index 08b66f84..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_prismarine_bricks'}.png deleted file mode 100644 index 99fd3c25..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_purpur_block_bricks'}.png deleted file mode 100644 index 1a86c505..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_quartz_block_bricks'}.png deleted file mode 100644 index e11cf259..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_raw_copper_block_bricks'}.png deleted file mode 100644 index 0b70a137..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_raw_gold_block_bricks'}.png deleted file mode 100644 index b512c4f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_raw_iron_block_bricks'}.png deleted file mode 100644 index d35c6feb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_red_nether_bricks_bricks'}.png deleted file mode 100644 index 22207db0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_red_sandstone_bricks'}.png deleted file mode 100644 index 62ed76f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_redstone_block_bricks'}.png deleted file mode 100644 index 068be897..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_sandstone_bricks'}.png deleted file mode 100644 index 9faa9b54..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_smooth_stone_bricks'}.png deleted file mode 100644 index 2cbe2d05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_snow_block_bricks'}.png deleted file mode 100644 index d2c91c0a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_stone_bricks'}.png deleted file mode 100644 index c5bee150..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_tuff_bricks'}.png deleted file mode 100644 index 7c80f591..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rounded_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rune_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rune_mud'}.png deleted file mode 100644 index 1946d97a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rune_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rune_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rune_mud_bricks'}.png deleted file mode 100644 index 07c7348e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rune_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rune_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rune_packed_mud'}.png deleted file mode 100644 index 574dee2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rune_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_amethyst_block'}.png deleted file mode 100644 index e626f8d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_ancient_debris'}.png deleted file mode 100644 index a5f03d64..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_andesite'}.png deleted file mode 100644 index cba058d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_basalt'}.png deleted file mode 100644 index f8489303..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_blackstone'}.png deleted file mode 100644 index b9ee66e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_blue_ice'}.png deleted file mode 100644 index 057a962d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_borderless_bricks'}.png deleted file mode 100644 index 08254557..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_bricks'}.png deleted file mode 100644 index e2dfcd26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_calcite'}.png deleted file mode 100644 index 80776731..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_clay'}.png deleted file mode 100644 index 5e6a1bec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_coal_block'}.png deleted file mode 100644 index 89ced73f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_cobblestone'}.png deleted file mode 100644 index 2afef4cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_crying_obsidian'}.png deleted file mode 100644 index fd28b0f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_dark_prismarine'}.png deleted file mode 100644 index 11d204fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_deepslate'}.png deleted file mode 100644 index 1287f555..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_diorite'}.png deleted file mode 100644 index 5f565cef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_dirt'}.png deleted file mode 100644 index 349ab467..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_dripstone_block'}.png deleted file mode 100644 index 784035d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_end_stone'}.png deleted file mode 100644 index 3530f476..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_gilded_blackstone'}.png deleted file mode 100644 index b40bd79d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_granite'}.png deleted file mode 100644 index ade5ce2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_ice'}.png deleted file mode 100644 index 79f2ff69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_lapis_block'}.png deleted file mode 100644 index 61c5356f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_lodestone'}.png deleted file mode 100644 index fc31f481..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_magma_block'}.png deleted file mode 100644 index 183b2402..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_mossy_cobblestone'}.png deleted file mode 100644 index 33d3499b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_mossy_stone_bricks'}.png deleted file mode 100644 index b78ed447..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_nether_bricks'}.png deleted file mode 100644 index 1eae147d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_netherrack'}.png deleted file mode 100644 index 0abdf9bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_obsidian'}.png deleted file mode 100644 index c38479c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_packed_ice'}.png deleted file mode 100644 index e167f59f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_prismarine'}.png deleted file mode 100644 index 6b5454a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_purpur_block'}.png deleted file mode 100644 index cca2230c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_quartz_block'}.png deleted file mode 100644 index b415af07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_raw_copper_block'}.png deleted file mode 100644 index 141be5dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_raw_gold_block'}.png deleted file mode 100644 index 458a1cc7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_raw_iron_block'}.png deleted file mode 100644 index 23741c46..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_red_nether_bricks'}.png deleted file mode 100644 index f2ac861f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_red_sandstone'}.png deleted file mode 100644 index 3741346e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_redstone_block'}.png deleted file mode 100644 index a1b7b067..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_sandstone'}.png deleted file mode 100644 index bad21401..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_smooth_stone'}.png deleted file mode 100644 index cfadd860..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_snow_block'}.png deleted file mode 100644 index 0405a82a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_stone'}.png deleted file mode 100644 index 19e9e5a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_tuff'}.png deleted file mode 100644 index 4f6cf28e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__runic_carved_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_black_concrete'}.png deleted file mode 100644 index 01bd4c36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_blue_concrete'}.png deleted file mode 100644 index 63f4e497..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_brown_concrete'}.png deleted file mode 100644 index 5a5b1bd7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_cyan_concrete'}.png deleted file mode 100644 index f4175545..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_gray_concrete'}.png deleted file mode 100644 index 8116d92a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_green_concrete'}.png deleted file mode 100644 index 02321b05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_light_blue_concrete'}.png deleted file mode 100644 index 69796143..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_light_gray_concrete'}.png deleted file mode 100644 index 24fc5b39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_lime_concrete'}.png deleted file mode 100644 index 63632f1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_magenta_concrete'}.png deleted file mode 100644 index 0a0b44e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_orange_concrete'}.png deleted file mode 100644 index f4b954c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_pink_concrete'}.png deleted file mode 100644 index 61b724b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_purple_concrete'}.png deleted file mode 100644 index dfbdf338..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_red_concrete'}.png deleted file mode 100644 index ffde6b29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_white_concrete'}.png deleted file mode 100644 index 46db9619..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_yellow_concrete'}.png deleted file mode 100644 index c111ec7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rusted_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rustic_melon'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rustic_melon'}.png deleted file mode 100644 index 99c75b72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__rustic_melon'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_amethyst_block'}.png deleted file mode 100644 index 09b66c43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_ancient_debris'}.png deleted file mode 100644 index 7f5c885f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_andesite'}.png deleted file mode 100644 index 4de89670..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_basalt'}.png deleted file mode 100644 index 84b0d396..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_blackstone'}.png deleted file mode 100644 index c4e4667c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_blue_ice'}.png deleted file mode 100644 index 4d34e14e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_borderless_bricks'}.png deleted file mode 100644 index 38a8cb48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_bricks'}.png deleted file mode 100644 index 67b3b693..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_calcite'}.png deleted file mode 100644 index 2a26a2e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_clay'}.png deleted file mode 100644 index f05aef81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_coal_block'}.png deleted file mode 100644 index 1c33db7a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_cobblestone'}.png deleted file mode 100644 index 26ffd3d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_crying_obsidian'}.png deleted file mode 100644 index 23b9ce4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_dark_prismarine'}.png deleted file mode 100644 index 3f4424f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_deepslate'}.png deleted file mode 100644 index e6e568f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_diorite'}.png deleted file mode 100644 index 739b308c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_dirt'}.png deleted file mode 100644 index 87d30a0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_dripstone_block'}.png deleted file mode 100644 index e5276140..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_end_stone'}.png deleted file mode 100644 index aa3a73ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_gilded_blackstone'}.png deleted file mode 100644 index 18d0bd56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_granite'}.png deleted file mode 100644 index 8701d375..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_ice'}.png deleted file mode 100644 index dd265b95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_lapis_block'}.png deleted file mode 100644 index 9605c5f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_lodestone'}.png deleted file mode 100644 index 3b88be86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_magma_block'}.png deleted file mode 100644 index d3eb12ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mossy_cobblestone'}.png deleted file mode 100644 index afc57646..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mossy_stone_bricks'}.png deleted file mode 100644 index d5c73897..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mud'}.png deleted file mode 100644 index 6d4515a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mud_bricks'}.png deleted file mode 100644 index da34f460..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_nether_bricks'}.png deleted file mode 100644 index 6fa5c618..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_netherrack'}.png deleted file mode 100644 index e1667c14..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_obsidian'}.png deleted file mode 100644 index fe56a63c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_packed_ice'}.png deleted file mode 100644 index c9a2fe24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_packed_mud'}.png deleted file mode 100644 index 48dd07ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_prismarine'}.png deleted file mode 100644 index 2ba2046e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_purpur_block'}.png deleted file mode 100644 index 3e48800f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_quartz_block'}.png deleted file mode 100644 index f3edd9d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_raw_copper_block'}.png deleted file mode 100644 index f2a5520f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_raw_gold_block'}.png deleted file mode 100644 index 3baf0cef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_raw_iron_block'}.png deleted file mode 100644 index e3d7bb87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_red_nether_bricks'}.png deleted file mode 100644 index 524402b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_red_sandstone'}.png deleted file mode 100644 index 4c5814b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_redstone_block'}.png deleted file mode 100644 index 87b8d49d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_sandstone'}.png deleted file mode 100644 index 90836ad8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_smooth_stone'}.png deleted file mode 100644 index 73b09d81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_snow_block'}.png deleted file mode 100644 index 59ccfe50..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_stone'}.png deleted file mode 100644 index da9860e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_tuff'}.png deleted file mode 100644 index bf9319df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sad_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_amethyst_block'}.png deleted file mode 100644 index c4eb5f86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_ancient_debris'}.png deleted file mode 100644 index 430070fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_andesite'}.png deleted file mode 100644 index f1e39334..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_basalt'}.png deleted file mode 100644 index fa6c5465..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_blackstone'}.png deleted file mode 100644 index db859d22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_blue_ice'}.png deleted file mode 100644 index c61834bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_borderless_bricks'}.png deleted file mode 100644 index df5de18a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_bricks'}.png deleted file mode 100644 index df5de18a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_calcite'}.png deleted file mode 100644 index c2ac6afc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_clay'}.png deleted file mode 100644 index 08a6302c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_coal_block'}.png deleted file mode 100644 index e4b710b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_cobblestone'}.png deleted file mode 100644 index 55acd253..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_crying_obsidian'}.png deleted file mode 100644 index 36b99d2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_dark_prismarine'}.png deleted file mode 100644 index 3764a7f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_deepslate'}.png deleted file mode 100644 index 90d56249..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_diorite'}.png deleted file mode 100644 index 1c8386ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_dirt'}.png deleted file mode 100644 index a2719525..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_dripstone_block'}.png deleted file mode 100644 index 43487387..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_end_stone'}.png deleted file mode 100644 index 6fb89e28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_gilded_blackstone'}.png deleted file mode 100644 index 72f482bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_granite'}.png deleted file mode 100644 index e9ee9005..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_ice'}.png deleted file mode 100644 index 91a09a88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_lapis_block'}.png deleted file mode 100644 index 99f1306a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_lodestone'}.png deleted file mode 100644 index 15125dca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_magma_block'}.png deleted file mode 100644 index 271aa1de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_mossy_cobblestone'}.png deleted file mode 100644 index b270b95d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_mossy_stone_bricks'}.png deleted file mode 100644 index 268b0bde..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_nether_bricks'}.png deleted file mode 100644 index 32a5498b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_netherrack'}.png deleted file mode 100644 index 7a536fa2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_obsidian'}.png deleted file mode 100644 index 6111699e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_packed_ice'}.png deleted file mode 100644 index 60310ada..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_prismarine'}.png deleted file mode 100644 index d7b69d94..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_purpur_block'}.png deleted file mode 100644 index 4d51d053..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_quartz_block'}.png deleted file mode 100644 index cd41d92a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_raw_copper_block'}.png deleted file mode 100644 index 22f1b201..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_raw_gold_block'}.png deleted file mode 100644 index bafd905b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_raw_iron_block'}.png deleted file mode 100644 index 1d071c4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_red_nether_bricks'}.png deleted file mode 100644 index 60dc2996..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_red_sandstone'}.png deleted file mode 100644 index b84cb220..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_redstone_block'}.png deleted file mode 100644 index d66c7491..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_sandstone'}.png deleted file mode 100644 index 2d9a166e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_smooth_stone'}.png deleted file mode 100644 index a5cc564e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_snow_block'}.png deleted file mode 100644 index 9ea62026..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_stone'}.png deleted file mode 100644 index 6cf71b18..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_tuff'}.png deleted file mode 100644 index 79b64a74..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sanded_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_bricks'}.png deleted file mode 100644 index 02557a75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_mini_tiles'}.png deleted file mode 100644 index 05228fb1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_pillar'}.png deleted file mode 100644 index 93f5b950..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_pillar_top'}.png deleted file mode 100644 index 5122f240..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_scales'}.png deleted file mode 100644 index 14ce9772..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandstone_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandy_gravel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandy_gravel'}.png deleted file mode 100644 index aad7a1e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sandy_gravel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scabbed_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scabbed_nether_wart_block'}.png deleted file mode 100644 index 9f45a68a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scabbed_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scabbed_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scabbed_warped_wart_block'}.png deleted file mode 100644 index df52b98d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scabbed_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_black_wool'}.png deleted file mode 100644 index 550307b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_blue_wool'}.png deleted file mode 100644 index 8bf440e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_brown_mushroom_block'}.png deleted file mode 100644 index 19bd7877..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_brown_wool'}.png deleted file mode 100644 index c88f63cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_cyan_wool'}.png deleted file mode 100644 index c9e0bef0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_gray_wool'}.png deleted file mode 100644 index fdd78d22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_green_wool'}.png deleted file mode 100644 index 1326fb7f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_light_blue_wool'}.png deleted file mode 100644 index 9e6766d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_light_gray_wool'}.png deleted file mode 100644 index 39a83dec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_lime_wool'}.png deleted file mode 100644 index 883466d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_magenta_wool'}.png deleted file mode 100644 index 96bb2a46..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_nether_wart_block'}.png deleted file mode 100644 index 6555f3b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_orange_wool'}.png deleted file mode 100644 index 41f60896..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_pink_wool'}.png deleted file mode 100644 index 35f515d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_purple_wool'}.png deleted file mode 100644 index 70a42a80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_red_wool'}.png deleted file mode 100644 index 70309eed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_warped_wart_block'}.png deleted file mode 100644 index c6a9de2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_white_wool'}.png deleted file mode 100644 index 9e3f2888..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_yellow_wool'}.png deleted file mode 100644 index cfe154b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaled_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaly_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaly_mud'}.png deleted file mode 100644 index 8cc0746e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaly_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaly_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaly_mud_bricks'}.png deleted file mode 100644 index 26886afd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaly_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaly_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaly_packed_mud'}.png deleted file mode 100644 index cd5cd0dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__scaly_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sea_lantern_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sea_lantern_lodestone'}.png deleted file mode 100644 index c4de0d11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sea_lantern_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sea_lodestone_side'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sea_lodestone_side'}.png deleted file mode 100644 index a7254be3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sea_lodestone_side'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__seared_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__seared_nether_wart_block'}.png deleted file mode 100644 index 39e5c16b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__seared_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__seared_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__seared_warped_wart_block'}.png deleted file mode 100644 index 2019f446..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__seared_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__semi_spongy_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__semi_spongy_nether_wart_block'}.png deleted file mode 100644 index acfc0ca5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__semi_spongy_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__semi_spongy_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__semi_spongy_warped_wart_block'}.png deleted file mode 100644 index bdcc9c70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__semi_spongy_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_diamond_block'}.png deleted file mode 100644 index 43f8de4f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_emerald_block'}.png deleted file mode 100644 index 660d777a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_gold_block'}.png deleted file mode 100644 index 18737242..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_iron_block'}.png deleted file mode 100644 index 2010aafe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_netherite_block'}.png deleted file mode 100644 index 70a93c10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_copper_block'}.png deleted file mode 100644 index ba0f96e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_exposed_copper'}.png deleted file mode 100644 index 530188e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_oxidized_copper'}.png deleted file mode 100644 index 722d573e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_weathered_copper'}.png deleted file mode 100644 index 92783ef9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sheet_waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shelved_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shelved_mangrove_planks'}.png deleted file mode 100644 index 6ccc584a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shelved_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_acacia_planks'}.png deleted file mode 100644 index d4f95be6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_bamboo_planks'}.png deleted file mode 100644 index d2f310c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_birch_planks'}.png deleted file mode 100644 index c239789a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_cherry_planks'}.png deleted file mode 100644 index 47552b42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_crimson_planks'}.png deleted file mode 100644 index 2917087b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_dark_oak_planks'}.png deleted file mode 100644 index 1db29f74..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_jungle_planks'}.png deleted file mode 100644 index d025450c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_mangrove_planks'}.png deleted file mode 100644 index a0637e56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_oak_planks'}.png deleted file mode 100644 index 19fd4192..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_spruce_planks'}.png deleted file mode 100644 index 5a829bbe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_warped_planks'}.png deleted file mode 100644 index 603a8a78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shifted_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shimmering_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shimmering_glowstone'}.png deleted file mode 100644 index eee2d2bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shimmering_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shimmering_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shimmering_sea_lantern'}.png deleted file mode 100644 index ec61d129..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shimmering_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shimmering_shroomlight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shimmering_shroomlight'}.png deleted file mode 100644 index 22c189f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shimmering_shroomlight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrooming_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrooming_crimson_stem'}.png deleted file mode 100644 index 0925c6c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrooming_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrooming_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrooming_warped_stem'}.png deleted file mode 100644 index 0e6264b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrooming_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shroomlight_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shroomlight_lantern'}.png deleted file mode 100644 index 2e193a55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shroomlight_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shroomlight_lodestone_side'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shroomlight_lodestone_side'}.png deleted file mode 100644 index e14b134f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shroomlight_lodestone_side'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shroomy_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shroomy_dried_kelp_block'}.png deleted file mode 100644 index d29e154d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shroomy_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_black_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_black_glazed_terracotta'}.png deleted file mode 100644 index 2f52eda4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_black_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_blue_glazed_terracotta'}.png deleted file mode 100644 index f7def95d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_brown_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_brown_glazed_terracotta'}.png deleted file mode 100644 index c5c199a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_brown_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_cyan_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_cyan_glazed_terracotta'}.png deleted file mode 100644 index 7b577963..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_cyan_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_gray_glazed_terracotta'}.png deleted file mode 100644 index 156af44d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_green_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_green_glazed_terracotta'}.png deleted file mode 100644 index db06be7a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_green_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_light_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_light_blue_glazed_terracotta'}.png deleted file mode 100644 index df709014..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_light_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_light_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_light_gray_glazed_terracotta'}.png deleted file mode 100644 index 66998719..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_light_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_lime_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_lime_glazed_terracotta'}.png deleted file mode 100644 index 4307f232..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_lime_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_magenta_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_magenta_glazed_terracotta'}.png deleted file mode 100644 index 343ccfca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_magenta_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_orange_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_orange_glazed_terracotta'}.png deleted file mode 100644 index 782ab001..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_orange_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_pink_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_pink_glazed_terracotta'}.png deleted file mode 100644 index 136db33e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_pink_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_purple_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_purple_glazed_terracotta'}.png deleted file mode 100644 index bca304ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_purple_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_red_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_red_glazed_terracotta'}.png deleted file mode 100644 index 96722f8c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_red_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_white_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_white_glazed_terracotta'}.png deleted file mode 100644 index 92159d1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_white_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_yellow_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_yellow_glazed_terracotta'}.png deleted file mode 100644 index 241fc167..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shrunken_yellow_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_diamond_block'}.png deleted file mode 100644 index 16a78a13..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_emerald_block'}.png deleted file mode 100644 index 5f88b9ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_gold_block'}.png deleted file mode 100644 index e81940b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_iron_block'}.png deleted file mode 100644 index 5167d2b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_netherite_block'}.png deleted file mode 100644 index 8acd3f64..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_copper_block'}.png deleted file mode 100644 index 4542f596..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_exposed_copper'}.png deleted file mode 100644 index 81821325..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_oxidized_copper'}.png deleted file mode 100644 index 5a9760a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_weathered_copper'}.png deleted file mode 100644 index fd621417..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__shuttered_waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sided_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sided_mangrove_planks'}.png deleted file mode 100644 index c3a562d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sided_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sifted_gravel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sifted_gravel'}.png deleted file mode 100644 index 25d00d7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sifted_gravel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sigil_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sigil_mud'}.png deleted file mode 100644 index ed3560e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sigil_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sigil_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sigil_mud_bricks'}.png deleted file mode 100644 index f9848609..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sigil_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sigil_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sigil_packed_mud'}.png deleted file mode 100644 index 0bf81bc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sigil_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_acacia_log'}.png deleted file mode 100644 index cfe3c9fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_birch_log'}.png deleted file mode 100644 index 48eb648c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_cherry_log'}.png deleted file mode 100644 index 9974ac2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_crimson_stem'}.png deleted file mode 100644 index bf6ad814..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_dark_oak_log'}.png deleted file mode 100644 index 4e9dfa01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_jungle_log'}.png deleted file mode 100644 index 9e1e780f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_mangrove_log'}.png deleted file mode 100644 index 7e062e75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_oak_log'}.png deleted file mode 100644 index 101bd9cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_spruce_log'}.png deleted file mode 100644 index 8ef8b71c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_warped_stem'}.png deleted file mode 100644 index bde96614..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sign_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__silly_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__silly_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__silly_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__silly_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__silly_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__silly_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_amethyst_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_amethyst_block_pillar'}.png deleted file mode 100644 index 3747ee4b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_amethyst_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_ancient_debris_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_ancient_debris_pillar'}.png deleted file mode 100644 index 64b71a53..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_ancient_debris_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_andesite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_andesite_pillar'}.png deleted file mode 100644 index 9ab36075..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_andesite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_basalt_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_basalt_pillar'}.png deleted file mode 100644 index 853d9be9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_basalt_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_blackstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_blackstone_pillar'}.png deleted file mode 100644 index 160244a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_blackstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_blue_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_blue_ice_pillar'}.png deleted file mode 100644 index 024c79c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_blue_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_borderless_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_borderless_bricks_pillar'}.png deleted file mode 100644 index ec4caa11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_borderless_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_bricks_pillar'}.png deleted file mode 100644 index 8daca155..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_calcite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_calcite_pillar'}.png deleted file mode 100644 index b70a9698..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_calcite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_clay_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_clay_pillar'}.png deleted file mode 100644 index 63958a36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_clay_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_coal_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_coal_block_pillar'}.png deleted file mode 100644 index ccb5d450..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_coal_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_cobblestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_cobblestone_pillar'}.png deleted file mode 100644 index 2a28c89b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_cobblestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_crying_obsidian_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_crying_obsidian_pillar'}.png deleted file mode 100644 index 8bd1d240..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_crying_obsidian_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_dark_prismarine_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_dark_prismarine_pillar'}.png deleted file mode 100644 index 2ad7efcd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_dark_prismarine_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_deepslate_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_deepslate_pillar'}.png deleted file mode 100644 index e1dd0527..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_deepslate_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_diorite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_diorite_pillar'}.png deleted file mode 100644 index a1dbfafa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_diorite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_dirt_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_dirt_pillar'}.png deleted file mode 100644 index 5d4a62a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_dirt_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_dripstone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_dripstone_block_pillar'}.png deleted file mode 100644 index 4d5da5e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_dripstone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_end_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_end_stone_pillar'}.png deleted file mode 100644 index cf59f95e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_end_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_gilded_blackstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_gilded_blackstone_pillar'}.png deleted file mode 100644 index d5ee6f91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_gilded_blackstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_granite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_granite_pillar'}.png deleted file mode 100644 index a9333e5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_granite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_ice_pillar'}.png deleted file mode 100644 index 0ce6862f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_lapis_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_lapis_block_pillar'}.png deleted file mode 100644 index e18fe668..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_lapis_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_lodestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_lodestone_pillar'}.png deleted file mode 100644 index df2bcfa5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_lodestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_magma_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_magma_block_pillar'}.png deleted file mode 100644 index f3156293..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_magma_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mossy_cobblestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mossy_cobblestone_pillar'}.png deleted file mode 100644 index 1092ce68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mossy_cobblestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mossy_stone_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mossy_stone_bricks_pillar'}.png deleted file mode 100644 index 148c12a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mossy_stone_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mud_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mud_bricks_pillar'}.png deleted file mode 100644 index 142f75df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mud_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mud_pillar'}.png deleted file mode 100644 index 283a4b5b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_nether_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_nether_bricks_pillar'}.png deleted file mode 100644 index bfa9b0a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_nether_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_netherrack_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_netherrack_pillar'}.png deleted file mode 100644 index 82a2080d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_netherrack_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_obsidian_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_obsidian_pillar'}.png deleted file mode 100644 index e4514111..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_obsidian_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_packed_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_packed_ice_pillar'}.png deleted file mode 100644 index 0a62c08c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_packed_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_packed_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_packed_mud_pillar'}.png deleted file mode 100644 index 811d7d21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_packed_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_prismarine_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_prismarine_pillar'}.png deleted file mode 100644 index 55112d75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_prismarine_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_purpur_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_purpur_block_pillar'}.png deleted file mode 100644 index e050e391..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_purpur_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_quartz_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_quartz_block_pillar'}.png deleted file mode 100644 index db5451d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_quartz_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_raw_copper_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_raw_copper_block_pillar'}.png deleted file mode 100644 index 637866b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_raw_copper_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_raw_gold_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_raw_gold_block_pillar'}.png deleted file mode 100644 index bb7cfe8b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_raw_gold_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_raw_iron_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_raw_iron_block_pillar'}.png deleted file mode 100644 index 2a7cde20..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_raw_iron_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_red_nether_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_red_nether_bricks_pillar'}.png deleted file mode 100644 index 574217f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_red_nether_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_red_sandstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_red_sandstone_pillar'}.png deleted file mode 100644 index 456d612d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_red_sandstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_redstone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_redstone_block_pillar'}.png deleted file mode 100644 index 8e2319c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_redstone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_sandstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_sandstone_pillar'}.png deleted file mode 100644 index deb45db5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_sandstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_smooth_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_smooth_stone_pillar'}.png deleted file mode 100644 index 721afe22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_smooth_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_snow_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_snow_block_pillar'}.png deleted file mode 100644 index 4536edfd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_snow_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_stone_pillar'}.png deleted file mode 100644 index 140d7b5b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_tuff_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_tuff_pillar'}.png deleted file mode 100644 index c3b7b6fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__simple_tuff_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_acacia_planks'}.png deleted file mode 100644 index 62ac04b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_bamboo_planks'}.png deleted file mode 100644 index 2f4a0934..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_birch_planks'}.png deleted file mode 100644 index 86ea496a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_cherry_planks'}.png deleted file mode 100644 index 7e0c77e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_crimson_planks'}.png deleted file mode 100644 index 6a5c3830..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_dark_oak_planks'}.png deleted file mode 100644 index 9cb4340c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_jungle_planks'}.png deleted file mode 100644 index ae78dd9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_mangrove_planks'}.png deleted file mode 100644 index a9d52049..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_oak_planks'}.png deleted file mode 100644 index b7ac6812..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_spruce_planks'}.png deleted file mode 100644 index 1e2a53bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_warped_planks'}.png deleted file mode 100644 index 53379f78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slanted_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slight_smile_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slight_smile_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slight_smile_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slight_smile_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slight_smile_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__slight_smile_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_amethyst_block_bricks'}.png deleted file mode 100644 index 65ac14ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_ancient_debris_bricks'}.png deleted file mode 100644 index 9faa310f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_andesite_bricks'}.png deleted file mode 100644 index e525b1a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_basalt_bricks'}.png deleted file mode 100644 index 63be0b03..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_black_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_black_stained_glass'}.png deleted file mode 100644 index af956ff3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_black_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_black_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_black_terracotta_tiles'}.png deleted file mode 100644 index b1e37ef5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_black_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blackstone_bricks'}.png deleted file mode 100644 index 0fdf1c2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blue_ice_bricks'}.png deleted file mode 100644 index 66997058..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blue_stained_glass'}.png deleted file mode 100644 index f8eee119..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blue_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blue_terracotta_tiles'}.png deleted file mode 100644 index 52d29b79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_blue_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_borderless_bricks_bricks'}.png deleted file mode 100644 index 4cd56198..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_bricks_bricks'}.png deleted file mode 100644 index a327a9d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_brown_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_brown_stained_glass'}.png deleted file mode 100644 index f6131c18..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_brown_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_brown_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_brown_terracotta_tiles'}.png deleted file mode 100644 index 63c52efe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_brown_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_calcite_bricks'}.png deleted file mode 100644 index c53b370a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_clay_bricks'}.png deleted file mode 100644 index 92a026c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_coal_block_bricks'}.png deleted file mode 100644 index 811eb56c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_cobblestone_bricks'}.png deleted file mode 100644 index c33930d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_crying_obsidian_bricks'}.png deleted file mode 100644 index 2494c6ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_cyan_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_cyan_stained_glass'}.png deleted file mode 100644 index fb0df8d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_cyan_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_cyan_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_cyan_terracotta_tiles'}.png deleted file mode 100644 index d54b3d9a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_cyan_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_dark_prismarine_bricks'}.png deleted file mode 100644 index e8c7e17d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_deepslate_bricks'}.png deleted file mode 100644 index 725a77ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_diamond_leaded_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_diamond_leaded_glass'}.png deleted file mode 100644 index 46aec0fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_diamond_leaded_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_diorite_bricks'}.png deleted file mode 100644 index 702690f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_dirt_bricks'}.png deleted file mode 100644 index 11e1c576..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_dripstone_block_bricks'}.png deleted file mode 100644 index c6a4c7b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_end_stone_bricks'}.png deleted file mode 100644 index 81e0f467..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_gilded_blackstone_bricks'}.png deleted file mode 100644 index e4b2426f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_granite_bricks'}.png deleted file mode 100644 index b8501dcb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_gray_stained_glass'}.png deleted file mode 100644 index e8caee07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_gray_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_gray_terracotta_tiles'}.png deleted file mode 100644 index c1d66dc4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_gray_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_green_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_green_stained_glass'}.png deleted file mode 100644 index d5551d1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_green_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_green_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_green_terracotta_tiles'}.png deleted file mode 100644 index ec6472fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_green_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_ice_bricks'}.png deleted file mode 100644 index d3d231f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lapis_block_bricks'}.png deleted file mode 100644 index a84c352a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_blue_stained_glass'}.png deleted file mode 100644 index ed24c828..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_blue_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_blue_terracotta_tiles'}.png deleted file mode 100644 index 4cd3ccd2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_blue_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_gray_stained_glass'}.png deleted file mode 100644 index 3738d23a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_gray_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_gray_terracotta_tiles'}.png deleted file mode 100644 index 7281afe2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_light_gray_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lime_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lime_stained_glass'}.png deleted file mode 100644 index 2b9e4b1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lime_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lime_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lime_terracotta_tiles'}.png deleted file mode 100644 index 8f041fab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lime_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lodestone_bricks'}.png deleted file mode 100644 index 3a1eeb7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_magenta_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_magenta_stained_glass'}.png deleted file mode 100644 index 3c6fcd86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_magenta_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_magenta_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_magenta_terracotta_tiles'}.png deleted file mode 100644 index 9d17f89c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_magenta_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_magma_block_bricks'}.png deleted file mode 100644 index 31b24d6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mossy_cobblestone_bricks'}.png deleted file mode 100644 index 89192ecb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index 80ca487f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mud_bricks'}.png deleted file mode 100644 index 45f32cc7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mud_bricks_bricks'}.png deleted file mode 100644 index cb4e229a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_nether_bricks_bricks'}.png deleted file mode 100644 index 29dfab06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_netherrack_bricks'}.png deleted file mode 100644 index d43043f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_obsidian_bricks'}.png deleted file mode 100644 index 313227c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_orange_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_orange_stained_glass'}.png deleted file mode 100644 index 281a2f7a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_orange_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_orange_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_orange_terracotta_tiles'}.png deleted file mode 100644 index d297c119..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_orange_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_packed_ice_bricks'}.png deleted file mode 100644 index 33bb6c91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_packed_mud_bricks'}.png deleted file mode 100644 index 9bc09504..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_pink_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_pink_stained_glass'}.png deleted file mode 100644 index fa21aef3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_pink_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_pink_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_pink_terracotta_tiles'}.png deleted file mode 100644 index 6d230403..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_pink_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_prismarine_bricks'}.png deleted file mode 100644 index 41a6f599..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_purple_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_purple_stained_glass'}.png deleted file mode 100644 index 40749988..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_purple_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_purple_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_purple_terracotta_tiles'}.png deleted file mode 100644 index f33dc88f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_purple_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_purpur_block_bricks'}.png deleted file mode 100644 index 7c658c93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_quartz_block_bricks'}.png deleted file mode 100644 index eeb2e647..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_raw_copper_block_bricks'}.png deleted file mode 100644 index 8983dce2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_raw_gold_block_bricks'}.png deleted file mode 100644 index e4061b44..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_raw_iron_block_bricks'}.png deleted file mode 100644 index 17ae357b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_nether_bricks_bricks'}.png deleted file mode 100644 index e320c959..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_sandstone_bricks'}.png deleted file mode 100644 index 096caf42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_stained_glass'}.png deleted file mode 100644 index f3683a12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_terracotta_tiles'}.png deleted file mode 100644 index e0a00488..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_red_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_redstone_block_bricks'}.png deleted file mode 100644 index bc0d1530..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_sandstone_bricks'}.png deleted file mode 100644 index 30e8417f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_smooth_stone_bricks'}.png deleted file mode 100644 index 0becef6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_snow_block_bricks'}.png deleted file mode 100644 index c6840758..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_stone_bricks'}.png deleted file mode 100644 index 5bef0e27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_terracotta_tiles'}.png deleted file mode 100644 index e69cecd2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_tuff_bricks'}.png deleted file mode 100644 index 2685ba4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_white_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_white_stained_glass'}.png deleted file mode 100644 index 4c6dc011..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_white_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_white_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_white_terracotta_tiles'}.png deleted file mode 100644 index 833e9c3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_white_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_yellow_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_yellow_stained_glass'}.png deleted file mode 100644 index 21cd6c21..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_yellow_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_yellow_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_yellow_terracotta_tiles'}.png deleted file mode 100644 index ae82de2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__small_yellow_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smiling_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smiling_carved_pumpkin'}.png deleted file mode 100644 index b621e299..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smiling_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smiling_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smiling_jack_o_lantern'}.png deleted file mode 100644 index b621e299..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smiling_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_acacia_planks'}.png deleted file mode 100644 index 6ca23e25..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_amethyst_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_amethyst_block_column'}.png deleted file mode 100644 index 182613b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_amethyst_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ancient_debris_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ancient_debris_column'}.png deleted file mode 100644 index 92b0a080..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ancient_debris_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_andesite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_andesite_column'}.png deleted file mode 100644 index 9e5c8099..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_andesite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_bamboo_planks'}.png deleted file mode 100644 index 7afb7bd8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_basalt_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_basalt_column'}.png deleted file mode 100644 index 3a73ca2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_basalt_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_birch_planks'}.png deleted file mode 100644 index 36a22531..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_black_concrete'}.png deleted file mode 100644 index 228f2f96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blackstone_bricks'}.png deleted file mode 100644 index 3cdbb351..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blackstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blackstone_column'}.png deleted file mode 100644 index 39e13aa2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blackstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blue_concrete'}.png deleted file mode 100644 index fc2aa1f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blue_ice_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blue_ice_column'}.png deleted file mode 100644 index 2f2061db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_blue_ice_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_borderless_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_borderless_bricks_column'}.png deleted file mode 100644 index f55a94ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_borderless_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_bricks_column'}.png deleted file mode 100644 index 83a4fab7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_brown_concrete'}.png deleted file mode 100644 index 1ef4a58b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_brown_mushroom_block'}.png deleted file mode 100644 index 7e72b535..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_calcite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_calcite_column'}.png deleted file mode 100644 index 95e66e1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_calcite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_cherry_planks'}.png deleted file mode 100644 index 2fb39d19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_clay_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_clay_column'}.png deleted file mode 100644 index 54b13edf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_clay_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_coal_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_coal_block_column'}.png deleted file mode 100644 index b68625f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_coal_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_cobblestone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_cobblestone_column'}.png deleted file mode 100644 index 5c81db83..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_cobblestone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_crimson_planks'}.png deleted file mode 100644 index 2a2c76f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_crimson_stem'}.png deleted file mode 100644 index 85478062..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_crying_obsidian_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_crying_obsidian_column'}.png deleted file mode 100644 index ba53bef0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_crying_obsidian_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_cyan_concrete'}.png deleted file mode 100644 index ee7b9c44..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dark_oak_planks'}.png deleted file mode 100644 index 5363f7c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dark_prismarine_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dark_prismarine_column'}.png deleted file mode 100644 index 473b99dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dark_prismarine_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_deepslate_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_deepslate_column'}.png deleted file mode 100644 index 1987c1eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_deepslate_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_diorite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_diorite_column'}.png deleted file mode 100644 index 4aa04d5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_diorite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dirt_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dirt_column'}.png deleted file mode 100644 index 209d4312..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dirt_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dripstone_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dripstone_block_column'}.png deleted file mode 100644 index 596bfced..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_dripstone_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_end_stone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_end_stone_column'}.png deleted file mode 100644 index 04fbd60d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_end_stone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_gilded_blackstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_gilded_blackstone_column'}.png deleted file mode 100644 index 4ad03a19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_gilded_blackstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_glowstone'}.png deleted file mode 100644 index 7deb296b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_granite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_granite_column'}.png deleted file mode 100644 index ba209e87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_granite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_gray_concrete'}.png deleted file mode 100644 index 15f55f27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_green_concrete'}.png deleted file mode 100644 index c1a968a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ice_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ice_column'}.png deleted file mode 100644 index 7f0ee01b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ice_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_amethyst_block'}.png deleted file mode 100644 index 783764e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_ancient_debris'}.png deleted file mode 100644 index 54559ecf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_andesite'}.png deleted file mode 100644 index 79a3d039..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_basalt'}.png deleted file mode 100644 index c6b9fa5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_blackstone'}.png deleted file mode 100644 index a583fb35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_blue_ice'}.png deleted file mode 100644 index ca0b9b59..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_borderless_bricks'}.png deleted file mode 100644 index 9aa2ebaf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_bricks'}.png deleted file mode 100644 index 6f1ec275..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_calcite'}.png deleted file mode 100644 index e3388919..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_clay'}.png deleted file mode 100644 index 91a83278..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_coal_block'}.png deleted file mode 100644 index a2458ecd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_cobblestone'}.png deleted file mode 100644 index f3035ee5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_crying_obsidian'}.png deleted file mode 100644 index 55d4f0f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_dark_prismarine'}.png deleted file mode 100644 index 2765c778..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_deepslate'}.png deleted file mode 100644 index 281d5e00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_diorite'}.png deleted file mode 100644 index b0358a3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_dirt'}.png deleted file mode 100644 index dfb4aa93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_dripstone_block'}.png deleted file mode 100644 index d7d08c17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_end_stone'}.png deleted file mode 100644 index 6958a5af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_gilded_blackstone'}.png deleted file mode 100644 index 74b63535..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_granite'}.png deleted file mode 100644 index a04f2d66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_ice'}.png deleted file mode 100644 index 0b083a0e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_lapis_block'}.png deleted file mode 100644 index e60a86ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_magma_block'}.png deleted file mode 100644 index 61d706dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_mossy_cobblestone'}.png deleted file mode 100644 index 5dacfc28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_mossy_stone_bricks'}.png deleted file mode 100644 index 302bd4be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_nether_bricks'}.png deleted file mode 100644 index a90e9aed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_netherrack'}.png deleted file mode 100644 index 8200e017..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_obsidian'}.png deleted file mode 100644 index 3b23fa77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_packed_ice'}.png deleted file mode 100644 index 203f3fa0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_prismarine'}.png deleted file mode 100644 index a971201a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_purpur_block'}.png deleted file mode 100644 index b6dfd369..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_quartz_block'}.png deleted file mode 100644 index e1c8a3ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_raw_copper_block'}.png deleted file mode 100644 index 985a194e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_raw_gold_block'}.png deleted file mode 100644 index 1f82e4ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_raw_iron_block'}.png deleted file mode 100644 index e0fe44e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_red_nether_bricks'}.png deleted file mode 100644 index d257462b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_red_sandstone'}.png deleted file mode 100644 index 0e12ede2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_redstone_block'}.png deleted file mode 100644 index 7ff2086d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_sandstone'}.png deleted file mode 100644 index 4ab676ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_smooth_stone'}.png deleted file mode 100644 index 54b7f832..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_snow_block'}.png deleted file mode 100644 index b3903811..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_stone'}.png deleted file mode 100644 index 576055d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_tuff'}.png deleted file mode 100644 index dd910626..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_inlayed_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_jungle_planks'}.png deleted file mode 100644 index c0f888d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_lapis_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_lapis_block_column'}.png deleted file mode 100644 index 01c875ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_lapis_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_light_blue_concrete'}.png deleted file mode 100644 index 97009431..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_light_gray_concrete'}.png deleted file mode 100644 index 8996c26b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_lime_concrete'}.png deleted file mode 100644 index 4db33233..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_lodestone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_lodestone_column'}.png deleted file mode 100644 index 81bd31e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_lodestone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_magenta_concrete'}.png deleted file mode 100644 index e1bfd8aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_magma_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_magma_block_column'}.png deleted file mode 100644 index 863f01a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_magma_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mangrove_planks'}.png deleted file mode 100644 index 324caf03..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_moss_block'}.png deleted file mode 100644 index aac63a5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mossy_cobblestone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mossy_cobblestone_column'}.png deleted file mode 100644 index 8a217f41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mossy_cobblestone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mossy_stone_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mossy_stone_bricks_column'}.png deleted file mode 100644 index 9d047f64..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mossy_stone_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mud'}.png deleted file mode 100644 index 0b727896..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mud_bricks'}.png deleted file mode 100644 index 691643cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mushroom_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mushroom_stem'}.png deleted file mode 100644 index 05936737..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_mushroom_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_nether_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_nether_bricks_column'}.png deleted file mode 100644 index 0c61a4c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_nether_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_netherrack_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_netherrack_column'}.png deleted file mode 100644 index b85af342..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_netherrack_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_oak_planks'}.png deleted file mode 100644 index 8a3acfda..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_obsidian_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_obsidian_column'}.png deleted file mode 100644 index 91c5913c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_obsidian_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_orange_concrete'}.png deleted file mode 100644 index a2b7e8bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_packed_ice_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_packed_ice_column'}.png deleted file mode 100644 index 58852c29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_packed_ice_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_packed_mud'}.png deleted file mode 100644 index e28c778a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_pink_concrete'}.png deleted file mode 100644 index 74d3967a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_prismarine_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_prismarine_column'}.png deleted file mode 100644 index 2c43bd18..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_prismarine_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_purple_concrete'}.png deleted file mode 100644 index 8b43a887..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_purpur_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_purpur_block_column'}.png deleted file mode 100644 index 3cedb07f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_purpur_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_quartz_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_quartz_block_column'}.png deleted file mode 100644 index 280ed28c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_quartz_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_raw_copper_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_raw_copper_block_column'}.png deleted file mode 100644 index 0d47281c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_raw_copper_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_raw_gold_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_raw_gold_block_column'}.png deleted file mode 100644 index c2794b72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_raw_gold_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_raw_iron_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_raw_iron_block_column'}.png deleted file mode 100644 index 2092a13f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_raw_iron_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_concrete'}.png deleted file mode 100644 index 93a67ef8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_mushroom_block'}.png deleted file mode 100644 index c64fc20f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_nether_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_nether_bricks_column'}.png deleted file mode 100644 index af7709c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_nether_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_sandstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_sandstone_column'}.png deleted file mode 100644 index cfdc96ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_red_sandstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_redstone_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_redstone_block_column'}.png deleted file mode 100644 index 254d396a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_redstone_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_redstone_lamp'}.png deleted file mode 100644 index f3272539..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_amethyst_block'}.png deleted file mode 100644 index 6ef33a41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_ancient_debris'}.png deleted file mode 100644 index ad1c3b8c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_andesite'}.png deleted file mode 100644 index b45279c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_basalt'}.png deleted file mode 100644 index cbd4d0d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_blackstone'}.png deleted file mode 100644 index 931a6dd4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_blue_ice'}.png deleted file mode 100644 index d03cc3a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_borderless_bricks'}.png deleted file mode 100644 index b59f74d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_bricks'}.png deleted file mode 100644 index df0ef9e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_calcite'}.png deleted file mode 100644 index 828d3d3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_clay'}.png deleted file mode 100644 index 451a3c05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_coal_block'}.png deleted file mode 100644 index 425ecbe3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_cobblestone'}.png deleted file mode 100644 index aec7845e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_crying_obsidian'}.png deleted file mode 100644 index a0b1ab49..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_dark_prismarine'}.png deleted file mode 100644 index b927d637..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_deepslate'}.png deleted file mode 100644 index 435f6eac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_diorite'}.png deleted file mode 100644 index 51c8b969..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_dirt'}.png deleted file mode 100644 index a63c2858..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_dripstone_block'}.png deleted file mode 100644 index 947e0010..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_end_stone'}.png deleted file mode 100644 index 5ede3eb2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_gilded_blackstone'}.png deleted file mode 100644 index 9b047745..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_granite'}.png deleted file mode 100644 index 6a737171..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_ice'}.png deleted file mode 100644 index 98e3fc57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_lapis_block'}.png deleted file mode 100644 index af695b97..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_lodestone'}.png deleted file mode 100644 index fd5cd147..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_magma_block'}.png deleted file mode 100644 index 0f40a18d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mossy_cobblestone'}.png deleted file mode 100644 index 19049745..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mossy_stone_bricks'}.png deleted file mode 100644 index 78f443c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mud'}.png deleted file mode 100644 index 95d1957c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mud_bricks'}.png deleted file mode 100644 index 5d3c9473..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_nether_bricks'}.png deleted file mode 100644 index 341fc33a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_netherrack'}.png deleted file mode 100644 index 0bfb9576..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_obsidian'}.png deleted file mode 100644 index 891d81aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_packed_ice'}.png deleted file mode 100644 index 8aa53d70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_packed_mud'}.png deleted file mode 100644 index 709f527a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_prismarine'}.png deleted file mode 100644 index 6c44a4ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_purpur_block'}.png deleted file mode 100644 index fedde3b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_quartz_block'}.png deleted file mode 100644 index 59090528..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_raw_copper_block'}.png deleted file mode 100644 index 9d2c9386..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_raw_gold_block'}.png deleted file mode 100644 index d717b061..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_raw_iron_block'}.png deleted file mode 100644 index f5226664..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_red_nether_bricks'}.png deleted file mode 100644 index 89b8e379..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_red_sandstone'}.png deleted file mode 100644 index eddedd9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_redstone_block'}.png deleted file mode 100644 index 67258960..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_sandstone'}.png deleted file mode 100644 index 48912812..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_smooth_stone'}.png deleted file mode 100644 index 6be758ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_snow_block'}.png deleted file mode 100644 index 8d87d7d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_tuff'}.png deleted file mode 100644 index eb8e3875..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_ringed_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_sandstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_sandstone_column'}.png deleted file mode 100644 index d5590d4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_sandstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_sea_lantern'}.png deleted file mode 100644 index a5e55f2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_shroomlight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_shroomlight'}.png deleted file mode 100644 index 73225215..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_shroomlight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_smooth_stone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_smooth_stone_column'}.png deleted file mode 100644 index 090ddb2b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_smooth_stone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_snow_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_snow_block_column'}.png deleted file mode 100644 index 48ae6f18..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_snow_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_sponge'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_sponge'}.png deleted file mode 100644 index e0ce9f36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_sponge'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_spruce_planks'}.png deleted file mode 100644 index 6f387ce1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_bricks'}.png deleted file mode 100644 index aefcb5ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_column'}.png deleted file mode 100644 index 83ff1f6a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_mini_tiles'}.png deleted file mode 100644 index bc26a7e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_pillar'}.png deleted file mode 100644 index ceff4236..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_pillar_top'}.png deleted file mode 100644 index cb3bfa5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_scales'}.png deleted file mode 100644 index f6ad67ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_stone_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_tuff_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_tuff_column'}.png deleted file mode 100644 index 5ec091a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_tuff_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_warped_planks'}.png deleted file mode 100644 index 06a46ef5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_warped_stem'}.png deleted file mode 100644 index 9d1c8656..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_white_concrete'}.png deleted file mode 100644 index 9b509ab2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_white_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_white_redstone_lamp'}.png deleted file mode 100644 index 65a881f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_white_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_yellow_concrete'}.png deleted file mode 100644 index 5538859f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smooth_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_amethyst_block'}.png deleted file mode 100644 index 051c1001..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_ancient_debris'}.png deleted file mode 100644 index 88d58db0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_andesite'}.png deleted file mode 100644 index 5f5f2200..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_basalt'}.png deleted file mode 100644 index 706c7916..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_blackstone'}.png deleted file mode 100644 index a4f23775..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_blue_ice'}.png deleted file mode 100644 index ce7c036e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_borderless_bricks'}.png deleted file mode 100644 index 3e0c090c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_bricks'}.png deleted file mode 100644 index f70b0d0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_calcite'}.png deleted file mode 100644 index 84c2ced7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_clay'}.png deleted file mode 100644 index f2997d3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_coal_block'}.png deleted file mode 100644 index 430527d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_cobblestone'}.png deleted file mode 100644 index 61f3de39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_crying_obsidian'}.png deleted file mode 100644 index edbd88e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_dark_prismarine'}.png deleted file mode 100644 index b48d8394..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_deepslate'}.png deleted file mode 100644 index c4ad8310..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_diorite'}.png deleted file mode 100644 index 087a2cef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_dirt'}.png deleted file mode 100644 index aae7ce42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_dripstone_block'}.png deleted file mode 100644 index c48193b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_end_stone'}.png deleted file mode 100644 index dd460957..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_gilded_blackstone'}.png deleted file mode 100644 index 2eaca177..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_granite'}.png deleted file mode 100644 index 7f508e0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_ice'}.png deleted file mode 100644 index 6c202cf1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_lapis_block'}.png deleted file mode 100644 index 3fd786df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_lodestone'}.png deleted file mode 100644 index b26e0a22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_magma_block'}.png deleted file mode 100644 index c29b1085..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mossy_cobblestone'}.png deleted file mode 100644 index cd142139..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mossy_stone_bricks'}.png deleted file mode 100644 index 5996392a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mud'}.png deleted file mode 100644 index 499b0824..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mud_bricks'}.png deleted file mode 100644 index f4e6700a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_nether_bricks'}.png deleted file mode 100644 index c26c3876..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_netherrack'}.png deleted file mode 100644 index 5011f48b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_obsidian'}.png deleted file mode 100644 index 448fa5fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_packed_ice'}.png deleted file mode 100644 index 29d7d003..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_packed_mud'}.png deleted file mode 100644 index 7f1a9ba4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_prismarine'}.png deleted file mode 100644 index f990b487..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_purpur_block'}.png deleted file mode 100644 index 56f9f848..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_quartz_block'}.png deleted file mode 100644 index 1b5ab276..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_raw_copper_block'}.png deleted file mode 100644 index 4107f116..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_raw_gold_block'}.png deleted file mode 100644 index e3b0b1d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_raw_iron_block'}.png deleted file mode 100644 index e416faa5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_red_nether_bricks'}.png deleted file mode 100644 index 7c45ec99..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_red_sandstone'}.png deleted file mode 100644 index ea7580af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_redstone_block'}.png deleted file mode 100644 index 963d7cb4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_sandstone'}.png deleted file mode 100644 index 3fbc43e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_smooth_stone'}.png deleted file mode 100644 index e82092a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_snow_block'}.png deleted file mode 100644 index e49c1e3f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_stone'}.png deleted file mode 100644 index a647bf35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_tuff'}.png deleted file mode 100644 index dec9024f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__smoothed_double_inlayed_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_bricks'}.png deleted file mode 100644 index 56b28415..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_mini_tiles'}.png deleted file mode 100644 index 281701a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_pillar'}.png deleted file mode 100644 index 2f588991..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_pillar_top'}.png deleted file mode 100644 index 19fcac8c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_scales'}.png deleted file mode 100644 index a41a4d5b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__snow_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_black_wool'}.png deleted file mode 100644 index e8c526ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_blue_wool'}.png deleted file mode 100644 index 2bab7295..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_brown_wool'}.png deleted file mode 100644 index 507229b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_cyan_wool'}.png deleted file mode 100644 index 1e8be1ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_gray_wool'}.png deleted file mode 100644 index 9b324741..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_green_wool'}.png deleted file mode 100644 index db8a0435..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_light_blue_wool'}.png deleted file mode 100644 index 2dd6c6ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_light_gray_wool'}.png deleted file mode 100644 index 6569d4ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_lime_wool'}.png deleted file mode 100644 index 34c901ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_magenta_wool'}.png deleted file mode 100644 index fc02a3db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_orange_wool'}.png deleted file mode 100644 index a6d5e2f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_pink_wool'}.png deleted file mode 100644 index b2c99c69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_purple_wool'}.png deleted file mode 100644 index 24c8c4fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_red_wool'}.png deleted file mode 100644 index 6678b8bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_sand'}.png deleted file mode 100644 index 07cd83e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_sponge'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_sponge'}.png deleted file mode 100644 index 123e17b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_sponge'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_white_wool'}.png deleted file mode 100644 index ab116641..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_yellow_wool'}.png deleted file mode 100644 index b507d32c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__soft_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__special_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__special_gilded_blackstone'}.png deleted file mode 100644 index 94bdd4d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__special_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__special_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__special_sea_lantern'}.png deleted file mode 100644 index 0e84706d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__special_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__speckled_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__speckled_nether_wart_block'}.png deleted file mode 100644 index e6e7cde2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__speckled_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__speckled_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__speckled_warped_wart_block'}.png deleted file mode 100644 index 438f425c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__speckled_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_amethyst_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_amethyst_block_carving'}.png deleted file mode 100644 index dad78df9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_amethyst_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_ancient_debris_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_ancient_debris_carving'}.png deleted file mode 100644 index f4d0472a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_ancient_debris_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_andesite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_andesite_carving'}.png deleted file mode 100644 index 609c1b50..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_andesite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_basalt_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_basalt_carving'}.png deleted file mode 100644 index 906ac284..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_basalt_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_blackstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_blackstone_carving'}.png deleted file mode 100644 index e0d57132..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_blackstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_blue_ice_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_blue_ice_carving'}.png deleted file mode 100644 index 5a2c8c92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_blue_ice_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_borderless_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_borderless_bricks_carving'}.png deleted file mode 100644 index 7d3e492d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_borderless_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_bricks_carving'}.png deleted file mode 100644 index cb69f0ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_calcite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_calcite_carving'}.png deleted file mode 100644 index c15268a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_calcite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_clay_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_clay_carving'}.png deleted file mode 100644 index 8e02ae26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_clay_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_coal_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_coal_block_carving'}.png deleted file mode 100644 index ced13e25..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_coal_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_cobblestone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_cobblestone_carving'}.png deleted file mode 100644 index 86fcae4f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_cobblestone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_crying_obsidian_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_crying_obsidian_carving'}.png deleted file mode 100644 index 271c521d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_crying_obsidian_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_dark_prismarine_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_dark_prismarine_carving'}.png deleted file mode 100644 index 67b0b7ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_dark_prismarine_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_deepslate_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_deepslate_carving'}.png deleted file mode 100644 index 0d4eb51a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_deepslate_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_diorite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_diorite_carving'}.png deleted file mode 100644 index a6b08873..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_diorite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_dirt_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_dirt_carving'}.png deleted file mode 100644 index b1e3bc23..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_dirt_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_dripstone_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_dripstone_block_carving'}.png deleted file mode 100644 index 1999dab8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_dripstone_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_end_stone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_end_stone_carving'}.png deleted file mode 100644 index e9ab9e14..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_end_stone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_gilded_blackstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_gilded_blackstone_carving'}.png deleted file mode 100644 index 6262dcf6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_gilded_blackstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_granite_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_granite_carving'}.png deleted file mode 100644 index f944fc56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_granite_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_ice_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_ice_carving'}.png deleted file mode 100644 index 0b8a6d49..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_ice_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_lapis_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_lapis_block_carving'}.png deleted file mode 100644 index fa3a7294..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_lapis_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_lodestone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_lodestone_carving'}.png deleted file mode 100644 index a1f3a66d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_lodestone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_magma_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_magma_block_carving'}.png deleted file mode 100644 index 051c3369..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_magma_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mossy_cobblestone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mossy_cobblestone_carving'}.png deleted file mode 100644 index 80852e35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mossy_cobblestone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mossy_stone_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mossy_stone_bricks_carving'}.png deleted file mode 100644 index 178d05b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mossy_stone_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mud_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mud_bricks_carving'}.png deleted file mode 100644 index 12ba4519..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mud_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mud_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mud_carving'}.png deleted file mode 100644 index b919a904..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_mud_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_nether_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_nether_bricks_carving'}.png deleted file mode 100644 index 9f0007b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_nether_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_netherrack_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_netherrack_carving'}.png deleted file mode 100644 index b38942c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_netherrack_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_obsidian_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_obsidian_carving'}.png deleted file mode 100644 index 63d3c786..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_obsidian_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_packed_ice_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_packed_ice_carving'}.png deleted file mode 100644 index d7ceab7f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_packed_ice_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_packed_mud_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_packed_mud_carving'}.png deleted file mode 100644 index 4d792b94..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_packed_mud_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_prismarine_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_prismarine_carving'}.png deleted file mode 100644 index a5c643db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_prismarine_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_purpur_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_purpur_block_carving'}.png deleted file mode 100644 index c644313f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_purpur_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_quartz_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_quartz_block_carving'}.png deleted file mode 100644 index 459e0894..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_quartz_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_raw_copper_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_raw_copper_block_carving'}.png deleted file mode 100644 index d2368b77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_raw_copper_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_raw_gold_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_raw_gold_block_carving'}.png deleted file mode 100644 index e0e63a86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_raw_gold_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_raw_iron_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_raw_iron_block_carving'}.png deleted file mode 100644 index 4b793584..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_raw_iron_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_red_nether_bricks_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_red_nether_bricks_carving'}.png deleted file mode 100644 index d7e6ee3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_red_nether_bricks_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_red_sandstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_red_sandstone_carving'}.png deleted file mode 100644 index 69811b09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_red_sandstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_redstone_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_redstone_block_carving'}.png deleted file mode 100644 index 8152db4b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_redstone_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_sandstone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_sandstone_carving'}.png deleted file mode 100644 index c72f3fb0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_sandstone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_smooth_stone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_smooth_stone_carving'}.png deleted file mode 100644 index 9d994199..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_smooth_stone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_snow_block_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_snow_block_carving'}.png deleted file mode 100644 index 3153fd67..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_snow_block_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_stone_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_stone_carving'}.png deleted file mode 100644 index 6c502ed8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_stone_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_tuff_carving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_tuff_carving'}.png deleted file mode 100644 index 45f755c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spider_tuff_carving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_gilded_blackstone'}.png deleted file mode 100644 index 817d5a87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_mud'}.png deleted file mode 100644 index 56d8f82b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_mud_bricks'}.png deleted file mode 100644 index 77adefd5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_packed_mud'}.png deleted file mode 100644 index 7d6d887c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiral_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_amethyst_block'}.png deleted file mode 100644 index c54500cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_ancient_debris'}.png deleted file mode 100644 index 7d9080c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_andesite'}.png deleted file mode 100644 index 5a806952..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_basalt'}.png deleted file mode 100644 index 4aa9dedb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_blackstone'}.png deleted file mode 100644 index 45a923b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_blue_ice'}.png deleted file mode 100644 index 763cd0f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_borderless_bricks'}.png deleted file mode 100644 index b6248de5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_bricks'}.png deleted file mode 100644 index 51fcc924..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_calcite'}.png deleted file mode 100644 index d0768099..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_clay'}.png deleted file mode 100644 index 32544996..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_coal_block'}.png deleted file mode 100644 index 8b2bf065..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_cobblestone'}.png deleted file mode 100644 index 8b1d53a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_crying_obsidian'}.png deleted file mode 100644 index 4a8d9854..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_dark_prismarine'}.png deleted file mode 100644 index e0b78a59..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_deepslate'}.png deleted file mode 100644 index 4b280bfe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_diorite'}.png deleted file mode 100644 index 4a31f329..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_dirt'}.png deleted file mode 100644 index 5c019036..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_dripstone_block'}.png deleted file mode 100644 index 60cf4513..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_end_stone'}.png deleted file mode 100644 index 4c3e5a0a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_gilded_blackstone'}.png deleted file mode 100644 index 18126051..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_granite'}.png deleted file mode 100644 index 2fd050b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_ice'}.png deleted file mode 100644 index 8d53c858..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_lapis_block'}.png deleted file mode 100644 index 6e8b6654..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_lodestone'}.png deleted file mode 100644 index 846956f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_magma_block'}.png deleted file mode 100644 index d4322e05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_mossy_cobblestone'}.png deleted file mode 100644 index 32f69822..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_mossy_stone_bricks'}.png deleted file mode 100644 index 30a764d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_nether_bricks'}.png deleted file mode 100644 index 8cefc52c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_netherrack'}.png deleted file mode 100644 index 40cc6b74..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_obsidian'}.png deleted file mode 100644 index 4c9caa20..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_packed_ice'}.png deleted file mode 100644 index fd98a9d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_prismarine'}.png deleted file mode 100644 index f7459513..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_purpur_block'}.png deleted file mode 100644 index 6139730c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_raw_copper_block'}.png deleted file mode 100644 index 6cc68c5b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_raw_gold_block'}.png deleted file mode 100644 index aac1de29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_raw_iron_block'}.png deleted file mode 100644 index ddd951b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_red_nether_bricks'}.png deleted file mode 100644 index c0284fba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_red_sandstone'}.png deleted file mode 100644 index ba1f53f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_redstone_block'}.png deleted file mode 100644 index 5f4930bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_sandstone'}.png deleted file mode 100644 index ad4fc793..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_smooth_stone'}.png deleted file mode 100644 index a60b057b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_snow_block'}.png deleted file mode 100644 index 1521c499..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_stone'}.png deleted file mode 100644 index 18008b67..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_tuff'}.png deleted file mode 100644 index 97b549da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spiraled_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spongy_moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spongy_moss_block'}.png deleted file mode 100644 index 45edfce5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spongy_moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spongy_nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spongy_nether_wart_block'}.png deleted file mode 100644 index 93821a30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spongy_nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spongy_warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spongy_warped_wart_block'}.png deleted file mode 100644 index e2c6a8cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spongy_warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spooky_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spooky_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spooky_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spooky_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spooky_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spooky_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spotted_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spotted_brown_mushroom_block'}.png deleted file mode 100644 index 6f146ef9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spotted_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spotted_red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spotted_red_mushroom_block'}.png deleted file mode 100644 index c3cb50de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spotted_red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sprinkled_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sprinkled_brown_mushroom_block'}.png deleted file mode 100644 index f65a7681..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sprinkled_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sprinkled_moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sprinkled_moss_block'}.png deleted file mode 100644 index 017f1012..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sprinkled_moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spruce_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spruce_planks_mosaic'}.png deleted file mode 100644 index 494a64a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spruce_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spruce_planks_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spruce_planks_panel'}.png deleted file mode 100644 index f01885ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spruce_planks_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spruce_planks_shavings'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spruce_planks_shavings'}.png deleted file mode 100644 index ef32d325..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__spruce_planks_shavings'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_black_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_black_stained_glass'}.png deleted file mode 100644 index d854904b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_black_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_blue_stained_glass'}.png deleted file mode 100644 index 3364ac94..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_brown_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_brown_stained_glass'}.png deleted file mode 100644 index 5b50cd6b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_brown_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_cyan_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_cyan_stained_glass'}.png deleted file mode 100644 index 3a719664..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_cyan_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_gray_stained_glass'}.png deleted file mode 100644 index d94b483d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_green_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_green_stained_glass'}.png deleted file mode 100644 index 5b0c99c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_green_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_leaded_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_leaded_glass'}.png deleted file mode 100644 index 88868884..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_leaded_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_light_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_light_blue_stained_glass'}.png deleted file mode 100644 index 5a585da9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_light_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_light_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_light_gray_stained_glass'}.png deleted file mode 100644 index 909e39c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_light_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_lime_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_lime_stained_glass'}.png deleted file mode 100644 index 1bf0078c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_lime_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_magenta_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_magenta_stained_glass'}.png deleted file mode 100644 index a72de1ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_magenta_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_oak_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_oak_glass'}.png deleted file mode 100644 index c7a6d5ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_oak_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_orange_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_orange_stained_glass'}.png deleted file mode 100644 index a28acea5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_orange_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_pink_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_pink_stained_glass'}.png deleted file mode 100644 index 04d0008c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_pink_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_purple_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_purple_stained_glass'}.png deleted file mode 100644 index 526cc2bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_purple_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_red_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_red_stained_glass'}.png deleted file mode 100644 index 6157c531..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_red_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_white_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_white_stained_glass'}.png deleted file mode 100644 index b139624f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_white_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_yellow_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_yellow_stained_glass'}.png deleted file mode 100644 index 9248223e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__square_yellow_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__squished_cute_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__squished_cute_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__squished_cute_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__squished_cute_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__squished_cute_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__squished_cute_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_acacia_planks'}.png deleted file mode 100644 index 2fd7e9c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_amethyst_block_bricks'}.png deleted file mode 100644 index 5ae50092..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_ancient_debris_bricks'}.png deleted file mode 100644 index f4a148e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_andesite_bricks'}.png deleted file mode 100644 index 3d64dc71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_bamboo_planks'}.png deleted file mode 100644 index 0da6b3f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_basalt_bricks'}.png deleted file mode 100644 index 337be3b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_birch_planks'}.png deleted file mode 100644 index b93bde18..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_black_concrete'}.png deleted file mode 100644 index 62e91163..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_blackstone_bricks'}.png deleted file mode 100644 index bf1cf05a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_blue_concrete'}.png deleted file mode 100644 index 2b49475f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_blue_ice_bricks'}.png deleted file mode 100644 index da5b43ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_borderless_bricks_bricks'}.png deleted file mode 100644 index e5766ecc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_bricks_bricks'}.png deleted file mode 100644 index 0c9dc665..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_brown_concrete'}.png deleted file mode 100644 index bb683daf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_calcite_bricks'}.png deleted file mode 100644 index 30ae2246..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_cherry_planks'}.png deleted file mode 100644 index 04da0d76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_clay_bricks'}.png deleted file mode 100644 index 04b0dc87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_coal_block_bricks'}.png deleted file mode 100644 index 911aca5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_cobblestone_bricks'}.png deleted file mode 100644 index a33b6cc3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_crimson_planks'}.png deleted file mode 100644 index ad6d987d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_crying_obsidian_bricks'}.png deleted file mode 100644 index 94a18bff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_cyan_concrete'}.png deleted file mode 100644 index a5a4e6e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dark_oak_planks'}.png deleted file mode 100644 index edd5a78c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dark_prismarine_bricks'}.png deleted file mode 100644 index ceaa15c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_deepslate_bricks'}.png deleted file mode 100644 index 74988bf3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_diamond_block'}.png deleted file mode 100644 index ccc9c789..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_diorite_bricks'}.png deleted file mode 100644 index 525f7629..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dirt_bricks'}.png deleted file mode 100644 index 58dff9c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dripstone_block_bricks'}.png deleted file mode 100644 index 3a38fbfe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_emerald_block'}.png deleted file mode 100644 index ccbbdadf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_end_stone_bricks'}.png deleted file mode 100644 index 00abeb90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_gilded_blackstone_bricks'}.png deleted file mode 100644 index bf6ce891..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_gold_block'}.png deleted file mode 100644 index 1a9f8a3a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_granite_bricks'}.png deleted file mode 100644 index bf3719dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_gray_concrete'}.png deleted file mode 100644 index 88ed9c0a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_green_concrete'}.png deleted file mode 100644 index 6d461509..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_ice_bricks'}.png deleted file mode 100644 index 252458a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_iron_block'}.png deleted file mode 100644 index e2aaec98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_jungle_planks'}.png deleted file mode 100644 index 7ea4932d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_lapis_block_bricks'}.png deleted file mode 100644 index 06a28942..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_light_blue_concrete'}.png deleted file mode 100644 index cdf24865..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_light_gray_concrete'}.png deleted file mode 100644 index eeddc424..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_lime_concrete'}.png deleted file mode 100644 index 6ea2d190..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_lodestone_bricks'}.png deleted file mode 100644 index 098a7d09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_magenta_concrete'}.png deleted file mode 100644 index 11a66e1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_magma_block_bricks'}.png deleted file mode 100644 index f492377f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mangrove_planks'}.png deleted file mode 100644 index 7d2011d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mossy_cobblestone_bricks'}.png deleted file mode 100644 index 93f996d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index bae6a9e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mud_bricks'}.png deleted file mode 100644 index 1c817df2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mud_bricks_bricks'}.png deleted file mode 100644 index 92e13ede..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_nether_bricks_bricks'}.png deleted file mode 100644 index 1eed5b49..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_netherite_block'}.png deleted file mode 100644 index d802d472..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_netherrack_bricks'}.png deleted file mode 100644 index 96f6123d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_oak_planks'}.png deleted file mode 100644 index 577d7c81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_obsidian_bricks'}.png deleted file mode 100644 index 8cd3817b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_orange_concrete'}.png deleted file mode 100644 index 394dccd3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_packed_ice_bricks'}.png deleted file mode 100644 index 7bf83b89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_packed_mud_bricks'}.png deleted file mode 100644 index c0ed5298..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_pink_concrete'}.png deleted file mode 100644 index 8fb4acf3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_prismarine_bricks'}.png deleted file mode 100644 index 5edac214..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_purple_concrete'}.png deleted file mode 100644 index 1bc8c84e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_purpur_block_bricks'}.png deleted file mode 100644 index 81d78241..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_quartz_block_bricks'}.png deleted file mode 100644 index 6af54297..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_raw_copper_block_bricks'}.png deleted file mode 100644 index d0c881f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_raw_gold_block_bricks'}.png deleted file mode 100644 index 90558f80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_raw_iron_block_bricks'}.png deleted file mode 100644 index aafc7930..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_red_concrete'}.png deleted file mode 100644 index bcfa9a47..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_red_nether_bricks_bricks'}.png deleted file mode 100644 index 6180044d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_red_sandstone_bricks'}.png deleted file mode 100644 index 9587a605..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_redstone_block_bricks'}.png deleted file mode 100644 index a939329e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_sandstone_bricks'}.png deleted file mode 100644 index 18056f5c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_smooth_stone_bricks'}.png deleted file mode 100644 index 6e8f4ef4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_snow_block_bricks'}.png deleted file mode 100644 index 03e25ad3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_spruce_planks'}.png deleted file mode 100644 index 44465f77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_stone_bricks'}.png deleted file mode 100644 index 0332c9a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_tuff_bricks'}.png deleted file mode 100644 index b78bdce2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_warped_planks'}.png deleted file mode 100644 index d54f215a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_copper_block'}.png deleted file mode 100644 index d0193c27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_exposed_copper'}.png deleted file mode 100644 index a63da3b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_oxidized_copper'}.png deleted file mode 100644 index e68bac47..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_weathered_copper'}.png deleted file mode 100644 index 20776e5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_white_concrete'}.png deleted file mode 100644 index 7def30a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_yellow_concrete'}.png deleted file mode 100644 index 159399b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stacked_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__star_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__star_mud'}.png deleted file mode 100644 index ddd95b2b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__star_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__star_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__star_mud_bricks'}.png deleted file mode 100644 index 500538d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__star_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__star_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__star_packed_mud'}.png deleted file mode 100644 index b9e879bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__star_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_black_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_black_glazed_terracotta'}.png deleted file mode 100644 index c64c4dd7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_black_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_black_terracotta'}.png deleted file mode 100644 index 29e7820f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_blue_glazed_terracotta'}.png deleted file mode 100644 index 8e860506..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_blue_terracotta'}.png deleted file mode 100644 index ff33481d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_brown_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_brown_glazed_terracotta'}.png deleted file mode 100644 index 611c08ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_brown_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_brown_terracotta'}.png deleted file mode 100644 index 2dd79907..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_cyan_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_cyan_glazed_terracotta'}.png deleted file mode 100644 index aec2a2cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_cyan_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_cyan_terracotta'}.png deleted file mode 100644 index c6ef8497..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_gray_glazed_terracotta'}.png deleted file mode 100644 index 209fd67e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_gray_terracotta'}.png deleted file mode 100644 index 1e8f68e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_green_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_green_glazed_terracotta'}.png deleted file mode 100644 index de34547d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_green_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_green_terracotta'}.png deleted file mode 100644 index f57cfebc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_blue_glazed_terracotta'}.png deleted file mode 100644 index c1a82adc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_blue_terracotta'}.png deleted file mode 100644 index 5d186ff0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_gray_glazed_terracotta'}.png deleted file mode 100644 index a68b9593..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_gray_terracotta'}.png deleted file mode 100644 index 28e2c6db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_lime_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_lime_glazed_terracotta'}.png deleted file mode 100644 index 03a28b01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_lime_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_lime_terracotta'}.png deleted file mode 100644 index 990c8209..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_magenta_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_magenta_glazed_terracotta'}.png deleted file mode 100644 index 2e1d147d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_magenta_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_magenta_terracotta'}.png deleted file mode 100644 index b845f466..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_orange_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_orange_glazed_terracotta'}.png deleted file mode 100644 index 5abbbb5c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_orange_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_orange_terracotta'}.png deleted file mode 100644 index 78f120b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_pink_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_pink_glazed_terracotta'}.png deleted file mode 100644 index a0f6d126..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_pink_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_pink_terracotta'}.png deleted file mode 100644 index de6377ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_purple_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_purple_glazed_terracotta'}.png deleted file mode 100644 index 2a59bbb0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_purple_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_purple_terracotta'}.png deleted file mode 100644 index 42d45094..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_red_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_red_glazed_terracotta'}.png deleted file mode 100644 index 73496aa4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_red_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_red_terracotta'}.png deleted file mode 100644 index fcfa9b2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_terracotta'}.png deleted file mode 100644 index a7700f36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_white_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_white_glazed_terracotta'}.png deleted file mode 100644 index 18efbfb7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_white_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_white_terracotta'}.png deleted file mode 100644 index 34f14403..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_yellow_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_yellow_glazed_terracotta'}.png deleted file mode 100644 index e2448265..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_yellow_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_yellow_terracotta'}.png deleted file mode 100644 index 1953c8b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__starry_yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_acacia_log'}.png deleted file mode 100644 index 1f805356..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_birch_log'}.png deleted file mode 100644 index 6a1742eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_cherry_log'}.png deleted file mode 100644 index 61b8949c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_crimson_stem'}.png deleted file mode 100644 index a9ce0c9f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_dark_oak_log'}.png deleted file mode 100644 index b46bdb36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_jungle_log'}.png deleted file mode 100644 index 97685826..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_mangrove_log'}.png deleted file mode 100644 index 163dedc1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_oak_log'}.png deleted file mode 100644 index 414bea48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_spruce_log'}.png deleted file mode 100644 index fd8ec04e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_warped_stem'}.png deleted file mode 100644 index 0e15a229..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stern_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sticky_melon'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sticky_melon'}.png deleted file mode 100644 index 075f6ae9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sticky_melon'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_mini_tiles'}.png deleted file mode 100644 index ea8c14c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_pillar'}.png deleted file mode 100644 index 9d1becb7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_pillar_top'}.png deleted file mode 100644 index 603d4737..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_scales'}.png deleted file mode 100644 index 443f1cf7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stone_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_black_concrete'}.png deleted file mode 100644 index 71be16b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_blue_concrete'}.png deleted file mode 100644 index 9e3d6ffb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_brown_concrete'}.png deleted file mode 100644 index 2f2a6986..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_cyan_concrete'}.png deleted file mode 100644 index ef182f8f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_gray_concrete'}.png deleted file mode 100644 index 6fac84a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_green_concrete'}.png deleted file mode 100644 index c8d7034e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_light_blue_concrete'}.png deleted file mode 100644 index c959e118..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_light_gray_concrete'}.png deleted file mode 100644 index 1961c8de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_lime_concrete'}.png deleted file mode 100644 index 79e2c5e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_magenta_concrete'}.png deleted file mode 100644 index 71883d2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_orange_concrete'}.png deleted file mode 100644 index e3dd8f72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_pink_concrete'}.png deleted file mode 100644 index a875032b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_purple_concrete'}.png deleted file mode 100644 index f001014b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_red_concrete'}.png deleted file mode 100644 index 5428edc1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_white_concrete'}.png deleted file mode 100644 index 1649e5d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_yellow_concrete'}.png deleted file mode 100644 index 17e051fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stop_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_black_wool'}.png deleted file mode 100644 index b318144e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_blue_wool'}.png deleted file mode 100644 index ab7e4e05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_brown_wool'}.png deleted file mode 100644 index 2f0eb1e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_cyan_wool'}.png deleted file mode 100644 index f20091db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_gray_wool'}.png deleted file mode 100644 index 429d5aba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_green_wool'}.png deleted file mode 100644 index 14218649..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_light_blue_wool'}.png deleted file mode 100644 index 11897ec2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_light_gray_wool'}.png deleted file mode 100644 index 306593fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_lime_wool'}.png deleted file mode 100644 index 1fd65b1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_magenta_wool'}.png deleted file mode 100644 index 50cb3806..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_orange_wool'}.png deleted file mode 100644 index 66b62a01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_pink_wool'}.png deleted file mode 100644 index 122d2a3f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_purple_wool'}.png deleted file mode 100644 index d0da9cb3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_red_wool'}.png deleted file mode 100644 index 1ce1e1da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_white_wool'}.png deleted file mode 100644 index befecaaf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_yellow_wool'}.png deleted file mode 100644 index 73e1b491..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__stringed_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_black_concrete'}.png deleted file mode 100644 index bb3aeaa9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_blue_concrete'}.png deleted file mode 100644 index e050e6fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_brown_concrete'}.png deleted file mode 100644 index 767e4ef4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_cyan_concrete'}.png deleted file mode 100644 index 8da48d67..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_gray_concrete'}.png deleted file mode 100644 index 3a1c4a7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_green_concrete'}.png deleted file mode 100644 index 9046fe73..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_light_blue_concrete'}.png deleted file mode 100644 index a50c14fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_light_gray_concrete'}.png deleted file mode 100644 index 94e95795..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_lime_concrete'}.png deleted file mode 100644 index 87492dab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_magenta_concrete'}.png deleted file mode 100644 index f4811d9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_orange_concrete'}.png deleted file mode 100644 index 5f1b8fe1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_pink_concrete'}.png deleted file mode 100644 index 13cf233e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_purple_concrete'}.png deleted file mode 100644 index 79feb8c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_red_concrete'}.png deleted file mode 100644 index f3025427..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_white_concrete'}.png deleted file mode 100644 index 845c31a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_yellow_concrete'}.png deleted file mode 100644 index 83454c9f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__striped_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sugarcane_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sugarcane_dried_kelp_block'}.png deleted file mode 100644 index ed0dd36b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sugarcane_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sunny_melon'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sunny_melon'}.png deleted file mode 100644 index 449791a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sunny_melon'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__suspicious_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__suspicious_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__suspicious_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__suspicious_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__suspicious_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__suspicious_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__swampy_hay_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__swampy_hay_block'}.png deleted file mode 100644 index 5ca5d3c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__swampy_hay_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__swampy_melon'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__swampy_melon'}.png deleted file mode 100644 index d4f39cf4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__swampy_melon'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sweet_melon'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sweet_melon'}.png deleted file mode 100644 index 0b8b7733..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__sweet_melon'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbol_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbol_mud'}.png deleted file mode 100644 index 91cb3de4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbol_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbol_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbol_mud_bricks'}.png deleted file mode 100644 index 8e7b019c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbol_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbol_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbol_packed_mud'}.png deleted file mode 100644 index c844df41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbol_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbolic_mud_bricks_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbolic_mud_bricks_pillar'}.png deleted file mode 100644 index 89298c08..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbolic_mud_bricks_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbolic_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbolic_mud_pillar'}.png deleted file mode 100644 index 646cc072..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbolic_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbolic_packed_mud_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbolic_packed_mud_pillar'}.png deleted file mode 100644 index 10907fc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__symbolic_packed_mud_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tar_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tar_sand'}.png deleted file mode 100644 index 9806ae41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tar_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_bricks'}.png deleted file mode 100644 index 20969b15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_column'}.png deleted file mode 100644 index 4a5a8743..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_pillar'}.png deleted file mode 100644 index b88da0a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_tile'}.png deleted file mode 100644 index 5977c8ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_tiles'}.png deleted file mode 100644 index 92e1bd43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_amethyst_block'}.png deleted file mode 100644 index 42b354a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_ancient_debris'}.png deleted file mode 100644 index f148a1b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_andesite'}.png deleted file mode 100644 index 34c4a857..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_basalt'}.png deleted file mode 100644 index 9fdc64b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_blackstone'}.png deleted file mode 100644 index 57d84be7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_blue_ice'}.png deleted file mode 100644 index e11243e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_borderless_bricks'}.png deleted file mode 100644 index bc6fec69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_bricks'}.png deleted file mode 100644 index 4f84aaa2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_calcite'}.png deleted file mode 100644 index 00ce9340..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_clay'}.png deleted file mode 100644 index ee1e28ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_coal_block'}.png deleted file mode 100644 index ce404bde..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_cobblestone'}.png deleted file mode 100644 index 2475b7a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_crying_obsidian'}.png deleted file mode 100644 index b30b2964..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_dark_prismarine'}.png deleted file mode 100644 index 2262c38c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_deepslate'}.png deleted file mode 100644 index 341592dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_diorite'}.png deleted file mode 100644 index 5dbe4b99..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_dirt'}.png deleted file mode 100644 index d6814794..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_dripstone_block'}.png deleted file mode 100644 index 518379bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_end_stone'}.png deleted file mode 100644 index d90a8ea5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_gilded_blackstone'}.png deleted file mode 100644 index 7545380f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_glowstone'}.png deleted file mode 100644 index e6accd8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_granite'}.png deleted file mode 100644 index 334a32d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_ice'}.png deleted file mode 100644 index f0b798f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_lapis_block'}.png deleted file mode 100644 index 0757757e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_lodestone'}.png deleted file mode 100644 index fdb27d78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_magma_block'}.png deleted file mode 100644 index 722d84fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mossy_cobblestone'}.png deleted file mode 100644 index 11776c38..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mossy_stone_bricks'}.png deleted file mode 100644 index ad73a4c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mud'}.png deleted file mode 100644 index 23ec1721..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mud_bricks'}.png deleted file mode 100644 index 3338b8f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_nether_bricks'}.png deleted file mode 100644 index 1c1ca040..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_netherrack'}.png deleted file mode 100644 index 0576acbd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_obsidian'}.png deleted file mode 100644 index 8c5933ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_packed_ice'}.png deleted file mode 100644 index 8785a482..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_packed_mud'}.png deleted file mode 100644 index c176d96c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_prismarine'}.png deleted file mode 100644 index 2d01699d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_purpur_block'}.png deleted file mode 100644 index c2eabdd3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_quartz_block'}.png deleted file mode 100644 index c10a7d60..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_raw_copper_block'}.png deleted file mode 100644 index d933e0b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_raw_gold_block'}.png deleted file mode 100644 index a0927e56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_raw_iron_block'}.png deleted file mode 100644 index 72a2b48c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_red_nether_bricks'}.png deleted file mode 100644 index 87304040..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_red_sandstone'}.png deleted file mode 100644 index 0c23eca5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_redstone_block'}.png deleted file mode 100644 index 3e63aa43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_redstone_lamp'}.png deleted file mode 100644 index ef28c75c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_sandstone'}.png deleted file mode 100644 index 9156520b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_sea_lantern'}.png deleted file mode 100644 index 0e8e21a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_shroomlight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_shroomlight'}.png deleted file mode 100644 index dd0e3560..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_shroomlight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_smooth_stone'}.png deleted file mode 100644 index 332f9157..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_snow_block'}.png deleted file mode 100644 index cb1c87d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_stone'}.png deleted file mode 100644 index ed16c2a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_tuff'}.png deleted file mode 100644 index eeca8f0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_inlayed_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_white_inlayed_redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_white_inlayed_redstone_lamp'}.png deleted file mode 100644 index cc79c03d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thick_white_inlayed_redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_acacia_planks'}.png deleted file mode 100644 index f21fa656..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_bamboo_planks'}.png deleted file mode 100644 index 5d412a9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_birch_planks'}.png deleted file mode 100644 index 56376f7f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_cherry_planks'}.png deleted file mode 100644 index 6f6874e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_crimson_planks'}.png deleted file mode 100644 index bc22961f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_dark_oak_planks'}.png deleted file mode 100644 index c23c9728..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_jungle_planks'}.png deleted file mode 100644 index 8dac9ea4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_mangrove_planks'}.png deleted file mode 100644 index f67d9a1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_mangrove_roots'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_mangrove_roots'}.png deleted file mode 100644 index 56cf401b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_mangrove_roots'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_oak_planks'}.png deleted file mode 100644 index fb7bedeb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_spruce_planks'}.png deleted file mode 100644 index f57e308d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_warped_planks'}.png deleted file mode 100644 index 9b35b2aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__thin_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tied_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tied_bamboo_planks'}.png deleted file mode 100644 index ad5ca7cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tied_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_acacia_planks'}.png deleted file mode 100644 index 1fdb19a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_amethyst_block'}.png deleted file mode 100644 index 058502d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_amethyst_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_amethyst_block_column'}.png deleted file mode 100644 index 3909c46b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_amethyst_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ancient_debris'}.png deleted file mode 100644 index 84f4806c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ancient_debris_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ancient_debris_column'}.png deleted file mode 100644 index e6f3d252..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ancient_debris_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_andesite'}.png deleted file mode 100644 index d62bab2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_andesite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_andesite_column'}.png deleted file mode 100644 index 4391f4d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_andesite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bamboo_planks'}.png deleted file mode 100644 index b060e6b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_basalt'}.png deleted file mode 100644 index e1a774a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_basalt_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_basalt_column'}.png deleted file mode 100644 index 079cd7c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_basalt_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_birch_planks'}.png deleted file mode 100644 index e7a40930..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_black_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_black_stained_glass'}.png deleted file mode 100644 index 2da64cbc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_black_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_black_wool'}.png deleted file mode 100644 index 4950382f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blackstone'}.png deleted file mode 100644 index 7880ca37..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blackstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blackstone_column'}.png deleted file mode 100644 index f967b004..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blackstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_ice'}.png deleted file mode 100644 index 84716331..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_ice_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_ice_column'}.png deleted file mode 100644 index cd142c5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_ice_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_stained_glass'}.png deleted file mode 100644 index e26eb86e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_wool'}.png deleted file mode 100644 index e08fcdf8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bone_block'}.png deleted file mode 100644 index 9fb447b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_amethyst_block'}.png deleted file mode 100644 index 204992f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_ancient_debris'}.png deleted file mode 100644 index ef627674..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_andesite'}.png deleted file mode 100644 index 18316e0d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_basalt'}.png deleted file mode 100644 index 2771ec0a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_blackstone'}.png deleted file mode 100644 index 557bf580..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_blue_ice'}.png deleted file mode 100644 index 23d74866..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_borderless_bricks'}.png deleted file mode 100644 index b590d48c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_bricks'}.png deleted file mode 100644 index 468e2d0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_calcite'}.png deleted file mode 100644 index fbecf17e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_clay'}.png deleted file mode 100644 index 8ba410ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_coal_block'}.png deleted file mode 100644 index ae430c08..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_cobblestone'}.png deleted file mode 100644 index ddedf25d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_crying_obsidian'}.png deleted file mode 100644 index 81d222c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_dark_prismarine'}.png deleted file mode 100644 index 6b810380..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_deepslate'}.png deleted file mode 100644 index d9189cf6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_diorite'}.png deleted file mode 100644 index 248e9f06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_dirt'}.png deleted file mode 100644 index 62dd2b1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_dripstone_block'}.png deleted file mode 100644 index 1631402a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_end_stone'}.png deleted file mode 100644 index 5b65574f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_gilded_blackstone'}.png deleted file mode 100644 index f1b60400..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_granite'}.png deleted file mode 100644 index 2197ebac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_ice'}.png deleted file mode 100644 index a4382cd6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_lapis_block'}.png deleted file mode 100644 index 79fa590a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_lodestone'}.png deleted file mode 100644 index d283668d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_magma_block'}.png deleted file mode 100644 index f460bd12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mossy_cobblestone'}.png deleted file mode 100644 index 73b55bdc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mossy_stone_bricks'}.png deleted file mode 100644 index 5de0eaf5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mud'}.png deleted file mode 100644 index fd98a508..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mud_bricks'}.png deleted file mode 100644 index c0e9eacf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_nether_bricks'}.png deleted file mode 100644 index 7fd45333..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_netherrack'}.png deleted file mode 100644 index 3122eec9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_obsidian'}.png deleted file mode 100644 index 7594f5a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_packed_ice'}.png deleted file mode 100644 index 0db6d062..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_packed_mud'}.png deleted file mode 100644 index 7563a8c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_prismarine'}.png deleted file mode 100644 index dbb7da94..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_purpur_block'}.png deleted file mode 100644 index 53d652ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_quartz_block'}.png deleted file mode 100644 index 3b0fa4df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_raw_copper_block'}.png deleted file mode 100644 index b3b8a0e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_raw_gold_block'}.png deleted file mode 100644 index fb974e81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_raw_iron_block'}.png deleted file mode 100644 index 078d735c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_red_nether_bricks'}.png deleted file mode 100644 index 860ecb02..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_red_sandstone'}.png deleted file mode 100644 index f0c8e436..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_redstone_block'}.png deleted file mode 100644 index 8449c9a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_sandstone'}.png deleted file mode 100644 index 2cd8c6f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_smooth_stone'}.png deleted file mode 100644 index 53898bb8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_snow_block'}.png deleted file mode 100644 index 2add94c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_stone'}.png deleted file mode 100644 index 5296ab0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_tuff'}.png deleted file mode 100644 index be788533..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bordered_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_borderless_bricks'}.png deleted file mode 100644 index 62570350..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_borderless_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_borderless_bricks_column'}.png deleted file mode 100644 index 8fd42b17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_borderless_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bricks'}.png deleted file mode 100644 index b5a74e24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bricks_column'}.png deleted file mode 100644 index 5cbd93a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_brown_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_brown_stained_glass'}.png deleted file mode 100644 index 5bf4ebc2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_brown_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_brown_wool'}.png deleted file mode 100644 index c9b69c31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_calcite'}.png deleted file mode 100644 index b6333240..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_calcite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_calcite_column'}.png deleted file mode 100644 index 2e25bd02..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_calcite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cherry_planks'}.png deleted file mode 100644 index c35292ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_clay'}.png deleted file mode 100644 index 198d96e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_clay_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_clay_column'}.png deleted file mode 100644 index 5301baab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_clay_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_coal_block'}.png deleted file mode 100644 index f7f9adf3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_coal_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_coal_block_column'}.png deleted file mode 100644 index 5207d607..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_coal_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cobblestone'}.png deleted file mode 100644 index f9fbf573..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cobblestone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cobblestone_column'}.png deleted file mode 100644 index 1bac87a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cobblestone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_crimson_planks'}.png deleted file mode 100644 index 666ecea2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_crying_obsidian'}.png deleted file mode 100644 index a3d62571..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_crying_obsidian_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_crying_obsidian_column'}.png deleted file mode 100644 index 04085be5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_crying_obsidian_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cyan_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cyan_stained_glass'}.png deleted file mode 100644 index 0fe7f3b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cyan_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cyan_wool'}.png deleted file mode 100644 index 0b5c2e9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dark_oak_planks'}.png deleted file mode 100644 index 144a5b58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dark_prismarine'}.png deleted file mode 100644 index 53b61fde..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dark_prismarine_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dark_prismarine_column'}.png deleted file mode 100644 index 0698872e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dark_prismarine_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_deepslate'}.png deleted file mode 100644 index 9e34f586..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_deepslate_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_deepslate_column'}.png deleted file mode 100644 index febbe670..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_deepslate_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_diorite'}.png deleted file mode 100644 index 662bb303..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_diorite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_diorite_column'}.png deleted file mode 100644 index 0da9155d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_diorite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dirt'}.png deleted file mode 100644 index 52572bc2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dirt_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dirt_column'}.png deleted file mode 100644 index 193f3417..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dirt_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dripstone_block'}.png deleted file mode 100644 index 65751c29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dripstone_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dripstone_block_column'}.png deleted file mode 100644 index 5c956b79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_dripstone_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_end_stone'}.png deleted file mode 100644 index d05f1f64..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_end_stone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_end_stone_column'}.png deleted file mode 100644 index 9b76aa48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_end_stone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gilded_blackstone'}.png deleted file mode 100644 index f2a1d10d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gilded_blackstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gilded_blackstone_column'}.png deleted file mode 100644 index 1b0c1809..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gilded_blackstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_glowstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_glowstone_pillar'}.png deleted file mode 100644 index 5171eab9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_glowstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_granite'}.png deleted file mode 100644 index 8f112c0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_granite_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_granite_column'}.png deleted file mode 100644 index 3b8fe92f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_granite_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gray_stained_glass'}.png deleted file mode 100644 index 43ca64c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gray_wool'}.png deleted file mode 100644 index a9384650..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_green_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_green_stained_glass'}.png deleted file mode 100644 index 2554b2a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_green_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_green_wool'}.png deleted file mode 100644 index 11634266..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ice'}.png deleted file mode 100644 index be58249a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ice_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ice_column'}.png deleted file mode 100644 index 5f59142a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_ice_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_jungle_planks'}.png deleted file mode 100644 index c8518254..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lapis_block'}.png deleted file mode 100644 index 1eeceed7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lapis_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lapis_block_column'}.png deleted file mode 100644 index e9803abb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lapis_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_blue_stained_glass'}.png deleted file mode 100644 index 3152d7e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_blue_wool'}.png deleted file mode 100644 index 848a526f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_gray_stained_glass'}.png deleted file mode 100644 index d473ba07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_gray_wool'}.png deleted file mode 100644 index 27925310..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lime_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lime_stained_glass'}.png deleted file mode 100644 index 61885693..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lime_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lime_wool'}.png deleted file mode 100644 index 312bbd2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lodestone'}.png deleted file mode 100644 index b1790029..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lodestone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lodestone_column'}.png deleted file mode 100644 index 02628627..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_lodestone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magenta_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magenta_stained_glass'}.png deleted file mode 100644 index 8295bbe6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magenta_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magenta_wool'}.png deleted file mode 100644 index fbd1aafd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magma_block'}.png deleted file mode 100644 index 8d26fb41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magma_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magma_block_column'}.png deleted file mode 100644 index c085da90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_magma_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mangrove_planks'}.png deleted file mode 100644 index dc6476fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_cobblestone'}.png deleted file mode 100644 index 99a8d136..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_cobblestone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_cobblestone_column'}.png deleted file mode 100644 index 55244bca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_cobblestone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_stone_bricks'}.png deleted file mode 100644 index fd336cbb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_stone_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_stone_bricks_column'}.png deleted file mode 100644 index 380e974b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mossy_stone_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_bricks'}.png deleted file mode 100644 index 44c2c364..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_bricks_bricks'}.png deleted file mode 100644 index 91ba75ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_bricks_column'}.png deleted file mode 100644 index 0adb0ff0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_column'}.png deleted file mode 100644 index 7f0f5178..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_mud_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_nether_bricks'}.png deleted file mode 100644 index 469307b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_nether_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_nether_bricks_column'}.png deleted file mode 100644 index adce46aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_nether_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_netherrack'}.png deleted file mode 100644 index d025bf82..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_netherrack_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_netherrack_column'}.png deleted file mode 100644 index e0f98499..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_netherrack_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_oak_planks'}.png deleted file mode 100644 index 909b19d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_obsidian'}.png deleted file mode 100644 index 2708c46d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_obsidian_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_obsidian_column'}.png deleted file mode 100644 index 7aa9f893..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_obsidian_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_orange_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_orange_stained_glass'}.png deleted file mode 100644 index 38696389..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_orange_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_orange_wool'}.png deleted file mode 100644 index e3f96327..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_ice'}.png deleted file mode 100644 index f2d50d8a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_ice_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_ice_column'}.png deleted file mode 100644 index 0cfa42b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_ice_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_mud_bricks'}.png deleted file mode 100644 index d4fce14d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_mud_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_mud_column'}.png deleted file mode 100644 index a9775ce7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_packed_mud_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_pink_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_pink_stained_glass'}.png deleted file mode 100644 index 94e65856..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_pink_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_pink_wool'}.png deleted file mode 100644 index f6ceb4d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_prismarine'}.png deleted file mode 100644 index f1e1612b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_prismarine_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_prismarine_column'}.png deleted file mode 100644 index dbcb4768..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_prismarine_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purple_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purple_stained_glass'}.png deleted file mode 100644 index e3694fec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purple_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purple_wool'}.png deleted file mode 100644 index 04ca3765..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purpur_block'}.png deleted file mode 100644 index 3e591bad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purpur_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purpur_block_column'}.png deleted file mode 100644 index 56037342..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_purpur_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_quartz_block'}.png deleted file mode 100644 index 3ebec168..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_quartz_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_quartz_block_column'}.png deleted file mode 100644 index c2f2f8eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_quartz_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_copper_block'}.png deleted file mode 100644 index 390cdee5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_copper_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_copper_block_column'}.png deleted file mode 100644 index ed0ce2d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_copper_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_gold_block'}.png deleted file mode 100644 index bc0a841b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_gold_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_gold_block_column'}.png deleted file mode 100644 index f85d1e31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_gold_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_iron_block'}.png deleted file mode 100644 index 3a41df87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_iron_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_iron_block_column'}.png deleted file mode 100644 index c03e5eb2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_raw_iron_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_nether_bricks'}.png deleted file mode 100644 index c48e8d49..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_nether_bricks_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_nether_bricks_column'}.png deleted file mode 100644 index 78d59d6d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_nether_bricks_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_sandstone'}.png deleted file mode 100644 index c48d69f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_sandstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_sandstone_column'}.png deleted file mode 100644 index 10df4fee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_sandstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_stained_glass'}.png deleted file mode 100644 index f74372b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_wool'}.png deleted file mode 100644 index d6ffd913..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_redstone_block'}.png deleted file mode 100644 index 53ca44f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_redstone_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_redstone_block_column'}.png deleted file mode 100644 index 25f8c2d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_redstone_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_sandstone'}.png deleted file mode 100644 index 136fb158..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_sandstone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_sandstone_column'}.png deleted file mode 100644 index 50351c91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_sandstone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_sea_lantern_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_sea_lantern_pillar'}.png deleted file mode 100644 index 4e384dd2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_sea_lantern_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_shroomlight_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_shroomlight_pillar'}.png deleted file mode 100644 index 503cfc32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_shroomlight_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_smooth_stone'}.png deleted file mode 100644 index 861b14a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_smooth_stone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_smooth_stone_column'}.png deleted file mode 100644 index f9f2ab1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_smooth_stone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_snow_block'}.png deleted file mode 100644 index 7e55f4d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_snow_block_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_snow_block_column'}.png deleted file mode 100644 index fb885991..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_snow_block_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_spruce_planks'}.png deleted file mode 100644 index d040c4d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_stone'}.png deleted file mode 100644 index e61fa82f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_stone_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_stone_column'}.png deleted file mode 100644 index 4a5d57a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_stone_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_tuff'}.png deleted file mode 100644 index db568ecb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_tuff_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_tuff_column'}.png deleted file mode 100644 index 42c9c593..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_tuff_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_warped_planks'}.png deleted file mode 100644 index 40a604ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_white_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_white_stained_glass'}.png deleted file mode 100644 index c08d0d8f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_white_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_white_wool'}.png deleted file mode 100644 index 361ee39e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_yellow_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_yellow_stained_glass'}.png deleted file mode 100644 index 5abc0615..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_yellow_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_yellow_wool'}.png deleted file mode 100644 index 12da969a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiled_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tinkering_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tinkering_table'}.png deleted file mode 100644 index e90efdde..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tinkering_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_amethyst_block_bricks'}.png deleted file mode 100644 index dfe297c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_ancient_debris_bricks'}.png deleted file mode 100644 index 70048c9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_andesite_bricks'}.png deleted file mode 100644 index f6e90fde..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_basalt_bricks'}.png deleted file mode 100644 index cb4507f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_blackstone_bricks'}.png deleted file mode 100644 index 3798a4cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_blue_ice_bricks'}.png deleted file mode 100644 index e933757f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_borderless_bricks_bricks'}.png deleted file mode 100644 index fe1b0337..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_amethyst_block'}.png deleted file mode 100644 index d2effc70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_ancient_debris'}.png deleted file mode 100644 index ca79a624..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_andesite'}.png deleted file mode 100644 index 4440c191..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_basalt'}.png deleted file mode 100644 index 95667b90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_blackstone'}.png deleted file mode 100644 index 25ff9a76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_blue_ice'}.png deleted file mode 100644 index b147becb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_borderless_bricks'}.png deleted file mode 100644 index 86fe537e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_bricks'}.png deleted file mode 100644 index 67b5119e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_calcite'}.png deleted file mode 100644 index f4fbbf1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_clay'}.png deleted file mode 100644 index 2d06da78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_coal_block'}.png deleted file mode 100644 index d719097b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_cobblestone'}.png deleted file mode 100644 index a4083a66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_crying_obsidian'}.png deleted file mode 100644 index a0c5c488..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_dark_prismarine'}.png deleted file mode 100644 index a80879d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_deepslate'}.png deleted file mode 100644 index da1cf681..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_diorite'}.png deleted file mode 100644 index 48b76f9a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_dirt'}.png deleted file mode 100644 index 4f866ecd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_dripstone_block'}.png deleted file mode 100644 index 1bcaf82b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_end_stone'}.png deleted file mode 100644 index 9218b66d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_gilded_blackstone'}.png deleted file mode 100644 index 2610dcc7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_granite'}.png deleted file mode 100644 index 73351d12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_ice'}.png deleted file mode 100644 index 6a614eba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_lapis_block'}.png deleted file mode 100644 index 2603fcdd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_lodestone'}.png deleted file mode 100644 index 1a8b0a00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_magma_block'}.png deleted file mode 100644 index 6c24fa88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_mossy_cobblestone'}.png deleted file mode 100644 index da405ea3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_mossy_stone_bricks'}.png deleted file mode 100644 index 7ee933e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_nether_bricks'}.png deleted file mode 100644 index 404bfa2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_netherrack'}.png deleted file mode 100644 index 35a0cd58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_obsidian'}.png deleted file mode 100644 index 83fff1e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_packed_ice'}.png deleted file mode 100644 index 635a01e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_prismarine'}.png deleted file mode 100644 index 1e26e50a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_purpur_block'}.png deleted file mode 100644 index fbf19e70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_quartz_block'}.png deleted file mode 100644 index cbdf7ed6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_raw_copper_block'}.png deleted file mode 100644 index 97a0dcf1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_raw_gold_block'}.png deleted file mode 100644 index 1d47b508..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_raw_iron_block'}.png deleted file mode 100644 index 0c670857..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_red_nether_bricks'}.png deleted file mode 100644 index 19a5dd5c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_red_sandstone'}.png deleted file mode 100644 index c279415d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_redstone_block'}.png deleted file mode 100644 index 5737f761..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_sandstone'}.png deleted file mode 100644 index a44201ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_smooth_stone'}.png deleted file mode 100644 index e29fcb1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_snow_block'}.png deleted file mode 100644 index 4893289c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_stone'}.png deleted file mode 100644 index c248b0fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_tuff'}.png deleted file mode 100644 index da73194b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_brick_bordered_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_bricks_bricks'}.png deleted file mode 100644 index 4f8886cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_calcite_bricks'}.png deleted file mode 100644 index 736dc5cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_clay_bricks'}.png deleted file mode 100644 index e0207c24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_coal_block_bricks'}.png deleted file mode 100644 index 2ee17cf7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_cobblestone_bricks'}.png deleted file mode 100644 index 7d128ed7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_crying_obsidian_bricks'}.png deleted file mode 100644 index 5e900fa9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_dark_prismarine_bricks'}.png deleted file mode 100644 index e0c7e50c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_deepslate_bricks'}.png deleted file mode 100644 index e98ee1d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_diorite_bricks'}.png deleted file mode 100644 index 423d3a9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_dirt_bricks'}.png deleted file mode 100644 index c3afb47b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_dripstone_block_bricks'}.png deleted file mode 100644 index 5a4576b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_end_stone_bricks'}.png deleted file mode 100644 index 71ad7bb5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_gilded_blackstone_bricks'}.png deleted file mode 100644 index 02e19d67..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_granite_bricks'}.png deleted file mode 100644 index 81bf4505..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_ice_bricks'}.png deleted file mode 100644 index bcffcc58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_lapis_block_bricks'}.png deleted file mode 100644 index f9f823d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_amethyst_block_bricks'}.png deleted file mode 100644 index 17a32240..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_amethyst_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_amethyst_block_slabs'}.png deleted file mode 100644 index 5d7e847c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_amethyst_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ancient_debris_bricks'}.png deleted file mode 100644 index e865f46c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ancient_debris_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ancient_debris_slabs'}.png deleted file mode 100644 index e708a289..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ancient_debris_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_andesite_bricks'}.png deleted file mode 100644 index 58f4491c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_andesite_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_andesite_slabs'}.png deleted file mode 100644 index 50b59403..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_andesite_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_basalt_bricks'}.png deleted file mode 100644 index 8d570cbf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_basalt_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_basalt_slabs'}.png deleted file mode 100644 index bd185e40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_basalt_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blackstone_bricks'}.png deleted file mode 100644 index 8df36ae3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blackstone_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blackstone_slabs'}.png deleted file mode 100644 index 437439d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blackstone_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blue_ice_bricks'}.png deleted file mode 100644 index 9a1ab819..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blue_ice_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blue_ice_slabs'}.png deleted file mode 100644 index 46a2fb03..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_blue_ice_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_borderless_bricks_bricks'}.png deleted file mode 100644 index e7c1b8df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_borderless_bricks_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_borderless_bricks_slabs'}.png deleted file mode 100644 index 2edf4e14..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_borderless_bricks_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_bricks_bricks'}.png deleted file mode 100644 index 9ee6c21b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_bricks_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_bricks_slabs'}.png deleted file mode 100644 index ff2ce29b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_bricks_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_calcite_bricks'}.png deleted file mode 100644 index 941693f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_calcite_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_calcite_slabs'}.png deleted file mode 100644 index 595823db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_calcite_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_clay_bricks'}.png deleted file mode 100644 index 56a1ba39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_clay_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_clay_slabs'}.png deleted file mode 100644 index ef68f2ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_clay_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_coal_block_bricks'}.png deleted file mode 100644 index e3728b30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_coal_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_coal_block_slabs'}.png deleted file mode 100644 index 98d4b7eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_coal_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_cobblestone_bricks'}.png deleted file mode 100644 index de4ea283..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_cobblestone_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_cobblestone_slabs'}.png deleted file mode 100644 index d5f3b6e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_cobblestone_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_crying_obsidian_bricks'}.png deleted file mode 100644 index cc674779..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_crying_obsidian_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_crying_obsidian_slabs'}.png deleted file mode 100644 index b3f93423..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_crying_obsidian_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dark_prismarine_bricks'}.png deleted file mode 100644 index 6916aa35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dark_prismarine_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dark_prismarine_slabs'}.png deleted file mode 100644 index 076c46a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dark_prismarine_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_deepslate_bricks'}.png deleted file mode 100644 index e610518e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_deepslate_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_deepslate_slabs'}.png deleted file mode 100644 index e3440385..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_deepslate_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_diorite_bricks'}.png deleted file mode 100644 index bfc9a41b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_diorite_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_diorite_slabs'}.png deleted file mode 100644 index d6f1ffc1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_diorite_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dirt_bricks'}.png deleted file mode 100644 index ffc00190..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dirt_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dirt_slabs'}.png deleted file mode 100644 index 83c5d4bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dirt_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dripstone_block_bricks'}.png deleted file mode 100644 index 723d733a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dripstone_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dripstone_block_slabs'}.png deleted file mode 100644 index 72ffae90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_dripstone_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_end_stone_bricks'}.png deleted file mode 100644 index 8185c59f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_end_stone_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_end_stone_slabs'}.png deleted file mode 100644 index 3a9cb0b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_end_stone_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_gilded_blackstone_bricks'}.png deleted file mode 100644 index cf5125af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_gilded_blackstone_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_gilded_blackstone_slabs'}.png deleted file mode 100644 index c2cf2eba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_gilded_blackstone_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_granite_bricks'}.png deleted file mode 100644 index ac3b8809..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_granite_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_granite_slabs'}.png deleted file mode 100644 index becbd3ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_granite_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ice_bricks'}.png deleted file mode 100644 index 58ca5155..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ice_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ice_slabs'}.png deleted file mode 100644 index cd4d4083..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_ice_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lapis_block_bricks'}.png deleted file mode 100644 index 974608dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lapis_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lapis_block_slabs'}.png deleted file mode 100644 index 5dc67e56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lapis_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lodestone_bricks'}.png deleted file mode 100644 index b1a23df1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lodestone_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lodestone_slabs'}.png deleted file mode 100644 index 833b2403..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_lodestone_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_magma_block_bricks'}.png deleted file mode 100644 index bd13272f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_magma_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_magma_block_slabs'}.png deleted file mode 100644 index 2b32703a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_magma_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_cobblestone_bricks'}.png deleted file mode 100644 index ade6c528..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_cobblestone_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_cobblestone_slabs'}.png deleted file mode 100644 index e3bb62c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_cobblestone_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index 4fbd0db3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_stone_bricks_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_stone_bricks_slabs'}.png deleted file mode 100644 index 23f6c86c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mossy_stone_bricks_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mud_bricks'}.png deleted file mode 100644 index ea14ba33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mud_bricks_bricks'}.png deleted file mode 100644 index 1305c6bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_nether_bricks_bricks'}.png deleted file mode 100644 index 2d3cf19c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_nether_bricks_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_nether_bricks_slabs'}.png deleted file mode 100644 index 9d55a9ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_nether_bricks_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_netherrack_bricks'}.png deleted file mode 100644 index 583c5d8b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_netherrack_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_netherrack_slabs'}.png deleted file mode 100644 index 220899e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_netherrack_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_obsidian_bricks'}.png deleted file mode 100644 index 9bfe0c5c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_obsidian_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_obsidian_slabs'}.png deleted file mode 100644 index 34b1ab3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_obsidian_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_packed_ice_bricks'}.png deleted file mode 100644 index f90ffc3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_packed_ice_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_packed_ice_slabs'}.png deleted file mode 100644 index 998aa2a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_packed_ice_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_packed_mud_bricks'}.png deleted file mode 100644 index 23e6920c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_prismarine_bricks'}.png deleted file mode 100644 index 48f37060..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_prismarine_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_prismarine_slabs'}.png deleted file mode 100644 index 5be70f7a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_prismarine_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_purpur_block_bricks'}.png deleted file mode 100644 index a2094e90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_purpur_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_purpur_block_slabs'}.png deleted file mode 100644 index 3cbc5907..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_purpur_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_quartz_block_bricks'}.png deleted file mode 100644 index 0d8738b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_quartz_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_quartz_block_slabs'}.png deleted file mode 100644 index f128c1f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_quartz_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_copper_block_bricks'}.png deleted file mode 100644 index d6e39c5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_copper_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_copper_block_slabs'}.png deleted file mode 100644 index c2031ed8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_copper_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_gold_block_bricks'}.png deleted file mode 100644 index 434c1c7b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_gold_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_gold_block_slabs'}.png deleted file mode 100644 index b50f1a8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_gold_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_iron_block_bricks'}.png deleted file mode 100644 index a73b7e7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_iron_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_iron_block_slabs'}.png deleted file mode 100644 index 6492bd15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_raw_iron_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_nether_bricks_bricks'}.png deleted file mode 100644 index f0dd4db6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_nether_bricks_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_nether_bricks_slabs'}.png deleted file mode 100644 index 09995f5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_nether_bricks_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_sandstone_bricks'}.png deleted file mode 100644 index f26cf557..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_sandstone_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_sandstone_slabs'}.png deleted file mode 100644 index 5f406f28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_red_sandstone_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_redstone_block_bricks'}.png deleted file mode 100644 index 1dcd57be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_redstone_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_redstone_block_slabs'}.png deleted file mode 100644 index febff927..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_redstone_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_sandstone_bricks'}.png deleted file mode 100644 index d19d915d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_sandstone_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_sandstone_slabs'}.png deleted file mode 100644 index c0573f9a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_sandstone_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_smooth_stone_bricks'}.png deleted file mode 100644 index fddd7b0d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_smooth_stone_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_smooth_stone_slabs'}.png deleted file mode 100644 index a60dbce7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_smooth_stone_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_snow_block_bricks'}.png deleted file mode 100644 index 8616e23e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_snow_block_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_snow_block_slabs'}.png deleted file mode 100644 index 40cdaeb8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_snow_block_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_stone_bricks'}.png deleted file mode 100644 index dc48df89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_stone_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_stone_slabs'}.png deleted file mode 100644 index 074d8484..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_stone_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_tuff_bricks'}.png deleted file mode 100644 index 598385b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_tuff_slabs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_tuff_slabs'}.png deleted file mode 100644 index bf293c9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_layered_tuff_slabs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_lodestone_bricks'}.png deleted file mode 100644 index 8f6249d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_magma_block_bricks'}.png deleted file mode 100644 index 62719317..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mossy_cobblestone_bricks'}.png deleted file mode 100644 index 1261b52a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index c63cf629..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mud_bricks'}.png deleted file mode 100644 index 6fd244a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mud_bricks_bricks'}.png deleted file mode 100644 index a3c83cd2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_nether_bricks_bricks'}.png deleted file mode 100644 index 8dbd58f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_netherrack_bricks'}.png deleted file mode 100644 index b8037a76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_obsidian_bricks'}.png deleted file mode 100644 index b5187389..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_packed_ice_bricks'}.png deleted file mode 100644 index 463b54bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_packed_mud_bricks'}.png deleted file mode 100644 index 6a010c35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_prismarine_bricks'}.png deleted file mode 100644 index 2de92bfa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_purpur_block_bricks'}.png deleted file mode 100644 index 385b70fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_quartz_block_bricks'}.png deleted file mode 100644 index 2c6ba6b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_raw_copper_block_bricks'}.png deleted file mode 100644 index 10178c09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_raw_gold_block_bricks'}.png deleted file mode 100644 index 27bd3237..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_raw_iron_block_bricks'}.png deleted file mode 100644 index a16eeef9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_red_nether_bricks_bricks'}.png deleted file mode 100644 index 49ebb74d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_red_sandstone_bricks'}.png deleted file mode 100644 index dc55e3ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_redstone_block_bricks'}.png deleted file mode 100644 index a639eb6d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_sandstone_bricks'}.png deleted file mode 100644 index 7d2d6d17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_smooth_stone_bricks'}.png deleted file mode 100644 index 39eea53d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_smug_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_smug_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_smug_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_smug_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_smug_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_smug_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_snow_block_bricks'}.png deleted file mode 100644 index 42d1b020..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_stone_bricks'}.png deleted file mode 100644 index 8b4ea8d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_tuff_bricks'}.png deleted file mode 100644 index c420836d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tiny_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__traditional_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__traditional_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__traditional_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__traditional_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__traditional_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__traditional_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_black_terracotta'}.png deleted file mode 100644 index 51199dc4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_blue_terracotta'}.png deleted file mode 100644 index 6fd1d1ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_brown_terracotta'}.png deleted file mode 100644 index 083d8dfa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_cyan_terracotta'}.png deleted file mode 100644 index cad1237c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_gray_terracotta'}.png deleted file mode 100644 index 19dd2704..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_green_terracotta'}.png deleted file mode 100644 index 936ec57a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_light_blue_terracotta'}.png deleted file mode 100644 index 54f72b33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_light_gray_terracotta'}.png deleted file mode 100644 index 32b44bed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_lime_terracotta'}.png deleted file mode 100644 index f18fa737..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_magenta_terracotta'}.png deleted file mode 100644 index fb6c7b78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_orange_terracotta'}.png deleted file mode 100644 index 1fa1cc19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_pink_terracotta'}.png deleted file mode 100644 index 7328b2e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_purple_terracotta'}.png deleted file mode 100644 index d6df3af4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_red_terracotta'}.png deleted file mode 100644 index 40d015da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_terracotta'}.png deleted file mode 100644 index 62bad0fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_white_terracotta'}.png deleted file mode 100644 index bf88a1f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_yellow_terracotta'}.png deleted file mode 100644 index 57148cb1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__triangular_yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_black_wool'}.png deleted file mode 100644 index 75013ca3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_blue_wool'}.png deleted file mode 100644 index eba5e8d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_brown_wool'}.png deleted file mode 100644 index 5325863b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_cyan_wool'}.png deleted file mode 100644 index b20e2b26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_gray_wool'}.png deleted file mode 100644 index d36ad3e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_green_wool'}.png deleted file mode 100644 index 03b3a5f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_light_blue_wool'}.png deleted file mode 100644 index cde1f951..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_light_gray_wool'}.png deleted file mode 100644 index 194072e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_lime_wool'}.png deleted file mode 100644 index 8e1448b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_magenta_wool'}.png deleted file mode 100644 index 96f7add2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_orange_wool'}.png deleted file mode 100644 index 4ce03c70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_pink_wool'}.png deleted file mode 100644 index 3fd12d8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_purple_wool'}.png deleted file mode 100644 index c4d4654c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_red_wool'}.png deleted file mode 100644 index fa5cd761..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_white_wool'}.png deleted file mode 100644 index 474cdb9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_yellow_wool'}.png deleted file mode 100644 index 1d956afe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tripped_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_amethyst_block'}.png deleted file mode 100644 index 1db0624d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_ancient_debris'}.png deleted file mode 100644 index c8f5cfed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_andesite'}.png deleted file mode 100644 index 5aeb6530..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_blackstone'}.png deleted file mode 100644 index 80c6665e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_blue_ice'}.png deleted file mode 100644 index ab89ba49..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_borderless_bricks'}.png deleted file mode 100644 index 6b22a7f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_bricks'}.png deleted file mode 100644 index 6b22a7f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_calcite'}.png deleted file mode 100644 index 464fe157..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_clay'}.png deleted file mode 100644 index bd539a4c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_coal_block'}.png deleted file mode 100644 index 1bd27e40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_cobblestone'}.png deleted file mode 100644 index d1589765..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_crying_obsidian'}.png deleted file mode 100644 index 2742577e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_dark_prismarine'}.png deleted file mode 100644 index d0da297a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_deepslate'}.png deleted file mode 100644 index 8f57a62f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_diorite'}.png deleted file mode 100644 index 51bce1c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_dirt'}.png deleted file mode 100644 index 6b0cde92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_dripstone_block'}.png deleted file mode 100644 index b8066c18..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_end_stone'}.png deleted file mode 100644 index 9cdfe70a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_gilded_blackstone'}.png deleted file mode 100644 index 489984ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_granite'}.png deleted file mode 100644 index 5faea2e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_ice'}.png deleted file mode 100644 index e3e1247d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_lapis_block'}.png deleted file mode 100644 index febbaa58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_lodestone'}.png deleted file mode 100644 index 0c06d024..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_magma_block'}.png deleted file mode 100644 index b07fb61c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_mossy_cobblestone'}.png deleted file mode 100644 index 478e2e28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_mossy_stone_bricks'}.png deleted file mode 100644 index 199973b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_nether_bricks'}.png deleted file mode 100644 index 9d5af790..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_netherrack'}.png deleted file mode 100644 index caa4d85f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_obsidian'}.png deleted file mode 100644 index dbf2cc56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_packed_ice'}.png deleted file mode 100644 index 4ba085b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_prismarine'}.png deleted file mode 100644 index 11cf1691..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_purpur_block'}.png deleted file mode 100644 index 1f61dcb0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_quartz_block'}.png deleted file mode 100644 index 807be351..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_raw_copper_block'}.png deleted file mode 100644 index 06e82959..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_raw_gold_block'}.png deleted file mode 100644 index 3800b919..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_raw_iron_block'}.png deleted file mode 100644 index 675f943b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_red_nether_bricks'}.png deleted file mode 100644 index 4aca5b72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_red_sandstone'}.png deleted file mode 100644 index 1475cdfd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_redstone_block'}.png deleted file mode 100644 index 6e13d7de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_sandstone'}.png deleted file mode 100644 index 9d42e89a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_smooth_stone'}.png deleted file mode 100644 index da67ef1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_snow_block'}.png deleted file mode 100644 index f02b91d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_stone'}.png deleted file mode 100644 index 02cf7442..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_tuff'}.png deleted file mode 100644 index a63d3274..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__trodden_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tropics_melon'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tropics_melon'}.png deleted file mode 100644 index 13de6d3a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tropics_melon'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_bricks'}.png deleted file mode 100644 index d3d836e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_mini_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_mini_tiles'}.png deleted file mode 100644 index 84d8e62a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_mini_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_pillar'}.png deleted file mode 100644 index d26ac54c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_pillar_top'}.png deleted file mode 100644 index e655514a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_scales'}.png deleted file mode 100644 index 867ad331..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__tuff_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_amethyst_block'}.png deleted file mode 100644 index 45076ad3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_ancient_debris'}.png deleted file mode 100644 index 1d412f82..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_andesite'}.png deleted file mode 100644 index 4a0f422c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_basalt'}.png deleted file mode 100644 index 38522ee9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_blackstone'}.png deleted file mode 100644 index 17a3f377..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_blue_ice'}.png deleted file mode 100644 index eedd1f87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_borderless_bricks'}.png deleted file mode 100644 index 27ff85e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_bricks'}.png deleted file mode 100644 index 9c62dc83..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_calcite'}.png deleted file mode 100644 index 851af8f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_clay'}.png deleted file mode 100644 index c083f427..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_coal_block'}.png deleted file mode 100644 index d4b6b2ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_cobblestone'}.png deleted file mode 100644 index f47d10f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_crying_obsidian'}.png deleted file mode 100644 index 6095d79d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_dark_prismarine'}.png deleted file mode 100644 index 3ebcf3cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_deepslate'}.png deleted file mode 100644 index 6b956826..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_diorite'}.png deleted file mode 100644 index f52eb2f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_dirt'}.png deleted file mode 100644 index ef6e1dc1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_dripstone_block'}.png deleted file mode 100644 index 75198371..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_end_stone'}.png deleted file mode 100644 index e42e3ee9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_gilded_blackstone'}.png deleted file mode 100644 index 1660c801..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_granite'}.png deleted file mode 100644 index 0afc060f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_ice'}.png deleted file mode 100644 index c3e2f1dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_lapis_block'}.png deleted file mode 100644 index 5ca922fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_lodestone'}.png deleted file mode 100644 index 77de201e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_magma_block'}.png deleted file mode 100644 index a88660f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mossy_cobblestone'}.png deleted file mode 100644 index e55a51a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mossy_stone_bricks'}.png deleted file mode 100644 index 55b8f4de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mud'}.png deleted file mode 100644 index 12816868..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mud_bricks'}.png deleted file mode 100644 index b12e5591..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_nether_bricks'}.png deleted file mode 100644 index ed639131..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_netherrack'}.png deleted file mode 100644 index f9780d2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_obsidian'}.png deleted file mode 100644 index 000faf20..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_packed_ice'}.png deleted file mode 100644 index 569f8404..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_packed_mud'}.png deleted file mode 100644 index 58582d33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_prismarine'}.png deleted file mode 100644 index 9b15273f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_purpur_block'}.png deleted file mode 100644 index 566fec5c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_quartz_block'}.png deleted file mode 100644 index 8f5bbc56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_raw_copper_block'}.png deleted file mode 100644 index 4f71bc70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_raw_gold_block'}.png deleted file mode 100644 index a0a8ebff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_raw_iron_block'}.png deleted file mode 100644 index 37a94854..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_red_nether_bricks'}.png deleted file mode 100644 index 254c8655..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_red_sandstone'}.png deleted file mode 100644 index 1fd46b7f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_redstone_block'}.png deleted file mode 100644 index bf914142..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_sandstone'}.png deleted file mode 100644 index ebc01e2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_smooth_stone'}.png deleted file mode 100644 index 2552cc81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_snow_block'}.png deleted file mode 100644 index 7643bde0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_stone'}.png deleted file mode 100644 index 55a22464..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_tuff'}.png deleted file mode 100644 index 20021b0b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__unamused_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__upside_down_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__upside_down_carved_pumpkin'}.png deleted file mode 100644 index 4359b833..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__upside_down_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__upside_down_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__upside_down_jack_o_lantern'}.png deleted file mode 100644 index 4359b833..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__upside_down_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_acacia_planks'}.png deleted file mode 100644 index a5d5a310..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_bamboo_planks'}.png deleted file mode 100644 index 3a6d4b43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_birch_planks'}.png deleted file mode 100644 index 10a6cc99..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_cherry_planks'}.png deleted file mode 100644 index abfae970..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_crimson_planks'}.png deleted file mode 100644 index d8eb37b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_dark_oak_planks'}.png deleted file mode 100644 index fb43ac88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_jungle_planks'}.png deleted file mode 100644 index 95215cc3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_mangrove_planks'}.png deleted file mode 100644 index 6a4733be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_oak_planks'}.png deleted file mode 100644 index 24655c2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_spruce_planks'}.png deleted file mode 100644 index 26d69e5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_warped_planks'}.png deleted file mode 100644 index 57b04925..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__versailles_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_acacia_planks'}.png deleted file mode 100644 index c76d249f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_bamboo_planks'}.png deleted file mode 100644 index 0e127590..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_birch_planks'}.png deleted file mode 100644 index 46c8d4bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_botanical_oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_botanical_oak_bookshelf'}.png deleted file mode 100644 index c0a5f947..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_botanical_oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cherry_planks'}.png deleted file mode 100644 index d478902c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_crimson_planks'}.png deleted file mode 100644 index 0864a109..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_amethyst_block'}.png deleted file mode 100644 index 6816d427..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_ancient_debris'}.png deleted file mode 100644 index a67768e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_andesite'}.png deleted file mode 100644 index 4245eb61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_basalt'}.png deleted file mode 100644 index 7940acab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_blackstone'}.png deleted file mode 100644 index ad2faff0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_blue_ice'}.png deleted file mode 100644 index e814bc5f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_borderless_bricks'}.png deleted file mode 100644 index 25d6b224..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_bricks'}.png deleted file mode 100644 index 75dd82f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_calcite'}.png deleted file mode 100644 index f56a147e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_clay'}.png deleted file mode 100644 index 9cfe49e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_coal_block'}.png deleted file mode 100644 index df5dad58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_cobblestone'}.png deleted file mode 100644 index 745fb2c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_crying_obsidian'}.png deleted file mode 100644 index 0e3438d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_dark_prismarine'}.png deleted file mode 100644 index 70f91872..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_deepslate'}.png deleted file mode 100644 index 8fa9e146..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_diorite'}.png deleted file mode 100644 index c3d2e76b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_dirt'}.png deleted file mode 100644 index 99060692..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_dripstone_block'}.png deleted file mode 100644 index 724972c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_end_stone'}.png deleted file mode 100644 index fb00a8f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_gilded_blackstone'}.png deleted file mode 100644 index 5f930428..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_granite'}.png deleted file mode 100644 index 164ab08d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_ice'}.png deleted file mode 100644 index 10ad4982..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_lapis_block'}.png deleted file mode 100644 index ddc6c7eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_lodestone'}.png deleted file mode 100644 index b3492f4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_magma_block'}.png deleted file mode 100644 index cf4f02e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mossy_cobblestone'}.png deleted file mode 100644 index 457985aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mossy_stone_bricks'}.png deleted file mode 100644 index f9c59460..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mud'}.png deleted file mode 100644 index 7471681a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mud_bricks'}.png deleted file mode 100644 index eb881055..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_nether_bricks'}.png deleted file mode 100644 index cbc9854e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_netherrack'}.png deleted file mode 100644 index 63ffa79b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_obsidian'}.png deleted file mode 100644 index f568415f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_packed_ice'}.png deleted file mode 100644 index fc2254f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_packed_mud'}.png deleted file mode 100644 index 3c1883de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_prismarine'}.png deleted file mode 100644 index 86fb83ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_purpur_block'}.png deleted file mode 100644 index 75f410f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_quartz_block'}.png deleted file mode 100644 index 47c059d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_raw_copper_block'}.png deleted file mode 100644 index 578a9841..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_raw_gold_block'}.png deleted file mode 100644 index 1eaa9488..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_raw_iron_block'}.png deleted file mode 100644 index d19bb66f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_red_nether_bricks'}.png deleted file mode 100644 index 6a28f9bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_red_sandstone'}.png deleted file mode 100644 index 3a658912..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_redstone_block'}.png deleted file mode 100644 index 4c04bd89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_sandstone'}.png deleted file mode 100644 index 42f5ee28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_smooth_stone'}.png deleted file mode 100644 index 8a0c8c65..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_snow_block'}.png deleted file mode 100644 index 652c5637..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_stone'}.png deleted file mode 100644 index c9f2c085..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_tuff'}.png deleted file mode 100644 index 63665ef2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_cut_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_dark_oak_planks'}.png deleted file mode 100644 index d93f4f69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_amethyst_block_bricks'}.png deleted file mode 100644 index 8f95b14f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_ancient_debris_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_ancient_debris_bricks'}.png deleted file mode 100644 index feeab078..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_ancient_debris_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_andesite_bricks'}.png deleted file mode 100644 index d2452946..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_basalt_bricks'}.png deleted file mode 100644 index 0dbc5e53..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_blackstone_bricks'}.png deleted file mode 100644 index df9711de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_blue_ice_bricks'}.png deleted file mode 100644 index 3e9a4e59..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_borderless_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_borderless_bricks_bricks'}.png deleted file mode 100644 index 7c859f3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_borderless_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_bricks_bricks'}.png deleted file mode 100644 index d59b62b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_calcite_bricks'}.png deleted file mode 100644 index 32f35b03..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_clay_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_clay_bricks'}.png deleted file mode 100644 index 012f3205..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_clay_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_coal_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_coal_block_bricks'}.png deleted file mode 100644 index 2a0615c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_coal_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_cobblestone_bricks'}.png deleted file mode 100644 index 1e230433..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_crying_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_crying_obsidian_bricks'}.png deleted file mode 100644 index 66847042..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_crying_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_dark_prismarine_bricks'}.png deleted file mode 100644 index 1e6f1c28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_deepslate_bricks'}.png deleted file mode 100644 index 17ac6320..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_diorite_bricks'}.png deleted file mode 100644 index 1ab94e55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_dirt_bricks'}.png deleted file mode 100644 index 50705bb0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_dripstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_dripstone_block_bricks'}.png deleted file mode 100644 index 8473d61d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_dripstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_end_stone_bricks'}.png deleted file mode 100644 index e012af95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_gilded_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_gilded_blackstone_bricks'}.png deleted file mode 100644 index db85e991..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_gilded_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_granite_bricks'}.png deleted file mode 100644 index 623cac19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_ice_bricks'}.png deleted file mode 100644 index b0ae7424..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_lapis_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_lapis_block_bricks'}.png deleted file mode 100644 index 538cbba7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_lapis_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_lodestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_lodestone_bricks'}.png deleted file mode 100644 index 26e2ea59..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_lodestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_magma_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_magma_block_bricks'}.png deleted file mode 100644 index edc31dea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_magma_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mossy_cobblestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mossy_cobblestone_bricks'}.png deleted file mode 100644 index 21527b56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mossy_cobblestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mossy_stone_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mossy_stone_bricks_bricks'}.png deleted file mode 100644 index fe0744bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mossy_stone_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mud_bricks'}.png deleted file mode 100644 index 10ee3252..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mud_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mud_bricks_bricks'}.png deleted file mode 100644 index 98fa17b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_mud_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_nether_bricks_bricks'}.png deleted file mode 100644 index fb77f72c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_netherrack_bricks'}.png deleted file mode 100644 index 6432f2b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_obsidian_bricks'}.png deleted file mode 100644 index a52919a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_packed_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_packed_ice_bricks'}.png deleted file mode 100644 index 43c2f443..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_packed_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_packed_mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_packed_mud_bricks'}.png deleted file mode 100644 index 73bed121..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_packed_mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_prismarine_bricks'}.png deleted file mode 100644 index d475c0e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_purpur_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_purpur_block_bricks'}.png deleted file mode 100644 index 8209dad0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_purpur_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_quartz_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_quartz_block_bricks'}.png deleted file mode 100644 index aafbd2e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_quartz_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_raw_copper_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_raw_copper_block_bricks'}.png deleted file mode 100644 index b671180a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_raw_copper_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_raw_gold_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_raw_gold_block_bricks'}.png deleted file mode 100644 index d0234081..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_raw_gold_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_raw_iron_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_raw_iron_block_bricks'}.png deleted file mode 100644 index 5f2af90b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_raw_iron_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_red_nether_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_red_nether_bricks_bricks'}.png deleted file mode 100644 index 5f95a2d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_red_nether_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_red_sandstone_bricks'}.png deleted file mode 100644 index 6f77dacf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_redstone_block_bricks'}.png deleted file mode 100644 index 3d5e0009..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_sandstone_bricks'}.png deleted file mode 100644 index 97dd02e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_smooth_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_smooth_stone_bricks'}.png deleted file mode 100644 index 7fa356c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_smooth_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_snow_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_snow_block_bricks'}.png deleted file mode 100644 index 66d8e4d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_snow_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_stone_bricks'}.png deleted file mode 100644 index d6787688..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_tuff_bricks'}.png deleted file mode 100644 index 6b3a41fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_disordered_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_jungle_planks'}.png deleted file mode 100644 index 653deaf0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_layered_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_layered_stripped_mangrove_log'}.png deleted file mode 100644 index eeda68ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_layered_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_leaded_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_leaded_glass'}.png deleted file mode 100644 index 343c52b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_leaded_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_mangrove_planks'}.png deleted file mode 100644 index 7af264a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_mixed_oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_mixed_oak_bookshelf'}.png deleted file mode 100644 index 8d7ba51d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_mixed_oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_bookshelf'}.png deleted file mode 100644 index 4721c8b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_lighted_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_lighted_bookshelf'}.png deleted file mode 100644 index 1be589ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_lighted_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_planks'}.png deleted file mode 100644 index 6ac2173d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_webbed_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_webbed_bookshelf'}.png deleted file mode 100644 index 9f1381e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_oak_webbed_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_spruce_planks'}.png deleted file mode 100644 index 42886ea9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_black_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_black_stained_glass'}.png deleted file mode 100644 index 6701bb54..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_black_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_blue_stained_glass'}.png deleted file mode 100644 index fc6711eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_brown_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_brown_stained_glass'}.png deleted file mode 100644 index 38ca3a4c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_brown_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_cyan_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_cyan_stained_glass'}.png deleted file mode 100644 index 1cd989c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_cyan_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_gray_stained_glass'}.png deleted file mode 100644 index c7737a9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_green_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_green_stained_glass'}.png deleted file mode 100644 index 86313d95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_green_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_light_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_light_blue_stained_glass'}.png deleted file mode 100644 index 7f749487..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_light_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_light_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_light_gray_stained_glass'}.png deleted file mode 100644 index 27adbc60..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_light_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_lime_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_lime_stained_glass'}.png deleted file mode 100644 index 472d7224..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_lime_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_magenta_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_magenta_stained_glass'}.png deleted file mode 100644 index 9ace2bc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_magenta_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_orange_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_orange_stained_glass'}.png deleted file mode 100644 index 6ad60553..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_orange_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_pink_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_pink_stained_glass'}.png deleted file mode 100644 index d1d8e0c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_pink_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_purple_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_purple_stained_glass'}.png deleted file mode 100644 index 0a61d7e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_purple_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_red_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_red_stained_glass'}.png deleted file mode 100644 index e168724e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_red_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_white_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_white_stained_glass'}.png deleted file mode 100644 index c0a10626..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_white_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_yellow_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_yellow_stained_glass'}.png deleted file mode 100644 index d2294b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_stiped_yellow_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_warped_planks'}.png deleted file mode 100644 index c38de82e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertical_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_acacia_planks'}.png deleted file mode 100644 index 026b8f9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_bamboo_planks'}.png deleted file mode 100644 index 2bbb6f91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_birch_planks'}.png deleted file mode 100644 index fc615597..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_cherry_planks'}.png deleted file mode 100644 index 49465514..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_crimson_planks'}.png deleted file mode 100644 index b0d0bc54..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_dark_oak_planks'}.png deleted file mode 100644 index fb3d121a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_jungle_planks'}.png deleted file mode 100644 index fea1404a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_mangrove_planks'}.png deleted file mode 100644 index 3a40219e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_oak_planks'}.png deleted file mode 100644 index 57ba34d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_spruce_planks'}.png deleted file mode 100644 index 71109520..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_warped_planks'}.png deleted file mode 100644 index 39f28346..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__vertically_railed_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warm_mushroom_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warm_mushroom_stem'}.png deleted file mode 100644 index 176342a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warm_mushroom_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_black_concrete'}.png deleted file mode 100644 index 625fa05a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_blue_concrete'}.png deleted file mode 100644 index a49ff9c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_brown_concrete'}.png deleted file mode 100644 index 3fb4f15e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_cyan_concrete'}.png deleted file mode 100644 index e38e3bfb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_gray_concrete'}.png deleted file mode 100644 index 77594e4b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_green_concrete'}.png deleted file mode 100644 index 61ab2699..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_light_blue_concrete'}.png deleted file mode 100644 index 3d72d39e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_light_gray_concrete'}.png deleted file mode 100644 index f537968a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_lime_concrete'}.png deleted file mode 100644 index 85aa0161..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_magenta_concrete'}.png deleted file mode 100644 index 258ee7d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_orange_concrete'}.png deleted file mode 100644 index 3a2dd132..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_pink_concrete'}.png deleted file mode 100644 index 07e6f932..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_purple_concrete'}.png deleted file mode 100644 index fde73882..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_red_concrete'}.png deleted file mode 100644 index 6529e815..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_white_concrete'}.png deleted file mode 100644 index 7ffc5d1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_yellow_concrete'}.png deleted file mode 100644 index 07ca2455..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warning_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warped_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warped_planks_mosaic'}.png deleted file mode 100644 index e65b7b5c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warped_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warped_planks_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warped_planks_panel'}.png deleted file mode 100644 index 3bc7536d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warped_planks_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warped_planks_shavings'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warped_planks_shavings'}.png deleted file mode 100644 index 25d02a3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__warped_planks_shavings'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wart_dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wart_dried_kelp_block'}.png deleted file mode 100644 index d02033f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wart_dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__watching_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__watching_lodestone'}.png deleted file mode 100644 index 0f33024f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__watching_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_black_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_black_glazed_terracotta'}.png deleted file mode 100644 index 91433bbe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_black_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_blue_glazed_terracotta'}.png deleted file mode 100644 index 77ee92b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_brown_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_brown_glazed_terracotta'}.png deleted file mode 100644 index 496ab26d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_brown_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_cyan_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_cyan_glazed_terracotta'}.png deleted file mode 100644 index 25f8f433..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_cyan_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_gray_glazed_terracotta'}.png deleted file mode 100644 index 7ab82a31..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_green_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_green_glazed_terracotta'}.png deleted file mode 100644 index 36a2a1a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_green_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_light_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_light_blue_glazed_terracotta'}.png deleted file mode 100644 index afc495f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_light_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_light_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_light_gray_glazed_terracotta'}.png deleted file mode 100644 index 11c4187c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_light_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_lime_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_lime_glazed_terracotta'}.png deleted file mode 100644 index c9daadc1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_lime_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_magenta_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_magenta_glazed_terracotta'}.png deleted file mode 100644 index e580f209..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_magenta_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_orange_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_orange_glazed_terracotta'}.png deleted file mode 100644 index c57a1343..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_orange_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_pink_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_pink_glazed_terracotta'}.png deleted file mode 100644 index e8be8016..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_pink_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_purple_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_purple_glazed_terracotta'}.png deleted file mode 100644 index 6e287595..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_purple_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_red_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_red_glazed_terracotta'}.png deleted file mode 100644 index 92e844c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_red_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_white_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_white_glazed_terracotta'}.png deleted file mode 100644 index e8156221..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_white_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_yellow_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_yellow_glazed_terracotta'}.png deleted file mode 100644 index d9a20258..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__waved_yellow_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_amethyst_block'}.png deleted file mode 100644 index ea919f7e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_ancient_debris'}.png deleted file mode 100644 index 5f8dd49c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_andesite'}.png deleted file mode 100644 index 985cbc5c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_basalt'}.png deleted file mode 100644 index f12359a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_blue_ice'}.png deleted file mode 100644 index 06aa1c42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_borderless_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_borderless_bricks'}.png deleted file mode 100644 index ec7bf10c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_borderless_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_bricks'}.png deleted file mode 100644 index ec7bf10c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_calcite'}.png deleted file mode 100644 index 0bfffcab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_clay'}.png deleted file mode 100644 index 72b94d6d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_coal_block'}.png deleted file mode 100644 index ca278f61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_cobblestone'}.png deleted file mode 100644 index 2479e663..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_crying_obsidian'}.png deleted file mode 100644 index 6d461c12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_dark_prismarine'}.png deleted file mode 100644 index 088aa46e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_deepslate'}.png deleted file mode 100644 index ab80a030..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_diorite'}.png deleted file mode 100644 index f874db47..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_dirt'}.png deleted file mode 100644 index eed517d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_dripstone_block'}.png deleted file mode 100644 index b4717ac6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_end_stone'}.png deleted file mode 100644 index c9bff18a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_gilded_blackstone'}.png deleted file mode 100644 index a913fc05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_granite'}.png deleted file mode 100644 index 0f79ce79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_ice'}.png deleted file mode 100644 index 1b4dbc51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_lapis_block'}.png deleted file mode 100644 index 43f672de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_lodestone'}.png deleted file mode 100644 index dc9428a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_magma_block'}.png deleted file mode 100644 index 2fd43ba4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_mossy_cobblestone'}.png deleted file mode 100644 index f0c8f8b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_mossy_stone_bricks'}.png deleted file mode 100644 index 0dfda0ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_nether_bricks'}.png deleted file mode 100644 index 75ccd212..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_netherrack'}.png deleted file mode 100644 index 872518e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_obsidian'}.png deleted file mode 100644 index 83a5fb77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_packed_ice'}.png deleted file mode 100644 index 670f72ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_prismarine'}.png deleted file mode 100644 index e9f9e99e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_purpur_block'}.png deleted file mode 100644 index c7aa06c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_quartz_block'}.png deleted file mode 100644 index aea1dfd4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_raw_copper_block'}.png deleted file mode 100644 index 9b917a4c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_raw_gold_block'}.png deleted file mode 100644 index 14dc63f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_raw_iron_block'}.png deleted file mode 100644 index 89e4ac99..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_red_nether_bricks'}.png deleted file mode 100644 index 47266808..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_red_sandstone'}.png deleted file mode 100644 index c92fe250..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_redstone_block'}.png deleted file mode 100644 index 5367a2f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_sandstone'}.png deleted file mode 100644 index 6e50e8d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_smooth_stone'}.png deleted file mode 100644 index 47e22f43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_snow_block'}.png deleted file mode 100644 index c472bf1e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_stone'}.png deleted file mode 100644 index 49f0b5b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_tuff'}.png deleted file mode 100644 index cf3376e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weathered_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weaved_bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weaved_bone_block'}.png deleted file mode 100644 index 7317ed8a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__weaved_bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wet_red_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wet_red_sand'}.png deleted file mode 100644 index a57017e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wet_red_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wet_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wet_sand'}.png deleted file mode 100644 index 4fd76726..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wet_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_acacia_planks'}.png deleted file mode 100644 index 2f1a30e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_bamboo_planks'}.png deleted file mode 100644 index bfb11ec6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_birch_planks'}.png deleted file mode 100644 index 60d641af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_cherry_planks'}.png deleted file mode 100644 index 6b1f0768..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_crimson_planks'}.png deleted file mode 100644 index 021b89cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_dark_oak_planks'}.png deleted file mode 100644 index dbfa6db4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_jungle_planks'}.png deleted file mode 100644 index a30df25e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_oak_planks'}.png deleted file mode 100644 index 86198d36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_spruce_planks'}.png deleted file mode 100644 index 02722907..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_warped_planks'}.png deleted file mode 100644 index 06a46ef5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__whirlwind_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_bricks'}.png deleted file mode 100644 index 0140d50a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_panel'}.png deleted file mode 100644 index a4836734..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_pillar'}.png deleted file mode 100644 index 74099daf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_tiles'}.png deleted file mode 100644 index 2750aa43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_dusted_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_dusted_brown_mushroom_block'}.png deleted file mode 100644 index 5e446820..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_dusted_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_acacia_leaves'}.png deleted file mode 100644 index ca8ed717..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_birch_leaves'}.png deleted file mode 100644 index 28a31a72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_dark_oak_leaves'}.png deleted file mode 100644 index 5c8eb3bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_jungle_leaves'}.png deleted file mode 100644 index 85a0906b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_oak_leaves'}.png deleted file mode 100644 index 091b6233..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_spruce_leaves'}.png deleted file mode 100644 index 5b518521..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_flower_spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_freckled_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_freckled_brown_mushroom_block'}.png deleted file mode 100644 index 5ce1ef2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_freckled_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 00df7696..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index cc5f9ad6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index 5c8b4987..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_tiles'}.png deleted file mode 100644 index fcc1e488..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_sand'}.png deleted file mode 100644 index e271c3e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_spotted_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_spotted_brown_mushroom_block'}.png deleted file mode 100644 index 7c42f33a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_spotted_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_sprinkled_brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_sprinkled_brown_mushroom_block'}.png deleted file mode 100644 index 537507ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_sprinkled_brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_bricks'}.png deleted file mode 100644 index d87a0879..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_column'}.png deleted file mode 100644 index 767235ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_pillar'}.png deleted file mode 100644 index 5d33884a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_tile'}.png deleted file mode 100644 index e1ff0aec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_tiles'}.png deleted file mode 100644 index 64390ef3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__white_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_acacia_planks'}.png deleted file mode 100644 index 1e62074a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_bamboo_planks'}.png deleted file mode 100644 index 3c41b431..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_birch_planks'}.png deleted file mode 100644 index 3e5c9a30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_black_wool'}.png deleted file mode 100644 index 98c20808..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_blue_wool'}.png deleted file mode 100644 index ba34b4c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_brown_wool'}.png deleted file mode 100644 index dd9bbfe6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_cherry_planks'}.png deleted file mode 100644 index eb575481..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_crimson_planks'}.png deleted file mode 100644 index 7dac9557..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_cyan_wool'}.png deleted file mode 100644 index e4ff6526..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_dark_oak_planks'}.png deleted file mode 100644 index 86e2c74c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_gray_wool'}.png deleted file mode 100644 index 123aa6b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_green_wool'}.png deleted file mode 100644 index c2773cef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_jungle_planks'}.png deleted file mode 100644 index 763edb0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_light_blue_wool'}.png deleted file mode 100644 index 42c286f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_light_gray_wool'}.png deleted file mode 100644 index 260cc875..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_lime_wool'}.png deleted file mode 100644 index 72de1b54..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_magenta_wool'}.png deleted file mode 100644 index 195380df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_oak_planks'}.png deleted file mode 100644 index 0bf40a4c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_orange_wool'}.png deleted file mode 100644 index a62d65b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_pink_wool'}.png deleted file mode 100644 index d52bfce6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_purple_wool'}.png deleted file mode 100644 index 4b81f396..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_red_wool'}.png deleted file mode 100644 index 5de9beea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_spruce_planks'}.png deleted file mode 100644 index eeb1a1fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_warped_planks'}.png deleted file mode 100644 index e346b7af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_white_wool'}.png deleted file mode 100644 index 67186102..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_yellow_wool'}.png deleted file mode 100644 index 635886ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wickered_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wide_eyed_carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wide_eyed_carved_pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wide_eyed_carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wide_eyed_jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wide_eyed_jack_o_lantern'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wide_eyed_jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wider_diamond_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wider_diamond_lodestone'}.png deleted file mode 100644 index f05a4cca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wider_diamond_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wider_ring_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wider_ring_lodestone'}.png deleted file mode 100644 index 6557faae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wider_ring_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wider_watching_lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wider_watching_lodestone'}.png deleted file mode 100644 index f639c273..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wider_watching_lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_black_wool'}.png deleted file mode 100644 index d67c4963..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_blue_wool'}.png deleted file mode 100644 index e98d3c06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_brown_wool'}.png deleted file mode 100644 index c408bb8b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_cyan_wool'}.png deleted file mode 100644 index 6c5f21b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_gray_wool'}.png deleted file mode 100644 index 059a3e07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_green_wool'}.png deleted file mode 100644 index ffc8e7bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_light_blue_wool'}.png deleted file mode 100644 index ac7c2cab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_light_gray_wool'}.png deleted file mode 100644 index d316849a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_lime_wool'}.png deleted file mode 100644 index ae5c6f66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_magenta_wool'}.png deleted file mode 100644 index 7a7bd95a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_orange_wool'}.png deleted file mode 100644 index b1be32b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_pink_wool'}.png deleted file mode 100644 index 92b75fd2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_purple_wool'}.png deleted file mode 100644 index 0ed21fa0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_red_wool'}.png deleted file mode 100644 index 1674e83c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_white_wool'}.png deleted file mode 100644 index 9f80d62e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_yellow_wool'}.png deleted file mode 100644 index 6e7e1cf4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__windmill_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_black_concrete'}.png deleted file mode 100644 index e854b42e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_blue_concrete'}.png deleted file mode 100644 index 3ac0d5a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_brown_concrete'}.png deleted file mode 100644 index 74d7f8d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_cyan_concrete'}.png deleted file mode 100644 index 167be1c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_gray_concrete'}.png deleted file mode 100644 index 0c4efa8e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_green_concrete'}.png deleted file mode 100644 index 07b81cd6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_light_blue_concrete'}.png deleted file mode 100644 index 19c7f7d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_light_gray_concrete'}.png deleted file mode 100644 index 3c691c50..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_lime_concrete'}.png deleted file mode 100644 index 9d452f9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_magenta_concrete'}.png deleted file mode 100644 index fd43153d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_orange_concrete'}.png deleted file mode 100644 index a01e8d1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_pink_concrete'}.png deleted file mode 100644 index 6dad4fc9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_purple_concrete'}.png deleted file mode 100644 index 605dd00b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_red_concrete'}.png deleted file mode 100644 index 6312a966..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_white_concrete'}.png deleted file mode 100644 index 0fa91a81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_yellow_concrete'}.png deleted file mode 100644 index 7ccb1c90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wired_yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_acacia_log'}.png deleted file mode 100644 index 92129a39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_birch_log'}.png deleted file mode 100644 index f11b18a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_cherry_log'}.png deleted file mode 100644 index 76507927..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_crimson_stem'}.png deleted file mode 100644 index d34e27ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_dark_oak_log'}.png deleted file mode 100644 index ef1db2d9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_jungle_log'}.png deleted file mode 100644 index f865cdda..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_mangrove_log'}.png deleted file mode 100644 index d3e57198..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_oak_log'}.png deleted file mode 100644 index 46f8ff7b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_spruce_log'}.png deleted file mode 100644 index 81f88a5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_warped_stem'}.png deleted file mode 100644 index 2d6f6809..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wise_stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wither_engraved_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wither_engraved_glowstone'}.png deleted file mode 100644 index b5adaa3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__wither_engraved_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_black_wool'}.png deleted file mode 100644 index be138eb2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_blue_wool'}.png deleted file mode 100644 index ea793260..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_brown_wool'}.png deleted file mode 100644 index 088a4a16..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_cyan_wool'}.png deleted file mode 100644 index 1564a5fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_gray_wool'}.png deleted file mode 100644 index 467499f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_green_wool'}.png deleted file mode 100644 index 5ff957ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_light_blue_wool'}.png deleted file mode 100644 index 4f4aaf57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_light_gray_wool'}.png deleted file mode 100644 index 0e56e388..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_lime_wool'}.png deleted file mode 100644 index bffd060e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_magenta_wool'}.png deleted file mode 100644 index ee641ff7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_orange_wool'}.png deleted file mode 100644 index 4b65e349..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_pink_wool'}.png deleted file mode 100644 index 13a16ff0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_purple_wool'}.png deleted file mode 100644 index 99f50ed0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_red_wool'}.png deleted file mode 100644 index 9b54327b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_white_wool'}.png deleted file mode 100644 index 638dc23e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_yellow_wool'}.png deleted file mode 100644 index 34619fc4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woved_yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_black_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_black_stained_glass'}.png deleted file mode 100644 index 05cc4bcb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_black_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_blue_stained_glass'}.png deleted file mode 100644 index ec7fe40e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_brown_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_brown_stained_glass'}.png deleted file mode 100644 index 457f9aa5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_brown_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_cyan_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_cyan_stained_glass'}.png deleted file mode 100644 index 3e49c955..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_cyan_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_gray_stained_glass'}.png deleted file mode 100644 index c2e2a73a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_green_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_green_stained_glass'}.png deleted file mode 100644 index b3ce72bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_green_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_light_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_light_blue_stained_glass'}.png deleted file mode 100644 index 64ea7833..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_light_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_light_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_light_gray_stained_glass'}.png deleted file mode 100644 index 7fd13eb4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_light_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_lime_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_lime_stained_glass'}.png deleted file mode 100644 index 86014dfb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_lime_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_magenta_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_magenta_stained_glass'}.png deleted file mode 100644 index ab9ec696..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_magenta_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_orange_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_orange_stained_glass'}.png deleted file mode 100644 index 00f552cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_orange_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_pink_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_pink_stained_glass'}.png deleted file mode 100644 index 3c985cab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_pink_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_purple_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_purple_stained_glass'}.png deleted file mode 100644 index 7f3d8921..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_purple_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_red_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_red_stained_glass'}.png deleted file mode 100644 index 9274fcb8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_red_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_white_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_white_stained_glass'}.png deleted file mode 100644 index 07afcf8f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_white_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_yellow_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_yellow_stained_glass'}.png deleted file mode 100644 index e1f69de7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__woven_yellow_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_bricks'}.png deleted file mode 100644 index c6242e96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_panel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_panel'}.png deleted file mode 100644 index 0e494b42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_panel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_pillar'}.png deleted file mode 100644 index 391b6cd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_tiles'}.png deleted file mode 100644 index 3632340e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_concrete_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_pillar_sides'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_pillar_sides'}.png deleted file mode 100644 index 76fc395c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_pillar_sides'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_pillar_top'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_pillar_top'}.png deleted file mode 100644 index 6fd3dfdf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_pillar_top'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_smooth_tiles'}.png deleted file mode 100644 index 9cec2f29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_tiles'}.png deleted file mode 100644 index 62c79860..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_glazed_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_moss_block'}.png deleted file mode 100644 index 148f617e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_bricks'}.png deleted file mode 100644 index 8a495f86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_column'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_column'}.png deleted file mode 100644 index d1013803..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_column'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_pillar'}.png deleted file mode 100644 index 42c95249..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_tile'}.png deleted file mode 100644 index a0fa55db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_tiles'}.png deleted file mode 100644 index 41da092c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'chipped__yellow_terracotta_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass'}.png deleted file mode 100644 index a8e537b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_black'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_black'}.png deleted file mode 100644 index 7770f169..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_black'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_blue'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_blue'}.png deleted file mode 100644 index 27b964ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_blue'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_brown'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_brown'}.png deleted file mode 100644 index 110d64c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_brown'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_cyan'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_cyan'}.png deleted file mode 100644 index c755546d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_cyan'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_gray'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_gray'}.png deleted file mode 100644 index a9127b24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_gray'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_green'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_green'}.png deleted file mode 100644 index d6fc5ca1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_green'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_light_blue'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_light_blue'}.png deleted file mode 100644 index 79d48299..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_light_blue'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_light_gray'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_light_gray'}.png deleted file mode 100644 index e7c7a9ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_light_gray'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_lime'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_lime'}.png deleted file mode 100644 index 3015fd48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_lime'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_magenta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_magenta'}.png deleted file mode 100644 index 90dd2e86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_magenta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_orange'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_orange'}.png deleted file mode 100644 index f777608c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_orange'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_pink'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_pink'}.png deleted file mode 100644 index 8a3bf32e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_pink'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_purple'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_purple'}.png deleted file mode 100644 index 16339573..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_purple'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_red'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_red'}.png deleted file mode 100644 index 274c7dab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_red'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_white'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_white'}.png deleted file mode 100644 index 3b4cbb32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_white'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_yellow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_yellow'}.png deleted file mode 100644 index 43429669..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__borderless_glass_yellow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass'}.png deleted file mode 100644 index 4c76f1f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_black'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_black'}.png deleted file mode 100644 index b6cd04e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_black'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_blue'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_blue'}.png deleted file mode 100644 index d03e2438..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_blue'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_brown'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_brown'}.png deleted file mode 100644 index 0b2a4e8f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_brown'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_cyan'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_cyan'}.png deleted file mode 100644 index 70ebe517..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_cyan'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_gray'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_gray'}.png deleted file mode 100644 index 0f4a5da7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_gray'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_green'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_green'}.png deleted file mode 100644 index 559a4358..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_green'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_light_blue'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_light_blue'}.png deleted file mode 100644 index edcd4daa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_light_blue'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_light_gray'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_light_gray'}.png deleted file mode 100644 index 2d3be15a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_light_gray'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_lime'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_lime'}.png deleted file mode 100644 index 76701f58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_lime'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_magenta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_magenta'}.png deleted file mode 100644 index 6d8421d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_magenta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_orange'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_orange'}.png deleted file mode 100644 index db0ea374..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_orange'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_pink'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_pink'}.png deleted file mode 100644 index 8e509fff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_pink'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_purple'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_purple'}.png deleted file mode 100644 index 80b51d14..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_purple'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_red'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_red'}.png deleted file mode 100644 index ec0ac0e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_red'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_white'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_white'}.png deleted file mode 100644 index 8429c28a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_white'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_yellow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_yellow'}.png deleted file mode 100644 index f6f354e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__clear_glass_yellow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass'}.png deleted file mode 100644 index ee17fd59..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_black'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_black'}.png deleted file mode 100644 index 502860f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_black'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_blue'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_blue'}.png deleted file mode 100644 index d815673b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_blue'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_brown'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_brown'}.png deleted file mode 100644 index 09458b29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_brown'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_cyan'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_cyan'}.png deleted file mode 100644 index 19ddbe3a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_cyan'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_gray'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_gray'}.png deleted file mode 100644 index 5da22d92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_gray'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_green'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_green'}.png deleted file mode 100644 index aa95ccaf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_green'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_light_blue'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_light_blue'}.png deleted file mode 100644 index d38a4228..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_light_blue'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_light_gray'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_light_gray'}.png deleted file mode 100644 index a27f7934..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_light_gray'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_lime'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_lime'}.png deleted file mode 100644 index 93f4837e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_lime'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_magenta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_magenta'}.png deleted file mode 100644 index 9baf8cec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_magenta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_orange'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_orange'}.png deleted file mode 100644 index 66f24138..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_orange'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_pink'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_pink'}.png deleted file mode 100644 index b2b86663..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_pink'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_purple'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_purple'}.png deleted file mode 100644 index bc29fa66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_purple'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_red'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_red'}.png deleted file mode 100644 index 37658fe4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_red'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_white'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_white'}.png deleted file mode 100644 index 131396e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_white'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_yellow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_yellow'}.png deleted file mode 100644 index c08b12ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__scratched_glass_yellow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass'}.png deleted file mode 100644 index ec3052bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_black'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_black'}.png deleted file mode 100644 index 7798470b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_black'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_blue'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_blue'}.png deleted file mode 100644 index 8de7927c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_blue'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_brown'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_brown'}.png deleted file mode 100644 index 68a7e053..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_brown'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_cyan'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_cyan'}.png deleted file mode 100644 index ad16aad2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_cyan'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_gray'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_gray'}.png deleted file mode 100644 index ffb4f9c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_gray'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_green'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_green'}.png deleted file mode 100644 index fe7b3d3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_green'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_light_blue'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_light_blue'}.png deleted file mode 100644 index 203cda1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_light_blue'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_light_gray'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_light_gray'}.png deleted file mode 100644 index 318764ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_light_gray'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_lime'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_lime'}.png deleted file mode 100644 index 40293a50..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_lime'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_magenta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_magenta'}.png deleted file mode 100644 index e8d577a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_magenta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_orange'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_orange'}.png deleted file mode 100644 index 8b55fe0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_orange'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_pink'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_pink'}.png deleted file mode 100644 index 849ea718..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_pink'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_purple'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_purple'}.png deleted file mode 100644 index 71d0276b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_purple'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_red'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_red'}.png deleted file mode 100644 index a702d80b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_red'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_white'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_white'}.png deleted file mode 100644 index 073cb712..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_white'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_yellow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_yellow'}.png deleted file mode 100644 index ab50ebaa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'connectedglass__tinted_borderless_glass_yellow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'corn_delight__corn_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'corn_delight__corn_crate'}.png deleted file mode 100644 index 06781117..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'corn_delight__corn_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'corn_delight__corn_kernel_bag'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'corn_delight__corn_kernel_bag'}.png deleted file mode 100644 index 10e5d932..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'corn_delight__corn_kernel_bag'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__acacia_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__acacia_window'}.png deleted file mode 100644 index 366ffb27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__acacia_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__andesite_alloy_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__andesite_alloy_block'}.png deleted file mode 100644 index 2359143b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__andesite_alloy_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__andesite_casing'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__andesite_casing'}.png deleted file mode 100644 index 89cea1d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__andesite_casing'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__andesite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__andesite_pillar'}.png deleted file mode 100644 index 224346fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__andesite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__asurine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__asurine'}.png deleted file mode 100644 index af8b04ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__asurine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__asurine_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__asurine_pillar'}.png deleted file mode 100644 index 49711f55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__asurine_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__bamboo_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__bamboo_window'}.png deleted file mode 100644 index dfa0b9b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__bamboo_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__birch_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__birch_window'}.png deleted file mode 100644 index ea3623fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__birch_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__bound_cardboard_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__bound_cardboard_block'}.png deleted file mode 100644 index c81e6f30..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__bound_cardboard_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__brass_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__brass_block'}.png deleted file mode 100644 index ce76a10e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__brass_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__brass_casing'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__brass_casing'}.png deleted file mode 100644 index f6c860b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__brass_casing'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__calcite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__calcite_pillar'}.png deleted file mode 100644 index 234ed5ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__calcite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cardboard_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cardboard_block'}.png deleted file mode 100644 index 696ccd42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cardboard_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cherry_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cherry_window'}.png deleted file mode 100644 index c0154665..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cherry_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__copper_casing'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__copper_casing'}.png deleted file mode 100644 index 0a162c40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__copper_casing'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__copper_shingles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__copper_shingles'}.png deleted file mode 100644 index f959be93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__copper_shingles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__copper_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__copper_tiles'}.png deleted file mode 100644 index 193c4cc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__copper_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__crimsite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__crimsite'}.png deleted file mode 100644 index 33c2a26f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__crimsite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__crimsite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__crimsite_pillar'}.png deleted file mode 100644 index 61af10f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__crimsite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__crimson_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__crimson_window'}.png deleted file mode 100644 index 54d70e0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__crimson_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_andesite'}.png deleted file mode 100644 index 0572e56f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_andesite_bricks'}.png deleted file mode 100644 index d6e48170..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_asurine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_asurine'}.png deleted file mode 100644 index 58b5ec93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_asurine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_asurine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_asurine_bricks'}.png deleted file mode 100644 index 6e8237fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_asurine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_calcite'}.png deleted file mode 100644 index 17adc263..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_calcite_bricks'}.png deleted file mode 100644 index 6dc3708e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_crimsite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_crimsite'}.png deleted file mode 100644 index 8f6fcba5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_crimsite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_crimsite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_crimsite_bricks'}.png deleted file mode 100644 index 4939c1aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_crimsite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_deepslate'}.png deleted file mode 100644 index 821e3570..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_deepslate_bricks'}.png deleted file mode 100644 index 315db09f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_diorite'}.png deleted file mode 100644 index 199f31aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_diorite_bricks'}.png deleted file mode 100644 index d3398edf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_dripstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_dripstone'}.png deleted file mode 100644 index f8b5b5ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_dripstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_dripstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_dripstone_bricks'}.png deleted file mode 100644 index 17075d36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_dripstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_granite'}.png deleted file mode 100644 index f09f2afd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_granite_bricks'}.png deleted file mode 100644 index 3f49bd8e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_limestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_limestone'}.png deleted file mode 100644 index 280e06eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_limestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_limestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_limestone_bricks'}.png deleted file mode 100644 index 846689ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_limestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_ochrum'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_ochrum'}.png deleted file mode 100644 index f96fbf05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_ochrum'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_ochrum_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_ochrum_bricks'}.png deleted file mode 100644 index da5e865c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_ochrum_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scorchia'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scorchia'}.png deleted file mode 100644 index d164a310..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scorchia'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scorchia_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scorchia_bricks'}.png deleted file mode 100644 index 079a9f0b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scorchia_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scoria'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scoria'}.png deleted file mode 100644 index 801629b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scoria'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scoria_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scoria_bricks'}.png deleted file mode 100644 index 47622cd8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_scoria_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_tuff'}.png deleted file mode 100644 index f4822312..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_tuff_bricks'}.png deleted file mode 100644 index d65757c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_veridium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_veridium'}.png deleted file mode 100644 index d682626a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_veridium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_veridium_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_veridium_bricks'}.png deleted file mode 100644 index 029b71bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__cut_veridium_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__dark_oak_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__dark_oak_window'}.png deleted file mode 100644 index 6fb975a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__dark_oak_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__deepslate_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__deepslate_pillar'}.png deleted file mode 100644 index 40ecc74f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__deepslate_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__deepslate_zinc_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__deepslate_zinc_ore'}.png deleted file mode 100644 index 5623380c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__deepslate_zinc_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__diorite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__diorite_pillar'}.png deleted file mode 100644 index a656db8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__diorite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__dripstone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__dripstone_pillar'}.png deleted file mode 100644 index dd121734..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__dripstone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__experience_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__experience_block'}.png deleted file mode 100644 index b402899b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__experience_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__exposed_copper_shingles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__exposed_copper_shingles'}.png deleted file mode 100644 index babff6f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__exposed_copper_shingles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__exposed_copper_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__exposed_copper_tiles'}.png deleted file mode 100644 index d8571179..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__exposed_copper_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__framed_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__framed_glass'}.png deleted file mode 100644 index 20cc86fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__framed_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__granite_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__granite_pillar'}.png deleted file mode 100644 index 14f86b83..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__granite_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__horizontal_framed_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__horizontal_framed_glass'}.png deleted file mode 100644 index b4f4abca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__horizontal_framed_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__industrial_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__industrial_iron_block'}.png deleted file mode 100644 index c513a466..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__industrial_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__industrial_iron_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__industrial_iron_window'}.png deleted file mode 100644 index bd972413..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__industrial_iron_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__jungle_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__jungle_window'}.png deleted file mode 100644 index b6c00d13..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__jungle_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_andesite'}.png deleted file mode 100644 index 29eb6f43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_asurine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_asurine'}.png deleted file mode 100644 index 4f474e51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_asurine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_calcite'}.png deleted file mode 100644 index 95570162..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_crimsite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_crimsite'}.png deleted file mode 100644 index 89ebbdbf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_crimsite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_deepslate'}.png deleted file mode 100644 index 87b582a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_diorite'}.png deleted file mode 100644 index ef7c6af4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_dripstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_dripstone'}.png deleted file mode 100644 index 8696eeac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_dripstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_granite'}.png deleted file mode 100644 index 4769ce25..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_limestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_limestone'}.png deleted file mode 100644 index 93bac26d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_limestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_ochrum'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_ochrum'}.png deleted file mode 100644 index f475b3fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_ochrum'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_scorchia'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_scorchia'}.png deleted file mode 100644 index 3d2b7737..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_scorchia'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_scoria'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_scoria'}.png deleted file mode 100644 index 9a687c9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_scoria'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_tuff'}.png deleted file mode 100644 index e3384249..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_veridium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_veridium'}.png deleted file mode 100644 index e4b0c4c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__layered_veridium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__limestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__limestone'}.png deleted file mode 100644 index 07bdecb6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__limestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__limestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__limestone_pillar'}.png deleted file mode 100644 index 7f019187..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__limestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__mangrove_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__mangrove_window'}.png deleted file mode 100644 index 37de9f9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__mangrove_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__metal_bracket'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__metal_bracket'}.png deleted file mode 100644 index 785c9970..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__metal_bracket'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__oak_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__oak_window'}.png deleted file mode 100644 index 6208933b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__oak_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__ochrum'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__ochrum'}.png deleted file mode 100644 index 42b841eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__ochrum'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__ochrum_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__ochrum_pillar'}.png deleted file mode 100644 index f64b9579..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__ochrum_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__ornate_iron_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__ornate_iron_window'}.png deleted file mode 100644 index a75d6c23..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__ornate_iron_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__oxidized_copper_shingles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__oxidized_copper_shingles'}.png deleted file mode 100644 index e9f2dfec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__oxidized_copper_shingles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__oxidized_copper_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__oxidized_copper_tiles'}.png deleted file mode 100644 index eb3302e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__oxidized_copper_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_andesite'}.png deleted file mode 100644 index a1722c11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_asurine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_asurine'}.png deleted file mode 100644 index f502447f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_asurine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_calcite'}.png deleted file mode 100644 index 68299447..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_crimsite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_crimsite'}.png deleted file mode 100644 index c71c8667..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_crimsite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_deepslate'}.png deleted file mode 100644 index 9fd382e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_diorite'}.png deleted file mode 100644 index 2682f54c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_dripstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_dripstone'}.png deleted file mode 100644 index 001b5654..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_dripstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_granite'}.png deleted file mode 100644 index 8d311b3a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_limestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_limestone'}.png deleted file mode 100644 index 3898d8ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_limestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_ochrum'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_ochrum'}.png deleted file mode 100644 index 0b68e140..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_ochrum'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_scorchia'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_scorchia'}.png deleted file mode 100644 index e3e4cd57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_scorchia'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_scoria'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_scoria'}.png deleted file mode 100644 index beece357..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_scoria'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_tuff'}.png deleted file mode 100644 index 15d4d94f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_veridium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_veridium'}.png deleted file mode 100644 index 1d52af3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__polished_cut_veridium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__railway_casing'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__railway_casing'}.png deleted file mode 100644 index c296e692..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__railway_casing'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__raw_zinc_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__raw_zinc_block'}.png deleted file mode 100644 index e8042616..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__raw_zinc_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__redstone_contact'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__redstone_contact'}.png deleted file mode 100644 index cb4a05e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__redstone_contact'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__rose_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__rose_quartz_block'}.png deleted file mode 100644 index e3b3b94d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__rose_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__rose_quartz_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__rose_quartz_lamp'}.png deleted file mode 100644 index 7bf5fe8f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__rose_quartz_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__rose_quartz_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__rose_quartz_tiles'}.png deleted file mode 100644 index 32ece29b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__rose_quartz_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__scorchia'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__scorchia'}.png deleted file mode 100644 index c9529d2b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__scorchia'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__scorchia_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__scorchia_pillar'}.png deleted file mode 100644 index 7ae37812..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__scorchia_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__scoria'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__scoria'}.png deleted file mode 100644 index bab6bb5f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__scoria'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__scoria_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__scoria_pillar'}.png deleted file mode 100644 index a8c7804f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__scoria_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_andesite_bricks'}.png deleted file mode 100644 index fcc5f904..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_asurine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_asurine_bricks'}.png deleted file mode 100644 index 832c24cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_asurine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_calcite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_calcite_bricks'}.png deleted file mode 100644 index 61eeeff6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_calcite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_crimsite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_crimsite_bricks'}.png deleted file mode 100644 index 6ea0d6b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_crimsite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_deepslate_bricks'}.png deleted file mode 100644 index e29da258..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_diorite_bricks'}.png deleted file mode 100644 index 2478c5d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_dripstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_dripstone_bricks'}.png deleted file mode 100644 index aa19b617..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_dripstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_granite_bricks'}.png deleted file mode 100644 index dbf06c78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_limestone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_limestone_bricks'}.png deleted file mode 100644 index d1802286..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_limestone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_ochrum_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_ochrum_bricks'}.png deleted file mode 100644 index bc9b2c0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_ochrum_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_rose_quartz_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_rose_quartz_tiles'}.png deleted file mode 100644 index 8706f271..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_rose_quartz_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_scorchia_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_scorchia_bricks'}.png deleted file mode 100644 index 5a3ecb2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_scorchia_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_scoria_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_scoria_bricks'}.png deleted file mode 100644 index a862dbdb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_scoria_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_tuff_bricks'}.png deleted file mode 100644 index 83f5c958..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_veridium_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_veridium_bricks'}.png deleted file mode 100644 index d7b8268b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__small_veridium_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__spruce_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__spruce_window'}.png deleted file mode 100644 index 2d68bb45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__spruce_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__tiled_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__tiled_glass'}.png deleted file mode 100644 index 15d92ad3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__tiled_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__tuff_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__tuff_pillar'}.png deleted file mode 100644 index 1f1bf8a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__tuff_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__veridium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__veridium'}.png deleted file mode 100644 index d79b43ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__veridium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__veridium_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__veridium_pillar'}.png deleted file mode 100644 index b7260c19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__veridium_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__vertical_framed_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__vertical_framed_glass'}.png deleted file mode 100644 index 34570f6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__vertical_framed_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__warped_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__warped_window'}.png deleted file mode 100644 index 56b03f8c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__warped_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_copper_shingles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_copper_shingles'}.png deleted file mode 100644 index f959be93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_copper_shingles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_copper_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_copper_tiles'}.png deleted file mode 100644 index 193c4cc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_copper_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_exposed_copper_shingles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_exposed_copper_shingles'}.png deleted file mode 100644 index babff6f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_exposed_copper_shingles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_exposed_copper_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_exposed_copper_tiles'}.png deleted file mode 100644 index d8571179..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_exposed_copper_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_oxidized_copper_shingles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_oxidized_copper_shingles'}.png deleted file mode 100644 index e9f2dfec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_oxidized_copper_shingles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_oxidized_copper_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_oxidized_copper_tiles'}.png deleted file mode 100644 index eb3302e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_oxidized_copper_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_weathered_copper_shingles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_weathered_copper_shingles'}.png deleted file mode 100644 index 2de0da0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_weathered_copper_shingles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_weathered_copper_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_weathered_copper_tiles'}.png deleted file mode 100644 index 67691515..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__waxed_weathered_copper_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_copper_shingles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_copper_shingles'}.png deleted file mode 100644 index 2de0da0c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_copper_shingles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_copper_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_copper_tiles'}.png deleted file mode 100644 index 67691515..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_copper_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_iron_block'}.png deleted file mode 100644 index 184ded42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_iron_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_iron_window'}.png deleted file mode 100644 index 151eebb1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__weathered_iron_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__wooden_bracket'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__wooden_bracket'}.png deleted file mode 100644 index 21850f45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__wooden_bracket'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__zinc_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__zinc_block'}.png deleted file mode 100644 index a3d2ca53..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__zinc_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create__zinc_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create__zinc_ore'}.png deleted file mode 100644 index 910ef41b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create__zinc_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__empty_fan_catalyst'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__empty_fan_catalyst'}.png deleted file mode 100644 index 85ba1742..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__empty_fan_catalyst'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_blasting_catalyst'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_blasting_catalyst'}.png deleted file mode 100644 index 10ffba43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_blasting_catalyst'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_ending_catalyst_dragons_breath'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_ending_catalyst_dragons_breath'}.png deleted file mode 100644 index 50a7475c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_ending_catalyst_dragons_breath'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_freezing_catalyst'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_freezing_catalyst'}.png deleted file mode 100644 index 0f85f188..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_freezing_catalyst'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_haunting_catalyst'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_haunting_catalyst'}.png deleted file mode 100644 index 434d0ae2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_haunting_catalyst'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_sanding_catalyst'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_sanding_catalyst'}.png deleted file mode 100644 index a006241a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_sanding_catalyst'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_smoking_catalyst'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_smoking_catalyst'}.png deleted file mode 100644 index 05db6039..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_smoking_catalyst'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_splashing_catalyst'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_splashing_catalyst'}.png deleted file mode 100644 index 10294fb5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create_connected__fan_splashing_catalyst'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'create_enchantment_industry__super_experience_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'create_enchantment_industry__super_experience_block'}.png deleted file mode 100644 index 97c50574..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'create_enchantment_industry__super_experience_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'createaddition__biomass_pellet_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'createaddition__biomass_pellet_block'}.png deleted file mode 100644 index 6deac330..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'createaddition__biomass_pellet_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'createaddition__electrum_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'createaddition__electrum_block'}.png deleted file mode 100644 index 0d324101..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'createaddition__electrum_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'endersdelight__chorus_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'endersdelight__chorus_crate'}.png deleted file mode 100644 index 30ae7a38..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'endersdelight__chorus_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'ends_delight__chorus_fruit_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'ends_delight__chorus_fruit_crate'}.png deleted file mode 100644 index 890a2636..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'ends_delight__chorus_fruit_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__beetroot_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__beetroot_crate'}.png deleted file mode 100644 index 6fff34e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__beetroot_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__cabbage_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__cabbage_crate'}.png deleted file mode 100644 index 22c11446..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__cabbage_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__carrot_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__carrot_crate'}.png deleted file mode 100644 index 3148e3a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__carrot_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__onion_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__onion_crate'}.png deleted file mode 100644 index 88acbe93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__onion_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__organic_compost'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__organic_compost'}.png deleted file mode 100644 index 49e39b71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__organic_compost'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__potato_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__potato_crate'}.png deleted file mode 100644 index 871573e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__potato_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__rice_bag'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__rice_bag'}.png deleted file mode 100644 index 702efb3f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__rice_bag'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__rice_bale'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__rice_bale'}.png deleted file mode 100644 index cdb05713..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__rice_bale'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__rich_soil'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__rich_soil'}.png deleted file mode 100644 index 51d29b27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__rich_soil'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__straw_bale'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__straw_bale'}.png deleted file mode 100644 index 118f2e8a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__straw_bale'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__tatami'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__tatami'}.png deleted file mode 100644 index ee6425cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__tatami'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__tomato_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__tomato_crate'}.png deleted file mode 100644 index d470ced8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'farmersdelight__tomato_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'illagerinvasion__imbuing_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'illagerinvasion__imbuing_table'}.png deleted file mode 100644 index 47e4555c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'illagerinvasion__imbuing_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__alloybrick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__alloybrick'}.png deleted file mode 100644 index 2dc14ae6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__alloybrick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__basic_engineering'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__basic_engineering'}.png deleted file mode 100644 index 7d1fb1b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__basic_engineering'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__blastbrick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__blastbrick'}.png deleted file mode 100644 index 54386b88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__blastbrick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__blastbrick_reinforced'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__blastbrick_reinforced'}.png deleted file mode 100644 index 4d2a1243..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__blastbrick_reinforced'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__clinker_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__clinker_brick'}.png deleted file mode 100644 index f0f4815e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__clinker_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__clinker_brick_quoin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__clinker_brick_quoin'}.png deleted file mode 100644 index 1a6729b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__clinker_brick_quoin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__clinker_brick_sill'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__clinker_brick_sill'}.png deleted file mode 100644 index 7e4a0277..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__clinker_brick_sill'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coil_hv'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coil_hv'}.png deleted file mode 100644 index e6628f34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coil_hv'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coil_lv'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coil_lv'}.png deleted file mode 100644 index bedd0b3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coil_lv'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coil_mv'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coil_mv'}.png deleted file mode 100644 index c8f4cfd7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coil_mv'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coke'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coke'}.png deleted file mode 100644 index e32af38e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__coke'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__cokebrick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__cokebrick'}.png deleted file mode 100644 index febfd049..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__cokebrick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete'}.png deleted file mode 100644 index d0c013e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_brick'}.png deleted file mode 100644 index 4bd182a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_brick_cracked'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_brick_cracked'}.png deleted file mode 100644 index 9b5d9c46..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_brick_cracked'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_chiseled'}.png deleted file mode 100644 index b7e2ade5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_leaded'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_leaded'}.png deleted file mode 100644 index b016f77d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_leaded'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_pillar'}.png deleted file mode 100644 index 8c09795d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_reinforced'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_reinforced'}.png deleted file mode 100644 index d495922a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_reinforced'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_reinforced_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_reinforced_tile'}.png deleted file mode 100644 index bede5390..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_reinforced_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_sprayed'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_sprayed'}.png deleted file mode 100644 index 89c3d992..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_sprayed'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_tile'}.png deleted file mode 100644 index af1921d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__concrete_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__cushion'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__cushion'}.png deleted file mode 100644 index d1463e7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__cushion'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_aluminum'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_aluminum'}.png deleted file mode 100644 index fcaa36de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_aluminum'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_lead'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_lead'}.png deleted file mode 100644 index 82df02dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_lead'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_nickel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_nickel'}.png deleted file mode 100644 index 08470198..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_nickel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_silver'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_silver'}.png deleted file mode 100644 index 824b73b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_silver'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_uranium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_uranium'}.png deleted file mode 100644 index 03608a29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__deepslate_ore_uranium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__duroplast'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__duroplast'}.png deleted file mode 100644 index c1ff4821..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__duroplast'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__fiberboard'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__fiberboard'}.png deleted file mode 100644 index 7e50f963..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__fiberboard'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__generator'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__generator'}.png deleted file mode 100644 index f6714a24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__generator'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__grit_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__grit_sand'}.png deleted file mode 100644 index 0d3a9a7f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__grit_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__gunpowder_barrel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__gunpowder_barrel'}.png deleted file mode 100644 index 8e5a880a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__gunpowder_barrel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__heavy_engineering'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__heavy_engineering'}.png deleted file mode 100644 index c46ddd15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__heavy_engineering'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete'}.png deleted file mode 100644 index f374f326..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_brick'}.png deleted file mode 100644 index 1506c627..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_brick_cracked'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_brick_cracked'}.png deleted file mode 100644 index 47f25c2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_brick_cracked'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_chiseled'}.png deleted file mode 100644 index a646524b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_pillar'}.png deleted file mode 100644 index e418b8fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__hempcrete_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__insulating_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__insulating_glass'}.png deleted file mode 100644 index 734d5da7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__insulating_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__light_engineering'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__light_engineering'}.png deleted file mode 100644 index 1aee924b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__light_engineering'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_aluminum'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_aluminum'}.png deleted file mode 100644 index a27d5f24..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_aluminum'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_lead'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_lead'}.png deleted file mode 100644 index 82305d79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_lead'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_nickel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_nickel'}.png deleted file mode 100644 index 582b3205..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_nickel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_silver'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_silver'}.png deleted file mode 100644 index 7463b3f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_silver'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_uranium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_uranium'}.png deleted file mode 100644 index 5d4144fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__ore_uranium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__radiator'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__radiator'}.png deleted file mode 100644 index c71a1b71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__radiator'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_aluminum'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_aluminum'}.png deleted file mode 100644 index 1aefc5fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_aluminum'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_lead'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_lead'}.png deleted file mode 100644 index e53cf204..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_lead'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_nickel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_nickel'}.png deleted file mode 100644 index b7948c1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_nickel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_silver'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_silver'}.png deleted file mode 100644 index e2b45a4b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_silver'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_uranium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_uranium'}.png deleted file mode 100644 index 45b03729..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__raw_block_uranium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__resonanz_engineering'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__resonanz_engineering'}.png deleted file mode 100644 index 5ed07362..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__resonanz_engineering'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__rs_engineering'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__rs_engineering'}.png deleted file mode 100644 index 58d47cdf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__rs_engineering'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_aluminum'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_aluminum'}.png deleted file mode 100644 index 7f21021a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_aluminum'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_black'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_black'}.png deleted file mode 100644 index 69241111..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_black'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_blue'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_blue'}.png deleted file mode 100644 index 97b9d4cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_blue'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_brown'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_brown'}.png deleted file mode 100644 index 206fef06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_brown'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_cyan'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_cyan'}.png deleted file mode 100644 index e6019466..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_cyan'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_gray'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_gray'}.png deleted file mode 100644 index bb956c4f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_gray'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_green'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_green'}.png deleted file mode 100644 index 5cc3f1c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_green'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_light_blue'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_light_blue'}.png deleted file mode 100644 index 61c04b50..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_light_blue'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_light_gray'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_light_gray'}.png deleted file mode 100644 index 4a4d1d99..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_light_gray'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_lime'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_lime'}.png deleted file mode 100644 index eb27dc0d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_lime'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_magenta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_magenta'}.png deleted file mode 100644 index fa2fba95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_magenta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_orange'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_orange'}.png deleted file mode 100644 index c5670d38..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_orange'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_pink'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_pink'}.png deleted file mode 100644 index 10fd7d5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_pink'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_purple'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_purple'}.png deleted file mode 100644 index a95ec1b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_purple'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_red'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_red'}.png deleted file mode 100644 index 15b9f8a4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_red'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_white'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_white'}.png deleted file mode 100644 index f2ffcb81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_white'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_yellow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_yellow'}.png deleted file mode 100644 index 23c2ac4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_colored_yellow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_constantan'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_constantan'}.png deleted file mode 100644 index 00c579ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_constantan'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_copper'}.png deleted file mode 100644 index 278d7679..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_electrum'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_electrum'}.png deleted file mode 100644 index 1f7b1e8a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_electrum'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_gold'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_gold'}.png deleted file mode 100644 index f9b8e195..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_gold'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_iron'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_iron'}.png deleted file mode 100644 index de73357c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_iron'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_lead'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_lead'}.png deleted file mode 100644 index 8a8d3399..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_lead'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_nickel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_nickel'}.png deleted file mode 100644 index dd921903..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_nickel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_silver'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_silver'}.png deleted file mode 100644 index 94ec69db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_silver'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_steel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_steel'}.png deleted file mode 100644 index 9e807c0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_steel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_uranium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_uranium'}.png deleted file mode 100644 index 446a1476..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__sheetmetal_uranium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__slag_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__slag_brick'}.png deleted file mode 100644 index 98386c97..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__slag_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__slag_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__slag_glass'}.png deleted file mode 100644 index 90688296..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__slag_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__slag_gravel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__slag_gravel'}.png deleted file mode 100644 index 3ee28631..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__slag_gravel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_aluminum'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_aluminum'}.png deleted file mode 100644 index 021c93f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_aluminum'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_constantan'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_constantan'}.png deleted file mode 100644 index 8a098ddb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_constantan'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_electrum'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_electrum'}.png deleted file mode 100644 index 4e8f8317..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_electrum'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_lead'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_lead'}.png deleted file mode 100644 index 2bcaa0c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_lead'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_nickel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_nickel'}.png deleted file mode 100644 index 78fa2e48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_nickel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_silver'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_silver'}.png deleted file mode 100644 index 8bb0bb44..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_silver'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_steel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_steel'}.png deleted file mode 100644 index 62da4929..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_steel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_uranium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_uranium'}.png deleted file mode 100644 index 741940de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__storage_uranium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__treated_wood_horizontal'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__treated_wood_horizontal'}.png deleted file mode 100644 index b52b4463..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__treated_wood_horizontal'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__treated_wood_packaged'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__treated_wood_packaged'}.png deleted file mode 100644 index 2f318b32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__treated_wood_packaged'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__treated_wood_vertical'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__treated_wood_vertical'}.png deleted file mode 100644 index fe56f2ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'immersiveengineering__treated_wood_vertical'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__aspen_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__aspen_counter'}.png deleted file mode 100644 index edfc9a1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__aspen_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__baobab_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__baobab_counter'}.png deleted file mode 100644 index 8b765571..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__baobab_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__blue_enchanted_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__blue_enchanted_counter'}.png deleted file mode 100644 index 7fdc0ad0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__blue_enchanted_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__cika_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__cika_counter'}.png deleted file mode 100644 index 78f16cb9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__cika_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__cypress_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__cypress_counter'}.png deleted file mode 100644 index 0c449b33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__cypress_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__ebony_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__ebony_counter'}.png deleted file mode 100644 index 7ae527b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__ebony_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__fir_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__fir_counter'}.png deleted file mode 100644 index 51551c1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__fir_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__florus_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__florus_counter'}.png deleted file mode 100644 index 2b7af8fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__florus_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__green_enchanted_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__green_enchanted_counter'}.png deleted file mode 100644 index a30fbc53..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__green_enchanted_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__holly_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__holly_counter'}.png deleted file mode 100644 index 8a486585..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__holly_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__ironwood_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__ironwood_counter'}.png deleted file mode 100644 index 83d8753e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__ironwood_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__jacaranda_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__jacaranda_counter'}.png deleted file mode 100644 index 779ee122..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__jacaranda_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__mahogany_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__mahogany_counter'}.png deleted file mode 100644 index d0bd3479..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__mahogany_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__maple_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__maple_counter'}.png deleted file mode 100644 index 633e072c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__maple_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__palm_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__palm_counter'}.png deleted file mode 100644 index 80dbd9d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__palm_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__pine_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__pine_counter'}.png deleted file mode 100644 index 0e8c0b87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__pine_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__rainbow_eucalyptus_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__rainbow_eucalyptus_counter'}.png deleted file mode 100644 index 3ff3094f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__rainbow_eucalyptus_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__redwood_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__redwood_counter'}.png deleted file mode 100644 index 1be9771a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__redwood_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__sakura_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__sakura_counter'}.png deleted file mode 100644 index 3365a11e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__sakura_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__skyris_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__skyris_counter'}.png deleted file mode 100644 index a500c636..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__skyris_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_aspen_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_aspen_counter'}.png deleted file mode 100644 index c5a4f950..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_aspen_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_baobab_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_baobab_counter'}.png deleted file mode 100644 index 70bd9f95..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_baobab_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_blue_enchanted_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_blue_enchanted_counter'}.png deleted file mode 100644 index 903f8d02..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_blue_enchanted_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_cika_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_cika_counter'}.png deleted file mode 100644 index 86cda271..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_cika_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_cypress_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_cypress_counter'}.png deleted file mode 100644 index 2c8ec7ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_cypress_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_ebony_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_ebony_counter'}.png deleted file mode 100644 index 005bb4bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_ebony_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_fir_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_fir_counter'}.png deleted file mode 100644 index a2b4178f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_fir_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_florus_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_florus_counter'}.png deleted file mode 100644 index bd5b175d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_florus_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_green_enchanted_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_green_enchanted_counter'}.png deleted file mode 100644 index 9555d6c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_green_enchanted_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_holly_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_holly_counter'}.png deleted file mode 100644 index 185c3e7b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_holly_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_ironwood_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_ironwood_counter'}.png deleted file mode 100644 index 016129d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_ironwood_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_jacaranda_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_jacaranda_counter'}.png deleted file mode 100644 index 351036bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_jacaranda_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_mahogany_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_mahogany_counter'}.png deleted file mode 100644 index 09477051..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_mahogany_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_maple_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_maple_counter'}.png deleted file mode 100644 index da11b999..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_maple_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_palm_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_palm_counter'}.png deleted file mode 100644 index ae25d961..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_palm_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_pine_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_pine_counter'}.png deleted file mode 100644 index a8142886..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_pine_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_rainbow_eucalyptus_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_rainbow_eucalyptus_counter'}.png deleted file mode 100644 index 77bfc536..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_rainbow_eucalyptus_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_redwood_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_redwood_counter'}.png deleted file mode 100644 index 9e42582b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_redwood_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_sakura_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_sakura_counter'}.png deleted file mode 100644 index a0cce623..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_sakura_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_skyris_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_skyris_counter'}.png deleted file mode 100644 index 6790c73d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_skyris_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_white_mangrove_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_white_mangrove_counter'}.png deleted file mode 100644 index cdbc5486..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_white_mangrove_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_willow_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_willow_counter'}.png deleted file mode 100644 index 1dd4b862..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_willow_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_witch_hazel_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_witch_hazel_counter'}.png deleted file mode 100644 index 8bff35e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_witch_hazel_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_zelkova_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_zelkova_counter'}.png deleted file mode 100644 index 0fb85c3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__stripped_zelkova_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__white_mangrove_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__white_mangrove_counter'}.png deleted file mode 100644 index 85520ea7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__white_mangrove_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__willow_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__willow_counter'}.png deleted file mode 100644 index 976a6a34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__willow_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__witch_hazel_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__witch_hazel_counter'}.png deleted file mode 100644 index d31fd3a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__witch_hazel_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__zelkova_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__zelkova_counter'}.png deleted file mode 100644 index 8b071237..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwbyg__zelkova_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__acacia_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__acacia_counter'}.png deleted file mode 100644 index 0ae8376c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__acacia_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__birch_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__birch_counter'}.png deleted file mode 100644 index 12aa6e76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__birch_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__cherry_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__cherry_counter'}.png deleted file mode 100644 index e375f468..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__cherry_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__crimson_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__crimson_counter'}.png deleted file mode 100644 index dd8bd2fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__crimson_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__dark_oak_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__dark_oak_counter'}.png deleted file mode 100644 index a3473da0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__dark_oak_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__jungle_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__jungle_counter'}.png deleted file mode 100644 index 4da0c5d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__jungle_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__mangrove_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__mangrove_counter'}.png deleted file mode 100644 index 3746d256..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__mangrove_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__oak_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__oak_counter'}.png deleted file mode 100644 index 87719e28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__oak_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__spruce_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__spruce_counter'}.png deleted file mode 100644 index 73d69753..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__spruce_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_acacia_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_acacia_counter'}.png deleted file mode 100644 index 54e91273..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_acacia_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_birch_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_birch_counter'}.png deleted file mode 100644 index e7ae5242..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_birch_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_cherry_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_cherry_counter'}.png deleted file mode 100644 index 3860eee3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_cherry_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_crimson_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_crimson_counter'}.png deleted file mode 100644 index 2cdbb487..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_crimson_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_dark_oak_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_dark_oak_counter'}.png deleted file mode 100644 index bdcaeeb0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_dark_oak_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_jungle_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_jungle_counter'}.png deleted file mode 100644 index 5f52b121..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_jungle_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_mangrove_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_mangrove_counter'}.png deleted file mode 100644 index a518cbf1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_mangrove_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_oak_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_oak_counter'}.png deleted file mode 100644 index d6a9661f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_oak_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_spruce_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_spruce_counter'}.png deleted file mode 100644 index 1047f810..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_spruce_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_warped_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_warped_counter'}.png deleted file mode 100644 index 77a046fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__stripped_warped_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__warped_counter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__warped_counter'}.png deleted file mode 100644 index 9a3c8e35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwfurnitures__warped_counter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_crystal_floor'}.png deleted file mode 100644 index 669daafc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_flagstone'}.png deleted file mode 100644 index 01977dd9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_running_bond'}.png deleted file mode 100644 index 8bb5e3c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_windmill_weave'}.png deleted file mode 100644 index e73129b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__andesite_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_crystal_floor'}.png deleted file mode 100644 index f5d7b4ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_flagstone'}.png deleted file mode 100644 index ff8a9dae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_running_bond'}.png deleted file mode 100644 index 7b5606e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_windmill_weave'}.png deleted file mode 100644 index c94c9cf3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__blackstone_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_crystal_floor'}.png deleted file mode 100644 index b08cecc9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_flagstone'}.png deleted file mode 100644 index 7f0977f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_running_bond'}.png deleted file mode 100644 index 8cf413df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_windmill_weave'}.png deleted file mode 100644 index 1c5aec5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__brick_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_crystal_floor'}.png deleted file mode 100644 index 4bdcaf12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_flagstone'}.png deleted file mode 100644 index de1add29..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_running_bond'}.png deleted file mode 100644 index 211bda54..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_windmill_weave'}.png deleted file mode 100644 index 24df082f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__cobbled_deepslate_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_crystal_floor'}.png deleted file mode 100644 index 574f5deb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_flagstone'}.png deleted file mode 100644 index 31fb5901..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_running_bond'}.png deleted file mode 100644 index 5003d5da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_windmill_weave'}.png deleted file mode 100644 index 21920e4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dark_prismarine_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_crystal_floor'}.png deleted file mode 100644 index 98bd2235..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_flagstone'}.png deleted file mode 100644 index ac98076b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_running_bond'}.png deleted file mode 100644 index a36a0268..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_windmill_weave'}.png deleted file mode 100644 index 75d16f9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__deepslate_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_crystal_floor'}.png deleted file mode 100644 index e431f641..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_flagstone'}.png deleted file mode 100644 index 7eec6cc0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_running_bond'}.png deleted file mode 100644 index 3e579689..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_windmill_weave'}.png deleted file mode 100644 index ffe3595a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__diorite_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dirt_path_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dirt_path_block'}.png deleted file mode 100644 index 5bb2d6f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__dirt_path_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_crystal_floor'}.png deleted file mode 100644 index a83cc47f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_flagstone'}.png deleted file mode 100644 index f44b8abf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_running_bond'}.png deleted file mode 100644 index 128a6b3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_windmill_weave'}.png deleted file mode 100644 index 75138430..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__granite_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__gravel_path_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__gravel_path_block'}.png deleted file mode 100644 index a6be902c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__gravel_path_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_crystal_floor'}.png deleted file mode 100644 index 5a8ce0e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_flagstone'}.png deleted file mode 100644 index cc5c8319..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_running_bond'}.png deleted file mode 100644 index 09f69c48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_windmill_weave'}.png deleted file mode 100644 index e2a5ebf9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mossy_stone_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_crystal_floor'}.png deleted file mode 100644 index ff5de6e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_flagstone'}.png deleted file mode 100644 index 9eb4b97a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_running_bond'}.png deleted file mode 100644 index d5008e5f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_windmill_weave'}.png deleted file mode 100644 index 719d2cac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__mud_brick_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__podzol_path_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__podzol_path_block'}.png deleted file mode 100644 index 25faafca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__podzol_path_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sand_path_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sand_path_block'}.png deleted file mode 100644 index 7ca4b435..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sand_path_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_crystal_floor'}.png deleted file mode 100644 index c1ee63cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_flagstone'}.png deleted file mode 100644 index 75525f56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_running_bond'}.png deleted file mode 100644 index 78a216a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_windmill_weave'}.png deleted file mode 100644 index 3f863053..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__red_sandstone_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sand_path_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sand_path_block'}.png deleted file mode 100644 index 463cc1e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sand_path_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_crystal_floor'}.png deleted file mode 100644 index 841aea1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_flagstone'}.png deleted file mode 100644 index 31548c89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_running_bond'}.png deleted file mode 100644 index f0a7311a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_windmill_weave'}.png deleted file mode 100644 index 98969eff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__sandstone_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_crystal_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_crystal_floor'}.png deleted file mode 100644 index c8273ddf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_crystal_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_flagstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_flagstone'}.png deleted file mode 100644 index 6ba95a23..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_flagstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_running_bond'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_running_bond'}.png deleted file mode 100644 index b4db0cdc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_running_bond'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_windmill_weave'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_windmill_weave'}.png deleted file mode 100644 index ea796307..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwpaths__stone_windmill_weave'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__base_roof_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__base_roof_block'}.png deleted file mode 100644 index e643c95c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__base_roof_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__black_roof_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__black_roof_block'}.png deleted file mode 100644 index ced1bfbe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__black_roof_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__gray_roof_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__gray_roof_block'}.png deleted file mode 100644 index 3532a834..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__gray_roof_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__light_gray_roof_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__light_gray_roof_block'}.png deleted file mode 100644 index a35eeb5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__light_gray_roof_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__white_roof_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__white_roof_block'}.png deleted file mode 100644 index 86edeff3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwroofs__white_roof_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__black_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__black_mosaic_glass'}.png deleted file mode 100644 index 9f7e7a07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__black_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__blue_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__blue_mosaic_glass'}.png deleted file mode 100644 index 534213fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__blue_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__brown_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__brown_mosaic_glass'}.png deleted file mode 100644 index 12c27f6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__brown_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__cyan_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__cyan_mosaic_glass'}.png deleted file mode 100644 index 4fb46a8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__cyan_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__gray_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__gray_mosaic_glass'}.png deleted file mode 100644 index 2e897bef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__gray_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__green_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__green_mosaic_glass'}.png deleted file mode 100644 index f9a7aa1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__green_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__light_blue_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__light_blue_mosaic_glass'}.png deleted file mode 100644 index 8a26c4f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__light_blue_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__light_gray_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__light_gray_mosaic_glass'}.png deleted file mode 100644 index 02099271..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__light_gray_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__lime_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__lime_mosaic_glass'}.png deleted file mode 100644 index 9e9a65df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__lime_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__magenta_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__magenta_mosaic_glass'}.png deleted file mode 100644 index f487adab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__magenta_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__one_way_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__one_way_glass'}.png deleted file mode 100644 index f95bc16b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__one_way_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__orange_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__orange_mosaic_glass'}.png deleted file mode 100644 index 0999cd7f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__orange_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__pink_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__pink_mosaic_glass'}.png deleted file mode 100644 index 2665c60e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__pink_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__purple_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__purple_mosaic_glass'}.png deleted file mode 100644 index 93688276..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__purple_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__red_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__red_mosaic_glass'}.png deleted file mode 100644 index 8e4593cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__red_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__white_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__white_mosaic_glass'}.png deleted file mode 100644 index 4c6819fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__white_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__yellow_mosaic_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__yellow_mosaic_glass'}.png deleted file mode 100644 index 3de5f475..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mcwwindows__yellow_mosaic_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_bio_fuel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_bio_fuel'}.png deleted file mode 100644 index 23528e61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_bio_fuel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_bronze'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_bronze'}.png deleted file mode 100644 index 49f8e2aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_bronze'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_charcoal'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_charcoal'}.png deleted file mode 100644 index 05198d34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_charcoal'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_fluorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_fluorite'}.png deleted file mode 100644 index 4b7a7474..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_fluorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_lead'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_lead'}.png deleted file mode 100644 index ac47c109..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_lead'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_osmium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_osmium'}.png deleted file mode 100644 index 23cc2d56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_osmium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_lead'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_lead'}.png deleted file mode 100644 index ba7eb09e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_lead'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_osmium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_osmium'}.png deleted file mode 100644 index 8a981ce9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_osmium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_tin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_tin'}.png deleted file mode 100644 index 613d91b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_tin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_uranium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_uranium'}.png deleted file mode 100644 index 142b2ed3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_raw_uranium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_refined_glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_refined_glowstone'}.png deleted file mode 100644 index 91b1cd4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_refined_glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_refined_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_refined_obsidian'}.png deleted file mode 100644 index 480a1784..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_refined_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_salt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_salt'}.png deleted file mode 100644 index 7b86d92d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_salt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_steel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_steel'}.png deleted file mode 100644 index a570054f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_steel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_tin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_tin'}.png deleted file mode 100644 index ad96fe9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_tin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_uranium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_uranium'}.png deleted file mode 100644 index f8f50f2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__block_uranium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_fluorite_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_fluorite_ore'}.png deleted file mode 100644 index 4e56c2c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_fluorite_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_lead_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_lead_ore'}.png deleted file mode 100644 index 1ca0d42d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_lead_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_osmium_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_osmium_ore'}.png deleted file mode 100644 index 60a4d119..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_osmium_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_tin_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_tin_ore'}.png deleted file mode 100644 index cfb68317..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_tin_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_uranium_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_uranium_ore'}.png deleted file mode 100644 index 686ebb65..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__deepslate_uranium_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__fluorite_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__fluorite_ore'}.png deleted file mode 100644 index 2aea2911..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__fluorite_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__lead_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__lead_ore'}.png deleted file mode 100644 index 18900a39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__lead_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__osmium_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__osmium_ore'}.png deleted file mode 100644 index c922d13a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__osmium_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__steel_casing'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__steel_casing'}.png deleted file mode 100644 index 04142f88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__steel_casing'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__teleporter_frame'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__teleporter_frame'}.png deleted file mode 100644 index a7075930..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__teleporter_frame'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__tin_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__tin_ore'}.png deleted file mode 100644 index 6b87825f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__tin_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__uranium_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__uranium_ore'}.png deleted file mode 100644 index c668416c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanism__uranium_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic'}.png deleted file mode 100644 index fd6d1284..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic_glow'}.png deleted file mode 100644 index 5f7f14a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic_road'}.png deleted file mode 100644 index 5f7f14a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic_transparent'}.png deleted file mode 100644 index 6bf418a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_reinforced_plastic'}.png deleted file mode 100644 index 179017d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_slick_plastic'}.png deleted file mode 100644 index d26716f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__aqua_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic'}.png deleted file mode 100644 index a01db7bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic_glow'}.png deleted file mode 100644 index d9a43766..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic_road'}.png deleted file mode 100644 index d9a43766..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic_transparent'}.png deleted file mode 100644 index 02489954..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_reinforced_plastic'}.png deleted file mode 100644 index fc556e7b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_slick_plastic'}.png deleted file mode 100644 index e946c96b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__black_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic'}.png deleted file mode 100644 index 94171e28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic_glow'}.png deleted file mode 100644 index dcd08fc4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic_road'}.png deleted file mode 100644 index dcd08fc4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic_transparent'}.png deleted file mode 100644 index 298127b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_reinforced_plastic'}.png deleted file mode 100644 index e48c71e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_slick_plastic'}.png deleted file mode 100644 index a9fd4130..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__blue_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic'}.png deleted file mode 100644 index 7bf9cbcf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic_glow'}.png deleted file mode 100644 index c90c13ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic_road'}.png deleted file mode 100644 index c90c13ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic_transparent'}.png deleted file mode 100644 index 3b4840ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_reinforced_plastic'}.png deleted file mode 100644 index ee24142d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_slick_plastic'}.png deleted file mode 100644 index 0d6369d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__brown_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic'}.png deleted file mode 100644 index 1e2c5fde..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic_glow'}.png deleted file mode 100644 index f1234084..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic_road'}.png deleted file mode 100644 index f1234084..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic_transparent'}.png deleted file mode 100644 index 95d5e867..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_reinforced_plastic'}.png deleted file mode 100644 index f946ded6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_slick_plastic'}.png deleted file mode 100644 index 5b234208..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__cyan_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic'}.png deleted file mode 100644 index 12fd696a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic_glow'}.png deleted file mode 100644 index e1f32f01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic_road'}.png deleted file mode 100644 index e1f32f01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic_transparent'}.png deleted file mode 100644 index 39b54ffe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_reinforced_plastic'}.png deleted file mode 100644 index 30999a62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_slick_plastic'}.png deleted file mode 100644 index 43ccc59b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__dark_red_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic'}.png deleted file mode 100644 index d5049d2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic_glow'}.png deleted file mode 100644 index 420b2ef5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic_road'}.png deleted file mode 100644 index 420b2ef5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic_transparent'}.png deleted file mode 100644 index 31a3a1d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_reinforced_plastic'}.png deleted file mode 100644 index 654d7aaf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_slick_plastic'}.png deleted file mode 100644 index 415da616..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__gray_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic'}.png deleted file mode 100644 index cedf1086..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic_glow'}.png deleted file mode 100644 index 8fb34293..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic_road'}.png deleted file mode 100644 index 8fb34293..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic_transparent'}.png deleted file mode 100644 index 2e12bb61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_reinforced_plastic'}.png deleted file mode 100644 index c03fbb27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_slick_plastic'}.png deleted file mode 100644 index cf4f4657..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__green_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic'}.png deleted file mode 100644 index f825eb42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic_glow'}.png deleted file mode 100644 index fddfe432..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic_road'}.png deleted file mode 100644 index fddfe432..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic_transparent'}.png deleted file mode 100644 index 73ad550b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_reinforced_plastic'}.png deleted file mode 100644 index 823cc824..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_slick_plastic'}.png deleted file mode 100644 index 237707a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_blue_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic'}.png deleted file mode 100644 index deae97ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic_glow'}.png deleted file mode 100644 index 1e77add3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic_road'}.png deleted file mode 100644 index 1e77add3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic_transparent'}.png deleted file mode 100644 index 040e5f90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_reinforced_plastic'}.png deleted file mode 100644 index 81544476..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_slick_plastic'}.png deleted file mode 100644 index b1e629be..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__light_gray_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic'}.png deleted file mode 100644 index 527e7251..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic_glow'}.png deleted file mode 100644 index f96424e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic_road'}.png deleted file mode 100644 index f96424e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic_transparent'}.png deleted file mode 100644 index 920e7f74..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_reinforced_plastic'}.png deleted file mode 100644 index 19880e06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_slick_plastic'}.png deleted file mode 100644 index 3f516885..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__lime_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic'}.png deleted file mode 100644 index 12ea667b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic_glow'}.png deleted file mode 100644 index 68441e4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic_road'}.png deleted file mode 100644 index 68441e4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic_transparent'}.png deleted file mode 100644 index 413a1f38..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_reinforced_plastic'}.png deleted file mode 100644 index 480ac7a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_slick_plastic'}.png deleted file mode 100644 index a6edbd69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__magenta_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic'}.png deleted file mode 100644 index 691d3cb8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic_glow'}.png deleted file mode 100644 index bfab7c0d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic_road'}.png deleted file mode 100644 index bfab7c0d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic_transparent'}.png deleted file mode 100644 index c566d92b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_reinforced_plastic'}.png deleted file mode 100644 index 145c4fee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_slick_plastic'}.png deleted file mode 100644 index cef2321e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__orange_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic'}.png deleted file mode 100644 index 745e77c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic_glow'}.png deleted file mode 100644 index a788f2ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic_road'}.png deleted file mode 100644 index a788f2ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic_transparent'}.png deleted file mode 100644 index ceab7f55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_reinforced_plastic'}.png deleted file mode 100644 index 3ad0f3ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_slick_plastic'}.png deleted file mode 100644 index 13f321a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__pink_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic'}.png deleted file mode 100644 index 86ae42fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic_glow'}.png deleted file mode 100644 index e7fba5b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic_road'}.png deleted file mode 100644 index e7fba5b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic_transparent'}.png deleted file mode 100644 index 1f072db5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_reinforced_plastic'}.png deleted file mode 100644 index 80531bf0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_slick_plastic'}.png deleted file mode 100644 index 8ce08448..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__purple_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic'}.png deleted file mode 100644 index 7711b30f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic_glow'}.png deleted file mode 100644 index 635d7552..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic_road'}.png deleted file mode 100644 index 635d7552..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic_transparent'}.png deleted file mode 100644 index 2608864d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_reinforced_plastic'}.png deleted file mode 100644 index d2313c6b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_slick_plastic'}.png deleted file mode 100644 index 9e238d3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__red_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic'}.png deleted file mode 100644 index fd927a6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic_glow'}.png deleted file mode 100644 index 2bb9200d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic_road'}.png deleted file mode 100644 index 2bb9200d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic_transparent'}.png deleted file mode 100644 index a9b27da8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_reinforced_plastic'}.png deleted file mode 100644 index 53479e20..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_slick_plastic'}.png deleted file mode 100644 index 561f0047..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__white_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic'}.png deleted file mode 100644 index 97e9ba11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic_glow'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic_glow'}.png deleted file mode 100644 index a2fb915e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic_glow'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic_road'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic_road'}.png deleted file mode 100644 index a2fb915e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic_road'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic_transparent'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic_transparent'}.png deleted file mode 100644 index 1d43d29c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_plastic_transparent'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_reinforced_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_reinforced_plastic'}.png deleted file mode 100644 index 57deebe5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_reinforced_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_slick_plastic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_slick_plastic'}.png deleted file mode 100644 index 91b8332b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mekanismadditions__yellow_slick_plastic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_leaves'}.png deleted file mode 100644 index 1bc97a43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_log'}.png deleted file mode 100644 index a35bbbc0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_planks'}.png deleted file mode 100644 index 022c69eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_wood'}.png deleted file mode 100644 index a953e4b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__acacia_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__amethyst_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__amethyst_block'}.png deleted file mode 100644 index bbe43204..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__amethyst_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__ancient_debris'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__ancient_debris'}.png deleted file mode 100644 index 868acc85..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__ancient_debris'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__andesite'}.png deleted file mode 100644 index d5a8319b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__azalea_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__azalea_leaves'}.png deleted file mode 100644 index bdd711ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__azalea_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bamboo_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bamboo_block'}.png deleted file mode 100644 index bc7dd461..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bamboo_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bamboo_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bamboo_mosaic'}.png deleted file mode 100644 index 4eaadb7c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bamboo_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bamboo_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bamboo_planks'}.png deleted file mode 100644 index 8dfdb9c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bamboo_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__barrel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__barrel'}.png deleted file mode 100644 index 337df903..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__barrel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__basalt'}.png deleted file mode 100644 index 2bcf5c89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bedrock'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bedrock'}.png deleted file mode 100644 index 5900424c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bedrock'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bee_nest'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bee_nest'}.png deleted file mode 100644 index 138f7961..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bee_nest'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__beehive'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__beehive'}.png deleted file mode 100644 index 17691a36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__beehive'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_leaves'}.png deleted file mode 100644 index b7ad9cff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_log'}.png deleted file mode 100644 index 2879e001..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_planks'}.png deleted file mode 100644 index 99cc45ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_wood'}.png deleted file mode 100644 index c356eb19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__birch_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_concrete'}.png deleted file mode 100644 index a6dab0f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_concrete_powder'}.png deleted file mode 100644 index 21e8fd66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_glazed_terracotta'}.png deleted file mode 100644 index 47c9e8a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_stained_glass'}.png deleted file mode 100644 index 7770f169..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_terracotta'}.png deleted file mode 100644 index 3438e6c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_wool'}.png deleted file mode 100644 index b23ce753..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__black_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blackstone'}.png deleted file mode 100644 index 4ff06695..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blast_furnace'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blast_furnace'}.png deleted file mode 100644 index 2c5d214b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blast_furnace'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_concrete'}.png deleted file mode 100644 index 7d8ea5f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_concrete_powder'}.png deleted file mode 100644 index e788639a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_glazed_terracotta'}.png deleted file mode 100644 index 082a8b50..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_ice'}.png deleted file mode 100644 index 94cd136d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_stained_glass'}.png deleted file mode 100644 index 7352d343..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_terracotta'}.png deleted file mode 100644 index e9d858d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_wool'}.png deleted file mode 100644 index a195c620..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bone_block'}.png deleted file mode 100644 index 770a908f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bookshelf'}.png deleted file mode 100644 index a8567cdc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brain_coral_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brain_coral_block'}.png deleted file mode 100644 index 4605ce32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brain_coral_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bricks'}.png deleted file mode 100644 index baeea661..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_concrete'}.png deleted file mode 100644 index d66a4a8c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_concrete_powder'}.png deleted file mode 100644 index ad0e8a92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_glazed_terracotta'}.png deleted file mode 100644 index b273a8a7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_mushroom_block'}.png deleted file mode 100644 index 8c72c781..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_stained_glass'}.png deleted file mode 100644 index de412862..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_terracotta'}.png deleted file mode 100644 index 6317dfec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_wool'}.png deleted file mode 100644 index 8e111ed1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__brown_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bubble_coral_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bubble_coral_block'}.png deleted file mode 100644 index 5077af3a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__bubble_coral_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__budding_amethyst'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__budding_amethyst'}.png deleted file mode 100644 index 2b6fe177..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__budding_amethyst'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__calcite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__calcite'}.png deleted file mode 100644 index 10b96cdf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__calcite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cartography_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cartography_table'}.png deleted file mode 100644 index 321a25b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cartography_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__carved_pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__carved_pumpkin'}.png deleted file mode 100644 index e2671928..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__carved_pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_leaves'}.png deleted file mode 100644 index b2abfa6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_log'}.png deleted file mode 100644 index abe196a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_planks'}.png deleted file mode 100644 index 0bfa9b8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_wood'}.png deleted file mode 100644 index f1b7eb41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cherry_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_bookshelf'}.png deleted file mode 100644 index 13bc96b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_copper'}.png deleted file mode 100644 index 4e76f8ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_deepslate'}.png deleted file mode 100644 index 69258636..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_nether_bricks'}.png deleted file mode 100644 index 3030e090..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_polished_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_polished_blackstone'}.png deleted file mode 100644 index eef04484..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_polished_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_quartz_block'}.png deleted file mode 100644 index 21b59a77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_red_sandstone'}.png deleted file mode 100644 index 512b0a53..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_sandstone'}.png deleted file mode 100644 index 3ca8ab61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_stone_bricks'}.png deleted file mode 100644 index 455fac75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_tuff'}.png deleted file mode 100644 index 37fd4771..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_tuff_bricks'}.png deleted file mode 100644 index 01691f1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chiseled_tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chorus_flower'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chorus_flower'}.png deleted file mode 100644 index 5219b256..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__chorus_flower'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__clay'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__clay'}.png deleted file mode 100644 index 228cc5a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__clay'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__coal_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__coal_block'}.png deleted file mode 100644 index b6f3cd9f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__coal_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__coal_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__coal_ore'}.png deleted file mode 100644 index be474427..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__coal_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__coarse_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__coarse_dirt'}.png deleted file mode 100644 index d5e0cfce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__coarse_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cobbled_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cobbled_deepslate'}.png deleted file mode 100644 index 9efb1dcc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cobbled_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cobblestone'}.png deleted file mode 100644 index 30330101..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_block'}.png deleted file mode 100644 index b40de6bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_bulb'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_bulb'}.png deleted file mode 100644 index 5d8b959e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_bulb'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_grate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_grate'}.png deleted file mode 100644 index 443105d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_grate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_ore'}.png deleted file mode 100644 index a784e2ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__copper_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_deepslate_bricks'}.png deleted file mode 100644 index 3bc197fa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_deepslate_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_deepslate_tiles'}.png deleted file mode 100644 index 1e0796a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_deepslate_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_nether_bricks'}.png deleted file mode 100644 index 875c6bb4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_polished_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_polished_blackstone_bricks'}.png deleted file mode 100644 index 865e1d4e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_polished_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_stone_bricks'}.png deleted file mode 100644 index 69a9ae1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cracked_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crafter'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crafter'}.png deleted file mode 100644 index f6c52b2b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crafter'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crafting_table'}.png deleted file mode 100644 index 21a07225..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_hyphae'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_hyphae'}.png deleted file mode 100644 index 155dcaaf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_hyphae'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_nylium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_nylium'}.png deleted file mode 100644 index 64e0b8d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_nylium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_planks'}.png deleted file mode 100644 index 60684b1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_stem'}.png deleted file mode 100644 index 8b4a4892..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crying_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crying_obsidian'}.png deleted file mode 100644 index 4e4f68f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__crying_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cut_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cut_copper'}.png deleted file mode 100644 index f87fe876..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cut_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cut_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cut_red_sandstone'}.png deleted file mode 100644 index 860e7b04..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cut_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cut_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cut_sandstone'}.png deleted file mode 100644 index b24b0031..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cut_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_concrete'}.png deleted file mode 100644 index 6af3f2dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_concrete_powder'}.png deleted file mode 100644 index dba8cd56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_glazed_terracotta'}.png deleted file mode 100644 index 18844238..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_stained_glass'}.png deleted file mode 100644 index c755546d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_terracotta'}.png deleted file mode 100644 index 1e185531..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_wool'}.png deleted file mode 100644 index c2c8f70a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__cyan_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_leaves'}.png deleted file mode 100644 index 9a16f009..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_log'}.png deleted file mode 100644 index 11460449..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_planks'}.png deleted file mode 100644 index 81af98c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_wood'}.png deleted file mode 100644 index 396d2165..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_oak_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_prismarine'}.png deleted file mode 100644 index 68981529..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dark_prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_brain_coral_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_brain_coral_block'}.png deleted file mode 100644 index 3dac93f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_brain_coral_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_bubble_coral_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_bubble_coral_block'}.png deleted file mode 100644 index 44d32d7b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_bubble_coral_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_fire_coral_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_fire_coral_block'}.png deleted file mode 100644 index d5d6f82f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_fire_coral_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_horn_coral_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_horn_coral_block'}.png deleted file mode 100644 index e5485ea2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_horn_coral_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_tube_coral_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_tube_coral_block'}.png deleted file mode 100644 index ebbda82a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dead_tube_coral_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate'}.png deleted file mode 100644 index d7c74f88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_bricks'}.png deleted file mode 100644 index 55eed802..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_coal_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_coal_ore'}.png deleted file mode 100644 index 9fc105a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_coal_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_copper_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_copper_ore'}.png deleted file mode 100644 index 971541e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_copper_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_diamond_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_diamond_ore'}.png deleted file mode 100644 index 62a4a56c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_diamond_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_emerald_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_emerald_ore'}.png deleted file mode 100644 index 8384c2f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_emerald_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_gold_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_gold_ore'}.png deleted file mode 100644 index 10cec03a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_gold_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_iron_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_iron_ore'}.png deleted file mode 100644 index d5b55dd7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_iron_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_lapis_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_lapis_ore'}.png deleted file mode 100644 index 4e7d3cdc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_lapis_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_redstone_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_redstone_ore'}.png deleted file mode 100644 index ed6a1389..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_redstone_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_tiles'}.png deleted file mode 100644 index e32d5873..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__deepslate_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__diamond_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__diamond_block'}.png deleted file mode 100644 index d8d1a21e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__diamond_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__diamond_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__diamond_ore'}.png deleted file mode 100644 index 2d36ab2b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__diamond_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__diorite'}.png deleted file mode 100644 index 3229ade5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dirt'}.png deleted file mode 100644 index ad35971a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dispenser'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dispenser'}.png deleted file mode 100644 index d0402db7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dispenser'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dried_kelp_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dried_kelp_block'}.png deleted file mode 100644 index ed591c00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dried_kelp_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dripstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dripstone_block'}.png deleted file mode 100644 index 3e7e5b28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dripstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dropper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dropper'}.png deleted file mode 100644 index c2232d72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__dropper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__emerald_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__emerald_block'}.png deleted file mode 100644 index ce5c0d3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__emerald_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__emerald_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__emerald_ore'}.png deleted file mode 100644 index 76844ef3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__emerald_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__end_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__end_stone'}.png deleted file mode 100644 index 095cd77c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__end_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__end_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__end_stone_bricks'}.png deleted file mode 100644 index defeadcf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__end_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_chiseled_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_chiseled_copper'}.png deleted file mode 100644 index 4056b8bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_chiseled_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_copper'}.png deleted file mode 100644 index 66437f39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_copper_bulb'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_copper_bulb'}.png deleted file mode 100644 index b9107e83..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_copper_bulb'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_copper_grate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_copper_grate'}.png deleted file mode 100644 index 78c1bab0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_copper_grate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_cut_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_cut_copper'}.png deleted file mode 100644 index 9b179c40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__exposed_cut_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__fire_coral_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__fire_coral_block'}.png deleted file mode 100644 index abd5b73e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__fire_coral_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__fletching_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__fletching_table'}.png deleted file mode 100644 index 52cadc17..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__fletching_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__flowering_azalea_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__flowering_azalea_leaves'}.png deleted file mode 100644 index f5431fac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__flowering_azalea_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__furnace'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__furnace'}.png deleted file mode 100644 index c6c131b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__furnace'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gilded_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gilded_blackstone'}.png deleted file mode 100644 index 80e7c9d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gilded_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__glass'}.png deleted file mode 100644 index a8e537b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__glowstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__glowstone'}.png deleted file mode 100644 index a60274d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__glowstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gold_block'}.png deleted file mode 100644 index 707487f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gold_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gold_ore'}.png deleted file mode 100644 index 5b9f4cba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gold_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__granite'}.png deleted file mode 100644 index ca4a7c13..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__grass_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__grass_block'}.png deleted file mode 100644 index b93fc9a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__grass_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gravel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gravel'}.png deleted file mode 100644 index ae2b4600..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gravel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_concrete'}.png deleted file mode 100644 index 88c38b72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_concrete_powder'}.png deleted file mode 100644 index 0434289e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_glazed_terracotta'}.png deleted file mode 100644 index 91088e0a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_stained_glass'}.png deleted file mode 100644 index c8b5288c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_terracotta'}.png deleted file mode 100644 index 04fb39f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_wool'}.png deleted file mode 100644 index 0b52b96b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_concrete'}.png deleted file mode 100644 index 3342b17c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_concrete_powder'}.png deleted file mode 100644 index e95481ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_glazed_terracotta'}.png deleted file mode 100644 index 4d5e15db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_stained_glass'}.png deleted file mode 100644 index c196fc88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_terracotta'}.png deleted file mode 100644 index 6b6f0a97..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_wool'}.png deleted file mode 100644 index 6bac4c49..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__green_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__hay_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__hay_block'}.png deleted file mode 100644 index 7ec325ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__hay_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__honey_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__honey_block'}.png deleted file mode 100644 index df8f51dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__honey_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__honeycomb_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__honeycomb_block'}.png deleted file mode 100644 index be0d776c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__honeycomb_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__horn_coral_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__horn_coral_block'}.png deleted file mode 100644 index d06a595e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__horn_coral_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__ice'}.png deleted file mode 100644 index 52299812..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_chiseled_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_chiseled_stone_bricks'}.png deleted file mode 100644 index 455fac75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_chiseled_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_cobblestone'}.png deleted file mode 100644 index 30330101..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_cracked_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_cracked_stone_bricks'}.png deleted file mode 100644 index 69a9ae1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_cracked_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_deepslate'}.png deleted file mode 100644 index d7c74f88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_mossy_stone_bricks'}.png deleted file mode 100644 index 8e97723c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_stone'}.png deleted file mode 100644 index 669575cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_stone_bricks'}.png deleted file mode 100644 index 5189bb11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__infested_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__iron_block'}.png deleted file mode 100644 index 15963564..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__iron_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__iron_ore'}.png deleted file mode 100644 index cae43a09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__iron_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jack_o_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jack_o_lantern'}.png deleted file mode 100644 index 78c0a818..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jack_o_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jukebox'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jukebox'}.png deleted file mode 100644 index d3de40c0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jukebox'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_leaves'}.png deleted file mode 100644 index 48f5a2f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_log'}.png deleted file mode 100644 index 2ad1c762..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_planks'}.png deleted file mode 100644 index 56601888..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_wood'}.png deleted file mode 100644 index b2e6a52c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__jungle_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lapis_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lapis_block'}.png deleted file mode 100644 index b1b1168b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lapis_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lapis_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lapis_ore'}.png deleted file mode 100644 index 89f2db4e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lapis_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_concrete'}.png deleted file mode 100644 index ccd48124..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_concrete_powder'}.png deleted file mode 100644 index d8cd5e1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_glazed_terracotta'}.png deleted file mode 100644 index 0a9cd617..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_stained_glass'}.png deleted file mode 100644 index 7e263983..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_terracotta'}.png deleted file mode 100644 index 3716b650..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_wool'}.png deleted file mode 100644 index db7122cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_blue_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_concrete'}.png deleted file mode 100644 index 2857d3d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_concrete_powder'}.png deleted file mode 100644 index 9b9342a1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_glazed_terracotta'}.png deleted file mode 100644 index 19220cf8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_stained_glass'}.png deleted file mode 100644 index e7c7a9ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_terracotta'}.png deleted file mode 100644 index 88959c2b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_wool'}.png deleted file mode 100644 index d8a3a5b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__light_gray_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_concrete'}.png deleted file mode 100644 index 81aff081..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_concrete_powder'}.png deleted file mode 100644 index b0085a9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_glazed_terracotta'}.png deleted file mode 100644 index cdad65e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_stained_glass'}.png deleted file mode 100644 index 7e28c7b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_terracotta'}.png deleted file mode 100644 index 3fc036bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_wool'}.png deleted file mode 100644 index a6b14743..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lime_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lodestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lodestone'}.png deleted file mode 100644 index a90bab69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__lodestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__loom'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__loom'}.png deleted file mode 100644 index 9081a91d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__loom'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_concrete'}.png deleted file mode 100644 index df69f914..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_concrete_powder'}.png deleted file mode 100644 index a1c177d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_glazed_terracotta'}.png deleted file mode 100644 index d125c43a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_stained_glass'}.png deleted file mode 100644 index ccf87edc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_terracotta'}.png deleted file mode 100644 index 7d580a0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_wool'}.png deleted file mode 100644 index 25cfa767..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magenta_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magma_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magma_block'}.png deleted file mode 100644 index 756440d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__magma_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_leaves'}.png deleted file mode 100644 index 0a0c9f58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_log'}.png deleted file mode 100644 index de7c9b82..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_planks'}.png deleted file mode 100644 index 14f40aa1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_roots'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_roots'}.png deleted file mode 100644 index 44dad2dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_roots'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_wood'}.png deleted file mode 100644 index ea4b6778..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mangrove_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__melon'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__melon'}.png deleted file mode 100644 index 35a66ccb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__melon'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__moss_block'}.png deleted file mode 100644 index 7fc986d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mossy_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mossy_cobblestone'}.png deleted file mode 100644 index 51bee354..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mossy_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mossy_stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mossy_stone_bricks'}.png deleted file mode 100644 index 8e97723c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mossy_stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mud_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mud_bricks'}.png deleted file mode 100644 index 62c232a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mud_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__muddy_mangrove_roots'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__muddy_mangrove_roots'}.png deleted file mode 100644 index 82a67b9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__muddy_mangrove_roots'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mushroom_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mushroom_stem'}.png deleted file mode 100644 index ebd6e00f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mushroom_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mycelium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mycelium'}.png deleted file mode 100644 index 6a313d72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__mycelium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_bricks'}.png deleted file mode 100644 index 83b02ed9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_gold_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_gold_ore'}.png deleted file mode 100644 index 8bb48153..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_gold_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_quartz_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_quartz_ore'}.png deleted file mode 100644 index abc468fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_quartz_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_wart_block'}.png deleted file mode 100644 index 5796064c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__nether_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__netherite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__netherite_block'}.png deleted file mode 100644 index 323bf0f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__netherite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__netherrack'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__netherrack'}.png deleted file mode 100644 index d8cb2c2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__netherrack'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__note_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__note_block'}.png deleted file mode 100644 index 284ae75d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__note_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_leaves'}.png deleted file mode 100644 index 946f8a51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_log'}.png deleted file mode 100644 index 9358dbef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_planks'}.png deleted file mode 100644 index 13477689..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_wood'}.png deleted file mode 100644 index cda21a36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oak_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__observer'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__observer'}.png deleted file mode 100644 index e6e7959f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__observer'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__obsidian'}.png deleted file mode 100644 index 4d8a26bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__ochre_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__ochre_froglight'}.png deleted file mode 100644 index 776762bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__ochre_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_concrete'}.png deleted file mode 100644 index 99dee417..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_concrete_powder'}.png deleted file mode 100644 index e403883e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_glazed_terracotta'}.png deleted file mode 100644 index 49f391d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_stained_glass'}.png deleted file mode 100644 index 2398f1d2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_terracotta'}.png deleted file mode 100644 index b931d36b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_wool'}.png deleted file mode 100644 index 2c0af223..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__orange_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_chiseled_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_chiseled_copper'}.png deleted file mode 100644 index 90b7c802..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_chiseled_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_copper'}.png deleted file mode 100644 index fd7baa4c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_copper_bulb'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_copper_bulb'}.png deleted file mode 100644 index 72a555a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_copper_bulb'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_copper_grate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_copper_grate'}.png deleted file mode 100644 index 7f7ff4f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_copper_grate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_cut_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_cut_copper'}.png deleted file mode 100644 index e9ed78ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__oxidized_cut_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__packed_ice'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__packed_ice'}.png deleted file mode 100644 index a007c770..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__packed_ice'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__packed_mud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__packed_mud'}.png deleted file mode 100644 index 175a5871..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__packed_mud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pearlescent_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pearlescent_froglight'}.png deleted file mode 100644 index 0f432c93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pearlescent_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_concrete'}.png deleted file mode 100644 index 3f9c301f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_concrete_powder'}.png deleted file mode 100644 index 945b2530..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_glazed_terracotta'}.png deleted file mode 100644 index 57dacda5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_stained_glass'}.png deleted file mode 100644 index 3bf1fbec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_terracotta'}.png deleted file mode 100644 index 710d737b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_wool'}.png deleted file mode 100644 index a7fe7034..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pink_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__piston'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__piston'}.png deleted file mode 100644 index 546b4fd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__piston'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__podzol'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__podzol'}.png deleted file mode 100644 index cedeeb86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__podzol'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_andesite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_andesite'}.png deleted file mode 100644 index 1589666d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_andesite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_basalt'}.png deleted file mode 100644 index 29bf269b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_blackstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_blackstone'}.png deleted file mode 100644 index e96d4cbb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_blackstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_blackstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_blackstone_bricks'}.png deleted file mode 100644 index 15b656b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_blackstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_deepslate'}.png deleted file mode 100644 index fcefd2d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_diorite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_diorite'}.png deleted file mode 100644 index cc3f3efa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_diorite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_granite'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_granite'}.png deleted file mode 100644 index d625a9bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_granite'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_tuff'}.png deleted file mode 100644 index 32e70876..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__polished_tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__prismarine'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__prismarine'}.png deleted file mode 100644 index 4f2dd7c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__prismarine'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__prismarine_bricks'}.png deleted file mode 100644 index 6eaa7885..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pumpkin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pumpkin'}.png deleted file mode 100644 index db756b2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__pumpkin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_concrete'}.png deleted file mode 100644 index 89d30a45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_concrete_powder'}.png deleted file mode 100644 index 8fd026a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_glazed_terracotta'}.png deleted file mode 100644 index 67ec76a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_stained_glass'}.png deleted file mode 100644 index b569a793..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_terracotta'}.png deleted file mode 100644 index e40c264d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_wool'}.png deleted file mode 100644 index 3c4c5978..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purple_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purpur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purpur_block'}.png deleted file mode 100644 index 02720026..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purpur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purpur_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purpur_pillar'}.png deleted file mode 100644 index bed62511..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__purpur_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__quartz_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__quartz_block'}.png deleted file mode 100644 index b45ac274..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__quartz_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__quartz_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__quartz_bricks'}.png deleted file mode 100644 index f81b2fe2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__quartz_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__quartz_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__quartz_pillar'}.png deleted file mode 100644 index 3034810e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__quartz_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__raw_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__raw_copper_block'}.png deleted file mode 100644 index 06ef4ba5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__raw_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__raw_gold_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__raw_gold_block'}.png deleted file mode 100644 index a1b0993d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__raw_gold_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__raw_iron_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__raw_iron_block'}.png deleted file mode 100644 index 76c08d83..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__raw_iron_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_concrete'}.png deleted file mode 100644 index bc840333..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_concrete_powder'}.png deleted file mode 100644 index 7ca033e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_glazed_terracotta'}.png deleted file mode 100644 index 9cb0f967..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_mushroom_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_mushroom_block'}.png deleted file mode 100644 index 06417b60..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_mushroom_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_nether_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_nether_bricks'}.png deleted file mode 100644 index efe2b17d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_nether_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_sand'}.png deleted file mode 100644 index 08e0b495..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_sandstone'}.png deleted file mode 100644 index f97930c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_stained_glass'}.png deleted file mode 100644 index a95b005e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_terracotta'}.png deleted file mode 100644 index 0e1a0f15..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_wool'}.png deleted file mode 100644 index 4da12289..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__red_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__redstone_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__redstone_block'}.png deleted file mode 100644 index 6598b4a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__redstone_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__redstone_lamp'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__redstone_lamp'}.png deleted file mode 100644 index 89079cb5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__redstone_lamp'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__redstone_ore'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__redstone_ore'}.png deleted file mode 100644 index da04d452..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__redstone_ore'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__reinforced_deepslate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__reinforced_deepslate'}.png deleted file mode 100644 index d83ae9b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__reinforced_deepslate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__respawn_anchor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__respawn_anchor'}.png deleted file mode 100644 index 61a506cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__respawn_anchor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__rooted_dirt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__rooted_dirt'}.png deleted file mode 100644 index e40bf50e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__rooted_dirt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sand'}.png deleted file mode 100644 index cf45c833..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sandstone'}.png deleted file mode 100644 index ffcf89a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sculk'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sculk'}.png deleted file mode 100644 index 3675c6e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sculk'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sculk_catalyst'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sculk_catalyst'}.png deleted file mode 100644 index a3a6b7d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sculk_catalyst'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sea_lantern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sea_lantern'}.png deleted file mode 100644 index aca00e9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sea_lantern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__shroomlight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__shroomlight'}.png deleted file mode 100644 index 98436f09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__shroomlight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__slime_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__slime_block'}.png deleted file mode 100644 index 1c6567b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__slime_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smithing_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smithing_table'}.png deleted file mode 100644 index aec3df9e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smithing_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_basalt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_basalt'}.png deleted file mode 100644 index 0ee35a85..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_basalt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_quartz'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_quartz'}.png deleted file mode 100644 index 4f567de7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_quartz'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_red_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_red_sandstone'}.png deleted file mode 100644 index 04a5c22f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_red_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_sandstone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_sandstone'}.png deleted file mode 100644 index fe8edff6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_sandstone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_stone'}.png deleted file mode 100644 index 3fc71ff3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__smooth_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__snow_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__snow_block'}.png deleted file mode 100644 index e26ce1f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__snow_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__soul_sand'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__soul_sand'}.png deleted file mode 100644 index a515ca64..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__soul_sand'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__soul_soil'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__soul_soil'}.png deleted file mode 100644 index 36b913dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__soul_soil'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sponge'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sponge'}.png deleted file mode 100644 index b4c70c7a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sponge'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_leaves'}.png deleted file mode 100644 index 6426348f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_log'}.png deleted file mode 100644 index 40d49823..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_planks'}.png deleted file mode 100644 index 9064d4e9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_wood'}.png deleted file mode 100644 index 659fff36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__spruce_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sticky_piston'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sticky_piston'}.png deleted file mode 100644 index 546b4fd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__sticky_piston'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stone'}.png deleted file mode 100644 index 669575cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stone_bricks'}.png deleted file mode 100644 index 5189bb11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_acacia_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_acacia_log'}.png deleted file mode 100644 index c3a5228d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_acacia_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_acacia_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_acacia_wood'}.png deleted file mode 100644 index a9d96221..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_acacia_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_bamboo_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_bamboo_block'}.png deleted file mode 100644 index 9c80947c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_bamboo_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_birch_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_birch_log'}.png deleted file mode 100644 index 1f62555a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_birch_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_birch_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_birch_wood'}.png deleted file mode 100644 index faf4b90b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_birch_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_cherry_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_cherry_log'}.png deleted file mode 100644 index 3e27c57f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_cherry_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_cherry_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_cherry_wood'}.png deleted file mode 100644 index 658e62c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_cherry_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_crimson_hyphae'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_crimson_hyphae'}.png deleted file mode 100644 index c70d14f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_crimson_hyphae'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_crimson_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_crimson_stem'}.png deleted file mode 100644 index d6d486e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_crimson_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_dark_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_dark_oak_log'}.png deleted file mode 100644 index 133c0eb9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_dark_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_dark_oak_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_dark_oak_wood'}.png deleted file mode 100644 index dd35a8e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_dark_oak_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_jungle_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_jungle_log'}.png deleted file mode 100644 index 405e4776..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_jungle_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_jungle_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_jungle_wood'}.png deleted file mode 100644 index f032e623..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_jungle_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_mangrove_log'}.png deleted file mode 100644 index 1ddc45f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_mangrove_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_mangrove_wood'}.png deleted file mode 100644 index bf7a7e3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_mangrove_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_oak_log'}.png deleted file mode 100644 index 538a163f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_oak_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_oak_wood'}.png deleted file mode 100644 index 642b65eb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_oak_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_spruce_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_spruce_log'}.png deleted file mode 100644 index 54035ca9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_spruce_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_spruce_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_spruce_wood'}.png deleted file mode 100644 index 8b6ef040..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_spruce_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_warped_hyphae'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_warped_hyphae'}.png deleted file mode 100644 index d312bcba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_warped_hyphae'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_warped_stem'}.png deleted file mode 100644 index f8c65262..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__stripped_warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__target'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__target'}.png deleted file mode 100644 index d4305fda..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__target'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__terracotta'}.png deleted file mode 100644 index 2ca526ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tinted_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tinted_glass'}.png deleted file mode 100644 index ec3052bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tinted_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tnt'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tnt'}.png deleted file mode 100644 index 24986ef0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tnt'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tube_coral_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tube_coral_block'}.png deleted file mode 100644 index f3a7ff23..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tube_coral_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tuff'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tuff'}.png deleted file mode 100644 index 9d2e947a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tuff'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tuff_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tuff_bricks'}.png deleted file mode 100644 index b17c73b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__tuff_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__verdant_froglight'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__verdant_froglight'}.png deleted file mode 100644 index 37893990..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__verdant_froglight'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_hyphae'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_hyphae'}.png deleted file mode 100644 index 6ca6d03f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_hyphae'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_nylium'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_nylium'}.png deleted file mode 100644 index 8766b627..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_nylium'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_planks'}.png deleted file mode 100644 index e7bbb650..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_stem'}.png deleted file mode 100644 index 5efc6900..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_wart_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_wart_block'}.png deleted file mode 100644 index 9cc008b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__warped_wart_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_chiseled_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_chiseled_copper'}.png deleted file mode 100644 index 4e76f8ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_chiseled_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_copper_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_copper_block'}.png deleted file mode 100644 index b40de6bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_copper_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_copper_bulb'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_copper_bulb'}.png deleted file mode 100644 index 5d8b959e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_copper_bulb'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_copper_grate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_copper_grate'}.png deleted file mode 100644 index 443105d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_copper_grate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_cut_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_cut_copper'}.png deleted file mode 100644 index f87fe876..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_cut_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_chiseled_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_chiseled_copper'}.png deleted file mode 100644 index 4056b8bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_chiseled_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_copper'}.png deleted file mode 100644 index 66437f39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_copper_bulb'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_copper_bulb'}.png deleted file mode 100644 index b9107e83..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_copper_bulb'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_copper_grate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_copper_grate'}.png deleted file mode 100644 index 78c1bab0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_copper_grate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_cut_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_cut_copper'}.png deleted file mode 100644 index 9b179c40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_exposed_cut_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_chiseled_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_chiseled_copper'}.png deleted file mode 100644 index 90b7c802..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_chiseled_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_copper'}.png deleted file mode 100644 index fd7baa4c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_copper_bulb'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_copper_bulb'}.png deleted file mode 100644 index 72a555a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_copper_bulb'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_copper_grate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_copper_grate'}.png deleted file mode 100644 index 7f7ff4f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_copper_grate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_cut_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_cut_copper'}.png deleted file mode 100644 index e9ed78ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_oxidized_cut_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_chiseled_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_chiseled_copper'}.png deleted file mode 100644 index 415d6f98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_chiseled_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_copper'}.png deleted file mode 100644 index 8db41375..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_copper_bulb'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_copper_bulb'}.png deleted file mode 100644 index 05abea86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_copper_bulb'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_copper_grate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_copper_grate'}.png deleted file mode 100644 index 7bbd7b8b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_copper_grate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_cut_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_cut_copper'}.png deleted file mode 100644 index cf6b01c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__waxed_weathered_cut_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_chiseled_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_chiseled_copper'}.png deleted file mode 100644 index 415d6f98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_chiseled_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_copper'}.png deleted file mode 100644 index 8db41375..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_copper_bulb'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_copper_bulb'}.png deleted file mode 100644 index 05abea86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_copper_bulb'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_copper_grate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_copper_grate'}.png deleted file mode 100644 index 7bbd7b8b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_copper_grate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_cut_copper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_cut_copper'}.png deleted file mode 100644 index cf6b01c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__weathered_cut_copper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__wet_sponge'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__wet_sponge'}.png deleted file mode 100644 index 034c8280..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__wet_sponge'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_concrete'}.png deleted file mode 100644 index b2e097a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_concrete_powder'}.png deleted file mode 100644 index e975e3d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_glazed_terracotta'}.png deleted file mode 100644 index 425e67da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_stained_glass'}.png deleted file mode 100644 index 3b4cbb32..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_terracotta'}.png deleted file mode 100644 index d4540de1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_wool'}.png deleted file mode 100644 index 0516882e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__white_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_concrete'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_concrete'}.png deleted file mode 100644 index 7eb7c198..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_concrete'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_concrete_powder'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_concrete_powder'}.png deleted file mode 100644 index 5c887dcd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_concrete_powder'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_glazed_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_glazed_terracotta'}.png deleted file mode 100644 index 59c6f229..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_glazed_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_stained_glass'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_stained_glass'}.png deleted file mode 100644 index 2249c549..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_stained_glass'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_terracotta'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_terracotta'}.png deleted file mode 100644 index 0befa779..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_terracotta'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_wool'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_wool'}.png deleted file mode 100644 index caef307e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'minecraft__yellow_wool'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'morered__hexidecrubrometer'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'morered__hexidecrubrometer'}.png deleted file mode 100644 index 10e07dec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'morered__hexidecrubrometer'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__bullet_pepper_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__bullet_pepper_crate'}.png deleted file mode 100644 index 960072bd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__bullet_pepper_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__letios_compost'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__letios_compost'}.png deleted file mode 100644 index c42d69fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__letios_compost'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__powdery_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__powdery_block'}.png deleted file mode 100644 index 002b89c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__powdery_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__powdery_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__powdery_mosaic'}.png deleted file mode 100644 index 2e0dde0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__powdery_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__powdery_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__powdery_planks'}.png deleted file mode 100644 index 9f57c370..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__powdery_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__resurgent_soil'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__resurgent_soil'}.png deleted file mode 100644 index e1164aa0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__resurgent_soil'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__stripped_powdery_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__stripped_powdery_block'}.png deleted file mode 100644 index 20387736..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'mynethersdelight__stripped_powdery_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_beams'}.png deleted file mode 100644 index 498bdccf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_beams_connecting'}.png deleted file mode 100644 index 498bdccf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_pattern'}.png deleted file mode 100644 index 343ada3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_pattern_connecting'}.png deleted file mode 100644 index 343ada3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_paving'}.png deleted file mode 100644 index 94624282..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_paving_connecting'}.png deleted file mode 100644 index 94624282..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_bricks'}.png deleted file mode 100644 index abdbc509..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_bricks_connecting'}.png deleted file mode 100644 index abdbc509..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_crate'}.png deleted file mode 100644 index 3d3e24f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_crate_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_crate_connecting'}.png deleted file mode 100644 index 3d3e24f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_crate_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_stripes'}.png deleted file mode 100644 index 5d9aa00e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_stripes_connecting'}.png deleted file mode 100644 index 5d9aa00e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_tiles'}.png deleted file mode 100644 index 0dff5e6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_tiles_connecting'}.png deleted file mode 100644 index 0dff5e6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_dotted'}.png deleted file mode 100644 index 5cbb2417..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_dotted_connecting'}.png deleted file mode 100644 index 5cbb2417..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_flooring'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_flooring'}.png deleted file mode 100644 index b1a8b1e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_flooring'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_flooring_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_flooring_connecting'}.png deleted file mode 100644 index b1a8b1e3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_flooring_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_large_tiles'}.png deleted file mode 100644 index 506597cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_large_tiles_connecting'}.png deleted file mode 100644 index 506597cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_mosaic'}.png deleted file mode 100644 index 8a4f414d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_pattern'}.png deleted file mode 100644 index 9d97de12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_pattern_connecting'}.png deleted file mode 100644 index 9d97de12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_rotated_bricks'}.png deleted file mode 100644 index 25172f19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_rotated_bricks_connecting'}.png deleted file mode 100644 index 25172f19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_bricks'}.png deleted file mode 100644 index d1c39441..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_bricks_connecting'}.png deleted file mode 100644 index d1c39441..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_tiles'}.png deleted file mode 100644 index 4c1bcab9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_tiles_connecting'}.png deleted file mode 100644 index 4c1bcab9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_squares'}.png deleted file mode 100644 index 64bd9da8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_squares_connecting'}.png deleted file mode 100644 index 64bd9da8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_tiles'}.png deleted file mode 100644 index ecaadab4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_tiles_connecting'}.png deleted file mode 100644 index ecaadab4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_wavy'}.png deleted file mode 100644 index 3de1c9d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_wavy_connecting'}.png deleted file mode 100644 index 3de1c9d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_woven'}.png deleted file mode 100644 index f572a9ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_woven_connecting'}.png deleted file mode 100644 index f572a9ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__acacia_planks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_beams'}.png deleted file mode 100644 index 53a230e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_beams_connecting'}.png deleted file mode 100644 index 53a230e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bordered_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bordered_diagonal_tiles'}.png deleted file mode 100644 index 4ec113f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bordered_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bordered_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bordered_diagonal_tiles_connecting'}.png deleted file mode 100644 index 4ec113f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bordered_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bricks'}.png deleted file mode 100644 index 5341e7f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bricks_connecting'}.png deleted file mode 100644 index 5341e7f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_cut'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_cut'}.png deleted file mode 100644 index 8f9cd13b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_cut'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_cut_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_cut_connecting'}.png deleted file mode 100644 index 8f9cd13b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_cut_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_diagonal_tiles'}.png deleted file mode 100644 index 43295f67..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_edged'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_edged'}.png deleted file mode 100644 index 22b5622e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_edged'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_edged_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_edged_connecting'}.png deleted file mode 100644 index 22b5622e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_edged_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_jewel'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_jewel'}.png deleted file mode 100644 index f82d4451..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_jewel'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_pillar'}.png deleted file mode 100644 index 847a7a88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_pillar_connecting'}.png deleted file mode 100644 index 847a7a88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_polished'}.png deleted file mode 100644 index 50397b7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_polished_connecting'}.png deleted file mode 100644 index 50397b7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_shiny'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_shiny'}.png deleted file mode 100644 index cd8ca1c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_shiny'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_shiny_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_shiny_connecting'}.png deleted file mode 100644 index cd8ca1c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_shiny_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_smooth'}.png deleted file mode 100644 index aef0e01e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_tiles'}.png deleted file mode 100644 index fc0d893b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_tiles_connecting'}.png deleted file mode 100644 index fc0d893b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__amethyst_block_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_pattern'}.png deleted file mode 100644 index e201cee2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_pattern_connecting'}.png deleted file mode 100644 index e201cee2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_paving'}.png deleted file mode 100644 index 28381c6e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_paving_connecting'}.png deleted file mode 100644 index 28381c6e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_bricks'}.png deleted file mode 100644 index 2bb27fa1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_bricks_connecting'}.png deleted file mode 100644 index 2bb27fa1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_diagonal_bricks'}.png deleted file mode 100644 index c5c12963..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_diagonal_bricks_connecting'}.png deleted file mode 100644 index c5c12963..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_dotted'}.png deleted file mode 100644 index a73aefc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_dotted_connecting'}.png deleted file mode 100644 index a73aefc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_paving'}.png deleted file mode 100644 index 2dd9adfc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_paving_connecting'}.png deleted file mode 100644 index 2dd9adfc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_polished_connecting'}.png deleted file mode 100644 index ea05f38c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_rotated_bricks'}.png deleted file mode 100644 index 20949e5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_rotated_bricks_connecting'}.png deleted file mode 100644 index 20949e5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_squares'}.png deleted file mode 100644 index c3019c61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_squares_connecting'}.png deleted file mode 100644 index c3019c61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_tiles'}.png deleted file mode 100644 index 9a60eca8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_tiles_connecting'}.png deleted file mode 100644 index 9a60eca8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_wavy'}.png deleted file mode 100644 index a84132dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_wavy_connecting'}.png deleted file mode 100644 index a84132dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__andesite_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_beams'}.png deleted file mode 100644 index a006fdec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_beams_connecting'}.png deleted file mode 100644 index a006fdec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_pattern'}.png deleted file mode 100644 index 44dbcc71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_pattern_connecting'}.png deleted file mode 100644 index 44dbcc71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_paving'}.png deleted file mode 100644 index 899be32d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_paving_connecting'}.png deleted file mode 100644 index 899be32d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_bricks'}.png deleted file mode 100644 index d275021f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_bricks_connecting'}.png deleted file mode 100644 index d275021f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_crate'}.png deleted file mode 100644 index 52cc926d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_crate_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_crate_connecting'}.png deleted file mode 100644 index 52cc926d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_crate_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_stripes'}.png deleted file mode 100644 index 5ed8c43c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_stripes_connecting'}.png deleted file mode 100644 index 5ed8c43c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_tiles'}.png deleted file mode 100644 index 64f66085..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_tiles_connecting'}.png deleted file mode 100644 index 64f66085..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_dotted'}.png deleted file mode 100644 index 3d4a4b5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_dotted_connecting'}.png deleted file mode 100644 index 3d4a4b5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_flooring'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_flooring'}.png deleted file mode 100644 index 3c853388..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_flooring'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_flooring_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_flooring_connecting'}.png deleted file mode 100644 index 3c853388..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_flooring_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_large_tiles'}.png deleted file mode 100644 index 7677625c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_large_tiles_connecting'}.png deleted file mode 100644 index 7677625c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_pattern'}.png deleted file mode 100644 index 6ff1ede7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_pattern_connecting'}.png deleted file mode 100644 index 6ff1ede7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_rotated_bricks'}.png deleted file mode 100644 index 58453ae4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_rotated_bricks_connecting'}.png deleted file mode 100644 index 58453ae4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_bricks'}.png deleted file mode 100644 index e72b95aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_bricks_connecting'}.png deleted file mode 100644 index e72b95aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_tiles'}.png deleted file mode 100644 index e56e5461..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_tiles_connecting'}.png deleted file mode 100644 index e56e5461..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_squares'}.png deleted file mode 100644 index 1ea8eeb9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_squares_connecting'}.png deleted file mode 100644 index 1ea8eeb9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_tiles'}.png deleted file mode 100644 index e614397c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_tiles_connecting'}.png deleted file mode 100644 index e614397c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_wavy'}.png deleted file mode 100644 index 1a8f9e80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_wavy_connecting'}.png deleted file mode 100644 index 1a8f9e80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_woven'}.png deleted file mode 100644 index 332e07dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_woven_connecting'}.png deleted file mode 100644 index 332e07dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bamboo_planks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_beams'}.png deleted file mode 100644 index d385a49b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_beams_connecting'}.png deleted file mode 100644 index d385a49b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered'}.png deleted file mode 100644 index 0ed10517..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered_connecting'}.png deleted file mode 100644 index 0ed10517..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered_polished'}.png deleted file mode 100644 index b035dcce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered_polished_connecting'}.png deleted file mode 100644 index b035dcce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bordered_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bricks'}.png deleted file mode 100644 index 90a4504c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bricks_connecting'}.png deleted file mode 100644 index 90a4504c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_chiseled_piglin'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_chiseled_piglin'}.png deleted file mode 100644 index 769e6ef5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_chiseled_piglin'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_diagonal_tiles'}.png deleted file mode 100644 index 83523b57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_diagonal_tiles_connecting'}.png deleted file mode 100644 index 83523b57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_pattern'}.png deleted file mode 100644 index 52a980db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_pattern_connecting'}.png deleted file mode 100644 index 52a980db..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_patterned'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_patterned'}.png deleted file mode 100644 index bd7e2dd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_patterned'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_patterned_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_patterned_connecting'}.png deleted file mode 100644 index bd7e2dd0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_patterned_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_tiles'}.png deleted file mode 100644 index e3404f50..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_tiles_connecting'}.png deleted file mode 100644 index e3404f50..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__basalt_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_beams'}.png deleted file mode 100644 index c34af020..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_beams_connecting'}.png deleted file mode 100644 index c34af020..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_pattern'}.png deleted file mode 100644 index 62cd6fd4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_pattern_connecting'}.png deleted file mode 100644 index 62cd6fd4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_paving'}.png deleted file mode 100644 index 1da1db37..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_paving_connecting'}.png deleted file mode 100644 index 1da1db37..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_bricks'}.png deleted file mode 100644 index 42ab0265..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_bricks_connecting'}.png deleted file mode 100644 index 42ab0265..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_crate'}.png deleted file mode 100644 index b111c8d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_crate_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_crate_connecting'}.png deleted file mode 100644 index b111c8d1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_crate_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_stripes'}.png deleted file mode 100644 index 2a564a73..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_stripes_connecting'}.png deleted file mode 100644 index 2a564a73..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_tiles'}.png deleted file mode 100644 index dd689e05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_tiles_connecting'}.png deleted file mode 100644 index dd689e05..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_dotted'}.png deleted file mode 100644 index 59318311..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_dotted_connecting'}.png deleted file mode 100644 index 59318311..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_flooring'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_flooring'}.png deleted file mode 100644 index 3865181b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_flooring'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_flooring_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_flooring_connecting'}.png deleted file mode 100644 index 3865181b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_flooring_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_large_tiles'}.png deleted file mode 100644 index e30378e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_large_tiles_connecting'}.png deleted file mode 100644 index e30378e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_mosaic'}.png deleted file mode 100644 index 833371ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_pattern'}.png deleted file mode 100644 index 6bbbec68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_pattern_connecting'}.png deleted file mode 100644 index 6bbbec68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_rotated_bricks'}.png deleted file mode 100644 index 9dbe71e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_rotated_bricks_connecting'}.png deleted file mode 100644 index 9dbe71e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_bricks'}.png deleted file mode 100644 index 99cbb5f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_bricks_connecting'}.png deleted file mode 100644 index 99cbb5f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_tiles'}.png deleted file mode 100644 index 6f46dbab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_tiles_connecting'}.png deleted file mode 100644 index 6f46dbab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_squares'}.png deleted file mode 100644 index fd64402e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_squares_connecting'}.png deleted file mode 100644 index fd64402e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_tiles'}.png deleted file mode 100644 index 3aca2bc2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_tiles_connecting'}.png deleted file mode 100644 index 3aca2bc2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_wavy'}.png deleted file mode 100644 index ee3f7a40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_wavy_connecting'}.png deleted file mode 100644 index ee3f7a40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_woven'}.png deleted file mode 100644 index 4af8f373..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_woven_connecting'}.png deleted file mode 100644 index 4af8f373..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__birch_planks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_pattern'}.png deleted file mode 100644 index 790c646e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_pattern_connecting'}.png deleted file mode 100644 index 790c646e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_paving'}.png deleted file mode 100644 index 4bfc3da9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_paving_connecting'}.png deleted file mode 100644 index 4bfc3da9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_diagonal_bricks'}.png deleted file mode 100644 index 881c3583..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_diagonal_bricks_connecting'}.png deleted file mode 100644 index 881c3583..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_polished_connecting'}.png deleted file mode 100644 index 9050b2d8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_rotated_bricks'}.png deleted file mode 100644 index a1dd6e65..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_rotated_bricks_connecting'}.png deleted file mode 100644 index a1dd6e65..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_tiles'}.png deleted file mode 100644 index 37601e59..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_tiles_connecting'}.png deleted file mode 100644 index 37601e59..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blackstone_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bordered'}.png deleted file mode 100644 index c117ec36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bordered_connecting'}.png deleted file mode 100644 index c117ec36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bricks'}.png deleted file mode 100644 index e35cb394..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bricks_connecting'}.png deleted file mode 100644 index e35cb394..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_chiseled'}.png deleted file mode 100644 index 72dda607..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_chiseled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_chiseled_connecting'}.png deleted file mode 100644 index 72dda607..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_chiseled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_cone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_cone'}.png deleted file mode 100644 index af539f48..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_cone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_cracked'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_cracked'}.png deleted file mode 100644 index 03eeba74..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_cracked'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_patterned'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_patterned'}.png deleted file mode 100644 index ebf001f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_patterned'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_patterned_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_patterned_connecting'}.png deleted file mode 100644 index ebf001f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_patterned_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_pillar'}.png deleted file mode 100644 index 296642e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_pillar_connecting'}.png deleted file mode 100644 index 296642e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_rocky'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_rocky'}.png deleted file mode 100644 index a3ba8e23..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_rocky'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_slanted_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_slanted_tiles'}.png deleted file mode 100644 index 9f323967..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_slanted_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_slanted_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_slanted_tiles_connecting'}.png deleted file mode 100644 index 9f323967..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_slanted_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_tiles'}.png deleted file mode 100644 index d183ea27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_tiles_connecting'}.png deleted file mode 100644 index d183ea27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__blue_ice_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_bordered'}.png deleted file mode 100644 index 1e9caddd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_bordered_connecting'}.png deleted file mode 100644 index 1e9caddd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_bundled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_bundled'}.png deleted file mode 100644 index 5facd798..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_bundled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_chiseled'}.png deleted file mode 100644 index 2d6182d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_chiseled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_chiseled_connecting'}.png deleted file mode 100644 index 2d6182d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_chiseled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_connecting_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_connecting_connecting'}.png deleted file mode 100644 index 770a908f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_connecting_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_cracked'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_cracked'}.png deleted file mode 100644 index 6fe0d3ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_cracked'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_decorated'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_decorated'}.png deleted file mode 100644 index d11e67f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_decorated'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_decorated_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_decorated_bordered'}.png deleted file mode 100644 index d0c3cf39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_decorated_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_decorated_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_decorated_bordered_connecting'}.png deleted file mode 100644 index d0c3cf39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_decorated_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_inverted_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_inverted_tiles'}.png deleted file mode 100644 index 8f69dd41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_inverted_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_inverted_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_inverted_tiles_connecting'}.png deleted file mode 100644 index 8f69dd41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_inverted_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_patterned'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_patterned'}.png deleted file mode 100644 index 067c73c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_patterned'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_patterned_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_patterned_connecting'}.png deleted file mode 100644 index 067c73c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_patterned_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_pillar'}.png deleted file mode 100644 index 54839381..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_pillar_connecting'}.png deleted file mode 100644 index 54839381..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_rib'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_rib'}.png deleted file mode 100644 index b049f92f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_rib'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_skull'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_skull'}.png deleted file mode 100644 index 48963d4e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_skull'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_smooth'}.png deleted file mode 100644 index a9823559..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__bone_block_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_beams'}.png deleted file mode 100644 index ec23b6ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_beams_connecting'}.png deleted file mode 100644 index ec23b6ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_pattern'}.png deleted file mode 100644 index 26cf67f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_pattern_connecting'}.png deleted file mode 100644 index 26cf67f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_paving'}.png deleted file mode 100644 index 7d5d2ee8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_paving_connecting'}.png deleted file mode 100644 index 7d5d2ee8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_bricks'}.png deleted file mode 100644 index 88c24f00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_bricks_connecting'}.png deleted file mode 100644 index 88c24f00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_crate'}.png deleted file mode 100644 index 4433ad58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_crate_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_crate_connecting'}.png deleted file mode 100644 index 4433ad58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_crate_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_stripes'}.png deleted file mode 100644 index 902708d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_stripes_connecting'}.png deleted file mode 100644 index 902708d5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_tiles'}.png deleted file mode 100644 index 577a5805..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_tiles_connecting'}.png deleted file mode 100644 index 577a5805..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_dotted'}.png deleted file mode 100644 index 859d8931..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_dotted_connecting'}.png deleted file mode 100644 index 859d8931..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_flooring'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_flooring'}.png deleted file mode 100644 index 549d52f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_flooring'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_flooring_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_flooring_connecting'}.png deleted file mode 100644 index 549d52f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_flooring_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_large_tiles'}.png deleted file mode 100644 index 71f41d3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_large_tiles_connecting'}.png deleted file mode 100644 index 71f41d3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_mosaic'}.png deleted file mode 100644 index f5fda7e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_pattern'}.png deleted file mode 100644 index 92d2f74d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_pattern_connecting'}.png deleted file mode 100644 index 92d2f74d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_rotated_bricks'}.png deleted file mode 100644 index 4d775404..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_rotated_bricks_connecting'}.png deleted file mode 100644 index 4d775404..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_bricks'}.png deleted file mode 100644 index 34b66967..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_bricks_connecting'}.png deleted file mode 100644 index 34b66967..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_tiles'}.png deleted file mode 100644 index 81a7dfbd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_tiles_connecting'}.png deleted file mode 100644 index 81a7dfbd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_squares'}.png deleted file mode 100644 index 6eee12a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_squares_connecting'}.png deleted file mode 100644 index 6eee12a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_tiles'}.png deleted file mode 100644 index 010da7aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_tiles_connecting'}.png deleted file mode 100644 index 010da7aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_wavy'}.png deleted file mode 100644 index 5853d6e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_wavy_connecting'}.png deleted file mode 100644 index 5853d6e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_woven'}.png deleted file mode 100644 index c5bf540d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_woven_connecting'}.png deleted file mode 100644 index c5bf540d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cherry_planks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_carved'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_carved'}.png deleted file mode 100644 index 4a85709e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_carved'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_carved_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_carved_connecting'}.png deleted file mode 100644 index 4a85709e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_carved_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_chiseled'}.png deleted file mode 100644 index 4ab45c2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_chiseled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_chiseled_connecting'}.png deleted file mode 100644 index 4ab45c2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_chiseled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_circles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_circles'}.png deleted file mode 100644 index 3c021bbc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_circles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_circles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_circles_connecting'}.png deleted file mode 100644 index 3c021bbc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_circles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_compacted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_compacted'}.png deleted file mode 100644 index 634a6106..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_compacted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_compacted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_compacted_connecting'}.png deleted file mode 100644 index 634a6106..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_compacted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_ovals'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_ovals'}.png deleted file mode 100644 index 322ba7ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_ovals'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_ovals_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_ovals_connecting'}.png deleted file mode 100644 index 322ba7ae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_ovals_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pattern'}.png deleted file mode 100644 index 952c576b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pattern_connecting'}.png deleted file mode 100644 index 952c576b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pillar'}.png deleted file mode 100644 index a269d131..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pillar_connecting'}.png deleted file mode 100644 index a269d131..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_polished'}.png deleted file mode 100644 index 4ff3ef3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_rotated_bricks'}.png deleted file mode 100644 index 1294c10f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_rotated_bricks_connecting'}.png deleted file mode 100644 index 1294c10f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_small_tiles'}.png deleted file mode 100644 index ee4ee4d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_small_tiles_connecting'}.png deleted file mode 100644 index ee4ee4d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_stripes'}.png deleted file mode 100644 index 02425126..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_stripes_connecting'}.png deleted file mode 100644 index 02425126..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__coal_block_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_beams'}.png deleted file mode 100644 index 84f2a1d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_beams_connecting'}.png deleted file mode 100644 index 84f2a1d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_pattern'}.png deleted file mode 100644 index 9b38e4c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_pattern_connecting'}.png deleted file mode 100644 index 9b38e4c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_paving'}.png deleted file mode 100644 index 3f5fe2c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_paving_connecting'}.png deleted file mode 100644 index 3f5fe2c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_bricks'}.png deleted file mode 100644 index 70fc7d3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_bricks_connecting'}.png deleted file mode 100644 index 70fc7d3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_large_tiles'}.png deleted file mode 100644 index e8010dda..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_large_tiles_connecting'}.png deleted file mode 100644 index e8010dda..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_paving'}.png deleted file mode 100644 index a6bf118b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_paving_connecting'}.png deleted file mode 100644 index a6bf118b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pillar'}.png deleted file mode 100644 index 3f3b18f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pillar_connecting'}.png deleted file mode 100644 index 3f3b18f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pulverized'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pulverized'}.png deleted file mode 100644 index 5aa7cf1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pulverized'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pulverized_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pulverized_connecting'}.png deleted file mode 100644 index 5aa7cf1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_pulverized_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_rotated_bricks'}.png deleted file mode 100644 index f1f1ec61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_rotated_bricks_connecting'}.png deleted file mode 100644 index f1f1ec61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_small_tiles'}.png deleted file mode 100644 index c01c77de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_small_tiles_connecting'}.png deleted file mode 100644 index c01c77de..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_squares'}.png deleted file mode 100644 index 006d5c2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_squares_connecting'}.png deleted file mode 100644 index 006d5c2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_stripes'}.png deleted file mode 100644 index 04e5ca43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_stripes_connecting'}.png deleted file mode 100644 index 04e5ca43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_tiles'}.png deleted file mode 100644 index de091681..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_tiles_connecting'}.png deleted file mode 100644 index de091681..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_worn_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_worn_stripes'}.png deleted file mode 100644 index 26c75963..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_worn_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_worn_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_worn_stripes_connecting'}.png deleted file mode 100644 index 26c75963..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobbled_deepslate_worn_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_beams'}.png deleted file mode 100644 index 50ffb1c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_beams_connecting'}.png deleted file mode 100644 index 50ffb1c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_pattern'}.png deleted file mode 100644 index 534a7981..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_pattern_connecting'}.png deleted file mode 100644 index 534a7981..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_paving'}.png deleted file mode 100644 index 94191691..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_paving_connecting'}.png deleted file mode 100644 index 94191691..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_chiseled_border'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_chiseled_border'}.png deleted file mode 100644 index ad3feaec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_chiseled_border'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_chiseled_border_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_chiseled_border_connecting'}.png deleted file mode 100644 index ad3feaec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_chiseled_border_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_crosses'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_crosses'}.png deleted file mode 100644 index 99a29f2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_crosses'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_crosses_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_crosses_connecting'}.png deleted file mode 100644 index 99a29f2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_crosses_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_dented'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_dented'}.png deleted file mode 100644 index 81a1c10d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_dented'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_dented_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_dented_connecting'}.png deleted file mode 100644 index 81a1c10d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_dented_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_inverted_dented'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_inverted_dented'}.png deleted file mode 100644 index df53a943..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_inverted_dented'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_inverted_dented_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_inverted_dented_connecting'}.png deleted file mode 100644 index df53a943..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_inverted_dented_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_large_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_large_squares'}.png deleted file mode 100644 index 88c214d0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_large_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_paving'}.png deleted file mode 100644 index 66376698..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_paving_connecting'}.png deleted file mode 100644 index 66376698..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pillar'}.png deleted file mode 100644 index 2bc2e2ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pillar_connecting'}.png deleted file mode 100644 index 2bc2e2ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_polished'}.png deleted file mode 100644 index 747772ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pulverized'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pulverized'}.png deleted file mode 100644 index ab38d399..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pulverized'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pulverized_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pulverized_connecting'}.png deleted file mode 100644 index ab38d399..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_pulverized_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_rotated_bricks'}.png deleted file mode 100644 index 15b7c0cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_rotated_bricks_connecting'}.png deleted file mode 100644 index 15b7c0cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_sheared'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_sheared'}.png deleted file mode 100644 index 542d8b6a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_sheared'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_small_tiles'}.png deleted file mode 100644 index 3c95d891..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_small_tiles_connecting'}.png deleted file mode 100644 index 3c95d891..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_squares'}.png deleted file mode 100644 index c6339196..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_squares_connecting'}.png deleted file mode 100644 index c6339196..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_stripes'}.png deleted file mode 100644 index 60190dab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_stripes_connecting'}.png deleted file mode 100644 index 60190dab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_tiles'}.png deleted file mode 100644 index 0dfea327..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_tiles_connecting'}.png deleted file mode 100644 index 0dfea327..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_worn_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_worn_stripes'}.png deleted file mode 100644 index 821a4dd7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_worn_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_worn_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_worn_stripes_connecting'}.png deleted file mode 100644 index 821a4dd7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__cobblestone_worn_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_bars'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_bars'}.png deleted file mode 100644 index fe106b4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_bars'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_bars_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_bars_connecting'}.png deleted file mode 100644 index fe106b4d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_bars_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_circles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_circles'}.png deleted file mode 100644 index cffc18c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_circles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_circles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_circles_connecting'}.png deleted file mode 100644 index cffc18c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_circles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_cone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_cone'}.png deleted file mode 100644 index 6de9f2cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_cone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_gears'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_gears'}.png deleted file mode 100644 index 9b14b6b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_gears'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_gears_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_gears_connecting'}.png deleted file mode 100644 index 9b14b6b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_gears_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_lines'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_lines'}.png deleted file mode 100644 index eb229c96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_lines'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_lines_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_lines_connecting'}.png deleted file mode 100644 index eb229c96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_lines_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pattern'}.png deleted file mode 100644 index 498ead1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pattern_connecting'}.png deleted file mode 100644 index 498ead1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pillar'}.png deleted file mode 100644 index e48460bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pillar_connecting'}.png deleted file mode 100644 index e48460bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_polished'}.png deleted file mode 100644 index 15f7304a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_polished_connecting'}.png deleted file mode 100644 index 15f7304a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_shafts'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_shafts'}.png deleted file mode 100644 index 4308454b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_shafts'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_shafts_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_shafts_connecting'}.png deleted file mode 100644 index 4308454b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_shafts_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_small_bricks'}.png deleted file mode 100644 index 8d35e7e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_small_bricks_connecting'}.png deleted file mode 100644 index 8d35e7e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_smooth'}.png deleted file mode 100644 index 434f46cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__copper_block_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_beams'}.png deleted file mode 100644 index 09ae478d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_beams_connecting'}.png deleted file mode 100644 index 09ae478d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_pattern'}.png deleted file mode 100644 index b7176f09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_pattern_connecting'}.png deleted file mode 100644 index b7176f09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_paving'}.png deleted file mode 100644 index 655093f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_paving_connecting'}.png deleted file mode 100644 index 655093f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_bricks'}.png deleted file mode 100644 index 123c7b28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_bricks_connecting'}.png deleted file mode 100644 index 123c7b28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_crate'}.png deleted file mode 100644 index 8b00a9ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_crate_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_crate_connecting'}.png deleted file mode 100644 index 8b00a9ad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_crate_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_stripes'}.png deleted file mode 100644 index aec4ecae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_stripes_connecting'}.png deleted file mode 100644 index aec4ecae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_tiles'}.png deleted file mode 100644 index 0e68921f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_tiles_connecting'}.png deleted file mode 100644 index 0e68921f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_dotted'}.png deleted file mode 100644 index 457ffe3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_dotted_connecting'}.png deleted file mode 100644 index 457ffe3e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_flooring'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_flooring'}.png deleted file mode 100644 index ab487309..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_flooring'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_flooring_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_flooring_connecting'}.png deleted file mode 100644 index ab487309..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_flooring_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_large_tiles'}.png deleted file mode 100644 index 32d59b8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_large_tiles_connecting'}.png deleted file mode 100644 index 32d59b8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_mosaic'}.png deleted file mode 100644 index c3135eec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_pattern'}.png deleted file mode 100644 index 7ce823ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_pattern_connecting'}.png deleted file mode 100644 index 7ce823ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_rotated_bricks'}.png deleted file mode 100644 index 13411bb8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_rotated_bricks_connecting'}.png deleted file mode 100644 index 13411bb8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_bricks'}.png deleted file mode 100644 index dd4274c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_bricks_connecting'}.png deleted file mode 100644 index dd4274c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_tiles'}.png deleted file mode 100644 index e8a27213..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_tiles_connecting'}.png deleted file mode 100644 index e8a27213..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_squares'}.png deleted file mode 100644 index 7e82bc12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_squares_connecting'}.png deleted file mode 100644 index 7e82bc12..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_tiles'}.png deleted file mode 100644 index 9778a85d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_tiles_connecting'}.png deleted file mode 100644 index 9778a85d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_wavy'}.png deleted file mode 100644 index 74576b77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_wavy_connecting'}.png deleted file mode 100644 index 74576b77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_woven'}.png deleted file mode 100644 index 249db2e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_woven_connecting'}.png deleted file mode 100644 index 249db2e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__crimson_planks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_beams'}.png deleted file mode 100644 index 238ef6d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_beams_connecting'}.png deleted file mode 100644 index 238ef6d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_pattern'}.png deleted file mode 100644 index 55ae953a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_pattern_connecting'}.png deleted file mode 100644 index 55ae953a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_paving'}.png deleted file mode 100644 index 1a08d8bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_paving_connecting'}.png deleted file mode 100644 index 1a08d8bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_bricks'}.png deleted file mode 100644 index 08ad627f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_bricks_connecting'}.png deleted file mode 100644 index 08ad627f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_crate'}.png deleted file mode 100644 index c9e61be0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_crate_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_crate_connecting'}.png deleted file mode 100644 index c9e61be0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_crate_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_stripes'}.png deleted file mode 100644 index a79c1cc2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_stripes_connecting'}.png deleted file mode 100644 index a79c1cc2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_tiles'}.png deleted file mode 100644 index 8c66c589..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_tiles_connecting'}.png deleted file mode 100644 index 8c66c589..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_dotted'}.png deleted file mode 100644 index 9959f343..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_dotted_connecting'}.png deleted file mode 100644 index 9959f343..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_flooring'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_flooring'}.png deleted file mode 100644 index b6a1d384..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_flooring'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_flooring_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_flooring_connecting'}.png deleted file mode 100644 index b6a1d384..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_flooring_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_large_tiles'}.png deleted file mode 100644 index 38c8c6ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_large_tiles_connecting'}.png deleted file mode 100644 index 38c8c6ef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_mosaic'}.png deleted file mode 100644 index 0b19a5b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_pattern'}.png deleted file mode 100644 index 41458133..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_pattern_connecting'}.png deleted file mode 100644 index 41458133..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_rotated_bricks'}.png deleted file mode 100644 index b1b751f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_rotated_bricks_connecting'}.png deleted file mode 100644 index b1b751f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_bricks'}.png deleted file mode 100644 index 55ecb8e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_bricks_connecting'}.png deleted file mode 100644 index 55ecb8e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_tiles'}.png deleted file mode 100644 index 9e2678f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_tiles_connecting'}.png deleted file mode 100644 index 9e2678f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_squares'}.png deleted file mode 100644 index 367629b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_squares_connecting'}.png deleted file mode 100644 index 367629b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_tiles'}.png deleted file mode 100644 index ad923a90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_tiles_connecting'}.png deleted file mode 100644 index ad923a90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_wavy'}.png deleted file mode 100644 index 3469d66b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_wavy_connecting'}.png deleted file mode 100644 index 3469d66b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_woven'}.png deleted file mode 100644 index 6d1cdc3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_woven_connecting'}.png deleted file mode 100644 index 6d1cdc3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_oak_planks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_beams'}.png deleted file mode 100644 index 9a02cd7b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_beams_connecting'}.png deleted file mode 100644 index 9a02cd7b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_brick_paving'}.png deleted file mode 100644 index 29b9dfb4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_brick_paving_connecting'}.png deleted file mode 100644 index 29b9dfb4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_bricks'}.png deleted file mode 100644 index 8b78e781..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_bricks_connecting'}.png deleted file mode 100644 index 8b78e781..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_dotted'}.png deleted file mode 100644 index d8f43978..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_dotted_connecting'}.png deleted file mode 100644 index d8f43978..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_fabric'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_fabric'}.png deleted file mode 100644 index 230fa169..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_fabric'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_fabric_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_fabric_connecting'}.png deleted file mode 100644 index 230fa169..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_fabric_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_large_tiles'}.png deleted file mode 100644 index 7e3a00d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_large_tiles_connecting'}.png deleted file mode 100644 index 7e3a00d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rotated_bricks'}.png deleted file mode 100644 index 5d6ded99..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rotated_bricks_connecting'}.png deleted file mode 100644 index 5d6ded99..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rows'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rows'}.png deleted file mode 100644 index e885b513..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rows'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rows_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rows_connecting'}.png deleted file mode 100644 index e885b513..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_rows_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_squares'}.png deleted file mode 100644 index b0115354..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_squares_connecting'}.png deleted file mode 100644 index b0115354..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_tiles'}.png deleted file mode 100644 index 25e00cb9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_tiles_connecting'}.png deleted file mode 100644 index 25e00cb9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_wavy'}.png deleted file mode 100644 index d44cb693..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_wavy_connecting'}.png deleted file mode 100644 index d44cb693..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_woven'}.png deleted file mode 100644 index 36314e42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_woven_connecting'}.png deleted file mode 100644 index 36314e42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dark_prismarine_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled'}.png deleted file mode 100644 index 35daf355..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled_connecting'}.png deleted file mode 100644 index 35daf355..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled_cubes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled_cubes'}.png deleted file mode 100644 index b02e6ba4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled_cubes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled_cubes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled_cubes_connecting'}.png deleted file mode 100644 index b02e6ba4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_chiseled_cubes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_connecting_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_connecting_connecting'}.png deleted file mode 100644 index f1eaf17d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_connecting_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_diagonal_tiles'}.png deleted file mode 100644 index a282b8f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_grid'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_grid'}.png deleted file mode 100644 index ac35fc26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_grid'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_grid_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_grid_connecting'}.png deleted file mode 100644 index ac35fc26..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_grid_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_jewel_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_jewel_block'}.png deleted file mode 100644 index e12f7e91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_jewel_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_jewel_block_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_jewel_block_connecting'}.png deleted file mode 100644 index e12f7e91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_jewel_block_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_polished'}.png deleted file mode 100644 index a3c1df6e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_polished_connecting'}.png deleted file mode 100644 index a3c1df6e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_rhombuses'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_rhombuses'}.png deleted file mode 100644 index ba751ffe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_rhombuses'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_rhombuses_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_rhombuses_connecting'}.png deleted file mode 100644 index ba751ffe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_rhombuses_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_shiny'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_shiny'}.png deleted file mode 100644 index 483fd835..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_shiny'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_shiny_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_shiny_bordered'}.png deleted file mode 100644 index 35c37d9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_shiny_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_shiny_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_shiny_bordered_connecting'}.png deleted file mode 100644 index 35c37d9b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_shiny_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_small_tiles'}.png deleted file mode 100644 index 6daaaea9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_small_tiles_connecting'}.png deleted file mode 100644 index 6daaaea9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_smooth'}.png deleted file mode 100644 index 705dc5a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diamond_block_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_pattern'}.png deleted file mode 100644 index 53396d5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_pattern_connecting'}.png deleted file mode 100644 index 53396d5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_paving'}.png deleted file mode 100644 index 8bdb17ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_paving_connecting'}.png deleted file mode 100644 index 8bdb17ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_bricks'}.png deleted file mode 100644 index 3af42b3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_bricks_connecting'}.png deleted file mode 100644 index 3af42b3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_diagonal_bricks'}.png deleted file mode 100644 index 2cfaa577..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_diagonal_bricks_connecting'}.png deleted file mode 100644 index 2cfaa577..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_dotted'}.png deleted file mode 100644 index 69d40042..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_dotted_connecting'}.png deleted file mode 100644 index 69d40042..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_paving'}.png deleted file mode 100644 index a6dcc88d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_paving_connecting'}.png deleted file mode 100644 index a6dcc88d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_polished_connecting'}.png deleted file mode 100644 index 65e9e53c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_rotated_bricks'}.png deleted file mode 100644 index 7a1a7093..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_rotated_bricks_connecting'}.png deleted file mode 100644 index 7a1a7093..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_squares'}.png deleted file mode 100644 index 57203f01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_squares_connecting'}.png deleted file mode 100644 index 57203f01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_tiles'}.png deleted file mode 100644 index 4c992d04..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_tiles_connecting'}.png deleted file mode 100644 index 4c992d04..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_wavy'}.png deleted file mode 100644 index 9cf3313d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_wavy_connecting'}.png deleted file mode 100644 index 9cf3313d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__diorite_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_blobs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_blobs'}.png deleted file mode 100644 index 7373099e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_blobs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_blobs_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_blobs_connecting'}.png deleted file mode 100644 index 7373099e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_blobs_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_bricks'}.png deleted file mode 100644 index 81a2a79c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_bricks_connecting'}.png deleted file mode 100644 index 81a2a79c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_chunks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_chunks'}.png deleted file mode 100644 index d47b708b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_chunks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_chunks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_chunks_connecting'}.png deleted file mode 100644 index d47b708b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_chunks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_clumps'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_clumps'}.png deleted file mode 100644 index 97cf4d2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_clumps'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_clumps_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_clumps_connecting'}.png deleted file mode 100644 index 97cf4d2c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_clumps_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_cobbled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_cobbled'}.png deleted file mode 100644 index 2628d34a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_cobbled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_grooves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_grooves'}.png deleted file mode 100644 index a34ed76d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_grooves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_large_tiles'}.png deleted file mode 100644 index 153b4272..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_large_tiles_connecting'}.png deleted file mode 100644 index 153b4272..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_muddy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_muddy'}.png deleted file mode 100644 index 45fc741f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_muddy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_bricks'}.png deleted file mode 100644 index cecb4470..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_bricks_connecting'}.png deleted file mode 100644 index cecb4470..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_tiles'}.png deleted file mode 100644 index 802b91bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_tiles_connecting'}.png deleted file mode 100644 index 802b91bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_smooth_clumps'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_smooth_clumps'}.png deleted file mode 100644 index a33752e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_smooth_clumps'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_smooth_clumps_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_smooth_clumps_connecting'}.png deleted file mode 100644 index a33752e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_smooth_clumps_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_soil'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_soil'}.png deleted file mode 100644 index 5b9574bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_soil'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_soil_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_soil_connecting'}.png deleted file mode 100644 index 5b9574bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_soil_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_squares'}.png deleted file mode 100644 index a156043f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_squares_connecting'}.png deleted file mode 100644 index a156043f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tiles'}.png deleted file mode 100644 index 16dc6e1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tiles_connecting'}.png deleted file mode 100644 index 16dc6e1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tilled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tilled'}.png deleted file mode 100644 index 93276495..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tilled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tilled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tilled_connecting'}.png deleted file mode 100644 index 93276495..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__dirt_tilled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_crosses'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_crosses'}.png deleted file mode 100644 index 6e41193f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_crosses'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_crosses_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_crosses_connecting'}.png deleted file mode 100644 index 6e41193f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_crosses_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_plating'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_plating'}.png deleted file mode 100644 index 6dd1bc19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_plating'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_plating_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_plating_connecting'}.png deleted file mode 100644 index 6dd1bc19..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_bordered_plating_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_chiseled'}.png deleted file mode 100644 index b58f96fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_chiseled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_chiseled_connecting'}.png deleted file mode 100644 index b58f96fd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_chiseled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_clovers'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_clovers'}.png deleted file mode 100644 index 8f653f62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_clovers'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_clovers_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_clovers_connecting'}.png deleted file mode 100644 index 8f653f62..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_clovers_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_crosses'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_crosses'}.png deleted file mode 100644 index 02547b65..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_crosses'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_crystal'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_crystal'}.png deleted file mode 100644 index 3b94d231..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_crystal'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_crystal_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_crystal_connecting'}.png deleted file mode 100644 index 3b94d231..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_crystal_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned'}.png deleted file mode 100644 index 7073fbd3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned_connecting'}.png deleted file mode 100644 index 7073fbd3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned_squares'}.png deleted file mode 100644 index 2ff45f77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned_squares_connecting'}.png deleted file mode 100644 index 2ff45f77..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_patterned_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_pillar'}.png deleted file mode 100644 index 60d7471c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_pillar_connecting'}.png deleted file mode 100644 index 60d7471c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_plating'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_plating'}.png deleted file mode 100644 index 75a3c635..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_plating'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_polished'}.png deleted file mode 100644 index 4b1e9e70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_polished_connecting'}.png deleted file mode 100644 index 4b1e9e70..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_smooth'}.png deleted file mode 100644 index 5350dfc3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_striped'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_striped'}.png deleted file mode 100644 index 2f186bda..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_striped'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_striped_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_striped_connecting'}.png deleted file mode 100644 index 2f186bda..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_striped_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_waxed'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_waxed'}.png deleted file mode 100644 index adff7b51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_waxed'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_waxed_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_waxed_connecting'}.png deleted file mode 100644 index adff7b51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__emerald_block_waxed_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_blobs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_blobs'}.png deleted file mode 100644 index eebb53c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_blobs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_blobs_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_blobs_connecting'}.png deleted file mode 100644 index eebb53c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_blobs_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_pattern'}.png deleted file mode 100644 index 63b816cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_pattern_connecting'}.png deleted file mode 100644 index 63b816cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_paving'}.png deleted file mode 100644 index b200d278..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_paving_connecting'}.png deleted file mode 100644 index b200d278..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_chiseled'}.png deleted file mode 100644 index 35a853fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_chiseled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_chiseled_connecting'}.png deleted file mode 100644 index 35a853fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_chiseled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_crushed'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_crushed'}.png deleted file mode 100644 index 569edc1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_crushed'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_crushed_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_crushed_connecting'}.png deleted file mode 100644 index 569edc1c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_crushed_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_diagonal_bricks'}.png deleted file mode 100644 index 2e6504f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_diagonal_bricks_connecting'}.png deleted file mode 100644 index 2e6504f5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_mesh'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_mesh'}.png deleted file mode 100644 index 8680ca79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_mesh'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_mesh_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_mesh_connecting'}.png deleted file mode 100644 index 8680ca79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_mesh_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_paving'}.png deleted file mode 100644 index a22b8667..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_paving_connecting'}.png deleted file mode 100644 index a22b8667..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_polished'}.png deleted file mode 100644 index abce4278..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_polished_connecting'}.png deleted file mode 100644 index abce4278..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_rotated_bricks'}.png deleted file mode 100644 index aa6a1594..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_rotated_bricks_connecting'}.png deleted file mode 100644 index aa6a1594..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_scales'}.png deleted file mode 100644 index 52f07a66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_scales_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_scales_connecting'}.png deleted file mode 100644 index 52f07a66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_scales_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_small_tiles'}.png deleted file mode 100644 index 16f539a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_small_tiles_connecting'}.png deleted file mode 100644 index 16f539a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_spiral_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_spiral_pattern'}.png deleted file mode 100644 index 6d1112f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_spiral_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_spiral_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_spiral_pattern_connecting'}.png deleted file mode 100644 index 6d1112f6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_spiral_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_squares'}.png deleted file mode 100644 index c5c57f01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_squares_connecting'}.png deleted file mode 100644 index c5c57f01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_tiles'}.png deleted file mode 100644 index 248d4698..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_tiles_connecting'}.png deleted file mode 100644 index 248d4698..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__end_stone_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_pattern'}.png deleted file mode 100644 index cbd40ff0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_pattern_connecting'}.png deleted file mode 100644 index cbd40ff0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_paving'}.png deleted file mode 100644 index a1843e96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_paving_connecting'}.png deleted file mode 100644 index a1843e96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_bricks'}.png deleted file mode 100644 index c4321707..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_bricks_connecting'}.png deleted file mode 100644 index c4321707..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_crushed'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_crushed'}.png deleted file mode 100644 index b8ebd99c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_crushed'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_crushed_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_crushed_connecting'}.png deleted file mode 100644 index b8ebd99c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_crushed_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_large_tiles'}.png deleted file mode 100644 index dd9f80ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_large_tiles_connecting'}.png deleted file mode 100644 index dd9f80ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_rotated_bricks'}.png deleted file mode 100644 index c7d6fee6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_rotated_bricks_connecting'}.png deleted file mode 100644 index c7d6fee6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_small_tiles'}.png deleted file mode 100644 index 8e61cff2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_small_tiles_connecting'}.png deleted file mode 100644 index 8e61cff2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_smooth'}.png deleted file mode 100644 index 578a1657..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_smooth_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_smooth_connecting'}.png deleted file mode 100644 index 578a1657..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_smooth_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_tiles'}.png deleted file mode 100644 index 2799aea2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_tiles_connecting'}.png deleted file mode 100644 index 2799aea2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__glowstone_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_beams'}.png deleted file mode 100644 index b57bf6ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_beams_connecting'}.png deleted file mode 100644 index b57bf6ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_bordered'}.png deleted file mode 100644 index 3ea0b551..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_bordered_connecting'}.png deleted file mode 100644 index 3ea0b551..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_lines'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_lines'}.png deleted file mode 100644 index 26733b2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_lines'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_lines_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_lines_connecting'}.png deleted file mode 100644 index 26733b2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_lines_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_pattern'}.png deleted file mode 100644 index 03f42c10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_pattern_connecting'}.png deleted file mode 100644 index 03f42c10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_polished'}.png deleted file mode 100644 index d14809cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_polished_connecting'}.png deleted file mode 100644 index d14809cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_scales'}.png deleted file mode 100644 index 3dc6ba44..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_scales_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_scales_connecting'}.png deleted file mode 100644 index 3dc6ba44..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_scales_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_bricks'}.png deleted file mode 100644 index 0da20cee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_bricks_connecting'}.png deleted file mode 100644 index 0da20cee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_tiles'}.png deleted file mode 100644 index c32bd6ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_tiles_connecting'}.png deleted file mode 100644 index c32bd6ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_smooth'}.png deleted file mode 100644 index 5075ae3f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_striped'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_striped'}.png deleted file mode 100644 index 9f6b899b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_striped'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_striped_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_striped_connecting'}.png deleted file mode 100644 index 9f6b899b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_striped_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_tiles'}.png deleted file mode 100644 index 2813808a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_tiles_connecting'}.png deleted file mode 100644 index 2813808a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__gold_block_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_pattern'}.png deleted file mode 100644 index 169ee1b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_pattern_connecting'}.png deleted file mode 100644 index 169ee1b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_paving'}.png deleted file mode 100644 index 85d05fa6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_paving_connecting'}.png deleted file mode 100644 index 85d05fa6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_bricks'}.png deleted file mode 100644 index 7747b679..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_bricks_connecting'}.png deleted file mode 100644 index 7747b679..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_diagonal_bricks'}.png deleted file mode 100644 index ffb3224c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_diagonal_bricks_connecting'}.png deleted file mode 100644 index ffb3224c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_dotted'}.png deleted file mode 100644 index ccb11039..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_dotted_connecting'}.png deleted file mode 100644 index ccb11039..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_paving'}.png deleted file mode 100644 index 24736ace..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_paving_connecting'}.png deleted file mode 100644 index 24736ace..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_polished_connecting'}.png deleted file mode 100644 index a8fe1ea5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_rotated_bricks'}.png deleted file mode 100644 index f2624f1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_rotated_bricks_connecting'}.png deleted file mode 100644 index f2624f1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_squares'}.png deleted file mode 100644 index 5cac0dc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_squares_connecting'}.png deleted file mode 100644 index 5cac0dc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_tiles'}.png deleted file mode 100644 index 2ed0e3c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_tiles_connecting'}.png deleted file mode 100644 index 2ed0e3c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_wavy'}.png deleted file mode 100644 index a8019b09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_wavy_connecting'}.png deleted file mode 100644 index a8019b09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__granite_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_bordered'}.png deleted file mode 100644 index 186299b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_bordered_connecting'}.png deleted file mode 100644 index 186299b8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_chiseled'}.png deleted file mode 100644 index 702936e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_chiseled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_chiseled_connecting'}.png deleted file mode 100644 index 702936e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_chiseled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_connecting_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_connecting_connecting'}.png deleted file mode 100644 index 3fd1bbb5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_connecting_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_framed'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_framed'}.png deleted file mode 100644 index 0fe60d99..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_framed'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_framed_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_framed_connecting'}.png deleted file mode 100644 index 0fe60d99..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_framed_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_gears'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_gears'}.png deleted file mode 100644 index ba9fc62a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_gears'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_gears_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_gears_connecting'}.png deleted file mode 100644 index ba9fc62a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_gears_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_lines'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_lines'}.png deleted file mode 100644 index 363ca772..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_lines'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_lines_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_lines_connecting'}.png deleted file mode 100644 index 363ca772..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_lines_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_patterned'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_patterned'}.png deleted file mode 100644 index b571409b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_patterned'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_patterned_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_patterned_connecting'}.png deleted file mode 100644 index b571409b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_patterned_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_pipes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_pipes'}.png deleted file mode 100644 index 57d09d34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_pipes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_pipes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_pipes_connecting'}.png deleted file mode 100644 index 57d09d34..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_pipes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_plated'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_plated'}.png deleted file mode 100644 index 53582252..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_plated'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_polished'}.png deleted file mode 100644 index c3e289b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_polished_connecting'}.png deleted file mode 100644 index c3e289b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_processed'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_processed'}.png deleted file mode 100644 index 9559a02a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_processed'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_processed_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_processed_connecting'}.png deleted file mode 100644 index 9559a02a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_processed_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_pulverized'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_pulverized'}.png deleted file mode 100644 index 1ddf3e5f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_pulverized'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_reinforced'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_reinforced'}.png deleted file mode 100644 index bc65c095..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_reinforced'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_sheets'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_sheets'}.png deleted file mode 100644 index 00e0509f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_sheets'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_small_bricks'}.png deleted file mode 100644 index c4f71ec6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_small_bricks_connecting'}.png deleted file mode 100644 index c4f71ec6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_smooth'}.png deleted file mode 100644 index 3e241993..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__iron_block_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_beams'}.png deleted file mode 100644 index 092a1def..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_beams_connecting'}.png deleted file mode 100644 index 092a1def..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_pattern'}.png deleted file mode 100644 index 8019c896..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_pattern_connecting'}.png deleted file mode 100644 index 8019c896..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_paving'}.png deleted file mode 100644 index 55c7d441..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_paving_connecting'}.png deleted file mode 100644 index 55c7d441..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_bricks'}.png deleted file mode 100644 index 047dadb7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_bricks_connecting'}.png deleted file mode 100644 index 047dadb7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_crate'}.png deleted file mode 100644 index 8088b409..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_crate_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_crate_connecting'}.png deleted file mode 100644 index 8088b409..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_crate_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_stripes'}.png deleted file mode 100644 index c56ba0e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_stripes_connecting'}.png deleted file mode 100644 index c56ba0e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_tiles'}.png deleted file mode 100644 index dbc98d61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_tiles_connecting'}.png deleted file mode 100644 index dbc98d61..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_dotted'}.png deleted file mode 100644 index 4df2058f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_dotted_connecting'}.png deleted file mode 100644 index 4df2058f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_flooring'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_flooring'}.png deleted file mode 100644 index 74fd465d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_flooring'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_flooring_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_flooring_connecting'}.png deleted file mode 100644 index 74fd465d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_flooring_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_large_tiles'}.png deleted file mode 100644 index 6f3b85ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_large_tiles_connecting'}.png deleted file mode 100644 index 6f3b85ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_mosaic'}.png deleted file mode 100644 index b4325d2d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_pattern'}.png deleted file mode 100644 index 0ed6d76d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_pattern_connecting'}.png deleted file mode 100644 index 0ed6d76d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_rotated_bricks'}.png deleted file mode 100644 index 48c2b401..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_rotated_bricks_connecting'}.png deleted file mode 100644 index 48c2b401..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_bricks'}.png deleted file mode 100644 index 3b3cd101..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_bricks_connecting'}.png deleted file mode 100644 index 3b3cd101..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_tiles'}.png deleted file mode 100644 index 30c39636..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_tiles_connecting'}.png deleted file mode 100644 index 30c39636..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_squares'}.png deleted file mode 100644 index 4abbd9fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_squares_connecting'}.png deleted file mode 100644 index 4abbd9fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_tiles'}.png deleted file mode 100644 index 3a8bb3ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_tiles_connecting'}.png deleted file mode 100644 index 3a8bb3ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_wavy'}.png deleted file mode 100644 index 0b47c496..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_wavy_connecting'}.png deleted file mode 100644 index 0b47c496..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_woven'}.png deleted file mode 100644 index 8f2f61b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_woven_connecting'}.png deleted file mode 100644 index 8f2f61b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__jungle_planks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_bordered'}.png deleted file mode 100644 index 807e4f73..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_bordered_connecting'}.png deleted file mode 100644 index 807e4f73..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_chiseled'}.png deleted file mode 100644 index ed175e35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_chiseled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_chiseled_connecting'}.png deleted file mode 100644 index ed175e35..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_chiseled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_cobbled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_cobbled'}.png deleted file mode 100644 index 75a383dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_cobbled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_connecting_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_connecting_connecting'}.png deleted file mode 100644 index 559b2d5e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_connecting_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_crushed'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_crushed'}.png deleted file mode 100644 index 454f0d8b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_crushed'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_decorated'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_decorated'}.png deleted file mode 100644 index 519bf77c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_decorated'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_decorated_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_decorated_connecting'}.png deleted file mode 100644 index 519bf77c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_decorated_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_glossy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_glossy'}.png deleted file mode 100644 index 5bb1ad06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_glossy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_glossy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_glossy_connecting'}.png deleted file mode 100644 index 5bb1ad06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_glossy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_inverted_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_inverted_tiles'}.png deleted file mode 100644 index 205f34ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_inverted_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_inverted_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_inverted_tiles_connecting'}.png deleted file mode 100644 index 205f34ed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_inverted_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_mosaic'}.png deleted file mode 100644 index a597208c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_mosaic_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_mosaic_connecting'}.png deleted file mode 100644 index a597208c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_mosaic_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pattern'}.png deleted file mode 100644 index f6347d92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pattern_connecting'}.png deleted file mode 100644 index f6347d92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pillar'}.png deleted file mode 100644 index a3f60a5b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pillar_connecting'}.png deleted file mode 100644 index a3f60a5b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_polished'}.png deleted file mode 100644 index 27c3afe8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_polished_connecting'}.png deleted file mode 100644 index 27c3afe8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_scales'}.png deleted file mode 100644 index 76425aa3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_scales_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_scales_connecting'}.png deleted file mode 100644 index 76425aa3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_scales_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_small_tiles'}.png deleted file mode 100644 index 04e2939c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_small_tiles_connecting'}.png deleted file mode 100644 index 04e2939c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_smooth'}.png deleted file mode 100644 index 90b5937f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_stripes'}.png deleted file mode 100644 index 83568480..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_stripes_connecting'}.png deleted file mode 100644 index 83568480..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_swirling'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_swirling'}.png deleted file mode 100644 index 06e81ada..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_swirling'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_tiles'}.png deleted file mode 100644 index dffaf947..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_tiles_connecting'}.png deleted file mode 100644 index dffaf947..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__lapis_block_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_beams'}.png deleted file mode 100644 index 7174548f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_beams_connecting'}.png deleted file mode 100644 index 7174548f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_pattern'}.png deleted file mode 100644 index 95c8ea40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_pattern_connecting'}.png deleted file mode 100644 index 95c8ea40..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_paving'}.png deleted file mode 100644 index 99e9437f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_paving_connecting'}.png deleted file mode 100644 index 99e9437f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_bricks'}.png deleted file mode 100644 index 32f85170..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_bricks_connecting'}.png deleted file mode 100644 index 32f85170..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_crate'}.png deleted file mode 100644 index 66ccb4b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_crate_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_crate_connecting'}.png deleted file mode 100644 index 66ccb4b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_crate_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_stripes'}.png deleted file mode 100644 index 051edb11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_stripes_connecting'}.png deleted file mode 100644 index 051edb11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_tiles'}.png deleted file mode 100644 index 2dea1395..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_tiles_connecting'}.png deleted file mode 100644 index 2dea1395..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_dotted'}.png deleted file mode 100644 index 9c349b4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_dotted_connecting'}.png deleted file mode 100644 index 9c349b4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_flooring'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_flooring'}.png deleted file mode 100644 index 8771eade..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_flooring'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_flooring_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_flooring_connecting'}.png deleted file mode 100644 index 8771eade..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_flooring_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_large_tiles'}.png deleted file mode 100644 index b16f0836..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_large_tiles_connecting'}.png deleted file mode 100644 index b16f0836..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_mosaic'}.png deleted file mode 100644 index af999540..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_pattern'}.png deleted file mode 100644 index 7809d860..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_pattern_connecting'}.png deleted file mode 100644 index 7809d860..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_rotated_bricks'}.png deleted file mode 100644 index 990681ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_rotated_bricks_connecting'}.png deleted file mode 100644 index 990681ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_bricks'}.png deleted file mode 100644 index ad5f7764..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_bricks_connecting'}.png deleted file mode 100644 index ad5f7764..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_tiles'}.png deleted file mode 100644 index 9e2ce2a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_tiles_connecting'}.png deleted file mode 100644 index 9e2ce2a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_squares'}.png deleted file mode 100644 index 4023e282..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_squares_connecting'}.png deleted file mode 100644 index 4023e282..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_tiles'}.png deleted file mode 100644 index 01acdd8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_tiles_connecting'}.png deleted file mode 100644 index 01acdd8d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_wavy'}.png deleted file mode 100644 index 673c7cd5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_wavy_connecting'}.png deleted file mode 100644 index 673c7cd5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_woven'}.png deleted file mode 100644 index 681e3d10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_woven_connecting'}.png deleted file mode 100644 index 681e3d10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mangrove_planks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_beams'}.png deleted file mode 100644 index f6a56046..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_beams_connecting'}.png deleted file mode 100644 index f6a56046..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_dented'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_dented'}.png deleted file mode 100644 index d599cc8f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_dented'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_dented_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_dented_connecting'}.png deleted file mode 100644 index d599cc8f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_dented_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_inverted_dented'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_inverted_dented'}.png deleted file mode 100644 index 6a1f2923..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_inverted_dented'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_inverted_dented_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_inverted_dented_connecting'}.png deleted file mode 100644 index 6a1f2923..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_inverted_dented_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_paving'}.png deleted file mode 100644 index a32f22b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_paving_connecting'}.png deleted file mode 100644 index a32f22b5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_small_tiles'}.png deleted file mode 100644 index 1677d454..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_small_tiles_connecting'}.png deleted file mode 100644 index 1677d454..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_squares'}.png deleted file mode 100644 index a50f7c39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_squares_connecting'}.png deleted file mode 100644 index a50f7c39..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_stripes'}.png deleted file mode 100644 index 82c04723..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_stripes_connecting'}.png deleted file mode 100644 index 82c04723..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_worn_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_worn_stripes'}.png deleted file mode 100644 index e3f7c04e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_worn_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_worn_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_worn_stripes_connecting'}.png deleted file mode 100644 index e3f7c04e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__mossy_cobblestone_worn_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_beams'}.png deleted file mode 100644 index 2cdecc5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_beams_connecting'}.png deleted file mode 100644 index 2cdecc5a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_pattern'}.png deleted file mode 100644 index 675abd06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_pattern_connecting'}.png deleted file mode 100644 index 675abd06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_paving'}.png deleted file mode 100644 index 8cd763cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_paving_connecting'}.png deleted file mode 100644 index 8cd763cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_chiseled_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_chiseled_squares'}.png deleted file mode 100644 index 973b274d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_chiseled_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_chiseled_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_chiseled_squares_connecting'}.png deleted file mode 100644 index 973b274d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_chiseled_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_diagonal_bricks'}.png deleted file mode 100644 index b9ac21ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_diagonal_bricks_connecting'}.png deleted file mode 100644 index b9ac21ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_bricks'}.png deleted file mode 100644 index c1ecef16..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_bricks_connecting'}.png deleted file mode 100644 index c1ecef16..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_tiles'}.png deleted file mode 100644 index 8bf79e42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_tiles_connecting'}.png deleted file mode 100644 index 8bf79e42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_rotated_bricks'}.png deleted file mode 100644 index 7f7f2c96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_rotated_bricks_connecting'}.png deleted file mode 100644 index 7f7f2c96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_small_tiles'}.png deleted file mode 100644 index 6140adab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_small_tiles_connecting'}.png deleted file mode 100644 index 6140adab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_smooth'}.png deleted file mode 100644 index ce738951..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_smooth_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_smooth_connecting'}.png deleted file mode 100644 index ce738951..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_smooth_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_squares'}.png deleted file mode 100644 index 1aa39fd4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_squares_connecting'}.png deleted file mode 100644 index 1aa39fd4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_tiles'}.png deleted file mode 100644 index ec65f3d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_tiles_connecting'}.png deleted file mode 100644 index ec65f3d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__nether_bricks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_beams'}.png deleted file mode 100644 index faf10c80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_beams_connecting'}.png deleted file mode 100644 index faf10c80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_bricks'}.png deleted file mode 100644 index 77b1a57f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_bricks_connecting'}.png deleted file mode 100644 index 77b1a57f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_chiseled'}.png deleted file mode 100644 index 45fcb0b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_chiseled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_chiseled_connecting'}.png deleted file mode 100644 index 45fcb0b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_chiseled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_compacted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_compacted'}.png deleted file mode 100644 index e74076cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_compacted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_compacted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_compacted_connecting'}.png deleted file mode 100644 index e74076cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_compacted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_decorated'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_decorated'}.png deleted file mode 100644 index 2831ba55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_decorated'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_decorated_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_decorated_connecting'}.png deleted file mode 100644 index 2831ba55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_decorated_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_diagonal_tiles'}.png deleted file mode 100644 index c9068580..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_diagonal_tiles_connecting'}.png deleted file mode 100644 index c9068580..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_indented'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_indented'}.png deleted file mode 100644 index 755e7e3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_indented'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_indented_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_indented_connecting'}.png deleted file mode 100644 index 755e7e3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_indented_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_meteoric'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_meteoric'}.png deleted file mode 100644 index a8b4328f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_meteoric'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_patterned'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_patterned'}.png deleted file mode 100644 index b595adad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_patterned'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_patterned_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_patterned_connecting'}.png deleted file mode 100644 index b595adad..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_patterned_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_pillar'}.png deleted file mode 100644 index e2e9173e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_pillar_connecting'}.png deleted file mode 100644 index e2e9173e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_small_tiles'}.png deleted file mode 100644 index 67dc36c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_small_tiles_connecting'}.png deleted file mode 100644 index 67dc36c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_smooth'}.png deleted file mode 100644 index 1825a6e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherite_block_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_beams'}.png deleted file mode 100644 index ac082163..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_beams_connecting'}.png deleted file mode 100644 index ac082163..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_pattern'}.png deleted file mode 100644 index 3ef823ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_pattern_connecting'}.png deleted file mode 100644 index 3ef823ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_paving'}.png deleted file mode 100644 index c8bdc85e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_paving_connecting'}.png deleted file mode 100644 index c8bdc85e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_bricks'}.png deleted file mode 100644 index 8e7e2550..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_bricks_connecting'}.png deleted file mode 100644 index 8e7e2550..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_dented'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_dented'}.png deleted file mode 100644 index e30baf91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_dented'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_dented_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_dented_connecting'}.png deleted file mode 100644 index e30baf91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_dented_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_rotated_bricks'}.png deleted file mode 100644 index dd90ee41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_rotated_bricks_connecting'}.png deleted file mode 100644 index dd90ee41..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_small_tiles'}.png deleted file mode 100644 index 17e28110..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_small_tiles_connecting'}.png deleted file mode 100644 index 17e28110..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_stripes'}.png deleted file mode 100644 index 6f0a66e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_stripes_connecting'}.png deleted file mode 100644 index 6f0a66e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_tiles'}.png deleted file mode 100644 index 01e9b2cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_tiles_connecting'}.png deleted file mode 100644 index 01e9b2cb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__netherrack_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_beams'}.png deleted file mode 100644 index 1a8e5b75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_beams_connecting'}.png deleted file mode 100644 index 1a8e5b75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_pattern'}.png deleted file mode 100644 index a744797d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_pattern_connecting'}.png deleted file mode 100644 index a744797d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_paving'}.png deleted file mode 100644 index aa8cc80c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_paving_connecting'}.png deleted file mode 100644 index aa8cc80c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_bricks'}.png deleted file mode 100644 index 26e82f91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_bricks_connecting'}.png deleted file mode 100644 index 26e82f91..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_crate'}.png deleted file mode 100644 index 6ba836f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_crate_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_crate_connecting'}.png deleted file mode 100644 index 6ba836f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_crate_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_stripes'}.png deleted file mode 100644 index 9bf1812d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_stripes_connecting'}.png deleted file mode 100644 index 9bf1812d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_tiles'}.png deleted file mode 100644 index 82136c33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_tiles_connecting'}.png deleted file mode 100644 index 82136c33..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_dotted'}.png deleted file mode 100644 index 45bb8bea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_dotted_connecting'}.png deleted file mode 100644 index 45bb8bea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_flooring'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_flooring'}.png deleted file mode 100644 index 750a7164..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_flooring'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_flooring_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_flooring_connecting'}.png deleted file mode 100644 index 750a7164..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_flooring_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_large_tiles'}.png deleted file mode 100644 index d7a06417..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_large_tiles_connecting'}.png deleted file mode 100644 index d7a06417..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_mosaic'}.png deleted file mode 100644 index 77dbd8dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_pattern'}.png deleted file mode 100644 index ed0614c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_pattern_connecting'}.png deleted file mode 100644 index ed0614c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_rotated_bricks'}.png deleted file mode 100644 index d0dd0493..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_rotated_bricks_connecting'}.png deleted file mode 100644 index d0dd0493..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_bricks'}.png deleted file mode 100644 index 0b984bfd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_bricks_connecting'}.png deleted file mode 100644 index 0b984bfd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_tiles'}.png deleted file mode 100644 index 54614651..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_tiles_connecting'}.png deleted file mode 100644 index 54614651..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_squares'}.png deleted file mode 100644 index d3381ea7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_squares_connecting'}.png deleted file mode 100644 index d3381ea7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_tiles'}.png deleted file mode 100644 index 6d12f442..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_tiles_connecting'}.png deleted file mode 100644 index 6d12f442..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_wavy'}.png deleted file mode 100644 index 6cc4efa8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_wavy_connecting'}.png deleted file mode 100644 index 6cc4efa8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_woven'}.png deleted file mode 100644 index 17555b04..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_woven_connecting'}.png deleted file mode 100644 index 17555b04..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__oak_planks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bordered'}.png deleted file mode 100644 index 14f7ae55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bordered_connecting'}.png deleted file mode 100644 index 14f7ae55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_pattern'}.png deleted file mode 100644 index 8b84ad78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_pattern_connecting'}.png deleted file mode 100644 index 8b84ad78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_paving'}.png deleted file mode 100644 index 1c5d6b68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_paving_connecting'}.png deleted file mode 100644 index 1c5d6b68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bricks'}.png deleted file mode 100644 index e676c39b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bricks_connecting'}.png deleted file mode 100644 index e676c39b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled'}.png deleted file mode 100644 index 6005f05d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_circles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_circles'}.png deleted file mode 100644 index fed8da1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_circles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_circles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_circles_connecting'}.png deleted file mode 100644 index fed8da1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_circles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_connecting'}.png deleted file mode 100644 index 6005f05d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_creeper'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_creeper'}.png deleted file mode 100644 index 7f41ee5b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_creeper'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_skeleton'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_skeleton'}.png deleted file mode 100644 index 457d3ca5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_chiseled_skeleton'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_dark'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_dark'}.png deleted file mode 100644 index 34178dcc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_dark'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_dark_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_dark_connecting'}.png deleted file mode 100644 index 34178dcc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_dark_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_large_tiles'}.png deleted file mode 100644 index 361649bb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_pillars'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_pillars'}.png deleted file mode 100644 index ca83888a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_pillars'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_pillars_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_pillars_connecting'}.png deleted file mode 100644 index ca83888a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_pillars_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_rotated_bricks'}.png deleted file mode 100644 index 73efb197..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_rotated_bricks_connecting'}.png deleted file mode 100644 index 73efb197..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_spots'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_spots'}.png deleted file mode 100644 index 342c476b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_spots'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_spots_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_spots_connecting'}.png deleted file mode 100644 index 342c476b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_spots_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_squares'}.png deleted file mode 100644 index e73a0bc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_squares_connecting'}.png deleted file mode 100644 index e73a0bc5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_stripes'}.png deleted file mode 100644 index 842cfd58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_stripes_connecting'}.png deleted file mode 100644 index 842cfd58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_tiles'}.png deleted file mode 100644 index afc77b74..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_tiles_connecting'}.png deleted file mode 100644 index afc77b74..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__obsidian_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_beams'}.png deleted file mode 100644 index c5bfda98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_beams_connecting'}.png deleted file mode 100644 index c5bfda98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_pattern'}.png deleted file mode 100644 index e94db956..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_pattern_connecting'}.png deleted file mode 100644 index e94db956..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_paving'}.png deleted file mode 100644 index 07accc68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_paving_connecting'}.png deleted file mode 100644 index 07accc68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_bricks'}.png deleted file mode 100644 index 36185ea5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_bricks_connecting'}.png deleted file mode 100644 index 36185ea5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_circles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_circles'}.png deleted file mode 100644 index 5992d306..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_circles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_circles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_circles_connecting'}.png deleted file mode 100644 index 5992d306..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_circles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_squares'}.png deleted file mode 100644 index 76f1aa4c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_squares_connecting'}.png deleted file mode 100644 index 76f1aa4c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_chiseled_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_bricks'}.png deleted file mode 100644 index 634d0527..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_bricks_connecting'}.png deleted file mode 100644 index 634d0527..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_tiles'}.png deleted file mode 100644 index 88bbd262..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_tiles_connecting'}.png deleted file mode 100644 index 88bbd262..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_dotted'}.png deleted file mode 100644 index cdd959a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_dotted_connecting'}.png deleted file mode 100644 index cdd959a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_pillars'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_pillars'}.png deleted file mode 100644 index 28f2225b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_pillars'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_pillars_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_pillars_connecting'}.png deleted file mode 100644 index 28f2225b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_pillars_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_polished'}.png deleted file mode 100644 index 65268727..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_polished_connecting'}.png deleted file mode 100644 index 65268727..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rotated_bricks'}.png deleted file mode 100644 index 2cac58d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rotated_bricks_connecting'}.png deleted file mode 100644 index 2cac58d6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rows'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rows'}.png deleted file mode 100644 index 1d04af07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rows'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rows_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rows_connecting'}.png deleted file mode 100644 index 1d04af07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_rows_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_small_tiles'}.png deleted file mode 100644 index 02a44e66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_small_tiles_connecting'}.png deleted file mode 100644 index 02a44e66..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_squares'}.png deleted file mode 100644 index 02cdf32f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_squares_connecting'}.png deleted file mode 100644 index 02cdf32f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_tiles'}.png deleted file mode 100644 index 379378bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_tiles_connecting'}.png deleted file mode 100644 index 379378bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_wavy'}.png deleted file mode 100644 index b9b38740..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_wavy_connecting'}.png deleted file mode 100644 index b9b38740..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_woven'}.png deleted file mode 100644 index 2dbe5d67..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_woven_connecting'}.png deleted file mode 100644 index 2dbe5d67..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__prismarine_bricks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_pattern'}.png deleted file mode 100644 index cb430f28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_pattern_connecting'}.png deleted file mode 100644 index cb430f28..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_paving'}.png deleted file mode 100644 index 750e0266..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_paving_connecting'}.png deleted file mode 100644 index 750e0266..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_bricks'}.png deleted file mode 100644 index 06ba216e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_bricks_connecting'}.png deleted file mode 100644 index 06ba216e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_bricks'}.png deleted file mode 100644 index 0d6db381..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_bricks_connecting'}.png deleted file mode 100644 index 0d6db381..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_tiles'}.png deleted file mode 100644 index 4962b013..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_tiles_connecting'}.png deleted file mode 100644 index 4962b013..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_dotted'}.png deleted file mode 100644 index 8d3a6a10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_dotted_connecting'}.png deleted file mode 100644 index 8d3a6a10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_fabric'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_fabric'}.png deleted file mode 100644 index c4f4dc55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_fabric'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_fabric_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_fabric_connecting'}.png deleted file mode 100644 index c4f4dc55..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_fabric_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_jagged_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_jagged_pattern'}.png deleted file mode 100644 index 98951730..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_jagged_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_jagged_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_jagged_pattern_connecting'}.png deleted file mode 100644 index 98951730..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_jagged_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_large_tiles'}.png deleted file mode 100644 index 59a73d68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_large_tiles_connecting'}.png deleted file mode 100644 index 59a73d68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_organic_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_organic_pattern'}.png deleted file mode 100644 index 20b84b5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_organic_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_organic_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_organic_pattern_connecting'}.png deleted file mode 100644 index 20b84b5d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_organic_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_pillar'}.png deleted file mode 100644 index e09fb102..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_pillar_connecting'}.png deleted file mode 100644 index e09fb102..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_rotated_bricks'}.png deleted file mode 100644 index 6f2e9f72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_rotated_bricks_connecting'}.png deleted file mode 100644 index 6f2e9f72..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_slanted_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_slanted_tiles'}.png deleted file mode 100644 index f4f1f773..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_slanted_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_slanted_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_slanted_tiles_connecting'}.png deleted file mode 100644 index f4f1f773..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_slanted_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_small_tiles'}.png deleted file mode 100644 index 5d0e944d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_small_tiles_connecting'}.png deleted file mode 100644 index 5d0e944d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_spiral_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_spiral_pattern'}.png deleted file mode 100644 index 012fabae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_spiral_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_spiral_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_spiral_pattern_connecting'}.png deleted file mode 100644 index 012fabae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_spiral_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_squares'}.png deleted file mode 100644 index 3cad051f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_squares_connecting'}.png deleted file mode 100644 index 3cad051f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_tiles_connecting'}.png deleted file mode 100644 index 43e07dd3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_woven'}.png deleted file mode 100644 index 521c77c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_woven_connecting'}.png deleted file mode 100644 index 521c77c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__purpur_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_bordered'}.png deleted file mode 100644 index 4bcef14e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_bordered_connecting'}.png deleted file mode 100644 index 4bcef14e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_brick_paving'}.png deleted file mode 100644 index bb750573..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_brick_paving_connecting'}.png deleted file mode 100644 index bb750573..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_chiseled_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_chiseled_pillar'}.png deleted file mode 100644 index d34dcd92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_chiseled_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_chiseled_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_chiseled_pillar_connecting'}.png deleted file mode 100644 index d34dcd92..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_chiseled_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_chiseled_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_chiseled_squares'}.png deleted file mode 100644 index 642e15a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_chiseled_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_connecting_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_connecting_connecting'}.png deleted file mode 100644 index 50e78ce2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_connecting_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_crosses'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_crosses'}.png deleted file mode 100644 index dd316ae1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_crosses'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_crosses_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_crosses_connecting'}.png deleted file mode 100644 index dd316ae1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_crosses_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_diagonal_tiles'}.png deleted file mode 100644 index ebc5fb7e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_diagonal_tiles_connecting'}.png deleted file mode 100644 index ebc5fb7e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_pattern'}.png deleted file mode 100644 index 31cf0693..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_pattern_connecting'}.png deleted file mode 100644 index 31cf0693..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rotated_bricks'}.png deleted file mode 100644 index fab57573..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rotated_bricks_connecting'}.png deleted file mode 100644 index fab57573..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rows'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rows'}.png deleted file mode 100644 index 108fae9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rows'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rows_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rows_connecting'}.png deleted file mode 100644 index 108fae9c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_rows_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_scales'}.png deleted file mode 100644 index b5df2999..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_scales_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_scales_connecting'}.png deleted file mode 100644 index b5df2999..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_scales_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_small_tiles'}.png deleted file mode 100644 index ef6d3dc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_small_tiles_connecting'}.png deleted file mode 100644 index ef6d3dc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_squares'}.png deleted file mode 100644 index d53cc20b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_squares_connecting'}.png deleted file mode 100644 index d53cc20b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_stripes'}.png deleted file mode 100644 index 31a223c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_stripes_connecting'}.png deleted file mode 100644 index 31a223c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_tiles'}.png deleted file mode 100644 index e284056d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_tiles_connecting'}.png deleted file mode 100644 index e284056d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__quartz_block_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_beams'}.png deleted file mode 100644 index 71fb4990..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_beams_connecting'}.png deleted file mode 100644 index 71fb4990..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_pattern'}.png deleted file mode 100644 index 6cebd191..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_pattern_connecting'}.png deleted file mode 100644 index 6cebd191..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_paving'}.png deleted file mode 100644 index 323889ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_paving_connecting'}.png deleted file mode 100644 index 323889ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_chiseled_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_chiseled_squares'}.png deleted file mode 100644 index 64215680..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_chiseled_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_chiseled_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_chiseled_squares_connecting'}.png deleted file mode 100644 index 64215680..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_chiseled_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_diagonal_bricks'}.png deleted file mode 100644 index 23a6ade6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_diagonal_bricks_connecting'}.png deleted file mode 100644 index 23a6ade6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_bricks'}.png deleted file mode 100644 index 33ce46fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_bricks_connecting'}.png deleted file mode 100644 index 33ce46fb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_tiles'}.png deleted file mode 100644 index 18e244cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_tiles_connecting'}.png deleted file mode 100644 index 18e244cd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_rotated_bricks'}.png deleted file mode 100644 index a9538019..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_rotated_bricks_connecting'}.png deleted file mode 100644 index a9538019..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_small_tiles'}.png deleted file mode 100644 index c6aa82ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_small_tiles_connecting'}.png deleted file mode 100644 index c6aa82ee..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_smooth'}.png deleted file mode 100644 index a356096f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_smooth_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_smooth_connecting'}.png deleted file mode 100644 index a356096f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_smooth_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_squares'}.png deleted file mode 100644 index bd9d7a18..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_squares_connecting'}.png deleted file mode 100644 index bd9d7a18..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_tiles'}.png deleted file mode 100644 index dee5fd9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_tiles_connecting'}.png deleted file mode 100644 index dee5fd9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_nether_bricks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_pattern'}.png deleted file mode 100644 index 4231d131..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_pattern_connecting'}.png deleted file mode 100644 index 4231d131..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_paving'}.png deleted file mode 100644 index 12ca6666..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_paving_connecting'}.png deleted file mode 100644 index 12ca6666..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_bricks'}.png deleted file mode 100644 index a59e067b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_bricks_connecting'}.png deleted file mode 100644 index a59e067b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_diagonal_bricks'}.png deleted file mode 100644 index afd00552..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_diagonal_bricks_connecting'}.png deleted file mode 100644 index afd00552..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_large_tiles'}.png deleted file mode 100644 index 54a06333..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_large_tiles_connecting'}.png deleted file mode 100644 index 54a06333..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_polished'}.png deleted file mode 100644 index 3e6d97ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_polished_connecting'}.png deleted file mode 100644 index 3e6d97ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_rotated_bricks'}.png deleted file mode 100644 index c5df59dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_rotated_bricks_connecting'}.png deleted file mode 100644 index c5df59dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_tiles'}.png deleted file mode 100644 index 386e1e79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_tiles_connecting'}.png deleted file mode 100644 index 386e1e79..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__red_sandstone_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bordered'}.png deleted file mode 100644 index 79527fc6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bordered_connecting'}.png deleted file mode 100644 index 79527fc6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_brick_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_brick_bordered'}.png deleted file mode 100644 index 84db58af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_brick_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bricks'}.png deleted file mode 100644 index 2a14fb38..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bricks_connecting'}.png deleted file mode 100644 index 2a14fb38..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_chiseled_clovers'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_chiseled_clovers'}.png deleted file mode 100644 index 173b8fac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_chiseled_clovers'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_chiseled_clovers_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_chiseled_clovers_connecting'}.png deleted file mode 100644 index 173b8fac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_chiseled_clovers_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_circles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_circles'}.png deleted file mode 100644 index c1835374..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_circles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_circles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_circles_connecting'}.png deleted file mode 100644 index c1835374..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_circles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_compressed'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_compressed'}.png deleted file mode 100644 index aa40d73e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_compressed'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_compressed_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_compressed_connecting'}.png deleted file mode 100644 index aa40d73e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_compressed_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_crushed'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_crushed'}.png deleted file mode 100644 index 26bdfd96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_crushed'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_diagonal_tiles'}.png deleted file mode 100644 index a066ec88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_diagonal_tiles_connecting'}.png deleted file mode 100644 index a066ec88..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_patterned'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_patterned'}.png deleted file mode 100644 index 69fcbd43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_patterned'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_patterned_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_patterned_connecting'}.png deleted file mode 100644 index 69fcbd43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_patterned_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_paving'}.png deleted file mode 100644 index f0f76dbe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_paving_connecting'}.png deleted file mode 100644 index f0f76dbe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_pillar'}.png deleted file mode 100644 index 5dd2f35a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_pillar_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_pillar_connecting'}.png deleted file mode 100644 index 5dd2f35a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_pillar_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_polished'}.png deleted file mode 100644 index 383b4d4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_polished_connecting'}.png deleted file mode 100644 index 383b4d4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_scales'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_scales'}.png deleted file mode 100644 index b1914b45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_scales'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_scales_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_scales_connecting'}.png deleted file mode 100644 index b1914b45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_scales_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_small_tiles'}.png deleted file mode 100644 index a1ea17ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_small_tiles_connecting'}.png deleted file mode 100644 index a1ea17ea..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_smooth'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_smooth'}.png deleted file mode 100644 index 831f9463..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__redstone_block_smooth'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_pattern'}.png deleted file mode 100644 index f7a20a1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_pattern_connecting'}.png deleted file mode 100644 index f7a20a1d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_paving'}.png deleted file mode 100644 index d8982cf0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_paving_connecting'}.png deleted file mode 100644 index d8982cf0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_bricks'}.png deleted file mode 100644 index 034a904b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_bricks_connecting'}.png deleted file mode 100644 index 034a904b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_diagonal_bricks'}.png deleted file mode 100644 index 4589e054..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_diagonal_bricks_connecting'}.png deleted file mode 100644 index 4589e054..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_large_tiles'}.png deleted file mode 100644 index 97b941f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_large_tiles_connecting'}.png deleted file mode 100644 index 97b941f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_polished'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_polished'}.png deleted file mode 100644 index acad4f47..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_polished'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_polished_connecting'}.png deleted file mode 100644 index acad4f47..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_rotated_bricks'}.png deleted file mode 100644 index b093dc86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_rotated_bricks_connecting'}.png deleted file mode 100644 index b093dc86..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_tiles'}.png deleted file mode 100644 index a65ca148..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_tiles_connecting'}.png deleted file mode 100644 index a65ca148..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__sandstone_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_beams'}.png deleted file mode 100644 index 5602f0e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_beams_connecting'}.png deleted file mode 100644 index 5602f0e0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_pattern'}.png deleted file mode 100644 index 08fa66d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_pattern_connecting'}.png deleted file mode 100644 index 08fa66d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_paving'}.png deleted file mode 100644 index 8ffec1f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_paving_connecting'}.png deleted file mode 100644 index 8ffec1f9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_bricks'}.png deleted file mode 100644 index c5a6e32a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_bricks_connecting'}.png deleted file mode 100644 index c5a6e32a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_crate'}.png deleted file mode 100644 index 149d8ed7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_crate_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_crate_connecting'}.png deleted file mode 100644 index 149d8ed7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_crate_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_stripes'}.png deleted file mode 100644 index a4f1f95c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_stripes_connecting'}.png deleted file mode 100644 index a4f1f95c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_tiles'}.png deleted file mode 100644 index 94630562..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_tiles_connecting'}.png deleted file mode 100644 index 94630562..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_dotted'}.png deleted file mode 100644 index 3f6526fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_dotted_connecting'}.png deleted file mode 100644 index 3f6526fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_flooring'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_flooring'}.png deleted file mode 100644 index 59426f69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_flooring'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_flooring_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_flooring_connecting'}.png deleted file mode 100644 index 59426f69..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_flooring_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_large_tiles'}.png deleted file mode 100644 index cb4afdff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_large_tiles_connecting'}.png deleted file mode 100644 index cb4afdff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_mosaic'}.png deleted file mode 100644 index 37ee2dab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_pattern'}.png deleted file mode 100644 index 943e4f42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_pattern_connecting'}.png deleted file mode 100644 index 943e4f42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_rotated_bricks'}.png deleted file mode 100644 index 945396c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_rotated_bricks_connecting'}.png deleted file mode 100644 index 945396c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_bricks'}.png deleted file mode 100644 index 8e4ea15f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_bricks_connecting'}.png deleted file mode 100644 index 8e4ea15f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_tiles'}.png deleted file mode 100644 index c6edbeb5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_tiles_connecting'}.png deleted file mode 100644 index c6edbeb5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_squares'}.png deleted file mode 100644 index 8b89afe7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_squares_connecting'}.png deleted file mode 100644 index 8b89afe7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_tiles'}.png deleted file mode 100644 index 49840a3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_tiles_connecting'}.png deleted file mode 100644 index 49840a3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_wavy'}.png deleted file mode 100644 index 114e7684..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_wavy_connecting'}.png deleted file mode 100644 index 114e7684..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_woven'}.png deleted file mode 100644 index 623bf226..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_woven_connecting'}.png deleted file mode 100644 index 623bf226..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__spruce_planks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_big_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_big_tiles'}.png deleted file mode 100644 index 06c1e1bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_big_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_big_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_big_tiles_connecting'}.png deleted file mode 100644 index 06c1e1bc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_big_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_bordered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_bordered'}.png deleted file mode 100644 index d10e35c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_bordered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_bordered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_bordered_connecting'}.png deleted file mode 100644 index d10e35c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_bordered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_pattern'}.png deleted file mode 100644 index 339210fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_pattern_connecting'}.png deleted file mode 100644 index 339210fc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_paving'}.png deleted file mode 100644 index adcb620d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_paving_connecting'}.png deleted file mode 100644 index adcb620d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_chiseled_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_chiseled_bricks_connecting'}.png deleted file mode 100644 index 455fac75..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_chiseled_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_cobbled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_cobbled'}.png deleted file mode 100644 index dbe5bd9d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_cobbled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_crushed'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_crushed'}.png deleted file mode 100644 index dc1c51c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_crushed'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_crushed_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_crushed_connecting'}.png deleted file mode 100644 index dc1c51c8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_crushed_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_diagonal_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_diagonal_bricks'}.png deleted file mode 100644 index 6bac98c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_diagonal_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_diagonal_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_diagonal_bricks_connecting'}.png deleted file mode 100644 index 6bac98c4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_diagonal_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_path'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_path'}.png deleted file mode 100644 index 0460a1a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_path'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_path_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_path_connecting'}.png deleted file mode 100644 index 0460a1a5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_path_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_rotated_bricks'}.png deleted file mode 100644 index 2c650475..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_rotated_bricks_connecting'}.png deleted file mode 100644 index 2c650475..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_slated'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_slated'}.png deleted file mode 100644 index 50d9ab1b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_slated'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_bricks'}.png deleted file mode 100644 index b9c5b484..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_bricks_connecting'}.png deleted file mode 100644 index b9c5b484..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_tiles'}.png deleted file mode 100644 index 051f90a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_tiles_connecting'}.png deleted file mode 100644 index 051f90a8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_brick_paving'}.png deleted file mode 100644 index 5a47c858..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_brick_paving_connecting'}.png deleted file mode 100644 index 5a47c858..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_connecting'}.png deleted file mode 100644 index 48d08344..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_large_tiles'}.png deleted file mode 100644 index a4ad4495..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_large_tiles_connecting'}.png deleted file mode 100644 index a4ad4495..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_rotated_bricks'}.png deleted file mode 100644 index 4f3759e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_rotated_bricks_connecting'}.png deleted file mode 100644 index 4f3759e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_tiles'}.png deleted file mode 100644 index d734d694..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_tiles_connecting'}.png deleted file mode 100644 index d734d694..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_smooth_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_squares'}.png deleted file mode 100644 index ef165de0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_squares_connecting'}.png deleted file mode 100644 index ef165de0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_tiles'}.png deleted file mode 100644 index 5b838677..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_tiles_connecting'}.png deleted file mode 100644 index 5b838677..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_waves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_waves'}.png deleted file mode 100644 index 9a2fca81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_waves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_waves_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_waves_connecting'}.png deleted file mode 100644 index 9a2fca81..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__stone_waves_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_beams'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_beams'}.png deleted file mode 100644 index 9baea33d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_beams'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_beams_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_beams_connecting'}.png deleted file mode 100644 index 9baea33d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_beams_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_pattern'}.png deleted file mode 100644 index acc58c1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_pattern_connecting'}.png deleted file mode 100644 index acc58c1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_paving'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_paving'}.png deleted file mode 100644 index d5b840b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_paving'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_paving_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_paving_connecting'}.png deleted file mode 100644 index d5b840b4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_brick_paving_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_bricks'}.png deleted file mode 100644 index 2e03cbc7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_bricks_connecting'}.png deleted file mode 100644 index 2e03cbc7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_crate'}.png deleted file mode 100644 index 920e5c3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_crate_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_crate_connecting'}.png deleted file mode 100644 index 920e5c3c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_crate_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_stripes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_stripes'}.png deleted file mode 100644 index 5efbe42c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_stripes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_stripes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_stripes_connecting'}.png deleted file mode 100644 index 5efbe42c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_stripes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_tiles'}.png deleted file mode 100644 index ee3f0778..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_tiles_connecting'}.png deleted file mode 100644 index ee3f0778..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_diagonal_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_dotted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_dotted'}.png deleted file mode 100644 index 7df4ad01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_dotted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_dotted_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_dotted_connecting'}.png deleted file mode 100644 index 7df4ad01..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_dotted_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_flooring'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_flooring'}.png deleted file mode 100644 index 1a009f07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_flooring'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_flooring_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_flooring_connecting'}.png deleted file mode 100644 index 1a009f07..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_flooring_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_large_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_large_tiles'}.png deleted file mode 100644 index c0f3a9c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_large_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_large_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_large_tiles_connecting'}.png deleted file mode 100644 index c0f3a9c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_large_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_mosaic'}.png deleted file mode 100644 index e8bfb20a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_pattern'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_pattern'}.png deleted file mode 100644 index 21feecce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_pattern'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_pattern_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_pattern_connecting'}.png deleted file mode 100644 index 21feecce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_pattern_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_rotated_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_rotated_bricks'}.png deleted file mode 100644 index 4ea0d416..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_rotated_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_rotated_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_rotated_bricks_connecting'}.png deleted file mode 100644 index 4ea0d416..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_rotated_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_bricks'}.png deleted file mode 100644 index 5fe68002..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_bricks_connecting'}.png deleted file mode 100644 index 5fe68002..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_tiles'}.png deleted file mode 100644 index 8cb68201..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_tiles_connecting'}.png deleted file mode 100644 index 8cb68201..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_small_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_squares'}.png deleted file mode 100644 index 66aef91f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_squares_connecting'}.png deleted file mode 100644 index 66aef91f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_tiles'}.png deleted file mode 100644 index 195d2a0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_tiles_connecting'}.png deleted file mode 100644 index 195d2a0f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_wavy'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_wavy'}.png deleted file mode 100644 index 260eff06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_wavy'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_wavy_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_wavy_connecting'}.png deleted file mode 100644 index 260eff06..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_wavy_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_woven'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_woven'}.png deleted file mode 100644 index f2c60622..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_woven'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_woven_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_woven_connecting'}.png deleted file mode 100644 index f2c60622..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseled__warped_planks_woven_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_covered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_covered'}.png deleted file mode 100644 index bae3931c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_covered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_covered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_covered_connecting'}.png deleted file mode 100644 index bae3931c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_covered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_diagonal'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_diagonal'}.png deleted file mode 100644 index c03f21f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_diagonal'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_diagonal_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_diagonal_connecting'}.png deleted file mode 100644 index c03f21f0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_diagonal_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_large'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_large'}.png deleted file mode 100644 index 0e1fffe0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_large'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_large_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_large_connecting'}.png deleted file mode 100644 index 0e1fffe0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_large_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_panes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_panes'}.png deleted file mode 100644 index d12ba571..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_panes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_panes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_panes_connecting'}.png deleted file mode 100644 index d12ba571..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_panes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_rounded'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_rounded'}.png deleted file mode 100644 index 761496ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_rounded'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_rounded_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_rounded_connecting'}.png deleted file mode 100644 index 761496ce..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_rounded_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_slim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_slim'}.png deleted file mode 100644 index bc598070..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_slim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_slim_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_slim_connecting'}.png deleted file mode 100644 index bc598070..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_slim_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_swirling'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_swirling'}.png deleted file mode 100644 index 97f2e3d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_swirling'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_swirling_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_swirling_connecting'}.png deleted file mode 100644 index 97f2e3d3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_swirling_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_tiles'}.png deleted file mode 100644 index 895585df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_tiles_connecting'}.png deleted file mode 100644 index 895585df..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__acacia_window_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__andesite_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__andesite_cut_polished_connecting'}.png deleted file mode 100644 index a1722c11..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__andesite_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__andesite_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__andesite_cut_small_brick_connecting'}.png deleted file mode 100644 index 3890008a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__andesite_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__asurine_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__asurine_cut_polished_connecting'}.png deleted file mode 100644 index f502447f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__asurine_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__asurine_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__asurine_cut_small_brick_connecting'}.png deleted file mode 100644 index 832c24cc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__asurine_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_bars'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_bars'}.png deleted file mode 100644 index a99ca29a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_bars'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_bars_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_bars_connecting'}.png deleted file mode 100644 index a99ca29a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_bars_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_diagonal'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_diagonal'}.png deleted file mode 100644 index 7ca90487..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_diagonal'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_diagonal_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_diagonal_connecting'}.png deleted file mode 100644 index 7ca90487..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_diagonal_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_large'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_large'}.png deleted file mode 100644 index 17c9537b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_large'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_large_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_large_connecting'}.png deleted file mode 100644 index 17c9537b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_large_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_panes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_panes'}.png deleted file mode 100644 index 0b61d8e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_panes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_panes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_panes_connecting'}.png deleted file mode 100644 index 0b61d8e7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_panes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_rounded'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_rounded'}.png deleted file mode 100644 index 47942388..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_rounded'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_rounded_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_rounded_connecting'}.png deleted file mode 100644 index 47942388..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_rounded_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_slim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_slim'}.png deleted file mode 100644 index 13b4c441..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_slim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_slim_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_slim_connecting'}.png deleted file mode 100644 index 13b4c441..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_slim_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_swirling'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_swirling'}.png deleted file mode 100644 index fb0a85ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_swirling'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_swirling_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_swirling_connecting'}.png deleted file mode 100644 index fb0a85ff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_swirling_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_tiles'}.png deleted file mode 100644 index 74c3b9a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_tiles_connecting'}.png deleted file mode 100644 index 74c3b9a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__birch_window_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__calcite_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__calcite_cut_polished_connecting'}.png deleted file mode 100644 index 68299447..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__calcite_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__calcite_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__calcite_cut_small_brick_connecting'}.png deleted file mode 100644 index 61eeeff6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__calcite_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimsite_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimsite_cut_polished_connecting'}.png deleted file mode 100644 index c71c8667..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimsite_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimsite_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimsite_cut_small_brick_connecting'}.png deleted file mode 100644 index c9bf5692..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimsite_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_bars'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_bars'}.png deleted file mode 100644 index 71caa636..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_bars'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_bars_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_bars_connecting'}.png deleted file mode 100644 index 71caa636..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_bars_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_covered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_covered'}.png deleted file mode 100644 index ce16eba1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_covered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_covered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_covered_connecting'}.png deleted file mode 100644 index ce16eba1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_covered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_large'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_large'}.png deleted file mode 100644 index d59b5971..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_large'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_large_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_large_connecting'}.png deleted file mode 100644 index d59b5971..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_large_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_panes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_panes'}.png deleted file mode 100644 index a955d552..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_panes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_panes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_panes_connecting'}.png deleted file mode 100644 index a955d552..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_panes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_rounded'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_rounded'}.png deleted file mode 100644 index 6536b916..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_rounded'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_rounded_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_rounded_connecting'}.png deleted file mode 100644 index 6536b916..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_rounded_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_slim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_slim'}.png deleted file mode 100644 index 688aa565..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_slim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_slim_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_slim_connecting'}.png deleted file mode 100644 index 688aa565..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_slim_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_swirling'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_swirling'}.png deleted file mode 100644 index 48fe9eb2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_swirling'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_swirling_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_swirling_connecting'}.png deleted file mode 100644 index 48fe9eb2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_swirling_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_tiles'}.png deleted file mode 100644 index 417954c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_tiles_connecting'}.png deleted file mode 100644 index 417954c5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__crimson_window_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_bars'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_bars'}.png deleted file mode 100644 index 5dd008ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_bars'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_bars_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_bars_connecting'}.png deleted file mode 100644 index 5dd008ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_bars_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_covered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_covered'}.png deleted file mode 100644 index 35ff7d6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_covered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_covered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_covered_connecting'}.png deleted file mode 100644 index 35ff7d6c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_covered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_diagonal'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_diagonal'}.png deleted file mode 100644 index 92846795..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_diagonal'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_diagonal_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_diagonal_connecting'}.png deleted file mode 100644 index 92846795..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_diagonal_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_panes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_panes'}.png deleted file mode 100644 index fb1ae22e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_panes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_panes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_panes_connecting'}.png deleted file mode 100644 index fb1ae22e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_panes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_rounded'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_rounded'}.png deleted file mode 100644 index 1c941deb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_rounded'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_rounded_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_rounded_connecting'}.png deleted file mode 100644 index 1c941deb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_rounded_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_slim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_slim'}.png deleted file mode 100644 index a7d8783d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_slim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_slim_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_slim_connecting'}.png deleted file mode 100644 index a7d8783d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_slim_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_swirling'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_swirling'}.png deleted file mode 100644 index 1d768a56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_swirling'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_swirling_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_swirling_connecting'}.png deleted file mode 100644 index 1d768a56..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_swirling_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_tiles'}.png deleted file mode 100644 index 107fd67b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_tiles_connecting'}.png deleted file mode 100644 index 107fd67b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dark_oak_window_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__deepslate_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__deepslate_cut_polished_connecting'}.png deleted file mode 100644 index 9fd382e1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__deepslate_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__deepslate_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__deepslate_cut_small_brick_connecting'}.png deleted file mode 100644 index e19c4d98..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__deepslate_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__diorite_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__diorite_cut_polished_connecting'}.png deleted file mode 100644 index 2682f54c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__diorite_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__diorite_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__diorite_cut_small_brick_connecting'}.png deleted file mode 100644 index efc9f088..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__diorite_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dripstone_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dripstone_cut_polished_connecting'}.png deleted file mode 100644 index 001b5654..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dripstone_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dripstone_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dripstone_cut_small_brick_connecting'}.png deleted file mode 100644 index aa19b617..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__dripstone_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__granite_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__granite_cut_polished_connecting'}.png deleted file mode 100644 index 8d311b3a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__granite_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__granite_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__granite_cut_small_brick_connecting'}.png deleted file mode 100644 index dbf06c78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__granite_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_bars'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_bars'}.png deleted file mode 100644 index 812f3e8e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_bars'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_bars_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_bars_connecting'}.png deleted file mode 100644 index 812f3e8e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_bars_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_covered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_covered'}.png deleted file mode 100644 index dc0547bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_covered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_covered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_covered_connecting'}.png deleted file mode 100644 index dc0547bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_covered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_diagonal'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_diagonal'}.png deleted file mode 100644 index 2c18da47..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_diagonal'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_diagonal_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_diagonal_connecting'}.png deleted file mode 100644 index 2c18da47..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_diagonal_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_large'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_large'}.png deleted file mode 100644 index 51a68b9a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_large'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_large_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_large_connecting'}.png deleted file mode 100644 index 51a68b9a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_large_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_panes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_panes'}.png deleted file mode 100644 index 8f8b7d6a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_panes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_panes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_panes_connecting'}.png deleted file mode 100644 index 8f8b7d6a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_panes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_rounded'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_rounded'}.png deleted file mode 100644 index 0013eba8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_rounded'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_rounded_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_rounded_connecting'}.png deleted file mode 100644 index 0013eba8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_rounded_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_swirling'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_swirling'}.png deleted file mode 100644 index 45c3942a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_swirling'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_swirling_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_swirling_connecting'}.png deleted file mode 100644 index 45c3942a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_swirling_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_tiles'}.png deleted file mode 100644 index c278d212..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_tiles_connecting'}.png deleted file mode 100644 index c278d212..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__jungle_window_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__limestone_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__limestone_cut_polished_connecting'}.png deleted file mode 100644 index 3898d8ba..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__limestone_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__limestone_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__limestone_cut_small_brick_connecting'}.png deleted file mode 100644 index d1802286..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__limestone_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_bars'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_bars'}.png deleted file mode 100644 index 17fec6f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_bars'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_bars_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_bars_connecting'}.png deleted file mode 100644 index 17fec6f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_bars_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_covered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_covered'}.png deleted file mode 100644 index 2b5137da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_covered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_covered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_covered_connecting'}.png deleted file mode 100644 index 2b5137da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_covered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_diagonal'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_diagonal'}.png deleted file mode 100644 index 021f1ca2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_diagonal'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_diagonal_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_diagonal_connecting'}.png deleted file mode 100644 index 021f1ca2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_diagonal_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_large'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_large'}.png deleted file mode 100644 index b69031a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_large'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_large_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_large_connecting'}.png deleted file mode 100644 index b69031a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_large_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_panes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_panes'}.png deleted file mode 100644 index ef57eb09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_panes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_panes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_panes_connecting'}.png deleted file mode 100644 index ef57eb09..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_panes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_slim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_slim'}.png deleted file mode 100644 index 9713e54b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_slim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_slim_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_slim_connecting'}.png deleted file mode 100644 index 9713e54b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_slim_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_swirling'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_swirling'}.png deleted file mode 100644 index 0b6db9f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_swirling'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_swirling_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_swirling_connecting'}.png deleted file mode 100644 index 0b6db9f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_swirling_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_tiles'}.png deleted file mode 100644 index 3b25bcc7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_tiles_connecting'}.png deleted file mode 100644 index 3b25bcc7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__mangrove_window_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_bars'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_bars'}.png deleted file mode 100644 index c5d035e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_bars'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_bars_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_bars_connecting'}.png deleted file mode 100644 index c5d035e8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_bars_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_covered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_covered'}.png deleted file mode 100644 index e1787bcf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_covered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_covered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_covered_connecting'}.png deleted file mode 100644 index e1787bcf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_covered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_diagonal'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_diagonal'}.png deleted file mode 100644 index dccdde4b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_diagonal'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_diagonal_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_diagonal_connecting'}.png deleted file mode 100644 index dccdde4b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_diagonal_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_large'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_large'}.png deleted file mode 100644 index 130a9ae6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_large'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_large_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_large_connecting'}.png deleted file mode 100644 index 130a9ae6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_large_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_rounded'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_rounded'}.png deleted file mode 100644 index 68b8d374..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_rounded'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_rounded_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_rounded_connecting'}.png deleted file mode 100644 index 68b8d374..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_rounded_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_slim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_slim'}.png deleted file mode 100644 index ee95bc27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_slim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_slim_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_slim_connecting'}.png deleted file mode 100644 index ee95bc27..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_slim_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_swirling'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_swirling'}.png deleted file mode 100644 index 4d2f1799..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_swirling'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_swirling_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_swirling_connecting'}.png deleted file mode 100644 index 4d2f1799..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_swirling_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_tiles'}.png deleted file mode 100644 index b44baf2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_tiles_connecting'}.png deleted file mode 100644 index b44baf2a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__oak_window_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__ochrum_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__ochrum_cut_polished_connecting'}.png deleted file mode 100644 index 0b68e140..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__ochrum_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__ochrum_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__ochrum_cut_small_brick_connecting'}.png deleted file mode 100644 index ba917b80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__ochrum_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_bricks'}.png deleted file mode 100644 index 5199b40f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_bricks_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_bricks_connecting'}.png deleted file mode 100644 index 5199b40f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_bricks_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_chiseled'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_chiseled'}.png deleted file mode 100644 index bd5e0344..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_chiseled'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_chiseled_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_chiseled_connecting'}.png deleted file mode 100644 index bd5e0344..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_chiseled_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_crushed'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_crushed'}.png deleted file mode 100644 index 5d7b7a89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_crushed'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_crushed_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_crushed_connecting'}.png deleted file mode 100644 index 5d7b7a89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_crushed_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_polished_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_polished_block'}.png deleted file mode 100644 index e7ff8ae5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_polished_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_polished_block_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_polished_block_connecting'}.png deleted file mode 100644 index e7ff8ae5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_polished_block_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_squares'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_squares'}.png deleted file mode 100644 index 84a5a0aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_squares'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_squares_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_squares_connecting'}.png deleted file mode 100644 index 84a5a0aa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_squares_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_tiles_connecting'}.png deleted file mode 100644 index 32ece29b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__rose_quartz_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scorchia_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scorchia_cut_polished_connecting'}.png deleted file mode 100644 index e3e4cd57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scorchia_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scorchia_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scorchia_cut_small_brick_connecting'}.png deleted file mode 100644 index 5a3ecb2f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scorchia_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scoria_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scoria_cut_polished_connecting'}.png deleted file mode 100644 index beece357..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scoria_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scoria_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scoria_cut_small_brick_connecting'}.png deleted file mode 100644 index a862dbdb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__scoria_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_bars'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_bars'}.png deleted file mode 100644 index c89fc95a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_bars'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_bars_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_bars_connecting'}.png deleted file mode 100644 index c89fc95a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_bars_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_covered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_covered'}.png deleted file mode 100644 index 06f3ae2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_covered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_covered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_covered_connecting'}.png deleted file mode 100644 index 06f3ae2e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_covered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_diagonal'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_diagonal'}.png deleted file mode 100644 index 4f2275cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_diagonal'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_diagonal_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_diagonal_connecting'}.png deleted file mode 100644 index 4f2275cf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_diagonal_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_large'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_large'}.png deleted file mode 100644 index 99cbe8f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_large'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_large_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_large_connecting'}.png deleted file mode 100644 index 99cbe8f1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_large_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_panes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_panes'}.png deleted file mode 100644 index 28c08fc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_panes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_panes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_panes_connecting'}.png deleted file mode 100644 index 28c08fc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_panes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_rounded'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_rounded'}.png deleted file mode 100644 index fa03bf1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_rounded'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_rounded_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_rounded_connecting'}.png deleted file mode 100644 index fa03bf1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_rounded_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_slim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_slim'}.png deleted file mode 100644 index 09216932..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_slim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_slim_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_slim_connecting'}.png deleted file mode 100644 index 09216932..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_slim_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_swirling'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_swirling'}.png deleted file mode 100644 index 5e5fcc10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_swirling'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_swirling_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_swirling_connecting'}.png deleted file mode 100644 index 5e5fcc10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_swirling_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_tiles'}.png deleted file mode 100644 index f4e775f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_tiles_connecting'}.png deleted file mode 100644 index f4e775f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__spruce_window_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__tuff_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__tuff_cut_polished_connecting'}.png deleted file mode 100644 index 15d4d94f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__tuff_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__tuff_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__tuff_cut_small_brick_connecting'}.png deleted file mode 100644 index 83f5c958..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__tuff_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__veridium_cut_polished_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__veridium_cut_polished_connecting'}.png deleted file mode 100644 index 1d52af3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__veridium_cut_polished_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__veridium_cut_small_brick_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__veridium_cut_small_brick_connecting'}.png deleted file mode 100644 index 1c10c6b2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__veridium_cut_small_brick_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_bars'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_bars'}.png deleted file mode 100644 index 28d0fe3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_bars'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_bars_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_bars_connecting'}.png deleted file mode 100644 index 28d0fe3b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_bars_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_covered'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_covered'}.png deleted file mode 100644 index 9bc9f116..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_covered'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_covered_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_covered_connecting'}.png deleted file mode 100644 index 9bc9f116..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_covered_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_diagonal'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_diagonal'}.png deleted file mode 100644 index caf92bed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_diagonal'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_diagonal_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_diagonal_connecting'}.png deleted file mode 100644 index caf92bed..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_diagonal_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_large'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_large'}.png deleted file mode 100644 index e3033862..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_large'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_large_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_large_connecting'}.png deleted file mode 100644 index e3033862..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_large_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_panes'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_panes'}.png deleted file mode 100644 index 802f5b7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_panes'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_panes_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_panes_connecting'}.png deleted file mode 100644 index 802f5b7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_panes_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_rounded'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_rounded'}.png deleted file mode 100644 index 5bfc9087..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_rounded'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_rounded_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_rounded_connecting'}.png deleted file mode 100644 index 5bfc9087..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_rounded_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_slim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_slim'}.png deleted file mode 100644 index 6dc17d68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_slim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_slim_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_slim_connecting'}.png deleted file mode 100644 index 6dc17d68..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_slim_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_tiles'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_tiles'}.png deleted file mode 100644 index ced35722..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_tiles'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_tiles_connecting'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_tiles_connecting'}.png deleted file mode 100644 index ced35722..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'rechiseledcreate__warped_window_tiles_connecting'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__candy_cane_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__candy_cane_block'}.png deleted file mode 100644 index 972cf78b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__candy_cane_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__ginger_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__ginger_crate'}.png deleted file mode 100644 index 9de2e753..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__ginger_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__gingerbread'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__gingerbread'}.png deleted file mode 100644 index 137882c7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__gingerbread'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__gingerbread_frosted'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__gingerbread_frosted'}.png deleted file mode 100644 index 71aea0f7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'snowyspirit__gingerbread_frosted'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__acacia_trim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__acacia_trim'}.png deleted file mode 100644 index e4fda579..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__acacia_trim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__bamboo_trim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__bamboo_trim'}.png deleted file mode 100644 index 02e0d7e2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__bamboo_trim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__birch_trim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__birch_trim'}.png deleted file mode 100644 index 1d7a5bae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__birch_trim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__cherry_trim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__cherry_trim'}.png deleted file mode 100644 index 594802e4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__cherry_trim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__crimson_trim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__crimson_trim'}.png deleted file mode 100644 index 9c850712..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__crimson_trim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__dark_oak_trim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__dark_oak_trim'}.png deleted file mode 100644 index d8fd11a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__dark_oak_trim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__jungle_trim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__jungle_trim'}.png deleted file mode 100644 index 204ddeae..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__jungle_trim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__mangrove_trim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__mangrove_trim'}.png deleted file mode 100644 index 7d5c2d04..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__mangrove_trim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__oak_trim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__oak_trim'}.png deleted file mode 100644 index dcfab343..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__oak_trim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__spruce_trim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__spruce_trim'}.png deleted file mode 100644 index f2382e5c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__spruce_trim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__warped_trim'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__warped_trim'}.png deleted file mode 100644 index 966b8621..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'storagedrawers__warped_trim'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightdelight__torchberries_crate'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightdelight__torchberries_crate'}.png deleted file mode 100644 index a606ab46..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightdelight__torchberries_crate'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__arctic_fur_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__arctic_fur_block'}.png deleted file mode 100644 index e47dd11f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__arctic_fur_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__aurora_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__aurora_block'}.png deleted file mode 100644 index be056407..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__aurora_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__aurora_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__aurora_pillar'}.png deleted file mode 100644 index 7bf93dd3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__aurora_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__beanstalk_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__beanstalk_leaves'}.png deleted file mode 100644 index bdd711ca..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__beanstalk_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__blue_castle_door'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__blue_castle_door'}.png deleted file mode 100644 index c2e1a1c6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__blue_castle_door'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__blue_castle_rune_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__blue_castle_rune_brick'}.png deleted file mode 100644 index 37c6e29f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__blue_castle_rune_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__bold_castle_brick_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__bold_castle_brick_pillar'}.png deleted file mode 100644 index 7e054041..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__bold_castle_brick_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__bold_castle_brick_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__bold_castle_brick_tile'}.png deleted file mode 100644 index 1e208271..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__bold_castle_brick_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__bold_stone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__bold_stone_pillar'}.png deleted file mode 100644 index 378a8f8f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__bold_stone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_bookshelf'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_bookshelf'}.png deleted file mode 100644 index 52867853..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_bookshelf'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_leaves'}.png deleted file mode 100644 index 6426348f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_log'}.png deleted file mode 100644 index 1e10f412..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_planks'}.png deleted file mode 100644 index 646458ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_window'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_window'}.png deleted file mode 100644 index 0eb0f1b7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_window'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_wood'}.png deleted file mode 100644 index 0f17ea57..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__canopy_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__carminite_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__carminite_block'}.png deleted file mode 100644 index 8a4a60d4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__carminite_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__castle_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__castle_brick'}.png deleted file mode 100644 index 0497d77a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__castle_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__castle_roof_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__castle_roof_tile'}.png deleted file mode 100644 index 5e06cb80..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__castle_roof_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_castle_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_castle_brick'}.png deleted file mode 100644 index de07bbbb..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_castle_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_deadrock'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_deadrock'}.png deleted file mode 100644 index 2840a980..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_deadrock'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_etched_nagastone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_etched_nagastone'}.png deleted file mode 100644 index 279c700c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_etched_nagastone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_mazestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_mazestone'}.png deleted file mode 100644 index 9e7db8a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_mazestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_nagastone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_nagastone_pillar'}.png deleted file mode 100644 index 5b31a0af..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_nagastone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_towerwood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_towerwood'}.png deleted file mode 100644 index 877d4df7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_towerwood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_underbrick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_underbrick'}.png deleted file mode 100644 index 966e78b9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cracked_underbrick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cut_mazestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cut_mazestone'}.png deleted file mode 100644 index 57bb5d71..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__cut_mazestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_leaves'}.png deleted file mode 100644 index 70a22f10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_log'}.png deleted file mode 100644 index bd4acf87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_planks'}.png deleted file mode 100644 index e08ab427..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_wood'}.png deleted file mode 100644 index c1dc8c45..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__dark_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__deadrock'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__deadrock'}.png deleted file mode 100644 index 6a10b91e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__deadrock'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__decorative_mazestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__decorative_mazestone'}.png deleted file mode 100644 index 3bc9759c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__decorative_mazestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__encased_castle_brick_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__encased_castle_brick_pillar'}.png deleted file mode 100644 index aa4dbe42..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__encased_castle_brick_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__encased_castle_brick_tile'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__encased_castle_brick_tile'}.png deleted file mode 100644 index dc666a93..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__encased_castle_brick_tile'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__encased_towerwood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__encased_towerwood'}.png deleted file mode 100644 index 4cc6f7bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__encased_towerwood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__etched_nagastone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__etched_nagastone'}.png deleted file mode 100644 index c07641bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__etched_nagastone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__fiery_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__fiery_block'}.png deleted file mode 100644 index c381f2c1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__fiery_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__fluffy_cloud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__fluffy_cloud'}.png deleted file mode 100644 index 954a8a65..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__fluffy_cloud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_cobblestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_cobblestone'}.png deleted file mode 100644 index 30330101..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_cobblestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_leaves'}.png deleted file mode 100644 index 946f8a51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_log'}.png deleted file mode 100644 index 9358dbef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_obsidian'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_obsidian'}.png deleted file mode 100644 index 4d8a26bf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__giant_obsidian'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__huge_mushgloom'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__huge_mushgloom'}.png deleted file mode 100644 index 3d3dcf65..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__huge_mushgloom'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__huge_mushgloom_stem'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__huge_mushgloom_stem'}.png deleted file mode 100644 index 02cf70b6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__huge_mushgloom_stem'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__huge_stalk'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__huge_stalk'}.png deleted file mode 100644 index e30978e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__huge_stalk'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__infested_towerwood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__infested_towerwood'}.png deleted file mode 100644 index bc70fbef..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__infested_towerwood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__ironwood_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__ironwood_block'}.png deleted file mode 100644 index 1255c3f3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__ironwood_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__liveroot_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__liveroot_block'}.png deleted file mode 100644 index 9741aa22..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__liveroot_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__locked_vanishing_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__locked_vanishing_block'}.png deleted file mode 100644 index bc87c2b1..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__locked_vanishing_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_leaves'}.png deleted file mode 100644 index b7ad9cff..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_log'}.png deleted file mode 100644 index 4fa5a6a6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_planks'}.png deleted file mode 100644 index 2694c462..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_root'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_root'}.png deleted file mode 100644 index 71ec6723..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_root'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_wood'}.png deleted file mode 100644 index 4568bd10..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mangrove_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone'}.png deleted file mode 100644 index e59ed6c2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone_border'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone_border'}.png deleted file mode 100644 index 50658759..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone_border'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone_brick'}.png deleted file mode 100644 index 33bef6d7..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone_mosaic'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone_mosaic'}.png deleted file mode 100644 index d930172a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mazestone_mosaic'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_leaves'}.png deleted file mode 100644 index ecb7736f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_log'}.png deleted file mode 100644 index 7d96b390..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_log_core'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_log_core'}.png deleted file mode 100644 index 5ace761a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_log_core'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_planks'}.png deleted file mode 100644 index 36b1264b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_wood'}.png deleted file mode 100644 index 65aafd1f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mining_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_castle_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_castle_brick'}.png deleted file mode 100644 index f61dd1b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_castle_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_etched_nagastone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_etched_nagastone'}.png deleted file mode 100644 index 03ed02c9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_etched_nagastone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_mazestone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_mazestone'}.png deleted file mode 100644 index b7aacd1a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_mazestone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_nagastone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_nagastone_pillar'}.png deleted file mode 100644 index 478259e6..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_nagastone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_towerwood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_towerwood'}.png deleted file mode 100644 index ac2b5b9f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_towerwood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_underbrick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_underbrick'}.png deleted file mode 100644 index 30ce75c3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__mossy_underbrick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__nagastone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__nagastone'}.png deleted file mode 100644 index dae734f4..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__nagastone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__nagastone_head'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__nagastone_head'}.png deleted file mode 100644 index 284f8895..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__nagastone_head'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__nagastone_pillar'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__nagastone_pillar'}.png deleted file mode 100644 index ee4a4021..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__nagastone_pillar'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__pink_castle_door'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__pink_castle_door'}.png deleted file mode 100644 index 3a0901a9..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__pink_castle_door'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__pink_castle_rune_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__pink_castle_rune_brick'}.png deleted file mode 100644 index 780df260..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__pink_castle_rune_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__rainbow_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__rainbow_oak_leaves'}.png deleted file mode 100644 index 946f8a51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__rainbow_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__rainy_cloud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__rainy_cloud'}.png deleted file mode 100644 index 120acd4a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__rainy_cloud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__reappearing_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__reappearing_block'}.png deleted file mode 100644 index 22633984..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__reappearing_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__root'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__root'}.png deleted file mode 100644 index 14e77e78..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__root'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__snowy_cloud'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__snowy_cloud'}.png deleted file mode 100644 index edc52ecd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__snowy_cloud'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_leaves'}.png deleted file mode 100644 index 1481f54c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_log'}.png deleted file mode 100644 index aaff298f..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_log_core'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_log_core'}.png deleted file mode 100644 index 90efdb89..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_log_core'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_planks'}.png deleted file mode 100644 index 546e759c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_wood'}.png deleted file mode 100644 index aea344b0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__sorting_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__spiral_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__spiral_bricks'}.png deleted file mode 100644 index b6b68fde..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__spiral_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__steeleaf_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__steeleaf_block'}.png deleted file mode 100644 index 85c3e0a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__steeleaf_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_canopy_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_canopy_log'}.png deleted file mode 100644 index eb7f0437..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_canopy_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_canopy_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_canopy_wood'}.png deleted file mode 100644 index 02b0b825..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_canopy_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_dark_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_dark_log'}.png deleted file mode 100644 index 33d1621d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_dark_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_dark_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_dark_wood'}.png deleted file mode 100644 index 3f645b8a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_dark_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mangrove_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mangrove_log'}.png deleted file mode 100644 index 9fa0101e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mangrove_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mangrove_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mangrove_wood'}.png deleted file mode 100644 index 10775f36..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mangrove_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mining_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mining_log'}.png deleted file mode 100644 index 88fafd20..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mining_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mining_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mining_wood'}.png deleted file mode 100644 index c45ec68c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_mining_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_sorting_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_sorting_log'}.png deleted file mode 100644 index c6791284..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_sorting_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_sorting_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_sorting_wood'}.png deleted file mode 100644 index 2e7e8c96..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_sorting_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_time_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_time_log'}.png deleted file mode 100644 index 8cb709b3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_time_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_time_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_time_wood'}.png deleted file mode 100644 index d0e42faa..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_time_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_transformation_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_transformation_log'}.png deleted file mode 100644 index 60c8898a..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_transformation_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_transformation_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_transformation_wood'}.png deleted file mode 100644 index 4debe1ab..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_transformation_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_twilight_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_twilight_oak_log'}.png deleted file mode 100644 index 1c792cc8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_twilight_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_twilight_oak_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_twilight_oak_wood'}.png deleted file mode 100644 index 694e43fe..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stripped_twilight_oak_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stronghold_shield'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stronghold_shield'}.png deleted file mode 100644 index 38bb1c7d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__stronghold_shield'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__terrorcotta_arcs'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__terrorcotta_arcs'}.png deleted file mode 100644 index b69de6ec..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__terrorcotta_arcs'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__terrorcotta_curves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__terrorcotta_curves'}.png deleted file mode 100644 index 15ea794b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__terrorcotta_curves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__terrorcotta_lines'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__terrorcotta_lines'}.png deleted file mode 100644 index c90dab87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__terrorcotta_lines'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__thick_castle_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__thick_castle_brick'}.png deleted file mode 100644 index 5572505c..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__thick_castle_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__thorn_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__thorn_leaves'}.png deleted file mode 100644 index 208914f8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__thorn_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_leaves'}.png deleted file mode 100644 index f2031745..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_log'}.png deleted file mode 100644 index cda16abf..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_log_core'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_log_core'}.png deleted file mode 100644 index 4565a0da..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_log_core'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_planks'}.png deleted file mode 100644 index 3b3fe559..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_wood'}.png deleted file mode 100644 index f927a850..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__time_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__towerwood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__towerwood'}.png deleted file mode 100644 index fc23098e..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__towerwood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_leaves'}.png deleted file mode 100644 index 038a8a00..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_log'}.png deleted file mode 100644 index 9528a033..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_log_core'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_log_core'}.png deleted file mode 100644 index be893c90..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_log_core'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_planks'}.png deleted file mode 100644 index 32d95093..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_wood'}.png deleted file mode 100644 index 06223cac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__transformation_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__trollsteinn'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__trollsteinn'}.png deleted file mode 100644 index 0eafbe76..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__trollsteinn'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_leaves'}.png deleted file mode 100644 index 946f8a51..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_log'}.png deleted file mode 100644 index 1ca95aac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_planks'}.png deleted file mode 100644 index 965a57ac..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_wood'}.png deleted file mode 100644 index 1ddfa47b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twilight_oak_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twisted_stone'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twisted_stone'}.png deleted file mode 100644 index e5f377f2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__twisted_stone'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__uncrafting_table'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__uncrafting_table'}.png deleted file mode 100644 index 4bca01dd..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__uncrafting_table'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__underbrick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__underbrick'}.png deleted file mode 100644 index fc555e58..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__underbrick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__underbrick_floor'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__underbrick_floor'}.png deleted file mode 100644 index cd446ba0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__underbrick_floor'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__vanishing_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__vanishing_block'}.png deleted file mode 100644 index 4b5d3105..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__vanishing_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__violet_castle_door'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__violet_castle_door'}.png deleted file mode 100644 index f4f538a0..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__violet_castle_door'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__violet_castle_rune_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__violet_castle_rune_brick'}.png deleted file mode 100644 index 0c0f19a2..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__violet_castle_rune_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__weathered_deadrock'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__weathered_deadrock'}.png deleted file mode 100644 index cf85c8e5..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__weathered_deadrock'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__worn_castle_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__worn_castle_brick'}.png deleted file mode 100644 index e00c9e8b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__worn_castle_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__yellow_castle_door'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__yellow_castle_door'}.png deleted file mode 100644 index b4d50d87..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__yellow_castle_door'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__yellow_castle_rune_brick'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__yellow_castle_rune_brick'}.png deleted file mode 100644 index 2c176449..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'twilightforest__yellow_castle_rune_brick'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__chiseled_resin_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__chiseled_resin_bricks'}.png deleted file mode 100644 index 96163dd8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__chiseled_resin_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_moss_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_moss_block'}.png deleted file mode 100644 index fb2d7142..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_moss_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_leaves'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_leaves'}.png deleted file mode 100644 index 4a70b2dc..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_leaves'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_log'}.png deleted file mode 100644 index d3add7a3..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_planks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_planks'}.png deleted file mode 100644 index dab3439b..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_planks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_wood'}.png deleted file mode 100644 index e9d6a661..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__pale_oak_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__resin_block'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__resin_block'}.png deleted file mode 100644 index 83dbda3d..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__resin_block'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__resin_bricks'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__resin_bricks'}.png deleted file mode 100644 index 2bbe4cf8..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__resin_bricks'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__stripped_pale_oak_log'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__stripped_pale_oak_log'}.png deleted file mode 100644 index d22b2a43..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__stripped_pale_oak_log'}.png and /dev/null differ diff --git a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__stripped_pale_oak_wood'}.png b/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__stripped_pale_oak_wood'}.png deleted file mode 100644 index ab17e594..00000000 Binary files a/public/textures/ae2/facade__{'ae2__facade_item'__'vanillabackport__stripped_pale_oak_wood'}.png and /dev/null differ diff --git a/public/textures/ae2/fe_p2p_tunnel.png b/public/textures/ae2/fe_p2p_tunnel.png deleted file mode 100644 index 2082b7c7..00000000 Binary files a/public/textures/ae2/fe_p2p_tunnel.png and /dev/null differ diff --git a/public/textures/ae2/flawed_budding_quartz.png b/public/textures/ae2/flawed_budding_quartz.png deleted file mode 100644 index bcb5c42c..00000000 Binary files a/public/textures/ae2/flawed_budding_quartz.png and /dev/null differ diff --git a/public/textures/ae2/flawless_budding_quartz.png b/public/textures/ae2/flawless_budding_quartz.png deleted file mode 100644 index f7ec058d..00000000 Binary files a/public/textures/ae2/flawless_budding_quartz.png and /dev/null differ diff --git a/public/textures/ae2/fluid_cell_housing.png b/public/textures/ae2/fluid_cell_housing.png deleted file mode 100644 index ec4b8c25..00000000 Binary files a/public/textures/ae2/fluid_cell_housing.png and /dev/null differ diff --git a/public/textures/ae2/fluid_p2p_tunnel.png b/public/textures/ae2/fluid_p2p_tunnel.png deleted file mode 100644 index a2a3f994..00000000 Binary files a/public/textures/ae2/fluid_p2p_tunnel.png and /dev/null differ diff --git a/public/textures/ae2/fluid_storage_cell_16k.png b/public/textures/ae2/fluid_storage_cell_16k.png deleted file mode 100644 index cb59d794..00000000 Binary files a/public/textures/ae2/fluid_storage_cell_16k.png and /dev/null differ diff --git a/public/textures/ae2/fluid_storage_cell_1k.png b/public/textures/ae2/fluid_storage_cell_1k.png deleted file mode 100644 index 0df2e3cc..00000000 Binary files a/public/textures/ae2/fluid_storage_cell_1k.png and /dev/null differ diff --git a/public/textures/ae2/fluid_storage_cell_256k.png b/public/textures/ae2/fluid_storage_cell_256k.png deleted file mode 100644 index 468e2708..00000000 Binary files a/public/textures/ae2/fluid_storage_cell_256k.png and /dev/null differ diff --git a/public/textures/ae2/fluid_storage_cell_4k.png b/public/textures/ae2/fluid_storage_cell_4k.png deleted file mode 100644 index cc8caeac..00000000 Binary files a/public/textures/ae2/fluid_storage_cell_4k.png and /dev/null differ diff --git a/public/textures/ae2/fluid_storage_cell_64k.png b/public/textures/ae2/fluid_storage_cell_64k.png deleted file mode 100644 index bc707e5f..00000000 Binary files a/public/textures/ae2/fluid_storage_cell_64k.png and /dev/null differ diff --git a/public/textures/ae2/fluix_axe.png b/public/textures/ae2/fluix_axe.png deleted file mode 100644 index 260c7f9b..00000000 Binary files a/public/textures/ae2/fluix_axe.png and /dev/null differ diff --git a/public/textures/ae2/fluix_block.png b/public/textures/ae2/fluix_block.png deleted file mode 100644 index 86da0954..00000000 Binary files a/public/textures/ae2/fluix_block.png and /dev/null differ diff --git a/public/textures/ae2/fluix_covered_cable.png b/public/textures/ae2/fluix_covered_cable.png deleted file mode 100644 index 45567613..00000000 Binary files a/public/textures/ae2/fluix_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/fluix_covered_dense_cable.png b/public/textures/ae2/fluix_covered_dense_cable.png deleted file mode 100644 index 89b6e593..00000000 Binary files a/public/textures/ae2/fluix_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/fluix_crystal.png b/public/textures/ae2/fluix_crystal.png deleted file mode 100644 index 784843ef..00000000 Binary files a/public/textures/ae2/fluix_crystal.png and /dev/null differ diff --git a/public/textures/ae2/fluix_dust.png b/public/textures/ae2/fluix_dust.png deleted file mode 100644 index b8864979..00000000 Binary files a/public/textures/ae2/fluix_dust.png and /dev/null differ diff --git a/public/textures/ae2/fluix_glass_cable.png b/public/textures/ae2/fluix_glass_cable.png deleted file mode 100644 index d4cd693f..00000000 Binary files a/public/textures/ae2/fluix_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/fluix_hoe.png b/public/textures/ae2/fluix_hoe.png deleted file mode 100644 index 434f6c9a..00000000 Binary files a/public/textures/ae2/fluix_hoe.png and /dev/null differ diff --git a/public/textures/ae2/fluix_pearl.png b/public/textures/ae2/fluix_pearl.png deleted file mode 100644 index bb5121d5..00000000 Binary files a/public/textures/ae2/fluix_pearl.png and /dev/null differ diff --git a/public/textures/ae2/fluix_pickaxe.png b/public/textures/ae2/fluix_pickaxe.png deleted file mode 100644 index 931a6824..00000000 Binary files a/public/textures/ae2/fluix_pickaxe.png and /dev/null differ diff --git a/public/textures/ae2/fluix_shovel.png b/public/textures/ae2/fluix_shovel.png deleted file mode 100644 index 776e5840..00000000 Binary files a/public/textures/ae2/fluix_shovel.png and /dev/null differ diff --git a/public/textures/ae2/fluix_slab.png b/public/textures/ae2/fluix_slab.png deleted file mode 100644 index 6c1313dc..00000000 Binary files a/public/textures/ae2/fluix_slab.png and /dev/null differ diff --git a/public/textures/ae2/fluix_smart_cable.png b/public/textures/ae2/fluix_smart_cable.png deleted file mode 100644 index 901bc3f0..00000000 Binary files a/public/textures/ae2/fluix_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/fluix_smart_dense_cable.png b/public/textures/ae2/fluix_smart_dense_cable.png deleted file mode 100644 index 1bc8b533..00000000 Binary files a/public/textures/ae2/fluix_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/fluix_stairs.png b/public/textures/ae2/fluix_stairs.png deleted file mode 100644 index 6c6d8987..00000000 Binary files a/public/textures/ae2/fluix_stairs.png and /dev/null differ diff --git a/public/textures/ae2/fluix_sword.png b/public/textures/ae2/fluix_sword.png deleted file mode 100644 index 3fedddc5..00000000 Binary files a/public/textures/ae2/fluix_sword.png and /dev/null differ diff --git a/public/textures/ae2/fluix_upgrade_smithing_template.png b/public/textures/ae2/fluix_upgrade_smithing_template.png deleted file mode 100644 index 00667271..00000000 Binary files a/public/textures/ae2/fluix_upgrade_smithing_template.png and /dev/null differ diff --git a/public/textures/ae2/fluix_wall.png b/public/textures/ae2/fluix_wall.png deleted file mode 100644 index a1916946..00000000 Binary files a/public/textures/ae2/fluix_wall.png and /dev/null differ diff --git a/public/textures/ae2/formation_core.png b/public/textures/ae2/formation_core.png deleted file mode 100644 index dd9af197..00000000 Binary files a/public/textures/ae2/formation_core.png and /dev/null differ diff --git a/public/textures/ae2/formation_plane.png b/public/textures/ae2/formation_plane.png deleted file mode 100644 index ddfd26a1..00000000 Binary files a/public/textures/ae2/formation_plane.png and /dev/null differ diff --git a/public/textures/ae2/fuzzy_card.png b/public/textures/ae2/fuzzy_card.png deleted file mode 100644 index 8d80950f..00000000 Binary files a/public/textures/ae2/fuzzy_card.png and /dev/null differ diff --git a/public/textures/ae2/gray_covered_cable.png b/public/textures/ae2/gray_covered_cable.png deleted file mode 100644 index 28f3d4f1..00000000 Binary files a/public/textures/ae2/gray_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/gray_covered_dense_cable.png b/public/textures/ae2/gray_covered_dense_cable.png deleted file mode 100644 index 0587eaf8..00000000 Binary files a/public/textures/ae2/gray_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/gray_glass_cable.png b/public/textures/ae2/gray_glass_cable.png deleted file mode 100644 index b80069cb..00000000 Binary files a/public/textures/ae2/gray_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/gray_lumen_paint_ball.png b/public/textures/ae2/gray_lumen_paint_ball.png deleted file mode 100644 index c0523046..00000000 Binary files a/public/textures/ae2/gray_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/gray_paint_ball.png b/public/textures/ae2/gray_paint_ball.png deleted file mode 100644 index 6937a7db..00000000 Binary files a/public/textures/ae2/gray_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/gray_smart_cable.png b/public/textures/ae2/gray_smart_cable.png deleted file mode 100644 index 786918a8..00000000 Binary files a/public/textures/ae2/gray_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/gray_smart_dense_cable.png b/public/textures/ae2/gray_smart_dense_cable.png deleted file mode 100644 index 290d288d..00000000 Binary files a/public/textures/ae2/gray_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/green_covered_cable.png b/public/textures/ae2/green_covered_cable.png deleted file mode 100644 index 3a0dba26..00000000 Binary files a/public/textures/ae2/green_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/green_covered_dense_cable.png b/public/textures/ae2/green_covered_dense_cable.png deleted file mode 100644 index 98569d04..00000000 Binary files a/public/textures/ae2/green_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/green_glass_cable.png b/public/textures/ae2/green_glass_cable.png deleted file mode 100644 index 56f5217b..00000000 Binary files a/public/textures/ae2/green_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/green_lumen_paint_ball.png b/public/textures/ae2/green_lumen_paint_ball.png deleted file mode 100644 index 50f10795..00000000 Binary files a/public/textures/ae2/green_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/green_paint_ball.png b/public/textures/ae2/green_paint_ball.png deleted file mode 100644 index f4de64cd..00000000 Binary files a/public/textures/ae2/green_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/green_smart_cable.png b/public/textures/ae2/green_smart_cable.png deleted file mode 100644 index 8d842145..00000000 Binary files a/public/textures/ae2/green_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/green_smart_dense_cable.png b/public/textures/ae2/green_smart_dense_cable.png deleted file mode 100644 index 817c52fb..00000000 Binary files a/public/textures/ae2/green_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/growth_accelerator.png b/public/textures/ae2/growth_accelerator.png deleted file mode 100644 index b6024495..00000000 Binary files a/public/textures/ae2/growth_accelerator.png and /dev/null differ diff --git a/public/textures/ae2/guide.png b/public/textures/ae2/guide.png deleted file mode 100644 index b1c69727..00000000 Binary files a/public/textures/ae2/guide.png and /dev/null differ diff --git a/public/textures/ae2/import_bus.png b/public/textures/ae2/import_bus.png deleted file mode 100644 index 9cecbf67..00000000 Binary files a/public/textures/ae2/import_bus.png and /dev/null differ diff --git a/public/textures/ae2/inscriber.png b/public/textures/ae2/inscriber.png deleted file mode 100644 index 0034b97c..00000000 Binary files a/public/textures/ae2/inscriber.png and /dev/null differ diff --git a/public/textures/ae2/interface.png b/public/textures/ae2/interface.png deleted file mode 100644 index b0727c1d..00000000 Binary files a/public/textures/ae2/interface.png and /dev/null differ diff --git a/public/textures/ae2/inverted_toggle_bus.png b/public/textures/ae2/inverted_toggle_bus.png deleted file mode 100644 index 56080370..00000000 Binary files a/public/textures/ae2/inverted_toggle_bus.png and /dev/null differ diff --git a/public/textures/ae2/inverter_card.png b/public/textures/ae2/inverter_card.png deleted file mode 100644 index 90fd68c3..00000000 Binary files a/public/textures/ae2/inverter_card.png and /dev/null differ diff --git a/public/textures/ae2/io_port.png b/public/textures/ae2/io_port.png deleted file mode 100644 index 00fcacc9..00000000 Binary files a/public/textures/ae2/io_port.png and /dev/null differ diff --git a/public/textures/ae2/item_cell_housing.png b/public/textures/ae2/item_cell_housing.png deleted file mode 100644 index fbce1bea..00000000 Binary files a/public/textures/ae2/item_cell_housing.png and /dev/null differ diff --git a/public/textures/ae2/item_p2p_tunnel.png b/public/textures/ae2/item_p2p_tunnel.png deleted file mode 100644 index 0ca85677..00000000 Binary files a/public/textures/ae2/item_p2p_tunnel.png and /dev/null differ diff --git a/public/textures/ae2/item_storage_cell_16k.png b/public/textures/ae2/item_storage_cell_16k.png deleted file mode 100644 index 92cf2fca..00000000 Binary files a/public/textures/ae2/item_storage_cell_16k.png and /dev/null differ diff --git a/public/textures/ae2/item_storage_cell_1k.png b/public/textures/ae2/item_storage_cell_1k.png deleted file mode 100644 index 1a0c3406..00000000 Binary files a/public/textures/ae2/item_storage_cell_1k.png and /dev/null differ diff --git a/public/textures/ae2/item_storage_cell_256k.png b/public/textures/ae2/item_storage_cell_256k.png deleted file mode 100644 index 1ce1593e..00000000 Binary files a/public/textures/ae2/item_storage_cell_256k.png and /dev/null differ diff --git a/public/textures/ae2/item_storage_cell_4k.png b/public/textures/ae2/item_storage_cell_4k.png deleted file mode 100644 index 42c62edd..00000000 Binary files a/public/textures/ae2/item_storage_cell_4k.png and /dev/null differ diff --git a/public/textures/ae2/item_storage_cell_64k.png b/public/textures/ae2/item_storage_cell_64k.png deleted file mode 100644 index 6325ae0b..00000000 Binary files a/public/textures/ae2/item_storage_cell_64k.png and /dev/null differ diff --git a/public/textures/ae2/large_quartz_bud.png b/public/textures/ae2/large_quartz_bud.png deleted file mode 100644 index 40154294..00000000 Binary files a/public/textures/ae2/large_quartz_bud.png and /dev/null differ diff --git a/public/textures/ae2/level_emitter.png b/public/textures/ae2/level_emitter.png deleted file mode 100644 index 44a07f9d..00000000 Binary files a/public/textures/ae2/level_emitter.png and /dev/null differ diff --git a/public/textures/ae2/light_blue_covered_cable.png b/public/textures/ae2/light_blue_covered_cable.png deleted file mode 100644 index 7fa887bd..00000000 Binary files a/public/textures/ae2/light_blue_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/light_blue_covered_dense_cable.png b/public/textures/ae2/light_blue_covered_dense_cable.png deleted file mode 100644 index b7fa8c3f..00000000 Binary files a/public/textures/ae2/light_blue_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/light_blue_glass_cable.png b/public/textures/ae2/light_blue_glass_cable.png deleted file mode 100644 index 2f9c148a..00000000 Binary files a/public/textures/ae2/light_blue_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/light_blue_lumen_paint_ball.png b/public/textures/ae2/light_blue_lumen_paint_ball.png deleted file mode 100644 index 957433f4..00000000 Binary files a/public/textures/ae2/light_blue_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/light_blue_paint_ball.png b/public/textures/ae2/light_blue_paint_ball.png deleted file mode 100644 index 8f384dab..00000000 Binary files a/public/textures/ae2/light_blue_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/light_blue_smart_cable.png b/public/textures/ae2/light_blue_smart_cable.png deleted file mode 100644 index 353e4d65..00000000 Binary files a/public/textures/ae2/light_blue_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/light_blue_smart_dense_cable.png b/public/textures/ae2/light_blue_smart_dense_cable.png deleted file mode 100644 index 7586a15a..00000000 Binary files a/public/textures/ae2/light_blue_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/light_detector.png b/public/textures/ae2/light_detector.png deleted file mode 100644 index ab40d4a3..00000000 Binary files a/public/textures/ae2/light_detector.png and /dev/null differ diff --git a/public/textures/ae2/light_gray_covered_cable.png b/public/textures/ae2/light_gray_covered_cable.png deleted file mode 100644 index 4c162147..00000000 Binary files a/public/textures/ae2/light_gray_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/light_gray_covered_dense_cable.png b/public/textures/ae2/light_gray_covered_dense_cable.png deleted file mode 100644 index 72465067..00000000 Binary files a/public/textures/ae2/light_gray_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/light_gray_glass_cable.png b/public/textures/ae2/light_gray_glass_cable.png deleted file mode 100644 index a01a0948..00000000 Binary files a/public/textures/ae2/light_gray_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/light_gray_lumen_paint_ball.png b/public/textures/ae2/light_gray_lumen_paint_ball.png deleted file mode 100644 index a79bfc43..00000000 Binary files a/public/textures/ae2/light_gray_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/light_gray_paint_ball.png b/public/textures/ae2/light_gray_paint_ball.png deleted file mode 100644 index 0f05b5de..00000000 Binary files a/public/textures/ae2/light_gray_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/light_gray_smart_cable.png b/public/textures/ae2/light_gray_smart_cable.png deleted file mode 100644 index f56ce8ce..00000000 Binary files a/public/textures/ae2/light_gray_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/light_gray_smart_dense_cable.png b/public/textures/ae2/light_gray_smart_dense_cable.png deleted file mode 100644 index 1cfd7e12..00000000 Binary files a/public/textures/ae2/light_gray_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/light_p2p_tunnel.png b/public/textures/ae2/light_p2p_tunnel.png deleted file mode 100644 index fc92dbd5..00000000 Binary files a/public/textures/ae2/light_p2p_tunnel.png and /dev/null differ diff --git a/public/textures/ae2/lime_covered_cable.png b/public/textures/ae2/lime_covered_cable.png deleted file mode 100644 index 7de56e8f..00000000 Binary files a/public/textures/ae2/lime_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/lime_covered_dense_cable.png b/public/textures/ae2/lime_covered_dense_cable.png deleted file mode 100644 index 09978474..00000000 Binary files a/public/textures/ae2/lime_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/lime_glass_cable.png b/public/textures/ae2/lime_glass_cable.png deleted file mode 100644 index 52dc44bd..00000000 Binary files a/public/textures/ae2/lime_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/lime_lumen_paint_ball.png b/public/textures/ae2/lime_lumen_paint_ball.png deleted file mode 100644 index 0f28b87f..00000000 Binary files a/public/textures/ae2/lime_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/lime_paint_ball.png b/public/textures/ae2/lime_paint_ball.png deleted file mode 100644 index c7057209..00000000 Binary files a/public/textures/ae2/lime_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/lime_smart_cable.png b/public/textures/ae2/lime_smart_cable.png deleted file mode 100644 index 87bc64f2..00000000 Binary files a/public/textures/ae2/lime_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/lime_smart_dense_cable.png b/public/textures/ae2/lime_smart_dense_cable.png deleted file mode 100644 index 84bac06a..00000000 Binary files a/public/textures/ae2/lime_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/logic_processor.png b/public/textures/ae2/logic_processor.png deleted file mode 100644 index e7a16e92..00000000 Binary files a/public/textures/ae2/logic_processor.png and /dev/null differ diff --git a/public/textures/ae2/logic_processor_press.png b/public/textures/ae2/logic_processor_press.png deleted file mode 100644 index d734b7b0..00000000 Binary files a/public/textures/ae2/logic_processor_press.png and /dev/null differ diff --git a/public/textures/ae2/magenta_covered_cable.png b/public/textures/ae2/magenta_covered_cable.png deleted file mode 100644 index 7bfea594..00000000 Binary files a/public/textures/ae2/magenta_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/magenta_covered_dense_cable.png b/public/textures/ae2/magenta_covered_dense_cable.png deleted file mode 100644 index 322f5d35..00000000 Binary files a/public/textures/ae2/magenta_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/magenta_glass_cable.png b/public/textures/ae2/magenta_glass_cable.png deleted file mode 100644 index 652ce329..00000000 Binary files a/public/textures/ae2/magenta_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/magenta_lumen_paint_ball.png b/public/textures/ae2/magenta_lumen_paint_ball.png deleted file mode 100644 index ed81f738..00000000 Binary files a/public/textures/ae2/magenta_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/magenta_paint_ball.png b/public/textures/ae2/magenta_paint_ball.png deleted file mode 100644 index 3f6c5929..00000000 Binary files a/public/textures/ae2/magenta_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/magenta_smart_cable.png b/public/textures/ae2/magenta_smart_cable.png deleted file mode 100644 index 61da1773..00000000 Binary files a/public/textures/ae2/magenta_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/magenta_smart_dense_cable.png b/public/textures/ae2/magenta_smart_dense_cable.png deleted file mode 100644 index 0b0a9d1a..00000000 Binary files a/public/textures/ae2/magenta_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/matter_ball.png b/public/textures/ae2/matter_ball.png deleted file mode 100644 index b810eb61..00000000 Binary files a/public/textures/ae2/matter_ball.png and /dev/null differ diff --git a/public/textures/ae2/matter_cannon.png b/public/textures/ae2/matter_cannon.png deleted file mode 100644 index 549d4ce3..00000000 Binary files a/public/textures/ae2/matter_cannon.png and /dev/null differ diff --git a/public/textures/ae2/matter_cannon__{'ae2__stored_energy'__200000.0d}.png b/public/textures/ae2/matter_cannon__{'ae2__stored_energy'__200000.0d}.png deleted file mode 100644 index 549d4ce3..00000000 Binary files a/public/textures/ae2/matter_cannon__{'ae2__stored_energy'__200000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/me_p2p_tunnel.png b/public/textures/ae2/me_p2p_tunnel.png deleted file mode 100644 index 9a13e20f..00000000 Binary files a/public/textures/ae2/me_p2p_tunnel.png and /dev/null differ diff --git a/public/textures/ae2/medium_quartz_bud.png b/public/textures/ae2/medium_quartz_bud.png deleted file mode 100644 index 0f79404a..00000000 Binary files a/public/textures/ae2/medium_quartz_bud.png and /dev/null differ diff --git a/public/textures/ae2/memory_card.png b/public/textures/ae2/memory_card.png deleted file mode 100644 index 348c1689..00000000 Binary files a/public/textures/ae2/memory_card.png and /dev/null differ diff --git a/public/textures/ae2/meteorite_compass.png b/public/textures/ae2/meteorite_compass.png deleted file mode 100644 index dc140963..00000000 Binary files a/public/textures/ae2/meteorite_compass.png and /dev/null differ diff --git a/public/textures/ae2/molecular_assembler.png b/public/textures/ae2/molecular_assembler.png deleted file mode 100644 index 90bae40d..00000000 Binary files a/public/textures/ae2/molecular_assembler.png and /dev/null differ diff --git a/public/textures/ae2/monitor.png b/public/textures/ae2/monitor.png deleted file mode 100644 index f0b13b36..00000000 Binary files a/public/textures/ae2/monitor.png and /dev/null differ diff --git a/public/textures/ae2/mysterious_cube.png b/public/textures/ae2/mysterious_cube.png deleted file mode 100644 index e89f9859..00000000 Binary files a/public/textures/ae2/mysterious_cube.png and /dev/null differ diff --git a/public/textures/ae2/name_press.png b/public/textures/ae2/name_press.png deleted file mode 100644 index fb2f117d..00000000 Binary files a/public/textures/ae2/name_press.png and /dev/null differ diff --git a/public/textures/ae2/nether_quartz_axe.png b/public/textures/ae2/nether_quartz_axe.png deleted file mode 100644 index 0003a238..00000000 Binary files a/public/textures/ae2/nether_quartz_axe.png and /dev/null differ diff --git a/public/textures/ae2/nether_quartz_cutting_knife.png b/public/textures/ae2/nether_quartz_cutting_knife.png deleted file mode 100644 index 3d177cb1..00000000 Binary files a/public/textures/ae2/nether_quartz_cutting_knife.png and /dev/null differ diff --git a/public/textures/ae2/nether_quartz_hoe.png b/public/textures/ae2/nether_quartz_hoe.png deleted file mode 100644 index 02b8e6d3..00000000 Binary files a/public/textures/ae2/nether_quartz_hoe.png and /dev/null differ diff --git a/public/textures/ae2/nether_quartz_pickaxe.png b/public/textures/ae2/nether_quartz_pickaxe.png deleted file mode 100644 index 7a55e009..00000000 Binary files a/public/textures/ae2/nether_quartz_pickaxe.png and /dev/null differ diff --git a/public/textures/ae2/nether_quartz_shovel.png b/public/textures/ae2/nether_quartz_shovel.png deleted file mode 100644 index b7cc648b..00000000 Binary files a/public/textures/ae2/nether_quartz_shovel.png and /dev/null differ diff --git a/public/textures/ae2/nether_quartz_sword.png b/public/textures/ae2/nether_quartz_sword.png deleted file mode 100644 index c263255b..00000000 Binary files a/public/textures/ae2/nether_quartz_sword.png and /dev/null differ diff --git a/public/textures/ae2/nether_quartz_wrench.png b/public/textures/ae2/nether_quartz_wrench.png deleted file mode 100644 index d41fb2fd..00000000 Binary files a/public/textures/ae2/nether_quartz_wrench.png and /dev/null differ diff --git a/public/textures/ae2/network_tool.png b/public/textures/ae2/network_tool.png deleted file mode 100644 index 60872961..00000000 Binary files a/public/textures/ae2/network_tool.png and /dev/null differ diff --git a/public/textures/ae2/not_so_mysterious_cube.png b/public/textures/ae2/not_so_mysterious_cube.png deleted file mode 100644 index e89f9859..00000000 Binary files a/public/textures/ae2/not_so_mysterious_cube.png and /dev/null differ diff --git a/public/textures/ae2/orange_covered_cable.png b/public/textures/ae2/orange_covered_cable.png deleted file mode 100644 index 86685d99..00000000 Binary files a/public/textures/ae2/orange_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/orange_covered_dense_cable.png b/public/textures/ae2/orange_covered_dense_cable.png deleted file mode 100644 index 0e14fe38..00000000 Binary files a/public/textures/ae2/orange_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/orange_glass_cable.png b/public/textures/ae2/orange_glass_cable.png deleted file mode 100644 index 2f03a55b..00000000 Binary files a/public/textures/ae2/orange_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/orange_lumen_paint_ball.png b/public/textures/ae2/orange_lumen_paint_ball.png deleted file mode 100644 index c0b2d78a..00000000 Binary files a/public/textures/ae2/orange_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/orange_paint_ball.png b/public/textures/ae2/orange_paint_ball.png deleted file mode 100644 index c5bf8b8a..00000000 Binary files a/public/textures/ae2/orange_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/orange_smart_cable.png b/public/textures/ae2/orange_smart_cable.png deleted file mode 100644 index f82d4b34..00000000 Binary files a/public/textures/ae2/orange_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/orange_smart_dense_cable.png b/public/textures/ae2/orange_smart_dense_cable.png deleted file mode 100644 index d9031688..00000000 Binary files a/public/textures/ae2/orange_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/pattern_access_terminal.png b/public/textures/ae2/pattern_access_terminal.png deleted file mode 100644 index 764fe9bd..00000000 Binary files a/public/textures/ae2/pattern_access_terminal.png and /dev/null differ diff --git a/public/textures/ae2/pattern_encoding_terminal.png b/public/textures/ae2/pattern_encoding_terminal.png deleted file mode 100644 index 3f9ab82e..00000000 Binary files a/public/textures/ae2/pattern_encoding_terminal.png and /dev/null differ diff --git a/public/textures/ae2/pattern_provider.png b/public/textures/ae2/pattern_provider.png deleted file mode 100644 index 3a41dcac..00000000 Binary files a/public/textures/ae2/pattern_provider.png and /dev/null differ diff --git a/public/textures/ae2/pink_covered_cable.png b/public/textures/ae2/pink_covered_cable.png deleted file mode 100644 index fe2434a5..00000000 Binary files a/public/textures/ae2/pink_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/pink_covered_dense_cable.png b/public/textures/ae2/pink_covered_dense_cable.png deleted file mode 100644 index 7e67c448..00000000 Binary files a/public/textures/ae2/pink_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/pink_glass_cable.png b/public/textures/ae2/pink_glass_cable.png deleted file mode 100644 index 2247456b..00000000 Binary files a/public/textures/ae2/pink_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/pink_lumen_paint_ball.png b/public/textures/ae2/pink_lumen_paint_ball.png deleted file mode 100644 index de4e474d..00000000 Binary files a/public/textures/ae2/pink_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/pink_paint_ball.png b/public/textures/ae2/pink_paint_ball.png deleted file mode 100644 index b12c2c56..00000000 Binary files a/public/textures/ae2/pink_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/pink_smart_cable.png b/public/textures/ae2/pink_smart_cable.png deleted file mode 100644 index adce8146..00000000 Binary files a/public/textures/ae2/pink_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/pink_smart_dense_cable.png b/public/textures/ae2/pink_smart_dense_cable.png deleted file mode 100644 index d78b771a..00000000 Binary files a/public/textures/ae2/pink_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/portable_fluid_cell_16k.png b/public/textures/ae2/portable_fluid_cell_16k.png deleted file mode 100644 index 7deafa37..00000000 Binary files a/public/textures/ae2/portable_fluid_cell_16k.png and /dev/null differ diff --git a/public/textures/ae2/portable_fluid_cell_16k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/ae2/portable_fluid_cell_16k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index bcf27701..00000000 Binary files a/public/textures/ae2/portable_fluid_cell_16k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/portable_fluid_cell_1k.png b/public/textures/ae2/portable_fluid_cell_1k.png deleted file mode 100644 index 107bbcab..00000000 Binary files a/public/textures/ae2/portable_fluid_cell_1k.png and /dev/null differ diff --git a/public/textures/ae2/portable_fluid_cell_1k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/ae2/portable_fluid_cell_1k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index a3414c12..00000000 Binary files a/public/textures/ae2/portable_fluid_cell_1k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/portable_fluid_cell_256k.png b/public/textures/ae2/portable_fluid_cell_256k.png deleted file mode 100644 index 9184c8a1..00000000 Binary files a/public/textures/ae2/portable_fluid_cell_256k.png and /dev/null differ diff --git a/public/textures/ae2/portable_fluid_cell_256k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/ae2/portable_fluid_cell_256k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index 42bbc2d5..00000000 Binary files a/public/textures/ae2/portable_fluid_cell_256k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/portable_fluid_cell_4k.png b/public/textures/ae2/portable_fluid_cell_4k.png deleted file mode 100644 index 0d8c41a5..00000000 Binary files a/public/textures/ae2/portable_fluid_cell_4k.png and /dev/null differ diff --git a/public/textures/ae2/portable_fluid_cell_4k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/ae2/portable_fluid_cell_4k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index 67b32351..00000000 Binary files a/public/textures/ae2/portable_fluid_cell_4k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/portable_fluid_cell_64k.png b/public/textures/ae2/portable_fluid_cell_64k.png deleted file mode 100644 index 8248864b..00000000 Binary files a/public/textures/ae2/portable_fluid_cell_64k.png and /dev/null differ diff --git a/public/textures/ae2/portable_fluid_cell_64k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/ae2/portable_fluid_cell_64k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index d8c0ac67..00000000 Binary files a/public/textures/ae2/portable_fluid_cell_64k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/portable_item_cell_16k.png b/public/textures/ae2/portable_item_cell_16k.png deleted file mode 100644 index 0b60dd6b..00000000 Binary files a/public/textures/ae2/portable_item_cell_16k.png and /dev/null differ diff --git a/public/textures/ae2/portable_item_cell_16k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/ae2/portable_item_cell_16k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index 406f89d0..00000000 Binary files a/public/textures/ae2/portable_item_cell_16k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/portable_item_cell_1k.png b/public/textures/ae2/portable_item_cell_1k.png deleted file mode 100644 index 198cd92a..00000000 Binary files a/public/textures/ae2/portable_item_cell_1k.png and /dev/null differ diff --git a/public/textures/ae2/portable_item_cell_1k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/ae2/portable_item_cell_1k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index c6559ece..00000000 Binary files a/public/textures/ae2/portable_item_cell_1k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/portable_item_cell_256k.png b/public/textures/ae2/portable_item_cell_256k.png deleted file mode 100644 index 523d5edc..00000000 Binary files a/public/textures/ae2/portable_item_cell_256k.png and /dev/null differ diff --git a/public/textures/ae2/portable_item_cell_256k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/ae2/portable_item_cell_256k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index a4c1ef21..00000000 Binary files a/public/textures/ae2/portable_item_cell_256k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/portable_item_cell_4k.png b/public/textures/ae2/portable_item_cell_4k.png deleted file mode 100644 index b4bd8889..00000000 Binary files a/public/textures/ae2/portable_item_cell_4k.png and /dev/null differ diff --git a/public/textures/ae2/portable_item_cell_4k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/ae2/portable_item_cell_4k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index abf12da3..00000000 Binary files a/public/textures/ae2/portable_item_cell_4k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/portable_item_cell_64k.png b/public/textures/ae2/portable_item_cell_64k.png deleted file mode 100644 index b5b8c3b2..00000000 Binary files a/public/textures/ae2/portable_item_cell_64k.png and /dev/null differ diff --git a/public/textures/ae2/portable_item_cell_64k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/ae2/portable_item_cell_64k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index 0184d11b..00000000 Binary files a/public/textures/ae2/portable_item_cell_64k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/printed_calculation_processor.png b/public/textures/ae2/printed_calculation_processor.png deleted file mode 100644 index 6fc2ce4d..00000000 Binary files a/public/textures/ae2/printed_calculation_processor.png and /dev/null differ diff --git a/public/textures/ae2/printed_engineering_processor.png b/public/textures/ae2/printed_engineering_processor.png deleted file mode 100644 index d7eebf80..00000000 Binary files a/public/textures/ae2/printed_engineering_processor.png and /dev/null differ diff --git a/public/textures/ae2/printed_logic_processor.png b/public/textures/ae2/printed_logic_processor.png deleted file mode 100644 index 23677d47..00000000 Binary files a/public/textures/ae2/printed_logic_processor.png and /dev/null differ diff --git a/public/textures/ae2/printed_silicon.png b/public/textures/ae2/printed_silicon.png deleted file mode 100644 index 6f323cd2..00000000 Binary files a/public/textures/ae2/printed_silicon.png and /dev/null differ diff --git a/public/textures/ae2/purple_covered_cable.png b/public/textures/ae2/purple_covered_cable.png deleted file mode 100644 index 4227e2b1..00000000 Binary files a/public/textures/ae2/purple_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/purple_covered_dense_cable.png b/public/textures/ae2/purple_covered_dense_cable.png deleted file mode 100644 index 78ebdaaf..00000000 Binary files a/public/textures/ae2/purple_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/purple_glass_cable.png b/public/textures/ae2/purple_glass_cable.png deleted file mode 100644 index e54164b0..00000000 Binary files a/public/textures/ae2/purple_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/purple_lumen_paint_ball.png b/public/textures/ae2/purple_lumen_paint_ball.png deleted file mode 100644 index f37adaab..00000000 Binary files a/public/textures/ae2/purple_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/purple_paint_ball.png b/public/textures/ae2/purple_paint_ball.png deleted file mode 100644 index f7a7e925..00000000 Binary files a/public/textures/ae2/purple_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/purple_smart_cable.png b/public/textures/ae2/purple_smart_cable.png deleted file mode 100644 index f0c85e54..00000000 Binary files a/public/textures/ae2/purple_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/purple_smart_dense_cable.png b/public/textures/ae2/purple_smart_dense_cable.png deleted file mode 100644 index 6f4f8265..00000000 Binary files a/public/textures/ae2/purple_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/quantum_entangled_singularity.png b/public/textures/ae2/quantum_entangled_singularity.png deleted file mode 100644 index e3b3ab0c..00000000 Binary files a/public/textures/ae2/quantum_entangled_singularity.png and /dev/null differ diff --git a/public/textures/ae2/quantum_link.png b/public/textures/ae2/quantum_link.png deleted file mode 100644 index 921a283e..00000000 Binary files a/public/textures/ae2/quantum_link.png and /dev/null differ diff --git a/public/textures/ae2/quantum_ring.png b/public/textures/ae2/quantum_ring.png deleted file mode 100644 index bbda6fe5..00000000 Binary files a/public/textures/ae2/quantum_ring.png and /dev/null differ diff --git a/public/textures/ae2/quartz_block.png b/public/textures/ae2/quartz_block.png deleted file mode 100644 index 1cb40077..00000000 Binary files a/public/textures/ae2/quartz_block.png and /dev/null differ diff --git a/public/textures/ae2/quartz_brick_slab.png b/public/textures/ae2/quartz_brick_slab.png deleted file mode 100644 index b117a648..00000000 Binary files a/public/textures/ae2/quartz_brick_slab.png and /dev/null differ diff --git a/public/textures/ae2/quartz_brick_stairs.png b/public/textures/ae2/quartz_brick_stairs.png deleted file mode 100644 index 32e1bec2..00000000 Binary files a/public/textures/ae2/quartz_brick_stairs.png and /dev/null differ diff --git a/public/textures/ae2/quartz_brick_wall.png b/public/textures/ae2/quartz_brick_wall.png deleted file mode 100644 index db20683b..00000000 Binary files a/public/textures/ae2/quartz_brick_wall.png and /dev/null differ diff --git a/public/textures/ae2/quartz_bricks.png b/public/textures/ae2/quartz_bricks.png deleted file mode 100644 index dc696ef9..00000000 Binary files a/public/textures/ae2/quartz_bricks.png and /dev/null differ diff --git a/public/textures/ae2/quartz_cluster.png b/public/textures/ae2/quartz_cluster.png deleted file mode 100644 index 225916ee..00000000 Binary files a/public/textures/ae2/quartz_cluster.png and /dev/null differ diff --git a/public/textures/ae2/quartz_fiber.png b/public/textures/ae2/quartz_fiber.png deleted file mode 100644 index 228d09e6..00000000 Binary files a/public/textures/ae2/quartz_fiber.png and /dev/null differ diff --git a/public/textures/ae2/quartz_fixture.png b/public/textures/ae2/quartz_fixture.png deleted file mode 100644 index ab40d4a3..00000000 Binary files a/public/textures/ae2/quartz_fixture.png and /dev/null differ diff --git a/public/textures/ae2/quartz_glass.png b/public/textures/ae2/quartz_glass.png deleted file mode 100644 index e863c03c..00000000 Binary files a/public/textures/ae2/quartz_glass.png and /dev/null differ diff --git a/public/textures/ae2/quartz_pillar.png b/public/textures/ae2/quartz_pillar.png deleted file mode 100644 index 66a50110..00000000 Binary files a/public/textures/ae2/quartz_pillar.png and /dev/null differ diff --git a/public/textures/ae2/quartz_pillar_slab.png b/public/textures/ae2/quartz_pillar_slab.png deleted file mode 100644 index 233b626f..00000000 Binary files a/public/textures/ae2/quartz_pillar_slab.png and /dev/null differ diff --git a/public/textures/ae2/quartz_pillar_stairs.png b/public/textures/ae2/quartz_pillar_stairs.png deleted file mode 100644 index 4347a0a6..00000000 Binary files a/public/textures/ae2/quartz_pillar_stairs.png and /dev/null differ diff --git a/public/textures/ae2/quartz_pillar_wall.png b/public/textures/ae2/quartz_pillar_wall.png deleted file mode 100644 index f1388030..00000000 Binary files a/public/textures/ae2/quartz_pillar_wall.png and /dev/null differ diff --git a/public/textures/ae2/quartz_slab.png b/public/textures/ae2/quartz_slab.png deleted file mode 100644 index 3cd12049..00000000 Binary files a/public/textures/ae2/quartz_slab.png and /dev/null differ diff --git a/public/textures/ae2/quartz_stairs.png b/public/textures/ae2/quartz_stairs.png deleted file mode 100644 index 6fa1a006..00000000 Binary files a/public/textures/ae2/quartz_stairs.png and /dev/null differ diff --git a/public/textures/ae2/quartz_vibrant_glass.png b/public/textures/ae2/quartz_vibrant_glass.png deleted file mode 100644 index e863c03c..00000000 Binary files a/public/textures/ae2/quartz_vibrant_glass.png and /dev/null differ diff --git a/public/textures/ae2/quartz_wall.png b/public/textures/ae2/quartz_wall.png deleted file mode 100644 index abcb528a..00000000 Binary files a/public/textures/ae2/quartz_wall.png and /dev/null differ diff --git a/public/textures/ae2/red_covered_cable.png b/public/textures/ae2/red_covered_cable.png deleted file mode 100644 index 9fec305e..00000000 Binary files a/public/textures/ae2/red_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/red_covered_dense_cable.png b/public/textures/ae2/red_covered_dense_cable.png deleted file mode 100644 index ee61e872..00000000 Binary files a/public/textures/ae2/red_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/red_glass_cable.png b/public/textures/ae2/red_glass_cable.png deleted file mode 100644 index a98c5c54..00000000 Binary files a/public/textures/ae2/red_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/red_lumen_paint_ball.png b/public/textures/ae2/red_lumen_paint_ball.png deleted file mode 100644 index cb3a3786..00000000 Binary files a/public/textures/ae2/red_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/red_paint_ball.png b/public/textures/ae2/red_paint_ball.png deleted file mode 100644 index 90f4e4ab..00000000 Binary files a/public/textures/ae2/red_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/red_smart_cable.png b/public/textures/ae2/red_smart_cable.png deleted file mode 100644 index bb25d5c1..00000000 Binary files a/public/textures/ae2/red_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/red_smart_dense_cable.png b/public/textures/ae2/red_smart_dense_cable.png deleted file mode 100644 index 0552a52f..00000000 Binary files a/public/textures/ae2/red_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/redstone_card.png b/public/textures/ae2/redstone_card.png deleted file mode 100644 index 7a4a0430..00000000 Binary files a/public/textures/ae2/redstone_card.png and /dev/null differ diff --git a/public/textures/ae2/redstone_p2p_tunnel.png b/public/textures/ae2/redstone_p2p_tunnel.png deleted file mode 100644 index afd9e4cc..00000000 Binary files a/public/textures/ae2/redstone_p2p_tunnel.png and /dev/null differ diff --git a/public/textures/ae2/semi_dark_monitor.png b/public/textures/ae2/semi_dark_monitor.png deleted file mode 100644 index b2a155a1..00000000 Binary files a/public/textures/ae2/semi_dark_monitor.png and /dev/null differ diff --git a/public/textures/ae2/silicon.png b/public/textures/ae2/silicon.png deleted file mode 100644 index f4df7d40..00000000 Binary files a/public/textures/ae2/silicon.png and /dev/null differ diff --git a/public/textures/ae2/silicon_press.png b/public/textures/ae2/silicon_press.png deleted file mode 100644 index 0970f6c8..00000000 Binary files a/public/textures/ae2/silicon_press.png and /dev/null differ diff --git a/public/textures/ae2/singularity.png b/public/textures/ae2/singularity.png deleted file mode 100644 index 90b8521d..00000000 Binary files a/public/textures/ae2/singularity.png and /dev/null differ diff --git a/public/textures/ae2/sky_dust.png b/public/textures/ae2/sky_dust.png deleted file mode 100644 index 85600acb..00000000 Binary files a/public/textures/ae2/sky_dust.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_block.png b/public/textures/ae2/sky_stone_block.png deleted file mode 100644 index 09c4bf73..00000000 Binary files a/public/textures/ae2/sky_stone_block.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_brick.png b/public/textures/ae2/sky_stone_brick.png deleted file mode 100644 index 0e337540..00000000 Binary files a/public/textures/ae2/sky_stone_brick.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_brick_slab.png b/public/textures/ae2/sky_stone_brick_slab.png deleted file mode 100644 index 11b65efa..00000000 Binary files a/public/textures/ae2/sky_stone_brick_slab.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_brick_stairs.png b/public/textures/ae2/sky_stone_brick_stairs.png deleted file mode 100644 index 6b1727ba..00000000 Binary files a/public/textures/ae2/sky_stone_brick_stairs.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_brick_wall.png b/public/textures/ae2/sky_stone_brick_wall.png deleted file mode 100644 index 9ae89d96..00000000 Binary files a/public/textures/ae2/sky_stone_brick_wall.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_chest.png b/public/textures/ae2/sky_stone_chest.png deleted file mode 100644 index 3325bf9f..00000000 Binary files a/public/textures/ae2/sky_stone_chest.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_slab.png b/public/textures/ae2/sky_stone_slab.png deleted file mode 100644 index eb3e11f5..00000000 Binary files a/public/textures/ae2/sky_stone_slab.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_small_brick.png b/public/textures/ae2/sky_stone_small_brick.png deleted file mode 100644 index 78b397aa..00000000 Binary files a/public/textures/ae2/sky_stone_small_brick.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_small_brick_slab.png b/public/textures/ae2/sky_stone_small_brick_slab.png deleted file mode 100644 index dd8c8e57..00000000 Binary files a/public/textures/ae2/sky_stone_small_brick_slab.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_small_brick_stairs.png b/public/textures/ae2/sky_stone_small_brick_stairs.png deleted file mode 100644 index 278bcc9d..00000000 Binary files a/public/textures/ae2/sky_stone_small_brick_stairs.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_small_brick_wall.png b/public/textures/ae2/sky_stone_small_brick_wall.png deleted file mode 100644 index 05dcb502..00000000 Binary files a/public/textures/ae2/sky_stone_small_brick_wall.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_stairs.png b/public/textures/ae2/sky_stone_stairs.png deleted file mode 100644 index 084a35cc..00000000 Binary files a/public/textures/ae2/sky_stone_stairs.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_tank.png b/public/textures/ae2/sky_stone_tank.png deleted file mode 100644 index 40ef4590..00000000 Binary files a/public/textures/ae2/sky_stone_tank.png and /dev/null differ diff --git a/public/textures/ae2/sky_stone_wall.png b/public/textures/ae2/sky_stone_wall.png deleted file mode 100644 index fcb7ed2d..00000000 Binary files a/public/textures/ae2/sky_stone_wall.png and /dev/null differ diff --git a/public/textures/ae2/small_quartz_bud.png b/public/textures/ae2/small_quartz_bud.png deleted file mode 100644 index 0d457d98..00000000 Binary files a/public/textures/ae2/small_quartz_bud.png and /dev/null differ diff --git a/public/textures/ae2/smooth_quartz_block.png b/public/textures/ae2/smooth_quartz_block.png deleted file mode 100644 index eb15dc9a..00000000 Binary files a/public/textures/ae2/smooth_quartz_block.png and /dev/null differ diff --git a/public/textures/ae2/smooth_quartz_slab.png b/public/textures/ae2/smooth_quartz_slab.png deleted file mode 100644 index 56ab8d5c..00000000 Binary files a/public/textures/ae2/smooth_quartz_slab.png and /dev/null differ diff --git a/public/textures/ae2/smooth_quartz_stairs.png b/public/textures/ae2/smooth_quartz_stairs.png deleted file mode 100644 index 14b612e9..00000000 Binary files a/public/textures/ae2/smooth_quartz_stairs.png and /dev/null differ diff --git a/public/textures/ae2/smooth_quartz_wall.png b/public/textures/ae2/smooth_quartz_wall.png deleted file mode 100644 index 7f0c8de6..00000000 Binary files a/public/textures/ae2/smooth_quartz_wall.png and /dev/null differ diff --git a/public/textures/ae2/smooth_sky_stone_block.png b/public/textures/ae2/smooth_sky_stone_block.png deleted file mode 100644 index c3afe12d..00000000 Binary files a/public/textures/ae2/smooth_sky_stone_block.png and /dev/null differ diff --git a/public/textures/ae2/smooth_sky_stone_chest.png b/public/textures/ae2/smooth_sky_stone_chest.png deleted file mode 100644 index f022440e..00000000 Binary files a/public/textures/ae2/smooth_sky_stone_chest.png and /dev/null differ diff --git a/public/textures/ae2/smooth_sky_stone_slab.png b/public/textures/ae2/smooth_sky_stone_slab.png deleted file mode 100644 index ec129f73..00000000 Binary files a/public/textures/ae2/smooth_sky_stone_slab.png and /dev/null differ diff --git a/public/textures/ae2/smooth_sky_stone_stairs.png b/public/textures/ae2/smooth_sky_stone_stairs.png deleted file mode 100644 index 0cd9ab61..00000000 Binary files a/public/textures/ae2/smooth_sky_stone_stairs.png and /dev/null differ diff --git a/public/textures/ae2/smooth_sky_stone_wall.png b/public/textures/ae2/smooth_sky_stone_wall.png deleted file mode 100644 index cafea354..00000000 Binary files a/public/textures/ae2/smooth_sky_stone_wall.png and /dev/null differ diff --git a/public/textures/ae2/spatial_anchor.png b/public/textures/ae2/spatial_anchor.png deleted file mode 100644 index 3a3ba175..00000000 Binary files a/public/textures/ae2/spatial_anchor.png and /dev/null differ diff --git a/public/textures/ae2/spatial_cell_component_128.png b/public/textures/ae2/spatial_cell_component_128.png deleted file mode 100644 index f492f624..00000000 Binary files a/public/textures/ae2/spatial_cell_component_128.png and /dev/null differ diff --git a/public/textures/ae2/spatial_cell_component_16.png b/public/textures/ae2/spatial_cell_component_16.png deleted file mode 100644 index c5d013d4..00000000 Binary files a/public/textures/ae2/spatial_cell_component_16.png and /dev/null differ diff --git a/public/textures/ae2/spatial_cell_component_2.png b/public/textures/ae2/spatial_cell_component_2.png deleted file mode 100644 index e25b4c37..00000000 Binary files a/public/textures/ae2/spatial_cell_component_2.png and /dev/null differ diff --git a/public/textures/ae2/spatial_io_port.png b/public/textures/ae2/spatial_io_port.png deleted file mode 100644 index 45d7d539..00000000 Binary files a/public/textures/ae2/spatial_io_port.png and /dev/null differ diff --git a/public/textures/ae2/spatial_pylon.png b/public/textures/ae2/spatial_pylon.png deleted file mode 100644 index 72aaa822..00000000 Binary files a/public/textures/ae2/spatial_pylon.png and /dev/null differ diff --git a/public/textures/ae2/spatial_storage_cell_128.png b/public/textures/ae2/spatial_storage_cell_128.png deleted file mode 100644 index 7d80694e..00000000 Binary files a/public/textures/ae2/spatial_storage_cell_128.png and /dev/null differ diff --git a/public/textures/ae2/spatial_storage_cell_16.png b/public/textures/ae2/spatial_storage_cell_16.png deleted file mode 100644 index f665021f..00000000 Binary files a/public/textures/ae2/spatial_storage_cell_16.png and /dev/null differ diff --git a/public/textures/ae2/spatial_storage_cell_2.png b/public/textures/ae2/spatial_storage_cell_2.png deleted file mode 100644 index f4b658fc..00000000 Binary files a/public/textures/ae2/spatial_storage_cell_2.png and /dev/null differ diff --git a/public/textures/ae2/speed_card.png b/public/textures/ae2/speed_card.png deleted file mode 100644 index f6c683f2..00000000 Binary files a/public/textures/ae2/speed_card.png and /dev/null differ diff --git a/public/textures/ae2/storage_bus.png b/public/textures/ae2/storage_bus.png deleted file mode 100644 index 8ce0e09e..00000000 Binary files a/public/textures/ae2/storage_bus.png and /dev/null differ diff --git a/public/textures/ae2/storage_monitor.png b/public/textures/ae2/storage_monitor.png deleted file mode 100644 index c6e830ad..00000000 Binary files a/public/textures/ae2/storage_monitor.png and /dev/null differ diff --git a/public/textures/ae2/terminal.png b/public/textures/ae2/terminal.png deleted file mode 100644 index fd7e5da6..00000000 Binary files a/public/textures/ae2/terminal.png and /dev/null differ diff --git a/public/textures/ae2/tiny_tnt.png b/public/textures/ae2/tiny_tnt.png deleted file mode 100644 index 373d7258..00000000 Binary files a/public/textures/ae2/tiny_tnt.png and /dev/null differ diff --git a/public/textures/ae2/toggle_bus.png b/public/textures/ae2/toggle_bus.png deleted file mode 100644 index 6997f913..00000000 Binary files a/public/textures/ae2/toggle_bus.png and /dev/null differ diff --git a/public/textures/ae2/vibration_chamber.png b/public/textures/ae2/vibration_chamber.png deleted file mode 100644 index 44365627..00000000 Binary files a/public/textures/ae2/vibration_chamber.png and /dev/null differ diff --git a/public/textures/ae2/view_cell.png b/public/textures/ae2/view_cell.png deleted file mode 100644 index 7816e983..00000000 Binary files a/public/textures/ae2/view_cell.png and /dev/null differ diff --git a/public/textures/ae2/void_card.png b/public/textures/ae2/void_card.png deleted file mode 100644 index 205a4b46..00000000 Binary files a/public/textures/ae2/void_card.png and /dev/null differ diff --git a/public/textures/ae2/white_covered_cable.png b/public/textures/ae2/white_covered_cable.png deleted file mode 100644 index 24ec8845..00000000 Binary files a/public/textures/ae2/white_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/white_covered_dense_cable.png b/public/textures/ae2/white_covered_dense_cable.png deleted file mode 100644 index d12cbaea..00000000 Binary files a/public/textures/ae2/white_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/white_glass_cable.png b/public/textures/ae2/white_glass_cable.png deleted file mode 100644 index 9ab45f25..00000000 Binary files a/public/textures/ae2/white_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/white_lumen_paint_ball.png b/public/textures/ae2/white_lumen_paint_ball.png deleted file mode 100644 index c95db65f..00000000 Binary files a/public/textures/ae2/white_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/white_paint_ball.png b/public/textures/ae2/white_paint_ball.png deleted file mode 100644 index 45c7d7f5..00000000 Binary files a/public/textures/ae2/white_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/white_smart_cable.png b/public/textures/ae2/white_smart_cable.png deleted file mode 100644 index 542a90fe..00000000 Binary files a/public/textures/ae2/white_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/white_smart_dense_cable.png b/public/textures/ae2/white_smart_dense_cable.png deleted file mode 100644 index ab1ef67d..00000000 Binary files a/public/textures/ae2/white_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/wireless_access_point.png b/public/textures/ae2/wireless_access_point.png deleted file mode 100644 index b9427cd8..00000000 Binary files a/public/textures/ae2/wireless_access_point.png and /dev/null differ diff --git a/public/textures/ae2/wireless_booster.png b/public/textures/ae2/wireless_booster.png deleted file mode 100644 index cd3aa6dd..00000000 Binary files a/public/textures/ae2/wireless_booster.png and /dev/null differ diff --git a/public/textures/ae2/wireless_crafting_terminal.png b/public/textures/ae2/wireless_crafting_terminal.png deleted file mode 100644 index ca8f1fcc..00000000 Binary files a/public/textures/ae2/wireless_crafting_terminal.png and /dev/null differ diff --git a/public/textures/ae2/wireless_crafting_terminal__{'ae2__stored_energy'__1600000.0d}.png b/public/textures/ae2/wireless_crafting_terminal__{'ae2__stored_energy'__1600000.0d}.png deleted file mode 100644 index ca8f1fcc..00000000 Binary files a/public/textures/ae2/wireless_crafting_terminal__{'ae2__stored_energy'__1600000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/wireless_receiver.png b/public/textures/ae2/wireless_receiver.png deleted file mode 100644 index 9ab55ade..00000000 Binary files a/public/textures/ae2/wireless_receiver.png and /dev/null differ diff --git a/public/textures/ae2/wireless_terminal.png b/public/textures/ae2/wireless_terminal.png deleted file mode 100644 index 96268300..00000000 Binary files a/public/textures/ae2/wireless_terminal.png and /dev/null differ diff --git a/public/textures/ae2/wireless_terminal__{'ae2__stored_energy'__1600000.0d}.png b/public/textures/ae2/wireless_terminal__{'ae2__stored_energy'__1600000.0d}.png deleted file mode 100644 index 96268300..00000000 Binary files a/public/textures/ae2/wireless_terminal__{'ae2__stored_energy'__1600000.0d}.png and /dev/null differ diff --git a/public/textures/ae2/yellow_covered_cable.png b/public/textures/ae2/yellow_covered_cable.png deleted file mode 100644 index d2faaa7b..00000000 Binary files a/public/textures/ae2/yellow_covered_cable.png and /dev/null differ diff --git a/public/textures/ae2/yellow_covered_dense_cable.png b/public/textures/ae2/yellow_covered_dense_cable.png deleted file mode 100644 index 2ab1426f..00000000 Binary files a/public/textures/ae2/yellow_covered_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2/yellow_glass_cable.png b/public/textures/ae2/yellow_glass_cable.png deleted file mode 100644 index d0ad876f..00000000 Binary files a/public/textures/ae2/yellow_glass_cable.png and /dev/null differ diff --git a/public/textures/ae2/yellow_lumen_paint_ball.png b/public/textures/ae2/yellow_lumen_paint_ball.png deleted file mode 100644 index dc2f80f1..00000000 Binary files a/public/textures/ae2/yellow_lumen_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/yellow_paint_ball.png b/public/textures/ae2/yellow_paint_ball.png deleted file mode 100644 index 6b607930..00000000 Binary files a/public/textures/ae2/yellow_paint_ball.png and /dev/null differ diff --git a/public/textures/ae2/yellow_smart_cable.png b/public/textures/ae2/yellow_smart_cable.png deleted file mode 100644 index 4ddc2903..00000000 Binary files a/public/textures/ae2/yellow_smart_cable.png and /dev/null differ diff --git a/public/textures/ae2/yellow_smart_dense_cable.png b/public/textures/ae2/yellow_smart_dense_cable.png deleted file mode 100644 index efd626ec..00000000 Binary files a/public/textures/ae2/yellow_smart_dense_cable.png and /dev/null differ diff --git a/public/textures/ae2wtlib/magnet_card.png b/public/textures/ae2wtlib/magnet_card.png deleted file mode 100644 index c50a753d..00000000 Binary files a/public/textures/ae2wtlib/magnet_card.png and /dev/null differ diff --git a/public/textures/ae2wtlib/quantum_bridge_card.png b/public/textures/ae2wtlib/quantum_bridge_card.png deleted file mode 100644 index 56591d38..00000000 Binary files a/public/textures/ae2wtlib/quantum_bridge_card.png and /dev/null differ diff --git a/public/textures/ae2wtlib/wireless_pattern_access_terminal.png b/public/textures/ae2wtlib/wireless_pattern_access_terminal.png deleted file mode 100644 index 7daba8a2..00000000 Binary files a/public/textures/ae2wtlib/wireless_pattern_access_terminal.png and /dev/null differ diff --git a/public/textures/ae2wtlib/wireless_pattern_access_terminal__{'ae2__stored_energy'__1600000.0d}.png b/public/textures/ae2wtlib/wireless_pattern_access_terminal__{'ae2__stored_energy'__1600000.0d}.png deleted file mode 100644 index 7daba8a2..00000000 Binary files a/public/textures/ae2wtlib/wireless_pattern_access_terminal__{'ae2__stored_energy'__1600000.0d}.png and /dev/null differ diff --git a/public/textures/ae2wtlib/wireless_pattern_encoding_terminal.png b/public/textures/ae2wtlib/wireless_pattern_encoding_terminal.png deleted file mode 100644 index f2fba824..00000000 Binary files a/public/textures/ae2wtlib/wireless_pattern_encoding_terminal.png and /dev/null differ diff --git a/public/textures/ae2wtlib/wireless_pattern_encoding_terminal__{'ae2__stored_energy'__1600000.0d}.png b/public/textures/ae2wtlib/wireless_pattern_encoding_terminal__{'ae2__stored_energy'__1600000.0d}.png deleted file mode 100644 index f2fba824..00000000 Binary files a/public/textures/ae2wtlib/wireless_pattern_encoding_terminal__{'ae2__stored_energy'__1600000.0d}.png and /dev/null differ diff --git a/public/textures/ae2wtlib/wireless_universal_terminal.png b/public/textures/ae2wtlib/wireless_universal_terminal.png deleted file mode 100644 index bb4184a3..00000000 Binary files a/public/textures/ae2wtlib/wireless_universal_terminal.png and /dev/null differ diff --git a/public/textures/ae2wtlib/wireless_universal_terminal__{'ae2__energy_capacity'__4800000.0d,'ae2__stored_energy'__4800000.0d,'ae2wtlib__has_crafting_terminal'__{},'ae2wtlib__has_pattern_access_terminal'__{},'ae2wtlib__has_pattern_encoding_terminal'__{}}.png b/public/textures/ae2wtlib/wireless_universal_terminal__{'ae2__energy_capacity'__4800000.0d,'ae2__stored_energy'__4800000.0d,'ae2wtlib__has_crafting_terminal'__{},'ae2wtlib__has_pattern_access_terminal'__{},'ae2wtlib__has_pattern_encoding_terminal'__{}}.png deleted file mode 100644 index bb4184a3..00000000 Binary files a/public/textures/ae2wtlib/wireless_universal_terminal__{'ae2__energy_capacity'__4800000.0d,'ae2__stored_energy'__4800000.0d,'ae2wtlib__has_crafting_terminal'__{},'ae2wtlib__has_pattern_access_terminal'__{},'ae2wtlib__has_pattern_encoding_terminal'__{}}.png and /dev/null differ diff --git a/public/textures/appmek/chemical_cell_housing.png b/public/textures/appmek/chemical_cell_housing.png deleted file mode 100644 index 336c7249..00000000 Binary files a/public/textures/appmek/chemical_cell_housing.png and /dev/null differ diff --git a/public/textures/appmek/chemical_p2p_tunnel.png b/public/textures/appmek/chemical_p2p_tunnel.png deleted file mode 100644 index 35f3248e..00000000 Binary files a/public/textures/appmek/chemical_p2p_tunnel.png and /dev/null differ diff --git a/public/textures/appmek/chemical_storage_cell_16k.png b/public/textures/appmek/chemical_storage_cell_16k.png deleted file mode 100644 index ee6eedc1..00000000 Binary files a/public/textures/appmek/chemical_storage_cell_16k.png and /dev/null differ diff --git a/public/textures/appmek/chemical_storage_cell_1k.png b/public/textures/appmek/chemical_storage_cell_1k.png deleted file mode 100644 index e4e187f1..00000000 Binary files a/public/textures/appmek/chemical_storage_cell_1k.png and /dev/null differ diff --git a/public/textures/appmek/chemical_storage_cell_256k.png b/public/textures/appmek/chemical_storage_cell_256k.png deleted file mode 100644 index fc0948b4..00000000 Binary files a/public/textures/appmek/chemical_storage_cell_256k.png and /dev/null differ diff --git a/public/textures/appmek/chemical_storage_cell_4k.png b/public/textures/appmek/chemical_storage_cell_4k.png deleted file mode 100644 index 00e2b846..00000000 Binary files a/public/textures/appmek/chemical_storage_cell_4k.png and /dev/null differ diff --git a/public/textures/appmek/chemical_storage_cell_64k.png b/public/textures/appmek/chemical_storage_cell_64k.png deleted file mode 100644 index c65594d5..00000000 Binary files a/public/textures/appmek/chemical_storage_cell_64k.png and /dev/null differ diff --git a/public/textures/appmek/portable_chemical_cell_16k.png b/public/textures/appmek/portable_chemical_cell_16k.png deleted file mode 100644 index eb0aaaca..00000000 Binary files a/public/textures/appmek/portable_chemical_cell_16k.png and /dev/null differ diff --git a/public/textures/appmek/portable_chemical_cell_16k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/appmek/portable_chemical_cell_16k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index a99965fc..00000000 Binary files a/public/textures/appmek/portable_chemical_cell_16k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/appmek/portable_chemical_cell_1k.png b/public/textures/appmek/portable_chemical_cell_1k.png deleted file mode 100644 index 9484e529..00000000 Binary files a/public/textures/appmek/portable_chemical_cell_1k.png and /dev/null differ diff --git a/public/textures/appmek/portable_chemical_cell_1k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/appmek/portable_chemical_cell_1k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index 5103382d..00000000 Binary files a/public/textures/appmek/portable_chemical_cell_1k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/appmek/portable_chemical_cell_256k.png b/public/textures/appmek/portable_chemical_cell_256k.png deleted file mode 100644 index 3267b68c..00000000 Binary files a/public/textures/appmek/portable_chemical_cell_256k.png and /dev/null differ diff --git a/public/textures/appmek/portable_chemical_cell_256k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/appmek/portable_chemical_cell_256k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index ece0da85..00000000 Binary files a/public/textures/appmek/portable_chemical_cell_256k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/appmek/portable_chemical_cell_4k.png b/public/textures/appmek/portable_chemical_cell_4k.png deleted file mode 100644 index 15b203ed..00000000 Binary files a/public/textures/appmek/portable_chemical_cell_4k.png and /dev/null differ diff --git a/public/textures/appmek/portable_chemical_cell_4k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/appmek/portable_chemical_cell_4k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index 62d5ee51..00000000 Binary files a/public/textures/appmek/portable_chemical_cell_4k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/appmek/portable_chemical_cell_64k.png b/public/textures/appmek/portable_chemical_cell_64k.png deleted file mode 100644 index 79790c7e..00000000 Binary files a/public/textures/appmek/portable_chemical_cell_64k.png and /dev/null differ diff --git a/public/textures/appmek/portable_chemical_cell_64k__{'ae2__stored_energy'__20000.0d}.png b/public/textures/appmek/portable_chemical_cell_64k__{'ae2__stored_energy'__20000.0d}.png deleted file mode 100644 index 8f00343e..00000000 Binary files a/public/textures/appmek/portable_chemical_cell_64k__{'ae2__stored_energy'__20000.0d}.png and /dev/null differ diff --git a/public/textures/biomeswevegone/allium_flower_bush.png b/public/textures/biomeswevegone/allium_flower_bush.png deleted file mode 100644 index 5db8f79a..00000000 Binary files a/public/textures/biomeswevegone/allium_flower_bush.png and /dev/null differ diff --git a/public/textures/biomeswevegone/allium_oddion_soup.png b/public/textures/biomeswevegone/allium_oddion_soup.png deleted file mode 100644 index 61715f16..00000000 Binary files a/public/textures/biomeswevegone/allium_oddion_soup.png and /dev/null differ diff --git a/public/textures/biomeswevegone/allium_petal_block.png b/public/textures/biomeswevegone/allium_petal_block.png deleted file mode 100644 index 9480824d..00000000 Binary files a/public/textures/biomeswevegone/allium_petal_block.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aloe_vera.png b/public/textures/biomeswevegone/aloe_vera.png deleted file mode 100644 index 60c3370f..00000000 Binary files a/public/textures/biomeswevegone/aloe_vera.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aloe_vera_juice.png b/public/textures/biomeswevegone/aloe_vera_juice.png deleted file mode 100644 index 672184bb..00000000 Binary files a/public/textures/biomeswevegone/aloe_vera_juice.png and /dev/null differ diff --git a/public/textures/biomeswevegone/alpine_bellflower.png b/public/textures/biomeswevegone/alpine_bellflower.png deleted file mode 100644 index 179acc05..00000000 Binary files a/public/textures/biomeswevegone/alpine_bellflower.png and /dev/null differ diff --git a/public/textures/biomeswevegone/amaranth.png b/public/textures/biomeswevegone/amaranth.png deleted file mode 100644 index 01571c4d..00000000 Binary files a/public/textures/biomeswevegone/amaranth.png and /dev/null differ diff --git a/public/textures/biomeswevegone/angelica.png b/public/textures/biomeswevegone/angelica.png deleted file mode 100644 index e0c1770a..00000000 Binary files a/public/textures/biomeswevegone/angelica.png and /dev/null differ diff --git a/public/textures/biomeswevegone/araucaria_leaves.png b/public/textures/biomeswevegone/araucaria_leaves.png deleted file mode 100644 index 9d385314..00000000 Binary files a/public/textures/biomeswevegone/araucaria_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/araucaria_sapling.png b/public/textures/biomeswevegone/araucaria_sapling.png deleted file mode 100644 index ff7263fb..00000000 Binary files a/public/textures/biomeswevegone/araucaria_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_boat.png b/public/textures/biomeswevegone/aspen_boat.png deleted file mode 100644 index 9492387c..00000000 Binary files a/public/textures/biomeswevegone/aspen_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_bookshelf.png b/public/textures/biomeswevegone/aspen_bookshelf.png deleted file mode 100644 index 584a765b..00000000 Binary files a/public/textures/biomeswevegone/aspen_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_button.png b/public/textures/biomeswevegone/aspen_button.png deleted file mode 100644 index 18ab6d09..00000000 Binary files a/public/textures/biomeswevegone/aspen_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_chest_boat.png b/public/textures/biomeswevegone/aspen_chest_boat.png deleted file mode 100644 index b54c4bc9..00000000 Binary files a/public/textures/biomeswevegone/aspen_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_crafting_table.png b/public/textures/biomeswevegone/aspen_crafting_table.png deleted file mode 100644 index 5ccb7e24..00000000 Binary files a/public/textures/biomeswevegone/aspen_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_door.png b/public/textures/biomeswevegone/aspen_door.png deleted file mode 100644 index 5e89d5fa..00000000 Binary files a/public/textures/biomeswevegone/aspen_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_fence.png b/public/textures/biomeswevegone/aspen_fence.png deleted file mode 100644 index 669e6d04..00000000 Binary files a/public/textures/biomeswevegone/aspen_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_fence_gate.png b/public/textures/biomeswevegone/aspen_fence_gate.png deleted file mode 100644 index dee70fc2..00000000 Binary files a/public/textures/biomeswevegone/aspen_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_hanging_sign.png b/public/textures/biomeswevegone/aspen_hanging_sign.png deleted file mode 100644 index 3251f99c..00000000 Binary files a/public/textures/biomeswevegone/aspen_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_leaves.png b/public/textures/biomeswevegone/aspen_leaves.png deleted file mode 100644 index 7b362fa0..00000000 Binary files a/public/textures/biomeswevegone/aspen_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_log.png b/public/textures/biomeswevegone/aspen_log.png deleted file mode 100644 index 464a2205..00000000 Binary files a/public/textures/biomeswevegone/aspen_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_planks.png b/public/textures/biomeswevegone/aspen_planks.png deleted file mode 100644 index 43b63244..00000000 Binary files a/public/textures/biomeswevegone/aspen_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_pressure_plate.png b/public/textures/biomeswevegone/aspen_pressure_plate.png deleted file mode 100644 index fc981af8..00000000 Binary files a/public/textures/biomeswevegone/aspen_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_sapling.png b/public/textures/biomeswevegone/aspen_sapling.png deleted file mode 100644 index 192c8847..00000000 Binary files a/public/textures/biomeswevegone/aspen_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_sign.png b/public/textures/biomeswevegone/aspen_sign.png deleted file mode 100644 index 7f351dda..00000000 Binary files a/public/textures/biomeswevegone/aspen_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_slab.png b/public/textures/biomeswevegone/aspen_slab.png deleted file mode 100644 index 10dd03b6..00000000 Binary files a/public/textures/biomeswevegone/aspen_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_stairs.png b/public/textures/biomeswevegone/aspen_stairs.png deleted file mode 100644 index bcdd9a5b..00000000 Binary files a/public/textures/biomeswevegone/aspen_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_trapdoor.png b/public/textures/biomeswevegone/aspen_trapdoor.png deleted file mode 100644 index 79611ef0..00000000 Binary files a/public/textures/biomeswevegone/aspen_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/aspen_wood.png b/public/textures/biomeswevegone/aspen_wood.png deleted file mode 100644 index 339f94b5..00000000 Binary files a/public/textures/biomeswevegone/aspen_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_boat.png b/public/textures/biomeswevegone/baobab_boat.png deleted file mode 100644 index f53e5859..00000000 Binary files a/public/textures/biomeswevegone/baobab_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_bookshelf.png b/public/textures/biomeswevegone/baobab_bookshelf.png deleted file mode 100644 index 8f20586f..00000000 Binary files a/public/textures/biomeswevegone/baobab_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_button.png b/public/textures/biomeswevegone/baobab_button.png deleted file mode 100644 index 110f5a14..00000000 Binary files a/public/textures/biomeswevegone/baobab_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_chest_boat.png b/public/textures/biomeswevegone/baobab_chest_boat.png deleted file mode 100644 index 26329d2c..00000000 Binary files a/public/textures/biomeswevegone/baobab_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_crafting_table.png b/public/textures/biomeswevegone/baobab_crafting_table.png deleted file mode 100644 index 3b295ad0..00000000 Binary files a/public/textures/biomeswevegone/baobab_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_door.png b/public/textures/biomeswevegone/baobab_door.png deleted file mode 100644 index 0e77ade4..00000000 Binary files a/public/textures/biomeswevegone/baobab_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_fence.png b/public/textures/biomeswevegone/baobab_fence.png deleted file mode 100644 index ee738322..00000000 Binary files a/public/textures/biomeswevegone/baobab_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_fence_gate.png b/public/textures/biomeswevegone/baobab_fence_gate.png deleted file mode 100644 index 6e6295ff..00000000 Binary files a/public/textures/biomeswevegone/baobab_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_fruit.png b/public/textures/biomeswevegone/baobab_fruit.png deleted file mode 100644 index 79782173..00000000 Binary files a/public/textures/biomeswevegone/baobab_fruit.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_hanging_sign.png b/public/textures/biomeswevegone/baobab_hanging_sign.png deleted file mode 100644 index 8a11c728..00000000 Binary files a/public/textures/biomeswevegone/baobab_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_leaves.png b/public/textures/biomeswevegone/baobab_leaves.png deleted file mode 100644 index 8374ddfd..00000000 Binary files a/public/textures/biomeswevegone/baobab_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_log.png b/public/textures/biomeswevegone/baobab_log.png deleted file mode 100644 index 8e6c0389..00000000 Binary files a/public/textures/biomeswevegone/baobab_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_planks.png b/public/textures/biomeswevegone/baobab_planks.png deleted file mode 100644 index 222f8df5..00000000 Binary files a/public/textures/biomeswevegone/baobab_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_pressure_plate.png b/public/textures/biomeswevegone/baobab_pressure_plate.png deleted file mode 100644 index 5d5aa0af..00000000 Binary files a/public/textures/biomeswevegone/baobab_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_sapling.png b/public/textures/biomeswevegone/baobab_sapling.png deleted file mode 100644 index 33966ec5..00000000 Binary files a/public/textures/biomeswevegone/baobab_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_sign.png b/public/textures/biomeswevegone/baobab_sign.png deleted file mode 100644 index ba8d2860..00000000 Binary files a/public/textures/biomeswevegone/baobab_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_slab.png b/public/textures/biomeswevegone/baobab_slab.png deleted file mode 100644 index 71cbb0ef..00000000 Binary files a/public/textures/biomeswevegone/baobab_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_stairs.png b/public/textures/biomeswevegone/baobab_stairs.png deleted file mode 100644 index 1a660af4..00000000 Binary files a/public/textures/biomeswevegone/baobab_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_trapdoor.png b/public/textures/biomeswevegone/baobab_trapdoor.png deleted file mode 100644 index afeae999..00000000 Binary files a/public/textures/biomeswevegone/baobab_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/baobab_wood.png b/public/textures/biomeswevegone/baobab_wood.png deleted file mode 100644 index 943b2a5a..00000000 Binary files a/public/textures/biomeswevegone/baobab_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/barrel_cactus.png b/public/textures/biomeswevegone/barrel_cactus.png deleted file mode 100644 index 3aa42dca..00000000 Binary files a/public/textures/biomeswevegone/barrel_cactus.png and /dev/null differ diff --git a/public/textures/biomeswevegone/beach_grass.png b/public/textures/biomeswevegone/beach_grass.png deleted file mode 100644 index 8116e07c..00000000 Binary files a/public/textures/biomeswevegone/beach_grass.png and /dev/null differ diff --git a/public/textures/biomeswevegone/begonia.png b/public/textures/biomeswevegone/begonia.png deleted file mode 100644 index 2a59e260..00000000 Binary files a/public/textures/biomeswevegone/begonia.png and /dev/null differ diff --git a/public/textures/biomeswevegone/bistort.png b/public/textures/biomeswevegone/bistort.png deleted file mode 100644 index 6506a8fc..00000000 Binary files a/public/textures/biomeswevegone/bistort.png and /dev/null differ diff --git a/public/textures/biomeswevegone/black_ice.png b/public/textures/biomeswevegone/black_ice.png deleted file mode 100644 index 590ae246..00000000 Binary files a/public/textures/biomeswevegone/black_ice.png and /dev/null differ diff --git a/public/textures/biomeswevegone/black_rose.png b/public/textures/biomeswevegone/black_rose.png deleted file mode 100644 index 183e3521..00000000 Binary files a/public/textures/biomeswevegone/black_rose.png and /dev/null differ diff --git a/public/textures/biomeswevegone/black_sand.png b/public/textures/biomeswevegone/black_sand.png deleted file mode 100644 index 9e8627d0..00000000 Binary files a/public/textures/biomeswevegone/black_sand.png and /dev/null differ diff --git a/public/textures/biomeswevegone/black_sandstone.png b/public/textures/biomeswevegone/black_sandstone.png deleted file mode 100644 index e069d3cb..00000000 Binary files a/public/textures/biomeswevegone/black_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/black_sandstone_slab.png b/public/textures/biomeswevegone/black_sandstone_slab.png deleted file mode 100644 index 7bf0e67f..00000000 Binary files a/public/textures/biomeswevegone/black_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/black_sandstone_stairs.png b/public/textures/biomeswevegone/black_sandstone_stairs.png deleted file mode 100644 index c9392b03..00000000 Binary files a/public/textures/biomeswevegone/black_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/black_sandstone_wall.png b/public/textures/biomeswevegone/black_sandstone_wall.png deleted file mode 100644 index a3b47b51..00000000 Binary files a/public/textures/biomeswevegone/black_sandstone_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blooming_oddion.png b/public/textures/biomeswevegone/blooming_oddion.png deleted file mode 100644 index ed17245f..00000000 Binary files a/public/textures/biomeswevegone/blooming_oddion.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blooming_witch_hazel_leaves.png b/public/textures/biomeswevegone/blooming_witch_hazel_leaves.png deleted file mode 100644 index e3c3d1c3..00000000 Binary files a/public/textures/biomeswevegone/blooming_witch_hazel_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_boat.png b/public/textures/biomeswevegone/blue_enchanted_boat.png deleted file mode 100644 index 85315e7b..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_bookshelf.png b/public/textures/biomeswevegone/blue_enchanted_bookshelf.png deleted file mode 100644 index 83d5db42..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_button.png b/public/textures/biomeswevegone/blue_enchanted_button.png deleted file mode 100644 index d3f7e674..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_chest_boat.png b/public/textures/biomeswevegone/blue_enchanted_chest_boat.png deleted file mode 100644 index 68ac6eb3..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_crafting_table.png b/public/textures/biomeswevegone/blue_enchanted_crafting_table.png deleted file mode 100644 index 17c8a722..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_door.png b/public/textures/biomeswevegone/blue_enchanted_door.png deleted file mode 100644 index 829a030a..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_fence.png b/public/textures/biomeswevegone/blue_enchanted_fence.png deleted file mode 100644 index d7829454..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_fence_gate.png b/public/textures/biomeswevegone/blue_enchanted_fence_gate.png deleted file mode 100644 index 44850e0c..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_hanging_sign.png b/public/textures/biomeswevegone/blue_enchanted_hanging_sign.png deleted file mode 100644 index 4d300667..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_leaves.png b/public/textures/biomeswevegone/blue_enchanted_leaves.png deleted file mode 100644 index b150d46e..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_log.png b/public/textures/biomeswevegone/blue_enchanted_log.png deleted file mode 100644 index 86b8c33b..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_planks.png b/public/textures/biomeswevegone/blue_enchanted_planks.png deleted file mode 100644 index d9455985..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_pressure_plate.png b/public/textures/biomeswevegone/blue_enchanted_pressure_plate.png deleted file mode 100644 index 9a7b42af..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_sapling.png b/public/textures/biomeswevegone/blue_enchanted_sapling.png deleted file mode 100644 index c66a2aa0..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_sign.png b/public/textures/biomeswevegone/blue_enchanted_sign.png deleted file mode 100644 index 1c4a4b10..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_slab.png b/public/textures/biomeswevegone/blue_enchanted_slab.png deleted file mode 100644 index a0229fba..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_stairs.png b/public/textures/biomeswevegone/blue_enchanted_stairs.png deleted file mode 100644 index b79089c8..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_trapdoor.png b/public/textures/biomeswevegone/blue_enchanted_trapdoor.png deleted file mode 100644 index 9533b94a..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_enchanted_wood.png b/public/textures/biomeswevegone/blue_enchanted_wood.png deleted file mode 100644 index 14e1c23a..00000000 Binary files a/public/textures/biomeswevegone/blue_enchanted_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_glow_bottle.png b/public/textures/biomeswevegone/blue_glow_bottle.png deleted file mode 100644 index 2f325f9d..00000000 Binary files a/public/textures/biomeswevegone/blue_glow_bottle.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_glowcane_powder.png b/public/textures/biomeswevegone/blue_glowcane_powder.png deleted file mode 100644 index 35d60ea0..00000000 Binary files a/public/textures/biomeswevegone/blue_glowcane_powder.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_glowcane_shoot.png b/public/textures/biomeswevegone/blue_glowcane_shoot.png deleted file mode 100644 index f4448ea2..00000000 Binary files a/public/textures/biomeswevegone/blue_glowcane_shoot.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_rose_bush.png b/public/textures/biomeswevegone/blue_rose_bush.png deleted file mode 100644 index 69f9fe4d..00000000 Binary files a/public/textures/biomeswevegone/blue_rose_bush.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_sage.png b/public/textures/biomeswevegone/blue_sage.png deleted file mode 100644 index f42bc218..00000000 Binary files a/public/textures/biomeswevegone/blue_sage.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_sand.png b/public/textures/biomeswevegone/blue_sand.png deleted file mode 100644 index 3877ec6a..00000000 Binary files a/public/textures/biomeswevegone/blue_sand.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_sandstone.png b/public/textures/biomeswevegone/blue_sandstone.png deleted file mode 100644 index 1f42fc9f..00000000 Binary files a/public/textures/biomeswevegone/blue_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_sandstone_slab.png b/public/textures/biomeswevegone/blue_sandstone_slab.png deleted file mode 100644 index 44ff6a4c..00000000 Binary files a/public/textures/biomeswevegone/blue_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_sandstone_stairs.png b/public/textures/biomeswevegone/blue_sandstone_stairs.png deleted file mode 100644 index 63681dbd..00000000 Binary files a/public/textures/biomeswevegone/blue_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_sandstone_wall.png b/public/textures/biomeswevegone/blue_sandstone_wall.png deleted file mode 100644 index fbee199a..00000000 Binary files a/public/textures/biomeswevegone/blue_sandstone_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_spruce_leaves.png b/public/textures/biomeswevegone/blue_spruce_leaves.png deleted file mode 100644 index 956ad216..00000000 Binary files a/public/textures/biomeswevegone/blue_spruce_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blue_spruce_sapling.png b/public/textures/biomeswevegone/blue_spruce_sapling.png deleted file mode 100644 index 1c2bc79b..00000000 Binary files a/public/textures/biomeswevegone/blue_spruce_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blueberries.png b/public/textures/biomeswevegone/blueberries.png deleted file mode 100644 index 2c380f94..00000000 Binary files a/public/textures/biomeswevegone/blueberries.png and /dev/null differ diff --git a/public/textures/biomeswevegone/blueberry_pie.png b/public/textures/biomeswevegone/blueberry_pie.png deleted file mode 100644 index ba1ace4f..00000000 Binary files a/public/textures/biomeswevegone/blueberry_pie.png and /dev/null differ diff --git a/public/textures/biomeswevegone/borealis_ice.png b/public/textures/biomeswevegone/borealis_ice.png deleted file mode 100644 index fece0c8c..00000000 Binary files a/public/textures/biomeswevegone/borealis_ice.png and /dev/null differ diff --git a/public/textures/biomeswevegone/brown_birch_leaves.png b/public/textures/biomeswevegone/brown_birch_leaves.png deleted file mode 100644 index a5d340ed..00000000 Binary files a/public/textures/biomeswevegone/brown_birch_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/brown_birch_sapling.png b/public/textures/biomeswevegone/brown_birch_sapling.png deleted file mode 100644 index da0a1b89..00000000 Binary files a/public/textures/biomeswevegone/brown_birch_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/brown_mushroom_stem.png b/public/textures/biomeswevegone/brown_mushroom_stem.png deleted file mode 100644 index bf227f7c..00000000 Binary files a/public/textures/biomeswevegone/brown_mushroom_stem.png and /dev/null differ diff --git a/public/textures/biomeswevegone/brown_oak_leaves.png b/public/textures/biomeswevegone/brown_oak_leaves.png deleted file mode 100644 index 4ef17a1f..00000000 Binary files a/public/textures/biomeswevegone/brown_oak_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/brown_oak_sapling.png b/public/textures/biomeswevegone/brown_oak_sapling.png deleted file mode 100644 index 4caf4a01..00000000 Binary files a/public/textures/biomeswevegone/brown_oak_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/brown_zelkova_leaves.png b/public/textures/biomeswevegone/brown_zelkova_leaves.png deleted file mode 100644 index 14ffa7a5..00000000 Binary files a/public/textures/biomeswevegone/brown_zelkova_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/brown_zelkova_sapling.png b/public/textures/biomeswevegone/brown_zelkova_sapling.png deleted file mode 100644 index 3e135ae0..00000000 Binary files a/public/textures/biomeswevegone/brown_zelkova_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/california_poppy.png b/public/textures/biomeswevegone/california_poppy.png deleted file mode 100644 index ca645294..00000000 Binary files a/public/textures/biomeswevegone/california_poppy.png and /dev/null differ diff --git a/public/textures/biomeswevegone/carved_barrel_cactus.png b/public/textures/biomeswevegone/carved_barrel_cactus.png deleted file mode 100644 index 7f035e99..00000000 Binary files a/public/textures/biomeswevegone/carved_barrel_cactus.png and /dev/null differ diff --git a/public/textures/biomeswevegone/carved_pale_pumpkin.png b/public/textures/biomeswevegone/carved_pale_pumpkin.png deleted file mode 100644 index c835db59..00000000 Binary files a/public/textures/biomeswevegone/carved_pale_pumpkin.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cattail_sprout.png b/public/textures/biomeswevegone/cattail_sprout.png deleted file mode 100644 index 87b3398b..00000000 Binary files a/public/textures/biomeswevegone/cattail_sprout.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cattail_thatch.png b/public/textures/biomeswevegone/cattail_thatch.png deleted file mode 100644 index 1a9f064a..00000000 Binary files a/public/textures/biomeswevegone/cattail_thatch.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cattail_thatch_carpet.png b/public/textures/biomeswevegone/cattail_thatch_carpet.png deleted file mode 100644 index 97bde147..00000000 Binary files a/public/textures/biomeswevegone/cattail_thatch_carpet.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cattail_thatch_slab.png b/public/textures/biomeswevegone/cattail_thatch_slab.png deleted file mode 100644 index b0ab1d60..00000000 Binary files a/public/textures/biomeswevegone/cattail_thatch_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cattail_thatch_stairs.png b/public/textures/biomeswevegone/cattail_thatch_stairs.png deleted file mode 100644 index 5c736c86..00000000 Binary files a/public/textures/biomeswevegone/cattail_thatch_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/chiseled_black_sandstone.png b/public/textures/biomeswevegone/chiseled_black_sandstone.png deleted file mode 100644 index 8f253c6f..00000000 Binary files a/public/textures/biomeswevegone/chiseled_black_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/chiseled_blue_sandstone.png b/public/textures/biomeswevegone/chiseled_blue_sandstone.png deleted file mode 100644 index cb925e11..00000000 Binary files a/public/textures/biomeswevegone/chiseled_blue_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/chiseled_pink_sandstone.png b/public/textures/biomeswevegone/chiseled_pink_sandstone.png deleted file mode 100644 index bbd77bcf..00000000 Binary files a/public/textures/biomeswevegone/chiseled_pink_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/chiseled_purple_sandstone.png b/public/textures/biomeswevegone/chiseled_purple_sandstone.png deleted file mode 100644 index 46adf91a..00000000 Binary files a/public/textures/biomeswevegone/chiseled_purple_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/chiseled_red_rock_brick_slab.png b/public/textures/biomeswevegone/chiseled_red_rock_brick_slab.png deleted file mode 100644 index abf53389..00000000 Binary files a/public/textures/biomeswevegone/chiseled_red_rock_brick_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/chiseled_red_rock_brick_stairs.png b/public/textures/biomeswevegone/chiseled_red_rock_brick_stairs.png deleted file mode 100644 index f0353682..00000000 Binary files a/public/textures/biomeswevegone/chiseled_red_rock_brick_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/chiseled_red_rock_brick_wall.png b/public/textures/biomeswevegone/chiseled_red_rock_brick_wall.png deleted file mode 100644 index d7418ddc..00000000 Binary files a/public/textures/biomeswevegone/chiseled_red_rock_brick_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/chiseled_red_rock_bricks.png b/public/textures/biomeswevegone/chiseled_red_rock_bricks.png deleted file mode 100644 index 14dec263..00000000 Binary files a/public/textures/biomeswevegone/chiseled_red_rock_bricks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/chiseled_white_sandstone.png b/public/textures/biomeswevegone/chiseled_white_sandstone.png deleted file mode 100644 index de1bbb98..00000000 Binary files a/public/textures/biomeswevegone/chiseled_white_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/chiseled_windswept_sandstone.png b/public/textures/biomeswevegone/chiseled_windswept_sandstone.png deleted file mode 100644 index 720f5708..00000000 Binary files a/public/textures/biomeswevegone/chiseled_windswept_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_boat.png b/public/textures/biomeswevegone/cika_boat.png deleted file mode 100644 index c4f4b92c..00000000 Binary files a/public/textures/biomeswevegone/cika_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_bookshelf.png b/public/textures/biomeswevegone/cika_bookshelf.png deleted file mode 100644 index 9ee4f142..00000000 Binary files a/public/textures/biomeswevegone/cika_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_button.png b/public/textures/biomeswevegone/cika_button.png deleted file mode 100644 index f7785a53..00000000 Binary files a/public/textures/biomeswevegone/cika_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_chest_boat.png b/public/textures/biomeswevegone/cika_chest_boat.png deleted file mode 100644 index 2c2917a9..00000000 Binary files a/public/textures/biomeswevegone/cika_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_crafting_table.png b/public/textures/biomeswevegone/cika_crafting_table.png deleted file mode 100644 index 05eef4df..00000000 Binary files a/public/textures/biomeswevegone/cika_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_door.png b/public/textures/biomeswevegone/cika_door.png deleted file mode 100644 index 28889069..00000000 Binary files a/public/textures/biomeswevegone/cika_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_fence.png b/public/textures/biomeswevegone/cika_fence.png deleted file mode 100644 index 108e7728..00000000 Binary files a/public/textures/biomeswevegone/cika_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_fence_gate.png b/public/textures/biomeswevegone/cika_fence_gate.png deleted file mode 100644 index 5f43fde5..00000000 Binary files a/public/textures/biomeswevegone/cika_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_hanging_sign.png b/public/textures/biomeswevegone/cika_hanging_sign.png deleted file mode 100644 index 4aa7b8af..00000000 Binary files a/public/textures/biomeswevegone/cika_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_leaves.png b/public/textures/biomeswevegone/cika_leaves.png deleted file mode 100644 index fd469efb..00000000 Binary files a/public/textures/biomeswevegone/cika_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_log.png b/public/textures/biomeswevegone/cika_log.png deleted file mode 100644 index 0f162b13..00000000 Binary files a/public/textures/biomeswevegone/cika_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_planks.png b/public/textures/biomeswevegone/cika_planks.png deleted file mode 100644 index e709e90c..00000000 Binary files a/public/textures/biomeswevegone/cika_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_pressure_plate.png b/public/textures/biomeswevegone/cika_pressure_plate.png deleted file mode 100644 index 454b5277..00000000 Binary files a/public/textures/biomeswevegone/cika_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_sapling.png b/public/textures/biomeswevegone/cika_sapling.png deleted file mode 100644 index 81eaa691..00000000 Binary files a/public/textures/biomeswevegone/cika_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_sign.png b/public/textures/biomeswevegone/cika_sign.png deleted file mode 100644 index cfb94a58..00000000 Binary files a/public/textures/biomeswevegone/cika_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_slab.png b/public/textures/biomeswevegone/cika_slab.png deleted file mode 100644 index 99ffb2c2..00000000 Binary files a/public/textures/biomeswevegone/cika_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_stairs.png b/public/textures/biomeswevegone/cika_stairs.png deleted file mode 100644 index ac584d06..00000000 Binary files a/public/textures/biomeswevegone/cika_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_trapdoor.png b/public/textures/biomeswevegone/cika_trapdoor.png deleted file mode 100644 index e5c0f4ff..00000000 Binary files a/public/textures/biomeswevegone/cika_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cika_wood.png b/public/textures/biomeswevegone/cika_wood.png deleted file mode 100644 index d1b9b896..00000000 Binary files a/public/textures/biomeswevegone/cika_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/clover_patch.png b/public/textures/biomeswevegone/clover_patch.png deleted file mode 100644 index a715ba69..00000000 Binary files a/public/textures/biomeswevegone/clover_patch.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cooked_oddion_bulb.png b/public/textures/biomeswevegone/cooked_oddion_bulb.png deleted file mode 100644 index bfd2b76b..00000000 Binary files a/public/textures/biomeswevegone/cooked_oddion_bulb.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cooked_white_puffball_cap.png b/public/textures/biomeswevegone/cooked_white_puffball_cap.png deleted file mode 100644 index 900c97a9..00000000 Binary files a/public/textures/biomeswevegone/cooked_white_puffball_cap.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cooked_yucca_fruit.png b/public/textures/biomeswevegone/cooked_yucca_fruit.png deleted file mode 100644 index 171457c3..00000000 Binary files a/public/textures/biomeswevegone/cooked_yucca_fruit.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cracked_red_rock_brick_slab.png b/public/textures/biomeswevegone/cracked_red_rock_brick_slab.png deleted file mode 100644 index 7ac1290f..00000000 Binary files a/public/textures/biomeswevegone/cracked_red_rock_brick_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cracked_red_rock_brick_stairs.png b/public/textures/biomeswevegone/cracked_red_rock_brick_stairs.png deleted file mode 100644 index 3ca8e0fc..00000000 Binary files a/public/textures/biomeswevegone/cracked_red_rock_brick_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cracked_red_rock_brick_wall.png b/public/textures/biomeswevegone/cracked_red_rock_brick_wall.png deleted file mode 100644 index 503fe56d..00000000 Binary files a/public/textures/biomeswevegone/cracked_red_rock_brick_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cracked_red_rock_bricks.png b/public/textures/biomeswevegone/cracked_red_rock_bricks.png deleted file mode 100644 index 3be48b68..00000000 Binary files a/public/textures/biomeswevegone/cracked_red_rock_bricks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cracked_red_sand.png b/public/textures/biomeswevegone/cracked_red_sand.png deleted file mode 100644 index e21b51cb..00000000 Binary files a/public/textures/biomeswevegone/cracked_red_sand.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cracked_sand.png b/public/textures/biomeswevegone/cracked_sand.png deleted file mode 100644 index 7886785a..00000000 Binary files a/public/textures/biomeswevegone/cracked_sand.png and /dev/null differ diff --git a/public/textures/biomeswevegone/crocus.png b/public/textures/biomeswevegone/crocus.png deleted file mode 100644 index 0a87a5ff..00000000 Binary files a/public/textures/biomeswevegone/crocus.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_black_sandstone.png b/public/textures/biomeswevegone/cut_black_sandstone.png deleted file mode 100644 index 484bab1e..00000000 Binary files a/public/textures/biomeswevegone/cut_black_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_black_sandstone_slab.png b/public/textures/biomeswevegone/cut_black_sandstone_slab.png deleted file mode 100644 index 369b2bbe..00000000 Binary files a/public/textures/biomeswevegone/cut_black_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_blue_sandstone.png b/public/textures/biomeswevegone/cut_blue_sandstone.png deleted file mode 100644 index cf70b670..00000000 Binary files a/public/textures/biomeswevegone/cut_blue_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_blue_sandstone_slab.png b/public/textures/biomeswevegone/cut_blue_sandstone_slab.png deleted file mode 100644 index 7173fc1b..00000000 Binary files a/public/textures/biomeswevegone/cut_blue_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_pink_sandstone.png b/public/textures/biomeswevegone/cut_pink_sandstone.png deleted file mode 100644 index e654d368..00000000 Binary files a/public/textures/biomeswevegone/cut_pink_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_pink_sandstone_slab.png b/public/textures/biomeswevegone/cut_pink_sandstone_slab.png deleted file mode 100644 index 6d2b75f9..00000000 Binary files a/public/textures/biomeswevegone/cut_pink_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_purple_sandstone.png b/public/textures/biomeswevegone/cut_purple_sandstone.png deleted file mode 100644 index 93b12e4d..00000000 Binary files a/public/textures/biomeswevegone/cut_purple_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_purple_sandstone_slab.png b/public/textures/biomeswevegone/cut_purple_sandstone_slab.png deleted file mode 100644 index 688e1a02..00000000 Binary files a/public/textures/biomeswevegone/cut_purple_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_white_sandstone.png b/public/textures/biomeswevegone/cut_white_sandstone.png deleted file mode 100644 index 56349634..00000000 Binary files a/public/textures/biomeswevegone/cut_white_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_white_sandstone_slab.png b/public/textures/biomeswevegone/cut_white_sandstone_slab.png deleted file mode 100644 index 22ee6226..00000000 Binary files a/public/textures/biomeswevegone/cut_white_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_windswept_sandstone.png b/public/textures/biomeswevegone/cut_windswept_sandstone.png deleted file mode 100644 index ef3429b9..00000000 Binary files a/public/textures/biomeswevegone/cut_windswept_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cut_windswept_sandstone_slab.png b/public/textures/biomeswevegone/cut_windswept_sandstone_slab.png deleted file mode 100644 index 4b9f06ee..00000000 Binary files a/public/textures/biomeswevegone/cut_windswept_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cyan_amaranth.png b/public/textures/biomeswevegone/cyan_amaranth.png deleted file mode 100644 index a971f99e..00000000 Binary files a/public/textures/biomeswevegone/cyan_amaranth.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cyan_pitcher_plant.png b/public/textures/biomeswevegone/cyan_pitcher_plant.png deleted file mode 100644 index 3c7b66de..00000000 Binary files a/public/textures/biomeswevegone/cyan_pitcher_plant.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cyan_rose.png b/public/textures/biomeswevegone/cyan_rose.png deleted file mode 100644 index 7839fa93..00000000 Binary files a/public/textures/biomeswevegone/cyan_rose.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cyan_tulip.png b/public/textures/biomeswevegone/cyan_tulip.png deleted file mode 100644 index 0147affa..00000000 Binary files a/public/textures/biomeswevegone/cyan_tulip.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_boat.png b/public/textures/biomeswevegone/cypress_boat.png deleted file mode 100644 index 42760356..00000000 Binary files a/public/textures/biomeswevegone/cypress_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_bookshelf.png b/public/textures/biomeswevegone/cypress_bookshelf.png deleted file mode 100644 index e69b704b..00000000 Binary files a/public/textures/biomeswevegone/cypress_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_button.png b/public/textures/biomeswevegone/cypress_button.png deleted file mode 100644 index 8aa3b20a..00000000 Binary files a/public/textures/biomeswevegone/cypress_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_chest_boat.png b/public/textures/biomeswevegone/cypress_chest_boat.png deleted file mode 100644 index aca9c512..00000000 Binary files a/public/textures/biomeswevegone/cypress_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_crafting_table.png b/public/textures/biomeswevegone/cypress_crafting_table.png deleted file mode 100644 index 787c99c7..00000000 Binary files a/public/textures/biomeswevegone/cypress_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_door.png b/public/textures/biomeswevegone/cypress_door.png deleted file mode 100644 index 3006b542..00000000 Binary files a/public/textures/biomeswevegone/cypress_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_fence.png b/public/textures/biomeswevegone/cypress_fence.png deleted file mode 100644 index 4388c368..00000000 Binary files a/public/textures/biomeswevegone/cypress_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_fence_gate.png b/public/textures/biomeswevegone/cypress_fence_gate.png deleted file mode 100644 index b48f7f00..00000000 Binary files a/public/textures/biomeswevegone/cypress_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_hanging_sign.png b/public/textures/biomeswevegone/cypress_hanging_sign.png deleted file mode 100644 index 24382e2f..00000000 Binary files a/public/textures/biomeswevegone/cypress_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_leaves.png b/public/textures/biomeswevegone/cypress_leaves.png deleted file mode 100644 index a8d9089b..00000000 Binary files a/public/textures/biomeswevegone/cypress_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_log.png b/public/textures/biomeswevegone/cypress_log.png deleted file mode 100644 index 94bd49cb..00000000 Binary files a/public/textures/biomeswevegone/cypress_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_planks.png b/public/textures/biomeswevegone/cypress_planks.png deleted file mode 100644 index faf2dd43..00000000 Binary files a/public/textures/biomeswevegone/cypress_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_pressure_plate.png b/public/textures/biomeswevegone/cypress_pressure_plate.png deleted file mode 100644 index ba6dc0d5..00000000 Binary files a/public/textures/biomeswevegone/cypress_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_sapling.png b/public/textures/biomeswevegone/cypress_sapling.png deleted file mode 100644 index d75e9ab9..00000000 Binary files a/public/textures/biomeswevegone/cypress_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_sign.png b/public/textures/biomeswevegone/cypress_sign.png deleted file mode 100644 index f4c66ce6..00000000 Binary files a/public/textures/biomeswevegone/cypress_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_slab.png b/public/textures/biomeswevegone/cypress_slab.png deleted file mode 100644 index 0f657f18..00000000 Binary files a/public/textures/biomeswevegone/cypress_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_stairs.png b/public/textures/biomeswevegone/cypress_stairs.png deleted file mode 100644 index 884fb59f..00000000 Binary files a/public/textures/biomeswevegone/cypress_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_trapdoor.png b/public/textures/biomeswevegone/cypress_trapdoor.png deleted file mode 100644 index a934cb97..00000000 Binary files a/public/textures/biomeswevegone/cypress_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/cypress_wood.png b/public/textures/biomeswevegone/cypress_wood.png deleted file mode 100644 index c79cae6a..00000000 Binary files a/public/textures/biomeswevegone/cypress_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite.png b/public/textures/biomeswevegone/dacite.png deleted file mode 100644 index 96f35e43..00000000 Binary files a/public/textures/biomeswevegone/dacite.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_brick_slab.png b/public/textures/biomeswevegone/dacite_brick_slab.png deleted file mode 100644 index 2dd9e783..00000000 Binary files a/public/textures/biomeswevegone/dacite_brick_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_brick_stairs.png b/public/textures/biomeswevegone/dacite_brick_stairs.png deleted file mode 100644 index b43fe050..00000000 Binary files a/public/textures/biomeswevegone/dacite_brick_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_brick_wall.png b/public/textures/biomeswevegone/dacite_brick_wall.png deleted file mode 100644 index d576291d..00000000 Binary files a/public/textures/biomeswevegone/dacite_brick_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_bricks.png b/public/textures/biomeswevegone/dacite_bricks.png deleted file mode 100644 index 1570f89f..00000000 Binary files a/public/textures/biomeswevegone/dacite_bricks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_cobblestone.png b/public/textures/biomeswevegone/dacite_cobblestone.png deleted file mode 100644 index e77f7b95..00000000 Binary files a/public/textures/biomeswevegone/dacite_cobblestone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_cobblestone_slab.png b/public/textures/biomeswevegone/dacite_cobblestone_slab.png deleted file mode 100644 index 866b0c5e..00000000 Binary files a/public/textures/biomeswevegone/dacite_cobblestone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_cobblestone_stairs.png b/public/textures/biomeswevegone/dacite_cobblestone_stairs.png deleted file mode 100644 index da2b90e5..00000000 Binary files a/public/textures/biomeswevegone/dacite_cobblestone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_cobblestone_wall.png b/public/textures/biomeswevegone/dacite_cobblestone_wall.png deleted file mode 100644 index fb327ccf..00000000 Binary files a/public/textures/biomeswevegone/dacite_cobblestone_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_pillar.png b/public/textures/biomeswevegone/dacite_pillar.png deleted file mode 100644 index bbe923dc..00000000 Binary files a/public/textures/biomeswevegone/dacite_pillar.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_slab.png b/public/textures/biomeswevegone/dacite_slab.png deleted file mode 100644 index 8e39c909..00000000 Binary files a/public/textures/biomeswevegone/dacite_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_stairs.png b/public/textures/biomeswevegone/dacite_stairs.png deleted file mode 100644 index 9b37a690..00000000 Binary files a/public/textures/biomeswevegone/dacite_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_tile.png b/public/textures/biomeswevegone/dacite_tile.png deleted file mode 100644 index 5a45c149..00000000 Binary files a/public/textures/biomeswevegone/dacite_tile.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_tile_slab.png b/public/textures/biomeswevegone/dacite_tile_slab.png deleted file mode 100644 index e35f8350..00000000 Binary files a/public/textures/biomeswevegone/dacite_tile_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_tile_stairs.png b/public/textures/biomeswevegone/dacite_tile_stairs.png deleted file mode 100644 index a8c92d64..00000000 Binary files a/public/textures/biomeswevegone/dacite_tile_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_tile_wall.png b/public/textures/biomeswevegone/dacite_tile_wall.png deleted file mode 100644 index 3bc85583..00000000 Binary files a/public/textures/biomeswevegone/dacite_tile_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/dacite_wall.png b/public/textures/biomeswevegone/dacite_wall.png deleted file mode 100644 index 17e388e9..00000000 Binary files a/public/textures/biomeswevegone/dacite_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/daffodil.png b/public/textures/biomeswevegone/daffodil.png deleted file mode 100644 index 71f944a9..00000000 Binary files a/public/textures/biomeswevegone/daffodil.png and /dev/null differ diff --git a/public/textures/biomeswevegone/delphinium.png b/public/textures/biomeswevegone/delphinium.png deleted file mode 100644 index acc36945..00000000 Binary files a/public/textures/biomeswevegone/delphinium.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_boat.png b/public/textures/biomeswevegone/ebony_boat.png deleted file mode 100644 index 6922df06..00000000 Binary files a/public/textures/biomeswevegone/ebony_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_bookshelf.png b/public/textures/biomeswevegone/ebony_bookshelf.png deleted file mode 100644 index 5a8740f4..00000000 Binary files a/public/textures/biomeswevegone/ebony_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_button.png b/public/textures/biomeswevegone/ebony_button.png deleted file mode 100644 index c483bd5e..00000000 Binary files a/public/textures/biomeswevegone/ebony_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_chest_boat.png b/public/textures/biomeswevegone/ebony_chest_boat.png deleted file mode 100644 index 950799aa..00000000 Binary files a/public/textures/biomeswevegone/ebony_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_crafting_table.png b/public/textures/biomeswevegone/ebony_crafting_table.png deleted file mode 100644 index 2c030d6f..00000000 Binary files a/public/textures/biomeswevegone/ebony_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_door.png b/public/textures/biomeswevegone/ebony_door.png deleted file mode 100644 index c8cc5933..00000000 Binary files a/public/textures/biomeswevegone/ebony_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_fence.png b/public/textures/biomeswevegone/ebony_fence.png deleted file mode 100644 index 3e2fb194..00000000 Binary files a/public/textures/biomeswevegone/ebony_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_fence_gate.png b/public/textures/biomeswevegone/ebony_fence_gate.png deleted file mode 100644 index 70a03aaf..00000000 Binary files a/public/textures/biomeswevegone/ebony_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_hanging_sign.png b/public/textures/biomeswevegone/ebony_hanging_sign.png deleted file mode 100644 index 68695b06..00000000 Binary files a/public/textures/biomeswevegone/ebony_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_leaves.png b/public/textures/biomeswevegone/ebony_leaves.png deleted file mode 100644 index 0ef2afc1..00000000 Binary files a/public/textures/biomeswevegone/ebony_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_log.png b/public/textures/biomeswevegone/ebony_log.png deleted file mode 100644 index 10d8bbc8..00000000 Binary files a/public/textures/biomeswevegone/ebony_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_planks.png b/public/textures/biomeswevegone/ebony_planks.png deleted file mode 100644 index 6d52ce94..00000000 Binary files a/public/textures/biomeswevegone/ebony_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_pressure_plate.png b/public/textures/biomeswevegone/ebony_pressure_plate.png deleted file mode 100644 index 8e836abd..00000000 Binary files a/public/textures/biomeswevegone/ebony_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_sapling.png b/public/textures/biomeswevegone/ebony_sapling.png deleted file mode 100644 index 1d4c2d70..00000000 Binary files a/public/textures/biomeswevegone/ebony_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_sign.png b/public/textures/biomeswevegone/ebony_sign.png deleted file mode 100644 index 1e80182d..00000000 Binary files a/public/textures/biomeswevegone/ebony_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_slab.png b/public/textures/biomeswevegone/ebony_slab.png deleted file mode 100644 index 4581e4e0..00000000 Binary files a/public/textures/biomeswevegone/ebony_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_stairs.png b/public/textures/biomeswevegone/ebony_stairs.png deleted file mode 100644 index 28b606b6..00000000 Binary files a/public/textures/biomeswevegone/ebony_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_trapdoor.png b/public/textures/biomeswevegone/ebony_trapdoor.png deleted file mode 100644 index 3049c258..00000000 Binary files a/public/textures/biomeswevegone/ebony_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ebony_wood.png b/public/textures/biomeswevegone/ebony_wood.png deleted file mode 100644 index 993d7c3c..00000000 Binary files a/public/textures/biomeswevegone/ebony_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fairy_slipper.png b/public/textures/biomeswevegone/fairy_slipper.png deleted file mode 100644 index 86e85a8d..00000000 Binary files a/public/textures/biomeswevegone/fairy_slipper.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_boat.png b/public/textures/biomeswevegone/fir_boat.png deleted file mode 100644 index 8cf4f97e..00000000 Binary files a/public/textures/biomeswevegone/fir_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_bookshelf.png b/public/textures/biomeswevegone/fir_bookshelf.png deleted file mode 100644 index d49af604..00000000 Binary files a/public/textures/biomeswevegone/fir_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_button.png b/public/textures/biomeswevegone/fir_button.png deleted file mode 100644 index 55b4931c..00000000 Binary files a/public/textures/biomeswevegone/fir_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_chest_boat.png b/public/textures/biomeswevegone/fir_chest_boat.png deleted file mode 100644 index f0bc03a9..00000000 Binary files a/public/textures/biomeswevegone/fir_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_crafting_table.png b/public/textures/biomeswevegone/fir_crafting_table.png deleted file mode 100644 index c0b3fc91..00000000 Binary files a/public/textures/biomeswevegone/fir_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_door.png b/public/textures/biomeswevegone/fir_door.png deleted file mode 100644 index 415a43ba..00000000 Binary files a/public/textures/biomeswevegone/fir_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_fence.png b/public/textures/biomeswevegone/fir_fence.png deleted file mode 100644 index 0892c722..00000000 Binary files a/public/textures/biomeswevegone/fir_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_fence_gate.png b/public/textures/biomeswevegone/fir_fence_gate.png deleted file mode 100644 index 370b45b3..00000000 Binary files a/public/textures/biomeswevegone/fir_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_hanging_sign.png b/public/textures/biomeswevegone/fir_hanging_sign.png deleted file mode 100644 index 273befd0..00000000 Binary files a/public/textures/biomeswevegone/fir_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_leaves.png b/public/textures/biomeswevegone/fir_leaves.png deleted file mode 100644 index e50ad297..00000000 Binary files a/public/textures/biomeswevegone/fir_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_log.png b/public/textures/biomeswevegone/fir_log.png deleted file mode 100644 index 8826ad0f..00000000 Binary files a/public/textures/biomeswevegone/fir_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_planks.png b/public/textures/biomeswevegone/fir_planks.png deleted file mode 100644 index 8c00b057..00000000 Binary files a/public/textures/biomeswevegone/fir_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_pressure_plate.png b/public/textures/biomeswevegone/fir_pressure_plate.png deleted file mode 100644 index 2671d220..00000000 Binary files a/public/textures/biomeswevegone/fir_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_sapling.png b/public/textures/biomeswevegone/fir_sapling.png deleted file mode 100644 index 22eb427d..00000000 Binary files a/public/textures/biomeswevegone/fir_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_sign.png b/public/textures/biomeswevegone/fir_sign.png deleted file mode 100644 index 924bb9c3..00000000 Binary files a/public/textures/biomeswevegone/fir_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_slab.png b/public/textures/biomeswevegone/fir_slab.png deleted file mode 100644 index 41cf63cf..00000000 Binary files a/public/textures/biomeswevegone/fir_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_stairs.png b/public/textures/biomeswevegone/fir_stairs.png deleted file mode 100644 index 4c3f6e29..00000000 Binary files a/public/textures/biomeswevegone/fir_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_trapdoor.png b/public/textures/biomeswevegone/fir_trapdoor.png deleted file mode 100644 index c8e25a9e..00000000 Binary files a/public/textures/biomeswevegone/fir_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fir_wood.png b/public/textures/biomeswevegone/fir_wood.png deleted file mode 100644 index ee4bfd47..00000000 Binary files a/public/textures/biomeswevegone/fir_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/firecracker_flower_bush.png b/public/textures/biomeswevegone/firecracker_flower_bush.png deleted file mode 100644 index 3c00dc77..00000000 Binary files a/public/textures/biomeswevegone/firecracker_flower_bush.png and /dev/null differ diff --git a/public/textures/biomeswevegone/firecracker_leaves.png b/public/textures/biomeswevegone/firecracker_leaves.png deleted file mode 100644 index d451dde4..00000000 Binary files a/public/textures/biomeswevegone/firecracker_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_boat.png b/public/textures/biomeswevegone/florus_boat.png deleted file mode 100644 index 8252b266..00000000 Binary files a/public/textures/biomeswevegone/florus_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_bookshelf.png b/public/textures/biomeswevegone/florus_bookshelf.png deleted file mode 100644 index 660c0806..00000000 Binary files a/public/textures/biomeswevegone/florus_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_button.png b/public/textures/biomeswevegone/florus_button.png deleted file mode 100644 index 6e9bdf72..00000000 Binary files a/public/textures/biomeswevegone/florus_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_chest_boat.png b/public/textures/biomeswevegone/florus_chest_boat.png deleted file mode 100644 index 9d9a87df..00000000 Binary files a/public/textures/biomeswevegone/florus_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_crafting_table.png b/public/textures/biomeswevegone/florus_crafting_table.png deleted file mode 100644 index 0441bd43..00000000 Binary files a/public/textures/biomeswevegone/florus_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_door.png b/public/textures/biomeswevegone/florus_door.png deleted file mode 100644 index 5165df61..00000000 Binary files a/public/textures/biomeswevegone/florus_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_fence.png b/public/textures/biomeswevegone/florus_fence.png deleted file mode 100644 index 796fe0c4..00000000 Binary files a/public/textures/biomeswevegone/florus_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_fence_gate.png b/public/textures/biomeswevegone/florus_fence_gate.png deleted file mode 100644 index 86d9669f..00000000 Binary files a/public/textures/biomeswevegone/florus_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_hanging_sign.png b/public/textures/biomeswevegone/florus_hanging_sign.png deleted file mode 100644 index 9f67a16c..00000000 Binary files a/public/textures/biomeswevegone/florus_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_planks.png b/public/textures/biomeswevegone/florus_planks.png deleted file mode 100644 index dc5255f9..00000000 Binary files a/public/textures/biomeswevegone/florus_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_pressure_plate.png b/public/textures/biomeswevegone/florus_pressure_plate.png deleted file mode 100644 index 0b3e2c92..00000000 Binary files a/public/textures/biomeswevegone/florus_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_sign.png b/public/textures/biomeswevegone/florus_sign.png deleted file mode 100644 index 90e31c1f..00000000 Binary files a/public/textures/biomeswevegone/florus_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_slab.png b/public/textures/biomeswevegone/florus_slab.png deleted file mode 100644 index b51829c9..00000000 Binary files a/public/textures/biomeswevegone/florus_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_stairs.png b/public/textures/biomeswevegone/florus_stairs.png deleted file mode 100644 index 439ec8d1..00000000 Binary files a/public/textures/biomeswevegone/florus_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_stem.png b/public/textures/biomeswevegone/florus_stem.png deleted file mode 100644 index c9110d1f..00000000 Binary files a/public/textures/biomeswevegone/florus_stem.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_trapdoor.png b/public/textures/biomeswevegone/florus_trapdoor.png deleted file mode 100644 index 96b0c0a0..00000000 Binary files a/public/textures/biomeswevegone/florus_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/florus_wood.png b/public/textures/biomeswevegone/florus_wood.png deleted file mode 100644 index 514ac245..00000000 Binary files a/public/textures/biomeswevegone/florus_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flower_patch.png b/public/textures/biomeswevegone/flower_patch.png deleted file mode 100644 index b483cdd8..00000000 Binary files a/public/textures/biomeswevegone/flower_patch.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_baobab_leaves.png b/public/textures/biomeswevegone/flowering_baobab_leaves.png deleted file mode 100644 index 5a19623d..00000000 Binary files a/public/textures/biomeswevegone/flowering_baobab_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_barrel_cactus.png b/public/textures/biomeswevegone/flowering_barrel_cactus.png deleted file mode 100644 index ccdb84bd..00000000 Binary files a/public/textures/biomeswevegone/flowering_barrel_cactus.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_indigo_jacaranda_bush.png b/public/textures/biomeswevegone/flowering_indigo_jacaranda_bush.png deleted file mode 100644 index c4c174a0..00000000 Binary files a/public/textures/biomeswevegone/flowering_indigo_jacaranda_bush.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_indigo_jacaranda_leaves.png b/public/textures/biomeswevegone/flowering_indigo_jacaranda_leaves.png deleted file mode 100644 index 9ec9043e..00000000 Binary files a/public/textures/biomeswevegone/flowering_indigo_jacaranda_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_ironwood_leaves.png b/public/textures/biomeswevegone/flowering_ironwood_leaves.png deleted file mode 100644 index e56995b2..00000000 Binary files a/public/textures/biomeswevegone/flowering_ironwood_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_jacaranda_bush.png b/public/textures/biomeswevegone/flowering_jacaranda_bush.png deleted file mode 100644 index 0de0ec69..00000000 Binary files a/public/textures/biomeswevegone/flowering_jacaranda_bush.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_jacaranda_leaves.png b/public/textures/biomeswevegone/flowering_jacaranda_leaves.png deleted file mode 100644 index cdc22725..00000000 Binary files a/public/textures/biomeswevegone/flowering_jacaranda_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_orchard_leaves.png b/public/textures/biomeswevegone/flowering_orchard_leaves.png deleted file mode 100644 index cbeb8023..00000000 Binary files a/public/textures/biomeswevegone/flowering_orchard_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_palo_verde_leaves.png b/public/textures/biomeswevegone/flowering_palo_verde_leaves.png deleted file mode 100644 index e5f1c529..00000000 Binary files a/public/textures/biomeswevegone/flowering_palo_verde_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_skyris_leaves.png b/public/textures/biomeswevegone/flowering_skyris_leaves.png deleted file mode 100644 index c7c9cc10..00000000 Binary files a/public/textures/biomeswevegone/flowering_skyris_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_spirit_leaves.png b/public/textures/biomeswevegone/flowering_spirit_leaves.png deleted file mode 100644 index a5dd9703..00000000 Binary files a/public/textures/biomeswevegone/flowering_spirit_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_tiny_lily_pads.png b/public/textures/biomeswevegone/flowering_tiny_lily_pads.png deleted file mode 100644 index edf1f82d..00000000 Binary files a/public/textures/biomeswevegone/flowering_tiny_lily_pads.png and /dev/null differ diff --git a/public/textures/biomeswevegone/flowering_yucca_leaves.png b/public/textures/biomeswevegone/flowering_yucca_leaves.png deleted file mode 100644 index e1e724eb..00000000 Binary files a/public/textures/biomeswevegone/flowering_yucca_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/fluorescent_cattail_sprout.png b/public/textures/biomeswevegone/fluorescent_cattail_sprout.png deleted file mode 100644 index 27c7b461..00000000 Binary files a/public/textures/biomeswevegone/fluorescent_cattail_sprout.png and /dev/null differ diff --git a/public/textures/biomeswevegone/foragers_table.png b/public/textures/biomeswevegone/foragers_table.png deleted file mode 100644 index 10203b18..00000000 Binary files a/public/textures/biomeswevegone/foragers_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/foxglove.png b/public/textures/biomeswevegone/foxglove.png deleted file mode 100644 index 3404b0c5..00000000 Binary files a/public/textures/biomeswevegone/foxglove.png and /dev/null differ diff --git a/public/textures/biomeswevegone/golden_spined_cactus.png b/public/textures/biomeswevegone/golden_spined_cactus.png deleted file mode 100644 index 5d0e535b..00000000 Binary files a/public/textures/biomeswevegone/golden_spined_cactus.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_apple.png b/public/textures/biomeswevegone/green_apple.png deleted file mode 100644 index 824caa01..00000000 Binary files a/public/textures/biomeswevegone/green_apple.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_apple_pie.png b/public/textures/biomeswevegone/green_apple_pie.png deleted file mode 100644 index 4b8571e6..00000000 Binary files a/public/textures/biomeswevegone/green_apple_pie.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_apple_skyris_leaves.png b/public/textures/biomeswevegone/green_apple_skyris_leaves.png deleted file mode 100644 index e9aacfba..00000000 Binary files a/public/textures/biomeswevegone/green_apple_skyris_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_boat.png b/public/textures/biomeswevegone/green_enchanted_boat.png deleted file mode 100644 index eba08c87..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_bookshelf.png b/public/textures/biomeswevegone/green_enchanted_bookshelf.png deleted file mode 100644 index 9e330051..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_button.png b/public/textures/biomeswevegone/green_enchanted_button.png deleted file mode 100644 index 21e28c55..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_chest_boat.png b/public/textures/biomeswevegone/green_enchanted_chest_boat.png deleted file mode 100644 index ee4ed6b3..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_crafting_table.png b/public/textures/biomeswevegone/green_enchanted_crafting_table.png deleted file mode 100644 index 8c1dde0d..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_door.png b/public/textures/biomeswevegone/green_enchanted_door.png deleted file mode 100644 index 3b26cf5e..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_fence.png b/public/textures/biomeswevegone/green_enchanted_fence.png deleted file mode 100644 index 51d24a0e..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_fence_gate.png b/public/textures/biomeswevegone/green_enchanted_fence_gate.png deleted file mode 100644 index 01b5ad71..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_hanging_sign.png b/public/textures/biomeswevegone/green_enchanted_hanging_sign.png deleted file mode 100644 index 16f86e7b..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_leaves.png b/public/textures/biomeswevegone/green_enchanted_leaves.png deleted file mode 100644 index a1bb810e..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_log.png b/public/textures/biomeswevegone/green_enchanted_log.png deleted file mode 100644 index 4497b580..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_planks.png b/public/textures/biomeswevegone/green_enchanted_planks.png deleted file mode 100644 index 378d31f4..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_pressure_plate.png b/public/textures/biomeswevegone/green_enchanted_pressure_plate.png deleted file mode 100644 index 49584725..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_sapling.png b/public/textures/biomeswevegone/green_enchanted_sapling.png deleted file mode 100644 index f14da580..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_sign.png b/public/textures/biomeswevegone/green_enchanted_sign.png deleted file mode 100644 index 91e46b58..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_slab.png b/public/textures/biomeswevegone/green_enchanted_slab.png deleted file mode 100644 index 91158f40..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_stairs.png b/public/textures/biomeswevegone/green_enchanted_stairs.png deleted file mode 100644 index 9d4fdc61..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_trapdoor.png b/public/textures/biomeswevegone/green_enchanted_trapdoor.png deleted file mode 100644 index 94e70605..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_enchanted_wood.png b/public/textures/biomeswevegone/green_enchanted_wood.png deleted file mode 100644 index 5d7d6871..00000000 Binary files a/public/textures/biomeswevegone/green_enchanted_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_glow_bottle.png b/public/textures/biomeswevegone/green_glow_bottle.png deleted file mode 100644 index e2f84872..00000000 Binary files a/public/textures/biomeswevegone/green_glow_bottle.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_glowcane_powder.png b/public/textures/biomeswevegone/green_glowcane_powder.png deleted file mode 100644 index e74a9d13..00000000 Binary files a/public/textures/biomeswevegone/green_glowcane_powder.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_glowcane_shoot.png b/public/textures/biomeswevegone/green_glowcane_shoot.png deleted file mode 100644 index fea46ccb..00000000 Binary files a/public/textures/biomeswevegone/green_glowcane_shoot.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_mushroom.png b/public/textures/biomeswevegone/green_mushroom.png deleted file mode 100644 index 2e638782..00000000 Binary files a/public/textures/biomeswevegone/green_mushroom.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_mushroom_block.png b/public/textures/biomeswevegone/green_mushroom_block.png deleted file mode 100644 index 2440125c..00000000 Binary files a/public/textures/biomeswevegone/green_mushroom_block.png and /dev/null differ diff --git a/public/textures/biomeswevegone/green_tulip.png b/public/textures/biomeswevegone/green_tulip.png deleted file mode 100644 index 79302f4a..00000000 Binary files a/public/textures/biomeswevegone/green_tulip.png and /dev/null differ diff --git a/public/textures/biomeswevegone/guzmania.png b/public/textures/biomeswevegone/guzmania.png deleted file mode 100644 index d8ce51dd..00000000 Binary files a/public/textures/biomeswevegone/guzmania.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_berry_leaves.png b/public/textures/biomeswevegone/holly_berry_leaves.png deleted file mode 100644 index 072ddc10..00000000 Binary files a/public/textures/biomeswevegone/holly_berry_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_boat.png b/public/textures/biomeswevegone/holly_boat.png deleted file mode 100644 index 9fcd7591..00000000 Binary files a/public/textures/biomeswevegone/holly_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_bookshelf.png b/public/textures/biomeswevegone/holly_bookshelf.png deleted file mode 100644 index 356e76b4..00000000 Binary files a/public/textures/biomeswevegone/holly_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_button.png b/public/textures/biomeswevegone/holly_button.png deleted file mode 100644 index de3750b9..00000000 Binary files a/public/textures/biomeswevegone/holly_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_chest_boat.png b/public/textures/biomeswevegone/holly_chest_boat.png deleted file mode 100644 index 7128dbb9..00000000 Binary files a/public/textures/biomeswevegone/holly_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_crafting_table.png b/public/textures/biomeswevegone/holly_crafting_table.png deleted file mode 100644 index 3d78811f..00000000 Binary files a/public/textures/biomeswevegone/holly_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_door.png b/public/textures/biomeswevegone/holly_door.png deleted file mode 100644 index 855d44fc..00000000 Binary files a/public/textures/biomeswevegone/holly_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_fence.png b/public/textures/biomeswevegone/holly_fence.png deleted file mode 100644 index 753c7c23..00000000 Binary files a/public/textures/biomeswevegone/holly_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_fence_gate.png b/public/textures/biomeswevegone/holly_fence_gate.png deleted file mode 100644 index 8b650204..00000000 Binary files a/public/textures/biomeswevegone/holly_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_hanging_sign.png b/public/textures/biomeswevegone/holly_hanging_sign.png deleted file mode 100644 index 336758b7..00000000 Binary files a/public/textures/biomeswevegone/holly_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_leaves.png b/public/textures/biomeswevegone/holly_leaves.png deleted file mode 100644 index 795bb929..00000000 Binary files a/public/textures/biomeswevegone/holly_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_log.png b/public/textures/biomeswevegone/holly_log.png deleted file mode 100644 index 8feac841..00000000 Binary files a/public/textures/biomeswevegone/holly_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_planks.png b/public/textures/biomeswevegone/holly_planks.png deleted file mode 100644 index 63542aa8..00000000 Binary files a/public/textures/biomeswevegone/holly_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_pressure_plate.png b/public/textures/biomeswevegone/holly_pressure_plate.png deleted file mode 100644 index 4de93c7b..00000000 Binary files a/public/textures/biomeswevegone/holly_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_sapling.png b/public/textures/biomeswevegone/holly_sapling.png deleted file mode 100644 index 55ab8f51..00000000 Binary files a/public/textures/biomeswevegone/holly_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_sign.png b/public/textures/biomeswevegone/holly_sign.png deleted file mode 100644 index eecf0091..00000000 Binary files a/public/textures/biomeswevegone/holly_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_slab.png b/public/textures/biomeswevegone/holly_slab.png deleted file mode 100644 index b278c0c3..00000000 Binary files a/public/textures/biomeswevegone/holly_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_stairs.png b/public/textures/biomeswevegone/holly_stairs.png deleted file mode 100644 index 0c72616a..00000000 Binary files a/public/textures/biomeswevegone/holly_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_trapdoor.png b/public/textures/biomeswevegone/holly_trapdoor.png deleted file mode 100644 index db6fe3b1..00000000 Binary files a/public/textures/biomeswevegone/holly_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/holly_wood.png b/public/textures/biomeswevegone/holly_wood.png deleted file mode 100644 index a3fd8033..00000000 Binary files a/public/textures/biomeswevegone/holly_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/horseweed.png b/public/textures/biomeswevegone/horseweed.png deleted file mode 100644 index d9956df1..00000000 Binary files a/public/textures/biomeswevegone/horseweed.png and /dev/null differ diff --git a/public/textures/biomeswevegone/hydrangea_bush.png b/public/textures/biomeswevegone/hydrangea_bush.png deleted file mode 100644 index c7a2504b..00000000 Binary files a/public/textures/biomeswevegone/hydrangea_bush.png and /dev/null differ diff --git a/public/textures/biomeswevegone/hydrangea_hedge.png b/public/textures/biomeswevegone/hydrangea_hedge.png deleted file mode 100644 index 4462b48a..00000000 Binary files a/public/textures/biomeswevegone/hydrangea_hedge.png and /dev/null differ diff --git a/public/textures/biomeswevegone/imbued_blue_enchanted_wood.png b/public/textures/biomeswevegone/imbued_blue_enchanted_wood.png deleted file mode 100644 index ae9ace69..00000000 Binary files a/public/textures/biomeswevegone/imbued_blue_enchanted_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/imbued_green_enchanted_wood.png b/public/textures/biomeswevegone/imbued_green_enchanted_wood.png deleted file mode 100644 index 75b2d2c4..00000000 Binary files a/public/textures/biomeswevegone/imbued_green_enchanted_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/incan_lily.png b/public/textures/biomeswevegone/incan_lily.png deleted file mode 100644 index e52f2e0e..00000000 Binary files a/public/textures/biomeswevegone/incan_lily.png and /dev/null differ diff --git a/public/textures/biomeswevegone/indigo_jacaranda_bush.png b/public/textures/biomeswevegone/indigo_jacaranda_bush.png deleted file mode 100644 index 5bb8e87f..00000000 Binary files a/public/textures/biomeswevegone/indigo_jacaranda_bush.png and /dev/null differ diff --git a/public/textures/biomeswevegone/indigo_jacaranda_leaves.png b/public/textures/biomeswevegone/indigo_jacaranda_leaves.png deleted file mode 100644 index 64f50c9d..00000000 Binary files a/public/textures/biomeswevegone/indigo_jacaranda_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/indigo_jacaranda_sapling.png b/public/textures/biomeswevegone/indigo_jacaranda_sapling.png deleted file mode 100644 index b9138bdc..00000000 Binary files a/public/textures/biomeswevegone/indigo_jacaranda_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/iris.png b/public/textures/biomeswevegone/iris.png deleted file mode 100644 index 05007aae..00000000 Binary files a/public/textures/biomeswevegone/iris.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_boat.png b/public/textures/biomeswevegone/ironwood_boat.png deleted file mode 100644 index 6c7440e5..00000000 Binary files a/public/textures/biomeswevegone/ironwood_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_bookshelf.png b/public/textures/biomeswevegone/ironwood_bookshelf.png deleted file mode 100644 index d54e8a9b..00000000 Binary files a/public/textures/biomeswevegone/ironwood_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_button.png b/public/textures/biomeswevegone/ironwood_button.png deleted file mode 100644 index a241e97c..00000000 Binary files a/public/textures/biomeswevegone/ironwood_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_chest_boat.png b/public/textures/biomeswevegone/ironwood_chest_boat.png deleted file mode 100644 index 50f0c108..00000000 Binary files a/public/textures/biomeswevegone/ironwood_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_crafting_table.png b/public/textures/biomeswevegone/ironwood_crafting_table.png deleted file mode 100644 index 8d8f0e7f..00000000 Binary files a/public/textures/biomeswevegone/ironwood_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_door.png b/public/textures/biomeswevegone/ironwood_door.png deleted file mode 100644 index 82b565c6..00000000 Binary files a/public/textures/biomeswevegone/ironwood_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_fence.png b/public/textures/biomeswevegone/ironwood_fence.png deleted file mode 100644 index 42e8ae90..00000000 Binary files a/public/textures/biomeswevegone/ironwood_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_fence_gate.png b/public/textures/biomeswevegone/ironwood_fence_gate.png deleted file mode 100644 index 0668a6aa..00000000 Binary files a/public/textures/biomeswevegone/ironwood_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_hanging_sign.png b/public/textures/biomeswevegone/ironwood_hanging_sign.png deleted file mode 100644 index ed84e8b2..00000000 Binary files a/public/textures/biomeswevegone/ironwood_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_leaves.png b/public/textures/biomeswevegone/ironwood_leaves.png deleted file mode 100644 index cfc4b72a..00000000 Binary files a/public/textures/biomeswevegone/ironwood_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_log.png b/public/textures/biomeswevegone/ironwood_log.png deleted file mode 100644 index 2963fed4..00000000 Binary files a/public/textures/biomeswevegone/ironwood_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_planks.png b/public/textures/biomeswevegone/ironwood_planks.png deleted file mode 100644 index 0c11abf6..00000000 Binary files a/public/textures/biomeswevegone/ironwood_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_pressure_plate.png b/public/textures/biomeswevegone/ironwood_pressure_plate.png deleted file mode 100644 index b296e09e..00000000 Binary files a/public/textures/biomeswevegone/ironwood_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_sapling.png b/public/textures/biomeswevegone/ironwood_sapling.png deleted file mode 100644 index 125abff1..00000000 Binary files a/public/textures/biomeswevegone/ironwood_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_sign.png b/public/textures/biomeswevegone/ironwood_sign.png deleted file mode 100644 index 7e15e23e..00000000 Binary files a/public/textures/biomeswevegone/ironwood_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_slab.png b/public/textures/biomeswevegone/ironwood_slab.png deleted file mode 100644 index ed3d89ca..00000000 Binary files a/public/textures/biomeswevegone/ironwood_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_stairs.png b/public/textures/biomeswevegone/ironwood_stairs.png deleted file mode 100644 index beaa6fdd..00000000 Binary files a/public/textures/biomeswevegone/ironwood_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_trapdoor.png b/public/textures/biomeswevegone/ironwood_trapdoor.png deleted file mode 100644 index 15aced8d..00000000 Binary files a/public/textures/biomeswevegone/ironwood_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ironwood_wood.png b/public/textures/biomeswevegone/ironwood_wood.png deleted file mode 100644 index a7f09a30..00000000 Binary files a/public/textures/biomeswevegone/ironwood_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_boat.png b/public/textures/biomeswevegone/jacaranda_boat.png deleted file mode 100644 index be7ecf03..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_bookshelf.png b/public/textures/biomeswevegone/jacaranda_bookshelf.png deleted file mode 100644 index 8450806d..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_bush.png b/public/textures/biomeswevegone/jacaranda_bush.png deleted file mode 100644 index 6a11c0f0..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_bush.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_button.png b/public/textures/biomeswevegone/jacaranda_button.png deleted file mode 100644 index 701e0fa7..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_chest_boat.png b/public/textures/biomeswevegone/jacaranda_chest_boat.png deleted file mode 100644 index a6a1c152..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_crafting_table.png b/public/textures/biomeswevegone/jacaranda_crafting_table.png deleted file mode 100644 index 15506b6d..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_door.png b/public/textures/biomeswevegone/jacaranda_door.png deleted file mode 100644 index c712870c..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_fence.png b/public/textures/biomeswevegone/jacaranda_fence.png deleted file mode 100644 index d7d751e5..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_fence_gate.png b/public/textures/biomeswevegone/jacaranda_fence_gate.png deleted file mode 100644 index 4d39b540..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_hanging_sign.png b/public/textures/biomeswevegone/jacaranda_hanging_sign.png deleted file mode 100644 index 48ac5c0a..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_leaves.png b/public/textures/biomeswevegone/jacaranda_leaves.png deleted file mode 100644 index 8dc3f8fd..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_log.png b/public/textures/biomeswevegone/jacaranda_log.png deleted file mode 100644 index e68e138a..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_planks.png b/public/textures/biomeswevegone/jacaranda_planks.png deleted file mode 100644 index 53358392..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_pressure_plate.png b/public/textures/biomeswevegone/jacaranda_pressure_plate.png deleted file mode 100644 index b38ee456..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_sapling.png b/public/textures/biomeswevegone/jacaranda_sapling.png deleted file mode 100644 index ccfd28cf..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_sign.png b/public/textures/biomeswevegone/jacaranda_sign.png deleted file mode 100644 index 8188fefb..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_slab.png b/public/textures/biomeswevegone/jacaranda_slab.png deleted file mode 100644 index bb558bbc..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_stairs.png b/public/textures/biomeswevegone/jacaranda_stairs.png deleted file mode 100644 index 77cb7478..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_trapdoor.png b/public/textures/biomeswevegone/jacaranda_trapdoor.png deleted file mode 100644 index 0754e002..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/jacaranda_wood.png b/public/textures/biomeswevegone/jacaranda_wood.png deleted file mode 100644 index bd0a4294..00000000 Binary files a/public/textures/biomeswevegone/jacaranda_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/japanese_orchid.png b/public/textures/biomeswevegone/japanese_orchid.png deleted file mode 100644 index d71cf503..00000000 Binary files a/public/textures/biomeswevegone/japanese_orchid.png and /dev/null differ diff --git a/public/textures/biomeswevegone/kovan_flower.png b/public/textures/biomeswevegone/kovan_flower.png deleted file mode 100644 index ef101935..00000000 Binary files a/public/textures/biomeswevegone/kovan_flower.png and /dev/null differ diff --git a/public/textures/biomeswevegone/lazarus_bellflower.png b/public/textures/biomeswevegone/lazarus_bellflower.png deleted file mode 100644 index 0f92f962..00000000 Binary files a/public/textures/biomeswevegone/lazarus_bellflower.png and /dev/null differ diff --git a/public/textures/biomeswevegone/leaf_pile.png b/public/textures/biomeswevegone/leaf_pile.png deleted file mode 100644 index c5b378ae..00000000 Binary files a/public/textures/biomeswevegone/leaf_pile.png and /dev/null differ diff --git a/public/textures/biomeswevegone/lollipop_flower.png b/public/textures/biomeswevegone/lollipop_flower.png deleted file mode 100644 index 6841d717..00000000 Binary files a/public/textures/biomeswevegone/lollipop_flower.png and /dev/null differ diff --git a/public/textures/biomeswevegone/lush_dirt.png b/public/textures/biomeswevegone/lush_dirt.png deleted file mode 100644 index 198c0321..00000000 Binary files a/public/textures/biomeswevegone/lush_dirt.png and /dev/null differ diff --git a/public/textures/biomeswevegone/lush_dirt_path.png b/public/textures/biomeswevegone/lush_dirt_path.png deleted file mode 100644 index 789d62c0..00000000 Binary files a/public/textures/biomeswevegone/lush_dirt_path.png and /dev/null differ diff --git a/public/textures/biomeswevegone/lush_farmland.png b/public/textures/biomeswevegone/lush_farmland.png deleted file mode 100644 index 4ec8e663..00000000 Binary files a/public/textures/biomeswevegone/lush_farmland.png and /dev/null differ diff --git a/public/textures/biomeswevegone/lush_grass_block.png b/public/textures/biomeswevegone/lush_grass_block.png deleted file mode 100644 index b1c8dab7..00000000 Binary files a/public/textures/biomeswevegone/lush_grass_block.png and /dev/null differ diff --git a/public/textures/biomeswevegone/magenta_amaranth.png b/public/textures/biomeswevegone/magenta_amaranth.png deleted file mode 100644 index de9eca71..00000000 Binary files a/public/textures/biomeswevegone/magenta_amaranth.png and /dev/null differ diff --git a/public/textures/biomeswevegone/magenta_pitcher_plant.png b/public/textures/biomeswevegone/magenta_pitcher_plant.png deleted file mode 100644 index a68273c3..00000000 Binary files a/public/textures/biomeswevegone/magenta_pitcher_plant.png and /dev/null differ diff --git a/public/textures/biomeswevegone/magenta_tulip.png b/public/textures/biomeswevegone/magenta_tulip.png deleted file mode 100644 index b52ea048..00000000 Binary files a/public/textures/biomeswevegone/magenta_tulip.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_boat.png b/public/textures/biomeswevegone/mahogany_boat.png deleted file mode 100644 index e6213020..00000000 Binary files a/public/textures/biomeswevegone/mahogany_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_bookshelf.png b/public/textures/biomeswevegone/mahogany_bookshelf.png deleted file mode 100644 index 9ea743f5..00000000 Binary files a/public/textures/biomeswevegone/mahogany_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_button.png b/public/textures/biomeswevegone/mahogany_button.png deleted file mode 100644 index 93b86d26..00000000 Binary files a/public/textures/biomeswevegone/mahogany_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_chest_boat.png b/public/textures/biomeswevegone/mahogany_chest_boat.png deleted file mode 100644 index 45643401..00000000 Binary files a/public/textures/biomeswevegone/mahogany_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_crafting_table.png b/public/textures/biomeswevegone/mahogany_crafting_table.png deleted file mode 100644 index 4d3f8995..00000000 Binary files a/public/textures/biomeswevegone/mahogany_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_door.png b/public/textures/biomeswevegone/mahogany_door.png deleted file mode 100644 index 2c0a4113..00000000 Binary files a/public/textures/biomeswevegone/mahogany_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_fence.png b/public/textures/biomeswevegone/mahogany_fence.png deleted file mode 100644 index 6ff01fa1..00000000 Binary files a/public/textures/biomeswevegone/mahogany_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_fence_gate.png b/public/textures/biomeswevegone/mahogany_fence_gate.png deleted file mode 100644 index bee92f57..00000000 Binary files a/public/textures/biomeswevegone/mahogany_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_hanging_sign.png b/public/textures/biomeswevegone/mahogany_hanging_sign.png deleted file mode 100644 index 23f4b985..00000000 Binary files a/public/textures/biomeswevegone/mahogany_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_leaves.png b/public/textures/biomeswevegone/mahogany_leaves.png deleted file mode 100644 index f0da0a2d..00000000 Binary files a/public/textures/biomeswevegone/mahogany_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_log.png b/public/textures/biomeswevegone/mahogany_log.png deleted file mode 100644 index b96fcee7..00000000 Binary files a/public/textures/biomeswevegone/mahogany_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_planks.png b/public/textures/biomeswevegone/mahogany_planks.png deleted file mode 100644 index af6b3b14..00000000 Binary files a/public/textures/biomeswevegone/mahogany_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_pressure_plate.png b/public/textures/biomeswevegone/mahogany_pressure_plate.png deleted file mode 100644 index b8f88a12..00000000 Binary files a/public/textures/biomeswevegone/mahogany_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_sapling.png b/public/textures/biomeswevegone/mahogany_sapling.png deleted file mode 100644 index 033dc3f5..00000000 Binary files a/public/textures/biomeswevegone/mahogany_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_sign.png b/public/textures/biomeswevegone/mahogany_sign.png deleted file mode 100644 index c3dcd207..00000000 Binary files a/public/textures/biomeswevegone/mahogany_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_slab.png b/public/textures/biomeswevegone/mahogany_slab.png deleted file mode 100644 index 934cfcc2..00000000 Binary files a/public/textures/biomeswevegone/mahogany_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_stairs.png b/public/textures/biomeswevegone/mahogany_stairs.png deleted file mode 100644 index d9dd2157..00000000 Binary files a/public/textures/biomeswevegone/mahogany_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_trapdoor.png b/public/textures/biomeswevegone/mahogany_trapdoor.png deleted file mode 100644 index 0a2e305b..00000000 Binary files a/public/textures/biomeswevegone/mahogany_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mahogany_wood.png b/public/textures/biomeswevegone/mahogany_wood.png deleted file mode 100644 index 7d4825a1..00000000 Binary files a/public/textures/biomeswevegone/mahogany_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/man_o_war_bucket.png b/public/textures/biomeswevegone/man_o_war_bucket.png deleted file mode 100644 index c65a9189..00000000 Binary files a/public/textures/biomeswevegone/man_o_war_bucket.png and /dev/null differ diff --git a/public/textures/biomeswevegone/man_o_war_spawn_egg.png b/public/textures/biomeswevegone/man_o_war_spawn_egg.png deleted file mode 100644 index 695e26ff..00000000 Binary files a/public/textures/biomeswevegone/man_o_war_spawn_egg.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_boat.png b/public/textures/biomeswevegone/maple_boat.png deleted file mode 100644 index 65520f8f..00000000 Binary files a/public/textures/biomeswevegone/maple_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_bookshelf.png b/public/textures/biomeswevegone/maple_bookshelf.png deleted file mode 100644 index 1c810594..00000000 Binary files a/public/textures/biomeswevegone/maple_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_button.png b/public/textures/biomeswevegone/maple_button.png deleted file mode 100644 index 5ec8070f..00000000 Binary files a/public/textures/biomeswevegone/maple_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_chest_boat.png b/public/textures/biomeswevegone/maple_chest_boat.png deleted file mode 100644 index a75be9c0..00000000 Binary files a/public/textures/biomeswevegone/maple_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_crafting_table.png b/public/textures/biomeswevegone/maple_crafting_table.png deleted file mode 100644 index 8061f711..00000000 Binary files a/public/textures/biomeswevegone/maple_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_door.png b/public/textures/biomeswevegone/maple_door.png deleted file mode 100644 index 7b40b6e9..00000000 Binary files a/public/textures/biomeswevegone/maple_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_fence.png b/public/textures/biomeswevegone/maple_fence.png deleted file mode 100644 index 47acd4b1..00000000 Binary files a/public/textures/biomeswevegone/maple_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_fence_gate.png b/public/textures/biomeswevegone/maple_fence_gate.png deleted file mode 100644 index 69d1f488..00000000 Binary files a/public/textures/biomeswevegone/maple_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_hanging_sign.png b/public/textures/biomeswevegone/maple_hanging_sign.png deleted file mode 100644 index aee14154..00000000 Binary files a/public/textures/biomeswevegone/maple_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_leaves.png b/public/textures/biomeswevegone/maple_leaves.png deleted file mode 100644 index 7ea83913..00000000 Binary files a/public/textures/biomeswevegone/maple_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_log.png b/public/textures/biomeswevegone/maple_log.png deleted file mode 100644 index 1b02ac6f..00000000 Binary files a/public/textures/biomeswevegone/maple_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_planks.png b/public/textures/biomeswevegone/maple_planks.png deleted file mode 100644 index fc46b850..00000000 Binary files a/public/textures/biomeswevegone/maple_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_pressure_plate.png b/public/textures/biomeswevegone/maple_pressure_plate.png deleted file mode 100644 index 571acc0c..00000000 Binary files a/public/textures/biomeswevegone/maple_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_sapling.png b/public/textures/biomeswevegone/maple_sapling.png deleted file mode 100644 index f3e00794..00000000 Binary files a/public/textures/biomeswevegone/maple_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_sign.png b/public/textures/biomeswevegone/maple_sign.png deleted file mode 100644 index 22d54fbe..00000000 Binary files a/public/textures/biomeswevegone/maple_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_slab.png b/public/textures/biomeswevegone/maple_slab.png deleted file mode 100644 index 4a2ed1aa..00000000 Binary files a/public/textures/biomeswevegone/maple_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_stairs.png b/public/textures/biomeswevegone/maple_stairs.png deleted file mode 100644 index 8e6cf9a1..00000000 Binary files a/public/textures/biomeswevegone/maple_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_trapdoor.png b/public/textures/biomeswevegone/maple_trapdoor.png deleted file mode 100644 index a416d6a3..00000000 Binary files a/public/textures/biomeswevegone/maple_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/maple_wood.png b/public/textures/biomeswevegone/maple_wood.png deleted file mode 100644 index c6fa356f..00000000 Binary files a/public/textures/biomeswevegone/maple_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mini_cactus.png b/public/textures/biomeswevegone/mini_cactus.png deleted file mode 100644 index 5037165d..00000000 Binary files a/public/textures/biomeswevegone/mini_cactus.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mossy_red_rock_brick_slab.png b/public/textures/biomeswevegone/mossy_red_rock_brick_slab.png deleted file mode 100644 index 6f414ef4..00000000 Binary files a/public/textures/biomeswevegone/mossy_red_rock_brick_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mossy_red_rock_brick_stairs.png b/public/textures/biomeswevegone/mossy_red_rock_brick_stairs.png deleted file mode 100644 index e2c6b84c..00000000 Binary files a/public/textures/biomeswevegone/mossy_red_rock_brick_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mossy_red_rock_brick_wall.png b/public/textures/biomeswevegone/mossy_red_rock_brick_wall.png deleted file mode 100644 index 6319f776..00000000 Binary files a/public/textures/biomeswevegone/mossy_red_rock_brick_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mossy_red_rock_bricks.png b/public/textures/biomeswevegone/mossy_red_rock_bricks.png deleted file mode 100644 index c62f5d5f..00000000 Binary files a/public/textures/biomeswevegone/mossy_red_rock_bricks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mossy_stone.png b/public/textures/biomeswevegone/mossy_stone.png deleted file mode 100644 index abc660ef..00000000 Binary files a/public/textures/biomeswevegone/mossy_stone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mossy_stone_slab.png b/public/textures/biomeswevegone/mossy_stone_slab.png deleted file mode 100644 index 4e484d40..00000000 Binary files a/public/textures/biomeswevegone/mossy_stone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mossy_stone_stairs.png b/public/textures/biomeswevegone/mossy_stone_stairs.png deleted file mode 100644 index 6cf1418b..00000000 Binary files a/public/textures/biomeswevegone/mossy_stone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/mossy_stone_wall.png b/public/textures/biomeswevegone/mossy_stone_wall.png deleted file mode 100644 index f15d3051..00000000 Binary files a/public/textures/biomeswevegone/mossy_stone_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/music_disc_pixie_club.png b/public/textures/biomeswevegone/music_disc_pixie_club.png deleted file mode 100644 index ea45a7bb..00000000 Binary files a/public/textures/biomeswevegone/music_disc_pixie_club.png and /dev/null differ diff --git a/public/textures/biomeswevegone/oddion_bulb.png b/public/textures/biomeswevegone/oddion_bulb.png deleted file mode 100644 index 10c31ef8..00000000 Binary files a/public/textures/biomeswevegone/oddion_bulb.png and /dev/null differ diff --git a/public/textures/biomeswevegone/oddion_spawn_egg.png b/public/textures/biomeswevegone/oddion_spawn_egg.png deleted file mode 100644 index 981d745f..00000000 Binary files a/public/textures/biomeswevegone/oddion_spawn_egg.png and /dev/null differ diff --git a/public/textures/biomeswevegone/orange_amaranth.png b/public/textures/biomeswevegone/orange_amaranth.png deleted file mode 100644 index 538ec2a8..00000000 Binary files a/public/textures/biomeswevegone/orange_amaranth.png and /dev/null differ diff --git a/public/textures/biomeswevegone/orange_birch_leaves.png b/public/textures/biomeswevegone/orange_birch_leaves.png deleted file mode 100644 index 60c05937..00000000 Binary files a/public/textures/biomeswevegone/orange_birch_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/orange_birch_sapling.png b/public/textures/biomeswevegone/orange_birch_sapling.png deleted file mode 100644 index f814582e..00000000 Binary files a/public/textures/biomeswevegone/orange_birch_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/orange_daisy.png b/public/textures/biomeswevegone/orange_daisy.png deleted file mode 100644 index 112e2c32..00000000 Binary files a/public/textures/biomeswevegone/orange_daisy.png and /dev/null differ diff --git a/public/textures/biomeswevegone/orange_oak_leaves.png b/public/textures/biomeswevegone/orange_oak_leaves.png deleted file mode 100644 index 253bce65..00000000 Binary files a/public/textures/biomeswevegone/orange_oak_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/orange_oak_sapling.png b/public/textures/biomeswevegone/orange_oak_sapling.png deleted file mode 100644 index 7afbf552..00000000 Binary files a/public/textures/biomeswevegone/orange_oak_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/orange_spruce_leaves.png b/public/textures/biomeswevegone/orange_spruce_leaves.png deleted file mode 100644 index 203cd824..00000000 Binary files a/public/textures/biomeswevegone/orange_spruce_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/orange_spruce_sapling.png b/public/textures/biomeswevegone/orange_spruce_sapling.png deleted file mode 100644 index 880013e5..00000000 Binary files a/public/textures/biomeswevegone/orange_spruce_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/orchard_leaves.png b/public/textures/biomeswevegone/orchard_leaves.png deleted file mode 100644 index edf873f8..00000000 Binary files a/public/textures/biomeswevegone/orchard_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/orchard_sapling.png b/public/textures/biomeswevegone/orchard_sapling.png deleted file mode 100644 index 924a1e98..00000000 Binary files a/public/textures/biomeswevegone/orchard_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/osiria_rose.png b/public/textures/biomeswevegone/osiria_rose.png deleted file mode 100644 index ab1dc6af..00000000 Binary files a/public/textures/biomeswevegone/osiria_rose.png and /dev/null differ diff --git a/public/textures/biomeswevegone/overgrown_dacite.png b/public/textures/biomeswevegone/overgrown_dacite.png deleted file mode 100644 index 683686a1..00000000 Binary files a/public/textures/biomeswevegone/overgrown_dacite.png and /dev/null differ diff --git a/public/textures/biomeswevegone/overgrown_stone.png b/public/textures/biomeswevegone/overgrown_stone.png deleted file mode 100644 index 683686a1..00000000 Binary files a/public/textures/biomeswevegone/overgrown_stone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/packed_black_ice.png b/public/textures/biomeswevegone/packed_black_ice.png deleted file mode 100644 index 4b33c4e1..00000000 Binary files a/public/textures/biomeswevegone/packed_black_ice.png and /dev/null differ diff --git a/public/textures/biomeswevegone/packed_borealis_ice.png b/public/textures/biomeswevegone/packed_borealis_ice.png deleted file mode 100644 index 61328d6c..00000000 Binary files a/public/textures/biomeswevegone/packed_borealis_ice.png and /dev/null differ diff --git a/public/textures/biomeswevegone/packed_pale_mud.png b/public/textures/biomeswevegone/packed_pale_mud.png deleted file mode 100644 index 48480951..00000000 Binary files a/public/textures/biomeswevegone/packed_pale_mud.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pale_jack_o_lantern.png b/public/textures/biomeswevegone/pale_jack_o_lantern.png deleted file mode 100644 index 89bcec49..00000000 Binary files a/public/textures/biomeswevegone/pale_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pale_mud.png b/public/textures/biomeswevegone/pale_mud.png deleted file mode 100644 index a9411159..00000000 Binary files a/public/textures/biomeswevegone/pale_mud.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pale_mud_bricks.png b/public/textures/biomeswevegone/pale_mud_bricks.png deleted file mode 100644 index 3f7e4433..00000000 Binary files a/public/textures/biomeswevegone/pale_mud_bricks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pale_mud_bricks_slab.png b/public/textures/biomeswevegone/pale_mud_bricks_slab.png deleted file mode 100644 index bd9d6995..00000000 Binary files a/public/textures/biomeswevegone/pale_mud_bricks_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pale_mud_bricks_stairs.png b/public/textures/biomeswevegone/pale_mud_bricks_stairs.png deleted file mode 100644 index 4e37ef0d..00000000 Binary files a/public/textures/biomeswevegone/pale_mud_bricks_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pale_mud_bricks_wall.png b/public/textures/biomeswevegone/pale_mud_bricks_wall.png deleted file mode 100644 index 8325bb14..00000000 Binary files a/public/textures/biomeswevegone/pale_mud_bricks_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pale_pumpkin.png b/public/textures/biomeswevegone/pale_pumpkin.png deleted file mode 100644 index b05ecf2d..00000000 Binary files a/public/textures/biomeswevegone/pale_pumpkin.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pale_pumpkin_seeds.png b/public/textures/biomeswevegone/pale_pumpkin_seeds.png deleted file mode 100644 index fc9eb4b1..00000000 Binary files a/public/textures/biomeswevegone/pale_pumpkin_seeds.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_boat.png b/public/textures/biomeswevegone/palm_boat.png deleted file mode 100644 index 00f88804..00000000 Binary files a/public/textures/biomeswevegone/palm_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_bookshelf.png b/public/textures/biomeswevegone/palm_bookshelf.png deleted file mode 100644 index a195f1a5..00000000 Binary files a/public/textures/biomeswevegone/palm_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_button.png b/public/textures/biomeswevegone/palm_button.png deleted file mode 100644 index 40bc7991..00000000 Binary files a/public/textures/biomeswevegone/palm_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_chest_boat.png b/public/textures/biomeswevegone/palm_chest_boat.png deleted file mode 100644 index a13c47f7..00000000 Binary files a/public/textures/biomeswevegone/palm_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_crafting_table.png b/public/textures/biomeswevegone/palm_crafting_table.png deleted file mode 100644 index a53cb7c4..00000000 Binary files a/public/textures/biomeswevegone/palm_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_door.png b/public/textures/biomeswevegone/palm_door.png deleted file mode 100644 index 57f642d3..00000000 Binary files a/public/textures/biomeswevegone/palm_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_fence.png b/public/textures/biomeswevegone/palm_fence.png deleted file mode 100644 index 3c17924a..00000000 Binary files a/public/textures/biomeswevegone/palm_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_fence_gate.png b/public/textures/biomeswevegone/palm_fence_gate.png deleted file mode 100644 index 06bfb6d5..00000000 Binary files a/public/textures/biomeswevegone/palm_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_hanging_sign.png b/public/textures/biomeswevegone/palm_hanging_sign.png deleted file mode 100644 index 297a632b..00000000 Binary files a/public/textures/biomeswevegone/palm_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_leaves.png b/public/textures/biomeswevegone/palm_leaves.png deleted file mode 100644 index b1bb4ae2..00000000 Binary files a/public/textures/biomeswevegone/palm_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_log.png b/public/textures/biomeswevegone/palm_log.png deleted file mode 100644 index 56be9476..00000000 Binary files a/public/textures/biomeswevegone/palm_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_planks.png b/public/textures/biomeswevegone/palm_planks.png deleted file mode 100644 index 4084d0e0..00000000 Binary files a/public/textures/biomeswevegone/palm_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_pressure_plate.png b/public/textures/biomeswevegone/palm_pressure_plate.png deleted file mode 100644 index aea36147..00000000 Binary files a/public/textures/biomeswevegone/palm_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_sapling.png b/public/textures/biomeswevegone/palm_sapling.png deleted file mode 100644 index f011cf79..00000000 Binary files a/public/textures/biomeswevegone/palm_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_sign.png b/public/textures/biomeswevegone/palm_sign.png deleted file mode 100644 index b5f5021b..00000000 Binary files a/public/textures/biomeswevegone/palm_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_slab.png b/public/textures/biomeswevegone/palm_slab.png deleted file mode 100644 index 37bd739d..00000000 Binary files a/public/textures/biomeswevegone/palm_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_stairs.png b/public/textures/biomeswevegone/palm_stairs.png deleted file mode 100644 index 52832b50..00000000 Binary files a/public/textures/biomeswevegone/palm_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_trapdoor.png b/public/textures/biomeswevegone/palm_trapdoor.png deleted file mode 100644 index 4c80a048..00000000 Binary files a/public/textures/biomeswevegone/palm_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palm_wood.png b/public/textures/biomeswevegone/palm_wood.png deleted file mode 100644 index 20f2751b..00000000 Binary files a/public/textures/biomeswevegone/palm_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palo_verde_leaves.png b/public/textures/biomeswevegone/palo_verde_leaves.png deleted file mode 100644 index 82378daf..00000000 Binary files a/public/textures/biomeswevegone/palo_verde_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palo_verde_log.png b/public/textures/biomeswevegone/palo_verde_log.png deleted file mode 100644 index f95e2845..00000000 Binary files a/public/textures/biomeswevegone/palo_verde_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palo_verde_sapling.png b/public/textures/biomeswevegone/palo_verde_sapling.png deleted file mode 100644 index 8c04bf59..00000000 Binary files a/public/textures/biomeswevegone/palo_verde_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/palo_verde_wood.png b/public/textures/biomeswevegone/palo_verde_wood.png deleted file mode 100644 index e1f7034e..00000000 Binary files a/public/textures/biomeswevegone/palo_verde_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/peach_leather_flower.png b/public/textures/biomeswevegone/peach_leather_flower.png deleted file mode 100644 index afde2734..00000000 Binary files a/public/textures/biomeswevegone/peach_leather_flower.png and /dev/null differ diff --git a/public/textures/biomeswevegone/peat.png b/public/textures/biomeswevegone/peat.png deleted file mode 100644 index 581b95b2..00000000 Binary files a/public/textures/biomeswevegone/peat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_boat.png b/public/textures/biomeswevegone/pine_boat.png deleted file mode 100644 index 41504188..00000000 Binary files a/public/textures/biomeswevegone/pine_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_bookshelf.png b/public/textures/biomeswevegone/pine_bookshelf.png deleted file mode 100644 index 82af85c6..00000000 Binary files a/public/textures/biomeswevegone/pine_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_button.png b/public/textures/biomeswevegone/pine_button.png deleted file mode 100644 index af9f86bc..00000000 Binary files a/public/textures/biomeswevegone/pine_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_chest_boat.png b/public/textures/biomeswevegone/pine_chest_boat.png deleted file mode 100644 index 6c327e06..00000000 Binary files a/public/textures/biomeswevegone/pine_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_crafting_table.png b/public/textures/biomeswevegone/pine_crafting_table.png deleted file mode 100644 index 11eea9b0..00000000 Binary files a/public/textures/biomeswevegone/pine_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_door.png b/public/textures/biomeswevegone/pine_door.png deleted file mode 100644 index d639ff2c..00000000 Binary files a/public/textures/biomeswevegone/pine_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_fence.png b/public/textures/biomeswevegone/pine_fence.png deleted file mode 100644 index 9c424cf6..00000000 Binary files a/public/textures/biomeswevegone/pine_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_fence_gate.png b/public/textures/biomeswevegone/pine_fence_gate.png deleted file mode 100644 index 288bfd8f..00000000 Binary files a/public/textures/biomeswevegone/pine_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_hanging_sign.png b/public/textures/biomeswevegone/pine_hanging_sign.png deleted file mode 100644 index 49bb4315..00000000 Binary files a/public/textures/biomeswevegone/pine_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_leaves.png b/public/textures/biomeswevegone/pine_leaves.png deleted file mode 100644 index 2cc116b0..00000000 Binary files a/public/textures/biomeswevegone/pine_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_log.png b/public/textures/biomeswevegone/pine_log.png deleted file mode 100644 index f1eaa204..00000000 Binary files a/public/textures/biomeswevegone/pine_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_planks.png b/public/textures/biomeswevegone/pine_planks.png deleted file mode 100644 index 9edcd9c8..00000000 Binary files a/public/textures/biomeswevegone/pine_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_pressure_plate.png b/public/textures/biomeswevegone/pine_pressure_plate.png deleted file mode 100644 index 76acf0ba..00000000 Binary files a/public/textures/biomeswevegone/pine_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_sapling.png b/public/textures/biomeswevegone/pine_sapling.png deleted file mode 100644 index 92ec5eba..00000000 Binary files a/public/textures/biomeswevegone/pine_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_sign.png b/public/textures/biomeswevegone/pine_sign.png deleted file mode 100644 index 04b460b4..00000000 Binary files a/public/textures/biomeswevegone/pine_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_slab.png b/public/textures/biomeswevegone/pine_slab.png deleted file mode 100644 index 6b6057be..00000000 Binary files a/public/textures/biomeswevegone/pine_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_stairs.png b/public/textures/biomeswevegone/pine_stairs.png deleted file mode 100644 index f8324ad1..00000000 Binary files a/public/textures/biomeswevegone/pine_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_trapdoor.png b/public/textures/biomeswevegone/pine_trapdoor.png deleted file mode 100644 index 454eb81b..00000000 Binary files a/public/textures/biomeswevegone/pine_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pine_wood.png b/public/textures/biomeswevegone/pine_wood.png deleted file mode 100644 index 82b3c7a8..00000000 Binary files a/public/textures/biomeswevegone/pine_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pink_allium.png b/public/textures/biomeswevegone/pink_allium.png deleted file mode 100644 index 229d7738..00000000 Binary files a/public/textures/biomeswevegone/pink_allium.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pink_allium_flower_bush.png b/public/textures/biomeswevegone/pink_allium_flower_bush.png deleted file mode 100644 index 712fe5bc..00000000 Binary files a/public/textures/biomeswevegone/pink_allium_flower_bush.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pink_allium_petal_block.png b/public/textures/biomeswevegone/pink_allium_petal_block.png deleted file mode 100644 index 05e560fe..00000000 Binary files a/public/textures/biomeswevegone/pink_allium_petal_block.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pink_anemone.png b/public/textures/biomeswevegone/pink_anemone.png deleted file mode 100644 index b0e2ddcd..00000000 Binary files a/public/textures/biomeswevegone/pink_anemone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pink_daffodil.png b/public/textures/biomeswevegone/pink_daffodil.png deleted file mode 100644 index 468ccb25..00000000 Binary files a/public/textures/biomeswevegone/pink_daffodil.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pink_sand.png b/public/textures/biomeswevegone/pink_sand.png deleted file mode 100644 index 72da6b1b..00000000 Binary files a/public/textures/biomeswevegone/pink_sand.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pink_sandstone.png b/public/textures/biomeswevegone/pink_sandstone.png deleted file mode 100644 index ac0aae05..00000000 Binary files a/public/textures/biomeswevegone/pink_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pink_sandstone_slab.png b/public/textures/biomeswevegone/pink_sandstone_slab.png deleted file mode 100644 index 807217f6..00000000 Binary files a/public/textures/biomeswevegone/pink_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pink_sandstone_stairs.png b/public/textures/biomeswevegone/pink_sandstone_stairs.png deleted file mode 100644 index 94a9da99..00000000 Binary files a/public/textures/biomeswevegone/pink_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pink_sandstone_wall.png b/public/textures/biomeswevegone/pink_sandstone_wall.png deleted file mode 100644 index e30fea6d..00000000 Binary files a/public/textures/biomeswevegone/pink_sandstone_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/podzol_dacite.png b/public/textures/biomeswevegone/podzol_dacite.png deleted file mode 100644 index c9c14549..00000000 Binary files a/public/textures/biomeswevegone/podzol_dacite.png and /dev/null differ diff --git a/public/textures/biomeswevegone/poison_ivy.png b/public/textures/biomeswevegone/poison_ivy.png deleted file mode 100644 index 97d49c57..00000000 Binary files a/public/textures/biomeswevegone/poison_ivy.png and /dev/null differ diff --git a/public/textures/biomeswevegone/prairie_grass.png b/public/textures/biomeswevegone/prairie_grass.png deleted file mode 100644 index f616f386..00000000 Binary files a/public/textures/biomeswevegone/prairie_grass.png and /dev/null differ diff --git a/public/textures/biomeswevegone/prickly_pear_cactus.png b/public/textures/biomeswevegone/prickly_pear_cactus.png deleted file mode 100644 index 6508aea3..00000000 Binary files a/public/textures/biomeswevegone/prickly_pear_cactus.png and /dev/null differ diff --git a/public/textures/biomeswevegone/protea_flower.png b/public/textures/biomeswevegone/protea_flower.png deleted file mode 100644 index fd985233..00000000 Binary files a/public/textures/biomeswevegone/protea_flower.png and /dev/null differ diff --git a/public/textures/biomeswevegone/pumpkin_warden_spawn_egg.png b/public/textures/biomeswevegone/pumpkin_warden_spawn_egg.png deleted file mode 100644 index df5d6191..00000000 Binary files a/public/textures/biomeswevegone/pumpkin_warden_spawn_egg.png and /dev/null differ diff --git a/public/textures/biomeswevegone/purple_amaranth.png b/public/textures/biomeswevegone/purple_amaranth.png deleted file mode 100644 index a2652a8b..00000000 Binary files a/public/textures/biomeswevegone/purple_amaranth.png and /dev/null differ diff --git a/public/textures/biomeswevegone/purple_sage.png b/public/textures/biomeswevegone/purple_sage.png deleted file mode 100644 index 0b9eef76..00000000 Binary files a/public/textures/biomeswevegone/purple_sage.png and /dev/null differ diff --git a/public/textures/biomeswevegone/purple_sand.png b/public/textures/biomeswevegone/purple_sand.png deleted file mode 100644 index 9f1f9c93..00000000 Binary files a/public/textures/biomeswevegone/purple_sand.png and /dev/null differ diff --git a/public/textures/biomeswevegone/purple_sandstone.png b/public/textures/biomeswevegone/purple_sandstone.png deleted file mode 100644 index c9a4afba..00000000 Binary files a/public/textures/biomeswevegone/purple_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/purple_sandstone_slab.png b/public/textures/biomeswevegone/purple_sandstone_slab.png deleted file mode 100644 index bc9839eb..00000000 Binary files a/public/textures/biomeswevegone/purple_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/purple_sandstone_stairs.png b/public/textures/biomeswevegone/purple_sandstone_stairs.png deleted file mode 100644 index 7ac6a692..00000000 Binary files a/public/textures/biomeswevegone/purple_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/purple_sandstone_wall.png b/public/textures/biomeswevegone/purple_sandstone_wall.png deleted file mode 100644 index d3def464..00000000 Binary files a/public/textures/biomeswevegone/purple_sandstone_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/purple_tulip.png b/public/textures/biomeswevegone/purple_tulip.png deleted file mode 100644 index 86525d33..00000000 Binary files a/public/textures/biomeswevegone/purple_tulip.png and /dev/null differ diff --git a/public/textures/biomeswevegone/quicksand.png b/public/textures/biomeswevegone/quicksand.png deleted file mode 100644 index ed05c4c9..00000000 Binary files a/public/textures/biomeswevegone/quicksand.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_boat.png b/public/textures/biomeswevegone/rainbow_eucalyptus_boat.png deleted file mode 100644 index c43a4e69..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_bookshelf.png b/public/textures/biomeswevegone/rainbow_eucalyptus_bookshelf.png deleted file mode 100644 index 5d51cf4e..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_button.png b/public/textures/biomeswevegone/rainbow_eucalyptus_button.png deleted file mode 100644 index 5c231d12..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_chest_boat.png b/public/textures/biomeswevegone/rainbow_eucalyptus_chest_boat.png deleted file mode 100644 index a06835f5..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_crafting_table.png b/public/textures/biomeswevegone/rainbow_eucalyptus_crafting_table.png deleted file mode 100644 index f046925d..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_door.png b/public/textures/biomeswevegone/rainbow_eucalyptus_door.png deleted file mode 100644 index db360844..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_fence.png b/public/textures/biomeswevegone/rainbow_eucalyptus_fence.png deleted file mode 100644 index ad437cf4..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_fence_gate.png b/public/textures/biomeswevegone/rainbow_eucalyptus_fence_gate.png deleted file mode 100644 index e62ace52..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_hanging_sign.png b/public/textures/biomeswevegone/rainbow_eucalyptus_hanging_sign.png deleted file mode 100644 index 38986c90..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_leaves.png b/public/textures/biomeswevegone/rainbow_eucalyptus_leaves.png deleted file mode 100644 index abc38997..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_log.png b/public/textures/biomeswevegone/rainbow_eucalyptus_log.png deleted file mode 100644 index e73a5622..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_planks.png b/public/textures/biomeswevegone/rainbow_eucalyptus_planks.png deleted file mode 100644 index 26e34175..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_pressure_plate.png b/public/textures/biomeswevegone/rainbow_eucalyptus_pressure_plate.png deleted file mode 100644 index ad75bca5..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_sapling.png b/public/textures/biomeswevegone/rainbow_eucalyptus_sapling.png deleted file mode 100644 index d2addb59..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_sign.png b/public/textures/biomeswevegone/rainbow_eucalyptus_sign.png deleted file mode 100644 index d073f971..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_slab.png b/public/textures/biomeswevegone/rainbow_eucalyptus_slab.png deleted file mode 100644 index f5e59c31..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_stairs.png b/public/textures/biomeswevegone/rainbow_eucalyptus_stairs.png deleted file mode 100644 index c3352761..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_trapdoor.png b/public/textures/biomeswevegone/rainbow_eucalyptus_trapdoor.png deleted file mode 100644 index 7ea0e279..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rainbow_eucalyptus_wood.png b/public/textures/biomeswevegone/rainbow_eucalyptus_wood.png deleted file mode 100644 index f05e9b5b..00000000 Binary files a/public/textures/biomeswevegone/rainbow_eucalyptus_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_birch_leaves.png b/public/textures/biomeswevegone/red_birch_leaves.png deleted file mode 100644 index 7015d170..00000000 Binary files a/public/textures/biomeswevegone/red_birch_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_birch_sapling.png b/public/textures/biomeswevegone/red_birch_sapling.png deleted file mode 100644 index e2375103..00000000 Binary files a/public/textures/biomeswevegone/red_birch_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_glow_bottle.png b/public/textures/biomeswevegone/red_glow_bottle.png deleted file mode 100644 index ae4cbf8b..00000000 Binary files a/public/textures/biomeswevegone/red_glow_bottle.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_glowcane_powder.png b/public/textures/biomeswevegone/red_glowcane_powder.png deleted file mode 100644 index b34c7806..00000000 Binary files a/public/textures/biomeswevegone/red_glowcane_powder.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_glowcane_shoot.png b/public/textures/biomeswevegone/red_glowcane_shoot.png deleted file mode 100644 index 3ea9ae13..00000000 Binary files a/public/textures/biomeswevegone/red_glowcane_shoot.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_maple_leaves.png b/public/textures/biomeswevegone/red_maple_leaves.png deleted file mode 100644 index 2ba683af..00000000 Binary files a/public/textures/biomeswevegone/red_maple_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_maple_sapling.png b/public/textures/biomeswevegone/red_maple_sapling.png deleted file mode 100644 index e3450c74..00000000 Binary files a/public/textures/biomeswevegone/red_maple_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_oak_leaves.png b/public/textures/biomeswevegone/red_oak_leaves.png deleted file mode 100644 index 568e272b..00000000 Binary files a/public/textures/biomeswevegone/red_oak_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_oak_sapling.png b/public/textures/biomeswevegone/red_oak_sapling.png deleted file mode 100644 index b65f511a..00000000 Binary files a/public/textures/biomeswevegone/red_oak_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_quicksand.png b/public/textures/biomeswevegone/red_quicksand.png deleted file mode 100644 index e358bfc9..00000000 Binary files a/public/textures/biomeswevegone/red_quicksand.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_rock.png b/public/textures/biomeswevegone/red_rock.png deleted file mode 100644 index b5f5931d..00000000 Binary files a/public/textures/biomeswevegone/red_rock.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_rock_brick_slab.png b/public/textures/biomeswevegone/red_rock_brick_slab.png deleted file mode 100644 index 000c654b..00000000 Binary files a/public/textures/biomeswevegone/red_rock_brick_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_rock_brick_stairs.png b/public/textures/biomeswevegone/red_rock_brick_stairs.png deleted file mode 100644 index 23dec35f..00000000 Binary files a/public/textures/biomeswevegone/red_rock_brick_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_rock_brick_wall.png b/public/textures/biomeswevegone/red_rock_brick_wall.png deleted file mode 100644 index ee1f09c2..00000000 Binary files a/public/textures/biomeswevegone/red_rock_brick_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_rock_bricks.png b/public/textures/biomeswevegone/red_rock_bricks.png deleted file mode 100644 index ddbaca3d..00000000 Binary files a/public/textures/biomeswevegone/red_rock_bricks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_rock_slab.png b/public/textures/biomeswevegone/red_rock_slab.png deleted file mode 100644 index 4881ce46..00000000 Binary files a/public/textures/biomeswevegone/red_rock_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_rock_stairs.png b/public/textures/biomeswevegone/red_rock_stairs.png deleted file mode 100644 index 8e0c3365..00000000 Binary files a/public/textures/biomeswevegone/red_rock_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_rock_wall.png b/public/textures/biomeswevegone/red_rock_wall.png deleted file mode 100644 index b9ef9279..00000000 Binary files a/public/textures/biomeswevegone/red_rock_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_spruce_leaves.png b/public/textures/biomeswevegone/red_spruce_leaves.png deleted file mode 100644 index 1f0f43c8..00000000 Binary files a/public/textures/biomeswevegone/red_spruce_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/red_spruce_sapling.png b/public/textures/biomeswevegone/red_spruce_sapling.png deleted file mode 100644 index 2378c874..00000000 Binary files a/public/textures/biomeswevegone/red_spruce_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_boat.png b/public/textures/biomeswevegone/redwood_boat.png deleted file mode 100644 index 807885ba..00000000 Binary files a/public/textures/biomeswevegone/redwood_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_bookshelf.png b/public/textures/biomeswevegone/redwood_bookshelf.png deleted file mode 100644 index 1344a4a1..00000000 Binary files a/public/textures/biomeswevegone/redwood_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_button.png b/public/textures/biomeswevegone/redwood_button.png deleted file mode 100644 index ba20bb67..00000000 Binary files a/public/textures/biomeswevegone/redwood_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_chest_boat.png b/public/textures/biomeswevegone/redwood_chest_boat.png deleted file mode 100644 index d356da57..00000000 Binary files a/public/textures/biomeswevegone/redwood_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_crafting_table.png b/public/textures/biomeswevegone/redwood_crafting_table.png deleted file mode 100644 index 3911538c..00000000 Binary files a/public/textures/biomeswevegone/redwood_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_door.png b/public/textures/biomeswevegone/redwood_door.png deleted file mode 100644 index fd6861dc..00000000 Binary files a/public/textures/biomeswevegone/redwood_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_fence.png b/public/textures/biomeswevegone/redwood_fence.png deleted file mode 100644 index 10a630d0..00000000 Binary files a/public/textures/biomeswevegone/redwood_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_fence_gate.png b/public/textures/biomeswevegone/redwood_fence_gate.png deleted file mode 100644 index d1e03226..00000000 Binary files a/public/textures/biomeswevegone/redwood_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_hanging_sign.png b/public/textures/biomeswevegone/redwood_hanging_sign.png deleted file mode 100644 index ec1bd219..00000000 Binary files a/public/textures/biomeswevegone/redwood_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_leaves.png b/public/textures/biomeswevegone/redwood_leaves.png deleted file mode 100644 index e1bd1ca4..00000000 Binary files a/public/textures/biomeswevegone/redwood_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_log.png b/public/textures/biomeswevegone/redwood_log.png deleted file mode 100644 index afe68d28..00000000 Binary files a/public/textures/biomeswevegone/redwood_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_planks.png b/public/textures/biomeswevegone/redwood_planks.png deleted file mode 100644 index 2e001bb9..00000000 Binary files a/public/textures/biomeswevegone/redwood_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_pressure_plate.png b/public/textures/biomeswevegone/redwood_pressure_plate.png deleted file mode 100644 index 2513a72c..00000000 Binary files a/public/textures/biomeswevegone/redwood_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_sapling.png b/public/textures/biomeswevegone/redwood_sapling.png deleted file mode 100644 index f87349f6..00000000 Binary files a/public/textures/biomeswevegone/redwood_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_sign.png b/public/textures/biomeswevegone/redwood_sign.png deleted file mode 100644 index 1a341231..00000000 Binary files a/public/textures/biomeswevegone/redwood_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_slab.png b/public/textures/biomeswevegone/redwood_slab.png deleted file mode 100644 index 8da18cf1..00000000 Binary files a/public/textures/biomeswevegone/redwood_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_stairs.png b/public/textures/biomeswevegone/redwood_stairs.png deleted file mode 100644 index 5a59745b..00000000 Binary files a/public/textures/biomeswevegone/redwood_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_trapdoor.png b/public/textures/biomeswevegone/redwood_trapdoor.png deleted file mode 100644 index c1cc962f..00000000 Binary files a/public/textures/biomeswevegone/redwood_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/redwood_wood.png b/public/textures/biomeswevegone/redwood_wood.png deleted file mode 100644 index 8c919ce3..00000000 Binary files a/public/textures/biomeswevegone/redwood_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/richea.png b/public/textures/biomeswevegone/richea.png deleted file mode 100644 index 04898bbd..00000000 Binary files a/public/textures/biomeswevegone/richea.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ripe_baobab_leaves.png b/public/textures/biomeswevegone/ripe_baobab_leaves.png deleted file mode 100644 index 7e299b41..00000000 Binary files a/public/textures/biomeswevegone/ripe_baobab_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ripe_orchard_leaves.png b/public/textures/biomeswevegone/ripe_orchard_leaves.png deleted file mode 100644 index 4863ee0e..00000000 Binary files a/public/textures/biomeswevegone/ripe_orchard_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/ripe_yucca_leaves.png b/public/textures/biomeswevegone/ripe_yucca_leaves.png deleted file mode 100644 index d7938d3e..00000000 Binary files a/public/textures/biomeswevegone/ripe_yucca_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rocky_stone.png b/public/textures/biomeswevegone/rocky_stone.png deleted file mode 100644 index 3cc96e67..00000000 Binary files a/public/textures/biomeswevegone/rocky_stone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rocky_stone_slab.png b/public/textures/biomeswevegone/rocky_stone_slab.png deleted file mode 100644 index 68db3021..00000000 Binary files a/public/textures/biomeswevegone/rocky_stone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rocky_stone_stairs.png b/public/textures/biomeswevegone/rocky_stone_stairs.png deleted file mode 100644 index bc0567d0..00000000 Binary files a/public/textures/biomeswevegone/rocky_stone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rocky_stone_wall.png b/public/textures/biomeswevegone/rocky_stone_wall.png deleted file mode 100644 index 6ed7c054..00000000 Binary files a/public/textures/biomeswevegone/rocky_stone_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rose.png b/public/textures/biomeswevegone/rose.png deleted file mode 100644 index cf38ac09..00000000 Binary files a/public/textures/biomeswevegone/rose.png and /dev/null differ diff --git a/public/textures/biomeswevegone/rose_petal_block.png b/public/textures/biomeswevegone/rose_petal_block.png deleted file mode 100644 index d0044844..00000000 Binary files a/public/textures/biomeswevegone/rose_petal_block.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_boat.png b/public/textures/biomeswevegone/sakura_boat.png deleted file mode 100644 index c00bd5b0..00000000 Binary files a/public/textures/biomeswevegone/sakura_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_bookshelf.png b/public/textures/biomeswevegone/sakura_bookshelf.png deleted file mode 100644 index c02b4f22..00000000 Binary files a/public/textures/biomeswevegone/sakura_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_button.png b/public/textures/biomeswevegone/sakura_button.png deleted file mode 100644 index a24fc9a6..00000000 Binary files a/public/textures/biomeswevegone/sakura_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_chest_boat.png b/public/textures/biomeswevegone/sakura_chest_boat.png deleted file mode 100644 index c68a07f4..00000000 Binary files a/public/textures/biomeswevegone/sakura_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_crafting_table.png b/public/textures/biomeswevegone/sakura_crafting_table.png deleted file mode 100644 index fa514980..00000000 Binary files a/public/textures/biomeswevegone/sakura_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_door.png b/public/textures/biomeswevegone/sakura_door.png deleted file mode 100644 index 62135586..00000000 Binary files a/public/textures/biomeswevegone/sakura_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_fence.png b/public/textures/biomeswevegone/sakura_fence.png deleted file mode 100644 index 87715738..00000000 Binary files a/public/textures/biomeswevegone/sakura_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_fence_gate.png b/public/textures/biomeswevegone/sakura_fence_gate.png deleted file mode 100644 index 30b92943..00000000 Binary files a/public/textures/biomeswevegone/sakura_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_hanging_sign.png b/public/textures/biomeswevegone/sakura_hanging_sign.png deleted file mode 100644 index b035f0a6..00000000 Binary files a/public/textures/biomeswevegone/sakura_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_log.png b/public/textures/biomeswevegone/sakura_log.png deleted file mode 100644 index 55d6caf4..00000000 Binary files a/public/textures/biomeswevegone/sakura_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_planks.png b/public/textures/biomeswevegone/sakura_planks.png deleted file mode 100644 index d3e88788..00000000 Binary files a/public/textures/biomeswevegone/sakura_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_pressure_plate.png b/public/textures/biomeswevegone/sakura_pressure_plate.png deleted file mode 100644 index 61c4afba..00000000 Binary files a/public/textures/biomeswevegone/sakura_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_sign.png b/public/textures/biomeswevegone/sakura_sign.png deleted file mode 100644 index badffe61..00000000 Binary files a/public/textures/biomeswevegone/sakura_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_slab.png b/public/textures/biomeswevegone/sakura_slab.png deleted file mode 100644 index a57ddb7c..00000000 Binary files a/public/textures/biomeswevegone/sakura_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_stairs.png b/public/textures/biomeswevegone/sakura_stairs.png deleted file mode 100644 index ca76ef17..00000000 Binary files a/public/textures/biomeswevegone/sakura_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_trapdoor.png b/public/textures/biomeswevegone/sakura_trapdoor.png deleted file mode 100644 index e3462c93..00000000 Binary files a/public/textures/biomeswevegone/sakura_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sakura_wood.png b/public/textures/biomeswevegone/sakura_wood.png deleted file mode 100644 index 6828389b..00000000 Binary files a/public/textures/biomeswevegone/sakura_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sandy_dirt.png b/public/textures/biomeswevegone/sandy_dirt.png deleted file mode 100644 index d54ac635..00000000 Binary files a/public/textures/biomeswevegone/sandy_dirt.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sandy_dirt_path.png b/public/textures/biomeswevegone/sandy_dirt_path.png deleted file mode 100644 index 789d62c0..00000000 Binary files a/public/textures/biomeswevegone/sandy_dirt_path.png and /dev/null differ diff --git a/public/textures/biomeswevegone/sandy_farmland.png b/public/textures/biomeswevegone/sandy_farmland.png deleted file mode 100644 index e24401e9..00000000 Binary files a/public/textures/biomeswevegone/sandy_farmland.png and /dev/null differ diff --git a/public/textures/biomeswevegone/shelf_fungi.png b/public/textures/biomeswevegone/shelf_fungi.png deleted file mode 100644 index 62b00609..00000000 Binary files a/public/textures/biomeswevegone/shelf_fungi.png and /dev/null differ diff --git a/public/textures/biomeswevegone/shrub.png b/public/textures/biomeswevegone/shrub.png deleted file mode 100644 index c62cbbdf..00000000 Binary files a/public/textures/biomeswevegone/shrub.png and /dev/null differ diff --git a/public/textures/biomeswevegone/silver_maple_leaves.png b/public/textures/biomeswevegone/silver_maple_leaves.png deleted file mode 100644 index 95834ce5..00000000 Binary files a/public/textures/biomeswevegone/silver_maple_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/silver_maple_sapling.png b/public/textures/biomeswevegone/silver_maple_sapling.png deleted file mode 100644 index 7d0d81b8..00000000 Binary files a/public/textures/biomeswevegone/silver_maple_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/silver_vase_flower.png b/public/textures/biomeswevegone/silver_vase_flower.png deleted file mode 100644 index 1c1c90ce..00000000 Binary files a/public/textures/biomeswevegone/silver_vase_flower.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_boat.png b/public/textures/biomeswevegone/skyris_boat.png deleted file mode 100644 index 70ae6e1c..00000000 Binary files a/public/textures/biomeswevegone/skyris_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_bookshelf.png b/public/textures/biomeswevegone/skyris_bookshelf.png deleted file mode 100644 index 9075077c..00000000 Binary files a/public/textures/biomeswevegone/skyris_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_button.png b/public/textures/biomeswevegone/skyris_button.png deleted file mode 100644 index 620aaa87..00000000 Binary files a/public/textures/biomeswevegone/skyris_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_chest_boat.png b/public/textures/biomeswevegone/skyris_chest_boat.png deleted file mode 100644 index 1b8fe464..00000000 Binary files a/public/textures/biomeswevegone/skyris_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_crafting_table.png b/public/textures/biomeswevegone/skyris_crafting_table.png deleted file mode 100644 index 786e8265..00000000 Binary files a/public/textures/biomeswevegone/skyris_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_door.png b/public/textures/biomeswevegone/skyris_door.png deleted file mode 100644 index 6707a347..00000000 Binary files a/public/textures/biomeswevegone/skyris_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_fence.png b/public/textures/biomeswevegone/skyris_fence.png deleted file mode 100644 index 675a8c9e..00000000 Binary files a/public/textures/biomeswevegone/skyris_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_fence_gate.png b/public/textures/biomeswevegone/skyris_fence_gate.png deleted file mode 100644 index 7b215a95..00000000 Binary files a/public/textures/biomeswevegone/skyris_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_hanging_sign.png b/public/textures/biomeswevegone/skyris_hanging_sign.png deleted file mode 100644 index 5cce342d..00000000 Binary files a/public/textures/biomeswevegone/skyris_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_leaves.png b/public/textures/biomeswevegone/skyris_leaves.png deleted file mode 100644 index 04dc1d81..00000000 Binary files a/public/textures/biomeswevegone/skyris_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_log.png b/public/textures/biomeswevegone/skyris_log.png deleted file mode 100644 index c3190f16..00000000 Binary files a/public/textures/biomeswevegone/skyris_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_planks.png b/public/textures/biomeswevegone/skyris_planks.png deleted file mode 100644 index 55ca2617..00000000 Binary files a/public/textures/biomeswevegone/skyris_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_pressure_plate.png b/public/textures/biomeswevegone/skyris_pressure_plate.png deleted file mode 100644 index 64905df0..00000000 Binary files a/public/textures/biomeswevegone/skyris_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_sapling.png b/public/textures/biomeswevegone/skyris_sapling.png deleted file mode 100644 index 8b272722..00000000 Binary files a/public/textures/biomeswevegone/skyris_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_sign.png b/public/textures/biomeswevegone/skyris_sign.png deleted file mode 100644 index f951a9e3..00000000 Binary files a/public/textures/biomeswevegone/skyris_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_slab.png b/public/textures/biomeswevegone/skyris_slab.png deleted file mode 100644 index f0637ca5..00000000 Binary files a/public/textures/biomeswevegone/skyris_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_stairs.png b/public/textures/biomeswevegone/skyris_stairs.png deleted file mode 100644 index 88fa63bc..00000000 Binary files a/public/textures/biomeswevegone/skyris_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_trapdoor.png b/public/textures/biomeswevegone/skyris_trapdoor.png deleted file mode 100644 index 5ee8e171..00000000 Binary files a/public/textures/biomeswevegone/skyris_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_vine.png b/public/textures/biomeswevegone/skyris_vine.png deleted file mode 100644 index cff218a4..00000000 Binary files a/public/textures/biomeswevegone/skyris_vine.png and /dev/null differ diff --git a/public/textures/biomeswevegone/skyris_wood.png b/public/textures/biomeswevegone/skyris_wood.png deleted file mode 100644 index 3bd70e68..00000000 Binary files a/public/textures/biomeswevegone/skyris_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_black_sandstone.png b/public/textures/biomeswevegone/smooth_black_sandstone.png deleted file mode 100644 index bab3d2eb..00000000 Binary files a/public/textures/biomeswevegone/smooth_black_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_black_sandstone_slab.png b/public/textures/biomeswevegone/smooth_black_sandstone_slab.png deleted file mode 100644 index b774d523..00000000 Binary files a/public/textures/biomeswevegone/smooth_black_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_black_sandstone_stairs.png b/public/textures/biomeswevegone/smooth_black_sandstone_stairs.png deleted file mode 100644 index ad73ad3c..00000000 Binary files a/public/textures/biomeswevegone/smooth_black_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_blue_sandstone.png b/public/textures/biomeswevegone/smooth_blue_sandstone.png deleted file mode 100644 index 21c009d7..00000000 Binary files a/public/textures/biomeswevegone/smooth_blue_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_blue_sandstone_slab.png b/public/textures/biomeswevegone/smooth_blue_sandstone_slab.png deleted file mode 100644 index 6cf7048b..00000000 Binary files a/public/textures/biomeswevegone/smooth_blue_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_blue_sandstone_stairs.png b/public/textures/biomeswevegone/smooth_blue_sandstone_stairs.png deleted file mode 100644 index 6a2276ab..00000000 Binary files a/public/textures/biomeswevegone/smooth_blue_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_pink_sandstone.png b/public/textures/biomeswevegone/smooth_pink_sandstone.png deleted file mode 100644 index db296030..00000000 Binary files a/public/textures/biomeswevegone/smooth_pink_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_pink_sandstone_slab.png b/public/textures/biomeswevegone/smooth_pink_sandstone_slab.png deleted file mode 100644 index 20165787..00000000 Binary files a/public/textures/biomeswevegone/smooth_pink_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_pink_sandstone_stairs.png b/public/textures/biomeswevegone/smooth_pink_sandstone_stairs.png deleted file mode 100644 index 722e8f36..00000000 Binary files a/public/textures/biomeswevegone/smooth_pink_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_purple_sandstone.png b/public/textures/biomeswevegone/smooth_purple_sandstone.png deleted file mode 100644 index 55c54d8f..00000000 Binary files a/public/textures/biomeswevegone/smooth_purple_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_purple_sandstone_slab.png b/public/textures/biomeswevegone/smooth_purple_sandstone_slab.png deleted file mode 100644 index 579fec0e..00000000 Binary files a/public/textures/biomeswevegone/smooth_purple_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_purple_sandstone_stairs.png b/public/textures/biomeswevegone/smooth_purple_sandstone_stairs.png deleted file mode 100644 index 07d83050..00000000 Binary files a/public/textures/biomeswevegone/smooth_purple_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_white_sandstone.png b/public/textures/biomeswevegone/smooth_white_sandstone.png deleted file mode 100644 index 1d654d3b..00000000 Binary files a/public/textures/biomeswevegone/smooth_white_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_white_sandstone_slab.png b/public/textures/biomeswevegone/smooth_white_sandstone_slab.png deleted file mode 100644 index a69e263a..00000000 Binary files a/public/textures/biomeswevegone/smooth_white_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_white_sandstone_stairs.png b/public/textures/biomeswevegone/smooth_white_sandstone_stairs.png deleted file mode 100644 index 60f11754..00000000 Binary files a/public/textures/biomeswevegone/smooth_white_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_windswept_sandstone.png b/public/textures/biomeswevegone/smooth_windswept_sandstone.png deleted file mode 100644 index 8e4e10fb..00000000 Binary files a/public/textures/biomeswevegone/smooth_windswept_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_windswept_sandstone_slab.png b/public/textures/biomeswevegone/smooth_windswept_sandstone_slab.png deleted file mode 100644 index 46a01067..00000000 Binary files a/public/textures/biomeswevegone/smooth_windswept_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/smooth_windswept_sandstone_stairs.png b/public/textures/biomeswevegone/smooth_windswept_sandstone_stairs.png deleted file mode 100644 index aad21784..00000000 Binary files a/public/textures/biomeswevegone/smooth_windswept_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/snowdrops.png b/public/textures/biomeswevegone/snowdrops.png deleted file mode 100644 index a90a503c..00000000 Binary files a/public/textures/biomeswevegone/snowdrops.png and /dev/null differ diff --git a/public/textures/biomeswevegone/soul_fruit.png b/public/textures/biomeswevegone/soul_fruit.png deleted file mode 100644 index 2e8814c4..00000000 Binary files a/public/textures/biomeswevegone/soul_fruit.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_boat.png b/public/textures/biomeswevegone/spirit_boat.png deleted file mode 100644 index 2fbef4be..00000000 Binary files a/public/textures/biomeswevegone/spirit_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_bookshelf.png b/public/textures/biomeswevegone/spirit_bookshelf.png deleted file mode 100644 index 15032a69..00000000 Binary files a/public/textures/biomeswevegone/spirit_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_button.png b/public/textures/biomeswevegone/spirit_button.png deleted file mode 100644 index 55d6d0d5..00000000 Binary files a/public/textures/biomeswevegone/spirit_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_chest_boat.png b/public/textures/biomeswevegone/spirit_chest_boat.png deleted file mode 100644 index fef3ceed..00000000 Binary files a/public/textures/biomeswevegone/spirit_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_crafting_table.png b/public/textures/biomeswevegone/spirit_crafting_table.png deleted file mode 100644 index 432b16f5..00000000 Binary files a/public/textures/biomeswevegone/spirit_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_door.png b/public/textures/biomeswevegone/spirit_door.png deleted file mode 100644 index fc6efa4f..00000000 Binary files a/public/textures/biomeswevegone/spirit_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_fence.png b/public/textures/biomeswevegone/spirit_fence.png deleted file mode 100644 index 2b05c411..00000000 Binary files a/public/textures/biomeswevegone/spirit_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_fence_gate.png b/public/textures/biomeswevegone/spirit_fence_gate.png deleted file mode 100644 index 16ae1d52..00000000 Binary files a/public/textures/biomeswevegone/spirit_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_hanging_sign.png b/public/textures/biomeswevegone/spirit_hanging_sign.png deleted file mode 100644 index 2755b356..00000000 Binary files a/public/textures/biomeswevegone/spirit_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_leaves.png b/public/textures/biomeswevegone/spirit_leaves.png deleted file mode 100644 index 258c6339..00000000 Binary files a/public/textures/biomeswevegone/spirit_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_log.png b/public/textures/biomeswevegone/spirit_log.png deleted file mode 100644 index f106dc48..00000000 Binary files a/public/textures/biomeswevegone/spirit_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_planks.png b/public/textures/biomeswevegone/spirit_planks.png deleted file mode 100644 index 94f06035..00000000 Binary files a/public/textures/biomeswevegone/spirit_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_pressure_plate.png b/public/textures/biomeswevegone/spirit_pressure_plate.png deleted file mode 100644 index 8221820a..00000000 Binary files a/public/textures/biomeswevegone/spirit_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_roots.png b/public/textures/biomeswevegone/spirit_roots.png deleted file mode 100644 index 0b1c3d7f..00000000 Binary files a/public/textures/biomeswevegone/spirit_roots.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_sapling.png b/public/textures/biomeswevegone/spirit_sapling.png deleted file mode 100644 index 9564278f..00000000 Binary files a/public/textures/biomeswevegone/spirit_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_sign.png b/public/textures/biomeswevegone/spirit_sign.png deleted file mode 100644 index de0c780d..00000000 Binary files a/public/textures/biomeswevegone/spirit_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_slab.png b/public/textures/biomeswevegone/spirit_slab.png deleted file mode 100644 index 3d74ecec..00000000 Binary files a/public/textures/biomeswevegone/spirit_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_stairs.png b/public/textures/biomeswevegone/spirit_stairs.png deleted file mode 100644 index 9fea1788..00000000 Binary files a/public/textures/biomeswevegone/spirit_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_trapdoor.png b/public/textures/biomeswevegone/spirit_trapdoor.png deleted file mode 100644 index 32e13d21..00000000 Binary files a/public/textures/biomeswevegone/spirit_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/spirit_wood.png b/public/textures/biomeswevegone/spirit_wood.png deleted file mode 100644 index 3fc4f92f..00000000 Binary files a/public/textures/biomeswevegone/spirit_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_aspen_log.png b/public/textures/biomeswevegone/stripped_aspen_log.png deleted file mode 100644 index 4692770e..00000000 Binary files a/public/textures/biomeswevegone/stripped_aspen_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_aspen_wood.png b/public/textures/biomeswevegone/stripped_aspen_wood.png deleted file mode 100644 index 16b09a9d..00000000 Binary files a/public/textures/biomeswevegone/stripped_aspen_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_baobab_log.png b/public/textures/biomeswevegone/stripped_baobab_log.png deleted file mode 100644 index b30aa912..00000000 Binary files a/public/textures/biomeswevegone/stripped_baobab_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_baobab_wood.png b/public/textures/biomeswevegone/stripped_baobab_wood.png deleted file mode 100644 index 2d3ba7c5..00000000 Binary files a/public/textures/biomeswevegone/stripped_baobab_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_blue_enchanted_log.png b/public/textures/biomeswevegone/stripped_blue_enchanted_log.png deleted file mode 100644 index 6ef222d6..00000000 Binary files a/public/textures/biomeswevegone/stripped_blue_enchanted_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_blue_enchanted_wood.png b/public/textures/biomeswevegone/stripped_blue_enchanted_wood.png deleted file mode 100644 index 7d870108..00000000 Binary files a/public/textures/biomeswevegone/stripped_blue_enchanted_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_cika_log.png b/public/textures/biomeswevegone/stripped_cika_log.png deleted file mode 100644 index 315777bf..00000000 Binary files a/public/textures/biomeswevegone/stripped_cika_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_cika_wood.png b/public/textures/biomeswevegone/stripped_cika_wood.png deleted file mode 100644 index 6e21cd5c..00000000 Binary files a/public/textures/biomeswevegone/stripped_cika_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_cypress_log.png b/public/textures/biomeswevegone/stripped_cypress_log.png deleted file mode 100644 index 87310441..00000000 Binary files a/public/textures/biomeswevegone/stripped_cypress_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_cypress_wood.png b/public/textures/biomeswevegone/stripped_cypress_wood.png deleted file mode 100644 index e58f9644..00000000 Binary files a/public/textures/biomeswevegone/stripped_cypress_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_ebony_log.png b/public/textures/biomeswevegone/stripped_ebony_log.png deleted file mode 100644 index 6b257208..00000000 Binary files a/public/textures/biomeswevegone/stripped_ebony_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_ebony_wood.png b/public/textures/biomeswevegone/stripped_ebony_wood.png deleted file mode 100644 index 98da099d..00000000 Binary files a/public/textures/biomeswevegone/stripped_ebony_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_fir_log.png b/public/textures/biomeswevegone/stripped_fir_log.png deleted file mode 100644 index 4157e1de..00000000 Binary files a/public/textures/biomeswevegone/stripped_fir_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_fir_wood.png b/public/textures/biomeswevegone/stripped_fir_wood.png deleted file mode 100644 index 2cf53100..00000000 Binary files a/public/textures/biomeswevegone/stripped_fir_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_florus_stem.png b/public/textures/biomeswevegone/stripped_florus_stem.png deleted file mode 100644 index 1f8558ff..00000000 Binary files a/public/textures/biomeswevegone/stripped_florus_stem.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_florus_wood.png b/public/textures/biomeswevegone/stripped_florus_wood.png deleted file mode 100644 index 3d064070..00000000 Binary files a/public/textures/biomeswevegone/stripped_florus_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_green_enchanted_log.png b/public/textures/biomeswevegone/stripped_green_enchanted_log.png deleted file mode 100644 index 042ec42d..00000000 Binary files a/public/textures/biomeswevegone/stripped_green_enchanted_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_green_enchanted_wood.png b/public/textures/biomeswevegone/stripped_green_enchanted_wood.png deleted file mode 100644 index 2c9e4f20..00000000 Binary files a/public/textures/biomeswevegone/stripped_green_enchanted_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_holly_log.png b/public/textures/biomeswevegone/stripped_holly_log.png deleted file mode 100644 index 685e9d62..00000000 Binary files a/public/textures/biomeswevegone/stripped_holly_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_holly_wood.png b/public/textures/biomeswevegone/stripped_holly_wood.png deleted file mode 100644 index 1031ec01..00000000 Binary files a/public/textures/biomeswevegone/stripped_holly_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_ironwood_log.png b/public/textures/biomeswevegone/stripped_ironwood_log.png deleted file mode 100644 index c59d2763..00000000 Binary files a/public/textures/biomeswevegone/stripped_ironwood_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_ironwood_wood.png b/public/textures/biomeswevegone/stripped_ironwood_wood.png deleted file mode 100644 index 1af4b8b4..00000000 Binary files a/public/textures/biomeswevegone/stripped_ironwood_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_jacaranda_log.png b/public/textures/biomeswevegone/stripped_jacaranda_log.png deleted file mode 100644 index 14d6f01e..00000000 Binary files a/public/textures/biomeswevegone/stripped_jacaranda_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_jacaranda_wood.png b/public/textures/biomeswevegone/stripped_jacaranda_wood.png deleted file mode 100644 index 2786d44e..00000000 Binary files a/public/textures/biomeswevegone/stripped_jacaranda_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_mahogany_log.png b/public/textures/biomeswevegone/stripped_mahogany_log.png deleted file mode 100644 index c5f1dfcd..00000000 Binary files a/public/textures/biomeswevegone/stripped_mahogany_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_mahogany_wood.png b/public/textures/biomeswevegone/stripped_mahogany_wood.png deleted file mode 100644 index d818fb46..00000000 Binary files a/public/textures/biomeswevegone/stripped_mahogany_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_maple_log.png b/public/textures/biomeswevegone/stripped_maple_log.png deleted file mode 100644 index 86336c6b..00000000 Binary files a/public/textures/biomeswevegone/stripped_maple_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_maple_wood.png b/public/textures/biomeswevegone/stripped_maple_wood.png deleted file mode 100644 index 86ecaf3d..00000000 Binary files a/public/textures/biomeswevegone/stripped_maple_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_palm_log.png b/public/textures/biomeswevegone/stripped_palm_log.png deleted file mode 100644 index 30819d45..00000000 Binary files a/public/textures/biomeswevegone/stripped_palm_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_palm_wood.png b/public/textures/biomeswevegone/stripped_palm_wood.png deleted file mode 100644 index 5c6d4110..00000000 Binary files a/public/textures/biomeswevegone/stripped_palm_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_palo_verde_log.png b/public/textures/biomeswevegone/stripped_palo_verde_log.png deleted file mode 100644 index cad9a6db..00000000 Binary files a/public/textures/biomeswevegone/stripped_palo_verde_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_palo_verde_wood.png b/public/textures/biomeswevegone/stripped_palo_verde_wood.png deleted file mode 100644 index 33f21e0f..00000000 Binary files a/public/textures/biomeswevegone/stripped_palo_verde_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_pine_log.png b/public/textures/biomeswevegone/stripped_pine_log.png deleted file mode 100644 index 3e081bb9..00000000 Binary files a/public/textures/biomeswevegone/stripped_pine_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_pine_wood.png b/public/textures/biomeswevegone/stripped_pine_wood.png deleted file mode 100644 index 2149dda4..00000000 Binary files a/public/textures/biomeswevegone/stripped_pine_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_rainbow_eucalyptus_log.png b/public/textures/biomeswevegone/stripped_rainbow_eucalyptus_log.png deleted file mode 100644 index 161044b5..00000000 Binary files a/public/textures/biomeswevegone/stripped_rainbow_eucalyptus_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_rainbow_eucalyptus_wood.png b/public/textures/biomeswevegone/stripped_rainbow_eucalyptus_wood.png deleted file mode 100644 index e9e7a448..00000000 Binary files a/public/textures/biomeswevegone/stripped_rainbow_eucalyptus_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_redwood_log.png b/public/textures/biomeswevegone/stripped_redwood_log.png deleted file mode 100644 index c6b6d2bf..00000000 Binary files a/public/textures/biomeswevegone/stripped_redwood_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_redwood_wood.png b/public/textures/biomeswevegone/stripped_redwood_wood.png deleted file mode 100644 index fb46a6da..00000000 Binary files a/public/textures/biomeswevegone/stripped_redwood_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_sakura_log.png b/public/textures/biomeswevegone/stripped_sakura_log.png deleted file mode 100644 index 99f44f17..00000000 Binary files a/public/textures/biomeswevegone/stripped_sakura_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_sakura_wood.png b/public/textures/biomeswevegone/stripped_sakura_wood.png deleted file mode 100644 index 4f7d611e..00000000 Binary files a/public/textures/biomeswevegone/stripped_sakura_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_skyris_log.png b/public/textures/biomeswevegone/stripped_skyris_log.png deleted file mode 100644 index 0d4744c6..00000000 Binary files a/public/textures/biomeswevegone/stripped_skyris_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_skyris_wood.png b/public/textures/biomeswevegone/stripped_skyris_wood.png deleted file mode 100644 index ad5d5542..00000000 Binary files a/public/textures/biomeswevegone/stripped_skyris_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_spirit_log.png b/public/textures/biomeswevegone/stripped_spirit_log.png deleted file mode 100644 index 14debf2f..00000000 Binary files a/public/textures/biomeswevegone/stripped_spirit_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_spirit_wood.png b/public/textures/biomeswevegone/stripped_spirit_wood.png deleted file mode 100644 index 2ae29772..00000000 Binary files a/public/textures/biomeswevegone/stripped_spirit_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_white_mangrove_log.png b/public/textures/biomeswevegone/stripped_white_mangrove_log.png deleted file mode 100644 index 024ca072..00000000 Binary files a/public/textures/biomeswevegone/stripped_white_mangrove_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_white_mangrove_wood.png b/public/textures/biomeswevegone/stripped_white_mangrove_wood.png deleted file mode 100644 index 73b2a5ac..00000000 Binary files a/public/textures/biomeswevegone/stripped_white_mangrove_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_willow_log.png b/public/textures/biomeswevegone/stripped_willow_log.png deleted file mode 100644 index 2a41f7ea..00000000 Binary files a/public/textures/biomeswevegone/stripped_willow_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_willow_wood.png b/public/textures/biomeswevegone/stripped_willow_wood.png deleted file mode 100644 index 2f97e20a..00000000 Binary files a/public/textures/biomeswevegone/stripped_willow_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_witch_hazel_log.png b/public/textures/biomeswevegone/stripped_witch_hazel_log.png deleted file mode 100644 index c259c0c1..00000000 Binary files a/public/textures/biomeswevegone/stripped_witch_hazel_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_witch_hazel_wood.png b/public/textures/biomeswevegone/stripped_witch_hazel_wood.png deleted file mode 100644 index e5f51192..00000000 Binary files a/public/textures/biomeswevegone/stripped_witch_hazel_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_zelkova_log.png b/public/textures/biomeswevegone/stripped_zelkova_log.png deleted file mode 100644 index 30c80fc2..00000000 Binary files a/public/textures/biomeswevegone/stripped_zelkova_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/stripped_zelkova_wood.png b/public/textures/biomeswevegone/stripped_zelkova_wood.png deleted file mode 100644 index 3fb69997..00000000 Binary files a/public/textures/biomeswevegone/stripped_zelkova_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/tall_allium.png b/public/textures/biomeswevegone/tall_allium.png deleted file mode 100644 index 78b6ba25..00000000 Binary files a/public/textures/biomeswevegone/tall_allium.png and /dev/null differ diff --git a/public/textures/biomeswevegone/tall_beach_grass.png b/public/textures/biomeswevegone/tall_beach_grass.png deleted file mode 100644 index a936806a..00000000 Binary files a/public/textures/biomeswevegone/tall_beach_grass.png and /dev/null differ diff --git a/public/textures/biomeswevegone/tall_pink_allium.png b/public/textures/biomeswevegone/tall_pink_allium.png deleted file mode 100644 index 8c729939..00000000 Binary files a/public/textures/biomeswevegone/tall_pink_allium.png and /dev/null differ diff --git a/public/textures/biomeswevegone/tall_prairie_grass.png b/public/textures/biomeswevegone/tall_prairie_grass.png deleted file mode 100644 index 52036653..00000000 Binary files a/public/textures/biomeswevegone/tall_prairie_grass.png and /dev/null differ diff --git a/public/textures/biomeswevegone/tall_white_allium.png b/public/textures/biomeswevegone/tall_white_allium.png deleted file mode 100644 index 96595d22..00000000 Binary files a/public/textures/biomeswevegone/tall_white_allium.png and /dev/null differ diff --git a/public/textures/biomeswevegone/tiny_lily_pads.png b/public/textures/biomeswevegone/tiny_lily_pads.png deleted file mode 100644 index c71dc61b..00000000 Binary files a/public/textures/biomeswevegone/tiny_lily_pads.png and /dev/null differ diff --git a/public/textures/biomeswevegone/violet_leather_flower.png b/public/textures/biomeswevegone/violet_leather_flower.png deleted file mode 100644 index a1880480..00000000 Binary files a/public/textures/biomeswevegone/violet_leather_flower.png and /dev/null differ diff --git a/public/textures/biomeswevegone/water_silk.png b/public/textures/biomeswevegone/water_silk.png deleted file mode 100644 index 1ee3874f..00000000 Binary files a/public/textures/biomeswevegone/water_silk.png and /dev/null differ diff --git a/public/textures/biomeswevegone/weeping_milkcap.png b/public/textures/biomeswevegone/weeping_milkcap.png deleted file mode 100644 index 8d991c22..00000000 Binary files a/public/textures/biomeswevegone/weeping_milkcap.png and /dev/null differ diff --git a/public/textures/biomeswevegone/weeping_milkcap_mushroom_block.png b/public/textures/biomeswevegone/weeping_milkcap_mushroom_block.png deleted file mode 100644 index 2d92a43c..00000000 Binary files a/public/textures/biomeswevegone/weeping_milkcap_mushroom_block.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_allium.png b/public/textures/biomeswevegone/white_allium.png deleted file mode 100644 index c5499835..00000000 Binary files a/public/textures/biomeswevegone/white_allium.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_allium_flower_bush.png b/public/textures/biomeswevegone/white_allium_flower_bush.png deleted file mode 100644 index e3dfadbc..00000000 Binary files a/public/textures/biomeswevegone/white_allium_flower_bush.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_allium_petal_block.png b/public/textures/biomeswevegone/white_allium_petal_block.png deleted file mode 100644 index ca02eeb1..00000000 Binary files a/public/textures/biomeswevegone/white_allium_petal_block.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_anemone.png b/public/textures/biomeswevegone/white_anemone.png deleted file mode 100644 index 38aa1cd3..00000000 Binary files a/public/textures/biomeswevegone/white_anemone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_boat.png b/public/textures/biomeswevegone/white_mangrove_boat.png deleted file mode 100644 index ebdc6164..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_bookshelf.png b/public/textures/biomeswevegone/white_mangrove_bookshelf.png deleted file mode 100644 index 8a7f3e8a..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_button.png b/public/textures/biomeswevegone/white_mangrove_button.png deleted file mode 100644 index 2362c316..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_chest_boat.png b/public/textures/biomeswevegone/white_mangrove_chest_boat.png deleted file mode 100644 index 49d2da4f..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_crafting_table.png b/public/textures/biomeswevegone/white_mangrove_crafting_table.png deleted file mode 100644 index a9b9507a..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_door.png b/public/textures/biomeswevegone/white_mangrove_door.png deleted file mode 100644 index b02db974..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_fence.png b/public/textures/biomeswevegone/white_mangrove_fence.png deleted file mode 100644 index 079bfab1..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_fence_gate.png b/public/textures/biomeswevegone/white_mangrove_fence_gate.png deleted file mode 100644 index dd69b0a2..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_hanging_sign.png b/public/textures/biomeswevegone/white_mangrove_hanging_sign.png deleted file mode 100644 index 3441a063..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_leaves.png b/public/textures/biomeswevegone/white_mangrove_leaves.png deleted file mode 100644 index 225cf52d..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_log.png b/public/textures/biomeswevegone/white_mangrove_log.png deleted file mode 100644 index 4ad5005d..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_planks.png b/public/textures/biomeswevegone/white_mangrove_planks.png deleted file mode 100644 index fa48c6b6..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_pressure_plate.png b/public/textures/biomeswevegone/white_mangrove_pressure_plate.png deleted file mode 100644 index 7ab59cca..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_sapling.png b/public/textures/biomeswevegone/white_mangrove_sapling.png deleted file mode 100644 index ec07abe4..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_sign.png b/public/textures/biomeswevegone/white_mangrove_sign.png deleted file mode 100644 index 0d147253..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_slab.png b/public/textures/biomeswevegone/white_mangrove_slab.png deleted file mode 100644 index 82e7d7ec..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_stairs.png b/public/textures/biomeswevegone/white_mangrove_stairs.png deleted file mode 100644 index 0435e887..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_trapdoor.png b/public/textures/biomeswevegone/white_mangrove_trapdoor.png deleted file mode 100644 index 26c5eab5..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mangrove_wood.png b/public/textures/biomeswevegone/white_mangrove_wood.png deleted file mode 100644 index 72f8c9f9..00000000 Binary files a/public/textures/biomeswevegone/white_mangrove_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_mushroom_stem.png b/public/textures/biomeswevegone/white_mushroom_stem.png deleted file mode 100644 index 791291c7..00000000 Binary files a/public/textures/biomeswevegone/white_mushroom_stem.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_puffball_cap.png b/public/textures/biomeswevegone/white_puffball_cap.png deleted file mode 100644 index 90391f8a..00000000 Binary files a/public/textures/biomeswevegone/white_puffball_cap.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_puffball_spores.png b/public/textures/biomeswevegone/white_puffball_spores.png deleted file mode 100644 index 66cfd687..00000000 Binary files a/public/textures/biomeswevegone/white_puffball_spores.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_puffball_stew.png b/public/textures/biomeswevegone/white_puffball_stew.png deleted file mode 100644 index 8f86cf7d..00000000 Binary files a/public/textures/biomeswevegone/white_puffball_stew.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_sage.png b/public/textures/biomeswevegone/white_sage.png deleted file mode 100644 index e0594bba..00000000 Binary files a/public/textures/biomeswevegone/white_sage.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_sakura_leaves.png b/public/textures/biomeswevegone/white_sakura_leaves.png deleted file mode 100644 index 1c0dac10..00000000 Binary files a/public/textures/biomeswevegone/white_sakura_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_sakura_petals.png b/public/textures/biomeswevegone/white_sakura_petals.png deleted file mode 100644 index 79ef98f1..00000000 Binary files a/public/textures/biomeswevegone/white_sakura_petals.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_sakura_sapling.png b/public/textures/biomeswevegone/white_sakura_sapling.png deleted file mode 100644 index 857f6fac..00000000 Binary files a/public/textures/biomeswevegone/white_sakura_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_sand.png b/public/textures/biomeswevegone/white_sand.png deleted file mode 100644 index a29059ed..00000000 Binary files a/public/textures/biomeswevegone/white_sand.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_sandstone.png b/public/textures/biomeswevegone/white_sandstone.png deleted file mode 100644 index 7e312c37..00000000 Binary files a/public/textures/biomeswevegone/white_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_sandstone_slab.png b/public/textures/biomeswevegone/white_sandstone_slab.png deleted file mode 100644 index 933b3f11..00000000 Binary files a/public/textures/biomeswevegone/white_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_sandstone_stairs.png b/public/textures/biomeswevegone/white_sandstone_stairs.png deleted file mode 100644 index 9d0734e2..00000000 Binary files a/public/textures/biomeswevegone/white_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/white_sandstone_wall.png b/public/textures/biomeswevegone/white_sandstone_wall.png deleted file mode 100644 index 486e54b4..00000000 Binary files a/public/textures/biomeswevegone/white_sandstone_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_boat.png b/public/textures/biomeswevegone/willow_boat.png deleted file mode 100644 index 475b38ca..00000000 Binary files a/public/textures/biomeswevegone/willow_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_bookshelf.png b/public/textures/biomeswevegone/willow_bookshelf.png deleted file mode 100644 index f272124d..00000000 Binary files a/public/textures/biomeswevegone/willow_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_button.png b/public/textures/biomeswevegone/willow_button.png deleted file mode 100644 index ba30817f..00000000 Binary files a/public/textures/biomeswevegone/willow_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_chest_boat.png b/public/textures/biomeswevegone/willow_chest_boat.png deleted file mode 100644 index 6cda493c..00000000 Binary files a/public/textures/biomeswevegone/willow_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_crafting_table.png b/public/textures/biomeswevegone/willow_crafting_table.png deleted file mode 100644 index acbe7780..00000000 Binary files a/public/textures/biomeswevegone/willow_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_door.png b/public/textures/biomeswevegone/willow_door.png deleted file mode 100644 index 719d7278..00000000 Binary files a/public/textures/biomeswevegone/willow_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_fence.png b/public/textures/biomeswevegone/willow_fence.png deleted file mode 100644 index 166f491c..00000000 Binary files a/public/textures/biomeswevegone/willow_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_fence_gate.png b/public/textures/biomeswevegone/willow_fence_gate.png deleted file mode 100644 index cf8fa296..00000000 Binary files a/public/textures/biomeswevegone/willow_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_hanging_sign.png b/public/textures/biomeswevegone/willow_hanging_sign.png deleted file mode 100644 index b2e775d4..00000000 Binary files a/public/textures/biomeswevegone/willow_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_leaves.png b/public/textures/biomeswevegone/willow_leaves.png deleted file mode 100644 index abab6680..00000000 Binary files a/public/textures/biomeswevegone/willow_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_log.png b/public/textures/biomeswevegone/willow_log.png deleted file mode 100644 index b844ec4f..00000000 Binary files a/public/textures/biomeswevegone/willow_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_planks.png b/public/textures/biomeswevegone/willow_planks.png deleted file mode 100644 index 46f79918..00000000 Binary files a/public/textures/biomeswevegone/willow_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_pressure_plate.png b/public/textures/biomeswevegone/willow_pressure_plate.png deleted file mode 100644 index 3ac239ff..00000000 Binary files a/public/textures/biomeswevegone/willow_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_sapling.png b/public/textures/biomeswevegone/willow_sapling.png deleted file mode 100644 index a70e5079..00000000 Binary files a/public/textures/biomeswevegone/willow_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_sign.png b/public/textures/biomeswevegone/willow_sign.png deleted file mode 100644 index 238af8da..00000000 Binary files a/public/textures/biomeswevegone/willow_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_slab.png b/public/textures/biomeswevegone/willow_slab.png deleted file mode 100644 index 9b651cb5..00000000 Binary files a/public/textures/biomeswevegone/willow_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_stairs.png b/public/textures/biomeswevegone/willow_stairs.png deleted file mode 100644 index 3db5ceff..00000000 Binary files a/public/textures/biomeswevegone/willow_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_trapdoor.png b/public/textures/biomeswevegone/willow_trapdoor.png deleted file mode 100644 index 86d276eb..00000000 Binary files a/public/textures/biomeswevegone/willow_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/willow_wood.png b/public/textures/biomeswevegone/willow_wood.png deleted file mode 100644 index 08428d32..00000000 Binary files a/public/textures/biomeswevegone/willow_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/windswept_sand.png b/public/textures/biomeswevegone/windswept_sand.png deleted file mode 100644 index 59579e6c..00000000 Binary files a/public/textures/biomeswevegone/windswept_sand.png and /dev/null differ diff --git a/public/textures/biomeswevegone/windswept_sandstone.png b/public/textures/biomeswevegone/windswept_sandstone.png deleted file mode 100644 index baea2268..00000000 Binary files a/public/textures/biomeswevegone/windswept_sandstone.png and /dev/null differ diff --git a/public/textures/biomeswevegone/windswept_sandstone_pillar.png b/public/textures/biomeswevegone/windswept_sandstone_pillar.png deleted file mode 100644 index 8fe8d395..00000000 Binary files a/public/textures/biomeswevegone/windswept_sandstone_pillar.png and /dev/null differ diff --git a/public/textures/biomeswevegone/windswept_sandstone_slab.png b/public/textures/biomeswevegone/windswept_sandstone_slab.png deleted file mode 100644 index 03ec51d9..00000000 Binary files a/public/textures/biomeswevegone/windswept_sandstone_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/windswept_sandstone_stairs.png b/public/textures/biomeswevegone/windswept_sandstone_stairs.png deleted file mode 100644 index 9e28d6d1..00000000 Binary files a/public/textures/biomeswevegone/windswept_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/windswept_sandstone_wall.png b/public/textures/biomeswevegone/windswept_sandstone_wall.png deleted file mode 100644 index 87f69071..00000000 Binary files a/public/textures/biomeswevegone/windswept_sandstone_wall.png and /dev/null differ diff --git a/public/textures/biomeswevegone/winter_cyclamen.png b/public/textures/biomeswevegone/winter_cyclamen.png deleted file mode 100644 index eed7395f..00000000 Binary files a/public/textures/biomeswevegone/winter_cyclamen.png and /dev/null differ diff --git a/public/textures/biomeswevegone/winter_rose.png b/public/textures/biomeswevegone/winter_rose.png deleted file mode 100644 index fd11fb2a..00000000 Binary files a/public/textures/biomeswevegone/winter_rose.png and /dev/null differ diff --git a/public/textures/biomeswevegone/winter_scilla.png b/public/textures/biomeswevegone/winter_scilla.png deleted file mode 100644 index 07783e10..00000000 Binary files a/public/textures/biomeswevegone/winter_scilla.png and /dev/null differ diff --git a/public/textures/biomeswevegone/winter_succulent.png b/public/textures/biomeswevegone/winter_succulent.png deleted file mode 100644 index 2a0afbca..00000000 Binary files a/public/textures/biomeswevegone/winter_succulent.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_blossom.png b/public/textures/biomeswevegone/witch_hazel_blossom.png deleted file mode 100644 index c38c76e7..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_blossom.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_boat.png b/public/textures/biomeswevegone/witch_hazel_boat.png deleted file mode 100644 index a880f938..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_bookshelf.png b/public/textures/biomeswevegone/witch_hazel_bookshelf.png deleted file mode 100644 index 3bbeba13..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_branch.png b/public/textures/biomeswevegone/witch_hazel_branch.png deleted file mode 100644 index 7d984184..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_branch.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_button.png b/public/textures/biomeswevegone/witch_hazel_button.png deleted file mode 100644 index 66ae7f5e..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_chest_boat.png b/public/textures/biomeswevegone/witch_hazel_chest_boat.png deleted file mode 100644 index ccf42915..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_crafting_table.png b/public/textures/biomeswevegone/witch_hazel_crafting_table.png deleted file mode 100644 index 98ddb448..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_door.png b/public/textures/biomeswevegone/witch_hazel_door.png deleted file mode 100644 index c259acae..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_fence.png b/public/textures/biomeswevegone/witch_hazel_fence.png deleted file mode 100644 index a79a2784..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_fence_gate.png b/public/textures/biomeswevegone/witch_hazel_fence_gate.png deleted file mode 100644 index ab2206dc..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_hanging_sign.png b/public/textures/biomeswevegone/witch_hazel_hanging_sign.png deleted file mode 100644 index 3e2281c7..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_leaves.png b/public/textures/biomeswevegone/witch_hazel_leaves.png deleted file mode 100644 index 3dddb25f..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_log.png b/public/textures/biomeswevegone/witch_hazel_log.png deleted file mode 100644 index d1a3fdcf..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_planks.png b/public/textures/biomeswevegone/witch_hazel_planks.png deleted file mode 100644 index e0479df7..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_pressure_plate.png b/public/textures/biomeswevegone/witch_hazel_pressure_plate.png deleted file mode 100644 index b684102b..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_sapling.png b/public/textures/biomeswevegone/witch_hazel_sapling.png deleted file mode 100644 index 1b0d31e4..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_sign.png b/public/textures/biomeswevegone/witch_hazel_sign.png deleted file mode 100644 index 67e3c6da..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_slab.png b/public/textures/biomeswevegone/witch_hazel_slab.png deleted file mode 100644 index 1bcda001..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_stairs.png b/public/textures/biomeswevegone/witch_hazel_stairs.png deleted file mode 100644 index 000badb0..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_trapdoor.png b/public/textures/biomeswevegone/witch_hazel_trapdoor.png deleted file mode 100644 index 2e343e0f..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/witch_hazel_wood.png b/public/textures/biomeswevegone/witch_hazel_wood.png deleted file mode 100644 index 8593dc4e..00000000 Binary files a/public/textures/biomeswevegone/witch_hazel_wood.png and /dev/null differ diff --git a/public/textures/biomeswevegone/wood_blewit.png b/public/textures/biomeswevegone/wood_blewit.png deleted file mode 100644 index eb88e90e..00000000 Binary files a/public/textures/biomeswevegone/wood_blewit.png and /dev/null differ diff --git a/public/textures/biomeswevegone/wood_blewit_mushroom_block.png b/public/textures/biomeswevegone/wood_blewit_mushroom_block.png deleted file mode 100644 index 504acfc4..00000000 Binary files a/public/textures/biomeswevegone/wood_blewit_mushroom_block.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_birch_leaves.png b/public/textures/biomeswevegone/yellow_birch_leaves.png deleted file mode 100644 index 3abf60e6..00000000 Binary files a/public/textures/biomeswevegone/yellow_birch_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_birch_sapling.png b/public/textures/biomeswevegone/yellow_birch_sapling.png deleted file mode 100644 index 3a5b7981..00000000 Binary files a/public/textures/biomeswevegone/yellow_birch_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_daffodil.png b/public/textures/biomeswevegone/yellow_daffodil.png deleted file mode 100644 index e132601b..00000000 Binary files a/public/textures/biomeswevegone/yellow_daffodil.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_glow_bottle.png b/public/textures/biomeswevegone/yellow_glow_bottle.png deleted file mode 100644 index dfcec359..00000000 Binary files a/public/textures/biomeswevegone/yellow_glow_bottle.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_glowcane_powder.png b/public/textures/biomeswevegone/yellow_glowcane_powder.png deleted file mode 100644 index 89889a76..00000000 Binary files a/public/textures/biomeswevegone/yellow_glowcane_powder.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_glowcane_shoot.png b/public/textures/biomeswevegone/yellow_glowcane_shoot.png deleted file mode 100644 index a34577fc..00000000 Binary files a/public/textures/biomeswevegone/yellow_glowcane_shoot.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_sakura_leaves.png b/public/textures/biomeswevegone/yellow_sakura_leaves.png deleted file mode 100644 index f6982053..00000000 Binary files a/public/textures/biomeswevegone/yellow_sakura_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_sakura_petals.png b/public/textures/biomeswevegone/yellow_sakura_petals.png deleted file mode 100644 index d798c3d2..00000000 Binary files a/public/textures/biomeswevegone/yellow_sakura_petals.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_sakura_sapling.png b/public/textures/biomeswevegone/yellow_sakura_sapling.png deleted file mode 100644 index 814d7769..00000000 Binary files a/public/textures/biomeswevegone/yellow_sakura_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_spruce_leaves.png b/public/textures/biomeswevegone/yellow_spruce_leaves.png deleted file mode 100644 index 2343c633..00000000 Binary files a/public/textures/biomeswevegone/yellow_spruce_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_spruce_sapling.png b/public/textures/biomeswevegone/yellow_spruce_sapling.png deleted file mode 100644 index a114de68..00000000 Binary files a/public/textures/biomeswevegone/yellow_spruce_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yellow_tulip.png b/public/textures/biomeswevegone/yellow_tulip.png deleted file mode 100644 index 5c942b44..00000000 Binary files a/public/textures/biomeswevegone/yellow_tulip.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yucca_fruit.png b/public/textures/biomeswevegone/yucca_fruit.png deleted file mode 100644 index f75cd763..00000000 Binary files a/public/textures/biomeswevegone/yucca_fruit.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yucca_leaves.png b/public/textures/biomeswevegone/yucca_leaves.png deleted file mode 100644 index 63f43450..00000000 Binary files a/public/textures/biomeswevegone/yucca_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/yucca_sapling.png b/public/textures/biomeswevegone/yucca_sapling.png deleted file mode 100644 index 08ad0fc0..00000000 Binary files a/public/textures/biomeswevegone/yucca_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_boat.png b/public/textures/biomeswevegone/zelkova_boat.png deleted file mode 100644 index 255dd102..00000000 Binary files a/public/textures/biomeswevegone/zelkova_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_bookshelf.png b/public/textures/biomeswevegone/zelkova_bookshelf.png deleted file mode 100644 index d1b88091..00000000 Binary files a/public/textures/biomeswevegone/zelkova_bookshelf.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_button.png b/public/textures/biomeswevegone/zelkova_button.png deleted file mode 100644 index 9cb9c9c5..00000000 Binary files a/public/textures/biomeswevegone/zelkova_button.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_chest_boat.png b/public/textures/biomeswevegone/zelkova_chest_boat.png deleted file mode 100644 index a3da97ee..00000000 Binary files a/public/textures/biomeswevegone/zelkova_chest_boat.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_crafting_table.png b/public/textures/biomeswevegone/zelkova_crafting_table.png deleted file mode 100644 index c6f52e31..00000000 Binary files a/public/textures/biomeswevegone/zelkova_crafting_table.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_door.png b/public/textures/biomeswevegone/zelkova_door.png deleted file mode 100644 index 00ed9c45..00000000 Binary files a/public/textures/biomeswevegone/zelkova_door.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_fence.png b/public/textures/biomeswevegone/zelkova_fence.png deleted file mode 100644 index b73b016d..00000000 Binary files a/public/textures/biomeswevegone/zelkova_fence.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_fence_gate.png b/public/textures/biomeswevegone/zelkova_fence_gate.png deleted file mode 100644 index f3ca70e0..00000000 Binary files a/public/textures/biomeswevegone/zelkova_fence_gate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_hanging_sign.png b/public/textures/biomeswevegone/zelkova_hanging_sign.png deleted file mode 100644 index 91cb25ab..00000000 Binary files a/public/textures/biomeswevegone/zelkova_hanging_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_leaves.png b/public/textures/biomeswevegone/zelkova_leaves.png deleted file mode 100644 index a3be4741..00000000 Binary files a/public/textures/biomeswevegone/zelkova_leaves.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_log.png b/public/textures/biomeswevegone/zelkova_log.png deleted file mode 100644 index 769e813a..00000000 Binary files a/public/textures/biomeswevegone/zelkova_log.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_planks.png b/public/textures/biomeswevegone/zelkova_planks.png deleted file mode 100644 index 426f69de..00000000 Binary files a/public/textures/biomeswevegone/zelkova_planks.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_pressure_plate.png b/public/textures/biomeswevegone/zelkova_pressure_plate.png deleted file mode 100644 index 6c77eb43..00000000 Binary files a/public/textures/biomeswevegone/zelkova_pressure_plate.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_sapling.png b/public/textures/biomeswevegone/zelkova_sapling.png deleted file mode 100644 index 644e4c37..00000000 Binary files a/public/textures/biomeswevegone/zelkova_sapling.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_sign.png b/public/textures/biomeswevegone/zelkova_sign.png deleted file mode 100644 index aae6afe9..00000000 Binary files a/public/textures/biomeswevegone/zelkova_sign.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_slab.png b/public/textures/biomeswevegone/zelkova_slab.png deleted file mode 100644 index b603fb4b..00000000 Binary files a/public/textures/biomeswevegone/zelkova_slab.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_stairs.png b/public/textures/biomeswevegone/zelkova_stairs.png deleted file mode 100644 index 87afc739..00000000 Binary files a/public/textures/biomeswevegone/zelkova_stairs.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_trapdoor.png b/public/textures/biomeswevegone/zelkova_trapdoor.png deleted file mode 100644 index 22e6665e..00000000 Binary files a/public/textures/biomeswevegone/zelkova_trapdoor.png and /dev/null differ diff --git a/public/textures/biomeswevegone/zelkova_wood.png b/public/textures/biomeswevegone/zelkova_wood.png deleted file mode 100644 index 147f7f1d..00000000 Binary files a/public/textures/biomeswevegone/zelkova_wood.png and /dev/null differ diff --git a/public/textures/brewinandchewin/apple_jelly.png b/public/textures/brewinandchewin/apple_jelly.png deleted file mode 100644 index b36073a1..00000000 Binary files a/public/textures/brewinandchewin/apple_jelly.png and /dev/null differ diff --git a/public/textures/brewinandchewin/beer.png b/public/textures/brewinandchewin/beer.png deleted file mode 100644 index 4ca10b24..00000000 Binary files a/public/textures/brewinandchewin/beer.png and /dev/null differ diff --git a/public/textures/brewinandchewin/bloody_mary.png b/public/textures/brewinandchewin/bloody_mary.png deleted file mode 100644 index 44ad93bb..00000000 Binary files a/public/textures/brewinandchewin/bloody_mary.png and /dev/null differ diff --git a/public/textures/brewinandchewin/cheesy_pasta.png b/public/textures/brewinandchewin/cheesy_pasta.png deleted file mode 100644 index 0d939658..00000000 Binary files a/public/textures/brewinandchewin/cheesy_pasta.png and /dev/null differ diff --git a/public/textures/brewinandchewin/coaster.png b/public/textures/brewinandchewin/coaster.png deleted file mode 100644 index 4927b9ed..00000000 Binary files a/public/textures/brewinandchewin/coaster.png and /dev/null differ diff --git a/public/textures/brewinandchewin/cocoa_fudge.png b/public/textures/brewinandchewin/cocoa_fudge.png deleted file mode 100644 index 22297351..00000000 Binary files a/public/textures/brewinandchewin/cocoa_fudge.png and /dev/null differ diff --git a/public/textures/brewinandchewin/creamy_onion_soup.png b/public/textures/brewinandchewin/creamy_onion_soup.png deleted file mode 100644 index 3fc894dc..00000000 Binary files a/public/textures/brewinandchewin/creamy_onion_soup.png and /dev/null differ diff --git a/public/textures/brewinandchewin/dread_nog.png b/public/textures/brewinandchewin/dread_nog.png deleted file mode 100644 index 77fecb69..00000000 Binary files a/public/textures/brewinandchewin/dread_nog.png and /dev/null differ diff --git a/public/textures/brewinandchewin/egg_grog.png b/public/textures/brewinandchewin/egg_grog.png deleted file mode 100644 index 44e8a4c3..00000000 Binary files a/public/textures/brewinandchewin/egg_grog.png and /dev/null differ diff --git a/public/textures/brewinandchewin/fiery_fondue.png b/public/textures/brewinandchewin/fiery_fondue.png deleted file mode 100644 index a27bc07d..00000000 Binary files a/public/textures/brewinandchewin/fiery_fondue.png and /dev/null differ diff --git a/public/textures/brewinandchewin/fiery_fondue_pot.png b/public/textures/brewinandchewin/fiery_fondue_pot.png deleted file mode 100644 index 11e6d0c2..00000000 Binary files a/public/textures/brewinandchewin/fiery_fondue_pot.png and /dev/null differ diff --git a/public/textures/brewinandchewin/flaxen_cheese_wedge.png b/public/textures/brewinandchewin/flaxen_cheese_wedge.png deleted file mode 100644 index ccbc8b2a..00000000 Binary files a/public/textures/brewinandchewin/flaxen_cheese_wedge.png and /dev/null differ diff --git a/public/textures/brewinandchewin/flaxen_cheese_wheel.png b/public/textures/brewinandchewin/flaxen_cheese_wheel.png deleted file mode 100644 index 2223e0b7..00000000 Binary files a/public/textures/brewinandchewin/flaxen_cheese_wheel.png and /dev/null differ diff --git a/public/textures/brewinandchewin/glittering_grenadine.png b/public/textures/brewinandchewin/glittering_grenadine.png deleted file mode 100644 index 2cbfb47a..00000000 Binary files a/public/textures/brewinandchewin/glittering_grenadine.png and /dev/null differ diff --git a/public/textures/brewinandchewin/glow_berry_marmalade.png b/public/textures/brewinandchewin/glow_berry_marmalade.png deleted file mode 100644 index b55c63cd..00000000 Binary files a/public/textures/brewinandchewin/glow_berry_marmalade.png and /dev/null differ diff --git a/public/textures/brewinandchewin/ham_and_cheese_sandwich.png b/public/textures/brewinandchewin/ham_and_cheese_sandwich.png deleted file mode 100644 index c9b59c48..00000000 Binary files a/public/textures/brewinandchewin/ham_and_cheese_sandwich.png and /dev/null differ diff --git a/public/textures/brewinandchewin/heating_cask.png b/public/textures/brewinandchewin/heating_cask.png deleted file mode 100644 index 74bfbe76..00000000 Binary files a/public/textures/brewinandchewin/heating_cask.png and /dev/null differ diff --git a/public/textures/brewinandchewin/horror_lasagna.png b/public/textures/brewinandchewin/horror_lasagna.png deleted file mode 100644 index 68fff26e..00000000 Binary files a/public/textures/brewinandchewin/horror_lasagna.png and /dev/null differ diff --git a/public/textures/brewinandchewin/ice_crate.png b/public/textures/brewinandchewin/ice_crate.png deleted file mode 100644 index 5016479e..00000000 Binary files a/public/textures/brewinandchewin/ice_crate.png and /dev/null differ diff --git a/public/textures/brewinandchewin/jerky.png b/public/textures/brewinandchewin/jerky.png deleted file mode 100644 index d07f56aa..00000000 Binary files a/public/textures/brewinandchewin/jerky.png and /dev/null differ diff --git a/public/textures/brewinandchewin/keg.png b/public/textures/brewinandchewin/keg.png deleted file mode 100644 index 342a8e18..00000000 Binary files a/public/textures/brewinandchewin/keg.png and /dev/null differ diff --git a/public/textures/brewinandchewin/kimchi.png b/public/textures/brewinandchewin/kimchi.png deleted file mode 100644 index a5e1b88c..00000000 Binary files a/public/textures/brewinandchewin/kimchi.png and /dev/null differ diff --git a/public/textures/brewinandchewin/kippers.png b/public/textures/brewinandchewin/kippers.png deleted file mode 100644 index a4184c3d..00000000 Binary files a/public/textures/brewinandchewin/kippers.png and /dev/null differ diff --git a/public/textures/brewinandchewin/mead.png b/public/textures/brewinandchewin/mead.png deleted file mode 100644 index a19c6c8d..00000000 Binary files a/public/textures/brewinandchewin/mead.png and /dev/null differ diff --git a/public/textures/brewinandchewin/pale_jane.png b/public/textures/brewinandchewin/pale_jane.png deleted file mode 100644 index 39305cef..00000000 Binary files a/public/textures/brewinandchewin/pale_jane.png and /dev/null differ diff --git a/public/textures/brewinandchewin/pickled_pickles.png b/public/textures/brewinandchewin/pickled_pickles.png deleted file mode 100644 index 42b00483..00000000 Binary files a/public/textures/brewinandchewin/pickled_pickles.png and /dev/null differ diff --git a/public/textures/brewinandchewin/pizza.png b/public/textures/brewinandchewin/pizza.png deleted file mode 100644 index 4dfdfa6c..00000000 Binary files a/public/textures/brewinandchewin/pizza.png and /dev/null differ diff --git a/public/textures/brewinandchewin/pizza_slice.png b/public/textures/brewinandchewin/pizza_slice.png deleted file mode 100644 index d4a41d70..00000000 Binary files a/public/textures/brewinandchewin/pizza_slice.png and /dev/null differ diff --git a/public/textures/brewinandchewin/quiche.png b/public/textures/brewinandchewin/quiche.png deleted file mode 100644 index e9d25246..00000000 Binary files a/public/textures/brewinandchewin/quiche.png and /dev/null differ diff --git a/public/textures/brewinandchewin/quiche_slice.png b/public/textures/brewinandchewin/quiche_slice.png deleted file mode 100644 index 5a3f4963..00000000 Binary files a/public/textures/brewinandchewin/quiche_slice.png and /dev/null differ diff --git a/public/textures/brewinandchewin/red_rum.png b/public/textures/brewinandchewin/red_rum.png deleted file mode 100644 index 96d53f0f..00000000 Binary files a/public/textures/brewinandchewin/red_rum.png and /dev/null differ diff --git a/public/textures/brewinandchewin/rice_wine.png b/public/textures/brewinandchewin/rice_wine.png deleted file mode 100644 index d69f882b..00000000 Binary files a/public/textures/brewinandchewin/rice_wine.png and /dev/null differ diff --git a/public/textures/brewinandchewin/saccharine_rum.png b/public/textures/brewinandchewin/saccharine_rum.png deleted file mode 100644 index 4d3c65b7..00000000 Binary files a/public/textures/brewinandchewin/saccharine_rum.png and /dev/null differ diff --git a/public/textures/brewinandchewin/salty_folly.png b/public/textures/brewinandchewin/salty_folly.png deleted file mode 100644 index a0e0441a..00000000 Binary files a/public/textures/brewinandchewin/salty_folly.png and /dev/null differ diff --git a/public/textures/brewinandchewin/scarlet_cheese_wedge.png b/public/textures/brewinandchewin/scarlet_cheese_wedge.png deleted file mode 100644 index 7ea71423..00000000 Binary files a/public/textures/brewinandchewin/scarlet_cheese_wedge.png and /dev/null differ diff --git a/public/textures/brewinandchewin/scarlet_cheese_wheel.png b/public/textures/brewinandchewin/scarlet_cheese_wheel.png deleted file mode 100644 index 06e07137..00000000 Binary files a/public/textures/brewinandchewin/scarlet_cheese_wheel.png and /dev/null differ diff --git a/public/textures/brewinandchewin/scarlet_pierogi.png b/public/textures/brewinandchewin/scarlet_pierogi.png deleted file mode 100644 index 93a3e29c..00000000 Binary files a/public/textures/brewinandchewin/scarlet_pierogi.png and /dev/null differ diff --git a/public/textures/brewinandchewin/steel_toe_stout.png b/public/textures/brewinandchewin/steel_toe_stout.png deleted file mode 100644 index 03934c5c..00000000 Binary files a/public/textures/brewinandchewin/steel_toe_stout.png and /dev/null differ diff --git a/public/textures/brewinandchewin/strongroot_ale.png b/public/textures/brewinandchewin/strongroot_ale.png deleted file mode 100644 index 0daf8f9c..00000000 Binary files a/public/textures/brewinandchewin/strongroot_ale.png and /dev/null differ diff --git a/public/textures/brewinandchewin/sweet_berry_jam.png b/public/textures/brewinandchewin/sweet_berry_jam.png deleted file mode 100644 index 14df33d5..00000000 Binary files a/public/textures/brewinandchewin/sweet_berry_jam.png and /dev/null differ diff --git a/public/textures/brewinandchewin/tankard.png b/public/textures/brewinandchewin/tankard.png deleted file mode 100644 index 63b927f5..00000000 Binary files a/public/textures/brewinandchewin/tankard.png and /dev/null differ diff --git a/public/textures/brewinandchewin/unripe_flaxen_cheese_wheel.png b/public/textures/brewinandchewin/unripe_flaxen_cheese_wheel.png deleted file mode 100644 index 8fb6e77c..00000000 Binary files a/public/textures/brewinandchewin/unripe_flaxen_cheese_wheel.png and /dev/null differ diff --git a/public/textures/brewinandchewin/unripe_scarlet_cheese_wheel.png b/public/textures/brewinandchewin/unripe_scarlet_cheese_wheel.png deleted file mode 100644 index e4d1cf5f..00000000 Binary files a/public/textures/brewinandchewin/unripe_scarlet_cheese_wheel.png and /dev/null differ diff --git a/public/textures/brewinandchewin/vegetable_omelet.png b/public/textures/brewinandchewin/vegetable_omelet.png deleted file mode 100644 index bd394a0d..00000000 Binary files a/public/textures/brewinandchewin/vegetable_omelet.png and /dev/null differ diff --git a/public/textures/brewinandchewin/vodka.png b/public/textures/brewinandchewin/vodka.png deleted file mode 100644 index 72d7b596..00000000 Binary files a/public/textures/brewinandchewin/vodka.png and /dev/null differ diff --git a/public/textures/brewinandchewin/withering_dross.png b/public/textures/brewinandchewin/withering_dross.png deleted file mode 100644 index b8d08c54..00000000 Binary files a/public/textures/brewinandchewin/withering_dross.png and /dev/null differ diff --git a/public/textures/buildersjetpackmod/builders_jetpack.png b/public/textures/buildersjetpackmod/builders_jetpack.png deleted file mode 100644 index 4019f1d1..00000000 Binary files a/public/textures/buildersjetpackmod/builders_jetpack.png and /dev/null differ diff --git a/public/textures/buildersjetpackmod/jetpack_fuel.png b/public/textures/buildersjetpackmod/jetpack_fuel.png deleted file mode 100644 index 6de5e441..00000000 Binary files a/public/textures/buildersjetpackmod/jetpack_fuel.png and /dev/null differ diff --git a/public/textures/camera/album.png b/public/textures/camera/album.png deleted file mode 100644 index 2f9af9d8..00000000 Binary files a/public/textures/camera/album.png and /dev/null differ diff --git a/public/textures/camera/camera.png b/public/textures/camera/camera.png deleted file mode 100644 index 95e5fa47..00000000 Binary files a/public/textures/camera/camera.png and /dev/null differ diff --git a/public/textures/camera/image_frame.png b/public/textures/camera/image_frame.png deleted file mode 100644 index 47bd8a46..00000000 Binary files a/public/textures/camera/image_frame.png and /dev/null differ diff --git a/public/textures/chipped/acacia_barrel.png b/public/textures/chipped/acacia_barrel.png deleted file mode 100644 index 4632f1d8..00000000 Binary files a/public/textures/chipped/acacia_barrel.png and /dev/null differ diff --git a/public/textures/chipped/acacia_crate.png b/public/textures/chipped/acacia_crate.png deleted file mode 100644 index f85a796a..00000000 Binary files a/public/textures/chipped/acacia_crate.png and /dev/null differ diff --git a/public/textures/chipped/acacia_planks_mosaic.png b/public/textures/chipped/acacia_planks_mosaic.png deleted file mode 100644 index 38c8cf4f..00000000 Binary files a/public/textures/chipped/acacia_planks_mosaic.png and /dev/null differ diff --git a/public/textures/chipped/acacia_planks_panel.png b/public/textures/chipped/acacia_planks_panel.png deleted file mode 100644 index 17dbc882..00000000 Binary files a/public/textures/chipped/acacia_planks_panel.png and /dev/null differ diff --git a/public/textures/chipped/acacia_planks_shavings.png b/public/textures/chipped/acacia_planks_shavings.png deleted file mode 100644 index 0e4ceb97..00000000 Binary files a/public/textures/chipped/acacia_planks_shavings.png and /dev/null differ diff --git a/public/textures/chipped/acacia_torch.png b/public/textures/chipped/acacia_torch.png deleted file mode 100644 index 4b3de125..00000000 Binary files a/public/textures/chipped/acacia_torch.png and /dev/null differ diff --git a/public/textures/chipped/ad_astra_ochre_froglight.png b/public/textures/chipped/ad_astra_ochre_froglight.png deleted file mode 100644 index 5aaa08bf..00000000 Binary files a/public/textures/chipped/ad_astra_ochre_froglight.png and /dev/null differ diff --git a/public/textures/chipped/ad_astra_pearlescent_froglight.png b/public/textures/chipped/ad_astra_pearlescent_froglight.png deleted file mode 100644 index 184a5787..00000000 Binary files a/public/textures/chipped/ad_astra_pearlescent_froglight.png and /dev/null differ diff --git a/public/textures/chipped/ad_astra_verdant_froglight.png b/public/textures/chipped/ad_astra_verdant_froglight.png deleted file mode 100644 index 8eae2601..00000000 Binary files a/public/textures/chipped/ad_astra_verdant_froglight.png and /dev/null differ diff --git a/public/textures/chipped/airy_birch_trapdoor.png b/public/textures/chipped/airy_birch_trapdoor.png deleted file mode 100644 index 1becc13a..00000000 Binary files a/public/textures/chipped/airy_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/airy_crimson_trapdoor.png b/public/textures/chipped/airy_crimson_trapdoor.png deleted file mode 100644 index e70294f6..00000000 Binary files a/public/textures/chipped/airy_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/airy_dark_oak_trapdoor.png b/public/textures/chipped/airy_dark_oak_trapdoor.png deleted file mode 100644 index d9bac62f..00000000 Binary files a/public/textures/chipped/airy_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/airy_jungle_trapdoor.png b/public/textures/chipped/airy_jungle_trapdoor.png deleted file mode 100644 index 5c2d236a..00000000 Binary files a/public/textures/chipped/airy_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/airy_mangrove_trapdoor.png b/public/textures/chipped/airy_mangrove_trapdoor.png deleted file mode 100644 index 5c5bfbd7..00000000 Binary files a/public/textures/chipped/airy_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/airy_oak_trapdoor.png b/public/textures/chipped/airy_oak_trapdoor.png deleted file mode 100644 index 452e43a4..00000000 Binary files a/public/textures/chipped/airy_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/airy_spruce_trapdoor.png b/public/textures/chipped/airy_spruce_trapdoor.png deleted file mode 100644 index 086185b8..00000000 Binary files a/public/textures/chipped/airy_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/airy_warped_trapdoor.png b/public/textures/chipped/airy_warped_trapdoor.png deleted file mode 100644 index a4ae9ce8..00000000 Binary files a/public/textures/chipped/airy_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/alchemy_bench.png b/public/textures/chipped/alchemy_bench.png deleted file mode 100644 index 60fa6b80..00000000 Binary files a/public/textures/chipped/alchemy_bench.png and /dev/null differ diff --git a/public/textures/chipped/alchemy_book.png b/public/textures/chipped/alchemy_book.png deleted file mode 100644 index 9354c5d3..00000000 Binary files a/public/textures/chipped/alchemy_book.png and /dev/null differ diff --git a/public/textures/chipped/amethyst_block_bricks.png b/public/textures/chipped/amethyst_block_bricks.png deleted file mode 100644 index 91d97f79..00000000 Binary files a/public/textures/chipped/amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/amethyst_block_mini_tiles.png b/public/textures/chipped/amethyst_block_mini_tiles.png deleted file mode 100644 index 05ae36c3..00000000 Binary files a/public/textures/chipped/amethyst_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/amethyst_block_pillar.png b/public/textures/chipped/amethyst_block_pillar.png deleted file mode 100644 index 67469880..00000000 Binary files a/public/textures/chipped/amethyst_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/amethyst_block_pillar_top.png b/public/textures/chipped/amethyst_block_pillar_top.png deleted file mode 100644 index de429cca..00000000 Binary files a/public/textures/chipped/amethyst_block_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/amethyst_block_scales.png b/public/textures/chipped/amethyst_block_scales.png deleted file mode 100644 index 8f51a121..00000000 Binary files a/public/textures/chipped/amethyst_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/ancient_cubed_oak_bookshelf.png b/public/textures/chipped/ancient_cubed_oak_bookshelf.png deleted file mode 100644 index 35e6b3de..00000000 Binary files a/public/textures/chipped/ancient_cubed_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/ancient_debris_bricks.png b/public/textures/chipped/ancient_debris_bricks.png deleted file mode 100644 index f6848e31..00000000 Binary files a/public/textures/chipped/ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/ancient_debris_mini_tiles.png b/public/textures/chipped/ancient_debris_mini_tiles.png deleted file mode 100644 index 5294a145..00000000 Binary files a/public/textures/chipped/ancient_debris_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/ancient_debris_pillar.png b/public/textures/chipped/ancient_debris_pillar.png deleted file mode 100644 index 95517fe4..00000000 Binary files a/public/textures/chipped/ancient_debris_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ancient_debris_pillar_top.png b/public/textures/chipped/ancient_debris_pillar_top.png deleted file mode 100644 index 8b56d69d..00000000 Binary files a/public/textures/chipped/ancient_debris_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/ancient_debris_scales.png b/public/textures/chipped/ancient_debris_scales.png deleted file mode 100644 index a273bb7e..00000000 Binary files a/public/textures/chipped/ancient_debris_scales.png and /dev/null differ diff --git a/public/textures/chipped/ancient_diamond_block.png b/public/textures/chipped/ancient_diamond_block.png deleted file mode 100644 index b8af7151..00000000 Binary files a/public/textures/chipped/ancient_diamond_block.png and /dev/null differ diff --git a/public/textures/chipped/ancient_emerald_block.png b/public/textures/chipped/ancient_emerald_block.png deleted file mode 100644 index 6ff29fba..00000000 Binary files a/public/textures/chipped/ancient_emerald_block.png and /dev/null differ diff --git a/public/textures/chipped/ancient_gold_block.png b/public/textures/chipped/ancient_gold_block.png deleted file mode 100644 index feda252d..00000000 Binary files a/public/textures/chipped/ancient_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/ancient_iron_block.png b/public/textures/chipped/ancient_iron_block.png deleted file mode 100644 index ed0e9fcc..00000000 Binary files a/public/textures/chipped/ancient_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/ancient_oak_bookshelf.png b/public/textures/chipped/ancient_oak_bookshelf.png deleted file mode 100644 index 0ad1a856..00000000 Binary files a/public/textures/chipped/ancient_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/ancient_oak_large_bookshelf.png b/public/textures/chipped/ancient_oak_large_bookshelf.png deleted file mode 100644 index 08b395be..00000000 Binary files a/public/textures/chipped/ancient_oak_large_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/ancient_ochre_froglight.png b/public/textures/chipped/ancient_ochre_froglight.png deleted file mode 100644 index 4c6a1b17..00000000 Binary files a/public/textures/chipped/ancient_ochre_froglight.png and /dev/null differ diff --git a/public/textures/chipped/ancient_pearlescent_froglight.png b/public/textures/chipped/ancient_pearlescent_froglight.png deleted file mode 100644 index 2370658e..00000000 Binary files a/public/textures/chipped/ancient_pearlescent_froglight.png and /dev/null differ diff --git a/public/textures/chipped/ancient_verdant_froglight.png b/public/textures/chipped/ancient_verdant_froglight.png deleted file mode 100644 index 74b78ab7..00000000 Binary files a/public/textures/chipped/ancient_verdant_froglight.png and /dev/null differ diff --git a/public/textures/chipped/ancient_vertical_oak_bookshelf.png b/public/textures/chipped/ancient_vertical_oak_bookshelf.png deleted file mode 100644 index 6fee9afc..00000000 Binary files a/public/textures/chipped/ancient_vertical_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/ancient_waxed_copper_block.png b/public/textures/chipped/ancient_waxed_copper_block.png deleted file mode 100644 index eea5c2b2..00000000 Binary files a/public/textures/chipped/ancient_waxed_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/ancient_waxed_exposed_copper.png b/public/textures/chipped/ancient_waxed_exposed_copper.png deleted file mode 100644 index f2c38dc6..00000000 Binary files a/public/textures/chipped/ancient_waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/chipped/ancient_waxed_oxidized_copper.png b/public/textures/chipped/ancient_waxed_oxidized_copper.png deleted file mode 100644 index fe7a241e..00000000 Binary files a/public/textures/chipped/ancient_waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/chipped/ancient_waxed_weathered_copper.png b/public/textures/chipped/ancient_waxed_weathered_copper.png deleted file mode 100644 index 0fe62f5f..00000000 Binary files a/public/textures/chipped/ancient_waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/chipped/andesite_bricks.png b/public/textures/chipped/andesite_bricks.png deleted file mode 100644 index e84e27ca..00000000 Binary files a/public/textures/chipped/andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/andesite_gravel.png b/public/textures/chipped/andesite_gravel.png deleted file mode 100644 index 8eaeff71..00000000 Binary files a/public/textures/chipped/andesite_gravel.png and /dev/null differ diff --git a/public/textures/chipped/andesite_mini_tiles.png b/public/textures/chipped/andesite_mini_tiles.png deleted file mode 100644 index a8eeef23..00000000 Binary files a/public/textures/chipped/andesite_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/andesite_pillar.png b/public/textures/chipped/andesite_pillar.png deleted file mode 100644 index 9df08f5c..00000000 Binary files a/public/textures/chipped/andesite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/andesite_pillar_top.png b/public/textures/chipped/andesite_pillar_top.png deleted file mode 100644 index e684b546..00000000 Binary files a/public/textures/chipped/andesite_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/andesite_pointed_dripstone.png b/public/textures/chipped/andesite_pointed_dripstone.png deleted file mode 100644 index bc88450a..00000000 Binary files a/public/textures/chipped/andesite_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/andesite_scales.png b/public/textures/chipped/andesite_scales.png deleted file mode 100644 index f46dab0b..00000000 Binary files a/public/textures/chipped/andesite_scales.png and /dev/null differ diff --git a/public/textures/chipped/angled_mud_bricks.png b/public/textures/chipped/angled_mud_bricks.png deleted file mode 100644 index e1b57a2b..00000000 Binary files a/public/textures/chipped/angled_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/angled_mud_bricks_bricks.png b/public/textures/chipped/angled_mud_bricks_bricks.png deleted file mode 100644 index 9091c57b..00000000 Binary files a/public/textures/chipped/angled_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/angled_packed_mud_bricks.png b/public/textures/chipped/angled_packed_mud_bricks.png deleted file mode 100644 index 02b31c88..00000000 Binary files a/public/textures/chipped/angled_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/angry_amethyst_block.png b/public/textures/chipped/angry_amethyst_block.png deleted file mode 100644 index 1dd07404..00000000 Binary files a/public/textures/chipped/angry_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_ancient_debris.png b/public/textures/chipped/angry_ancient_debris.png deleted file mode 100644 index bb2d6a85..00000000 Binary files a/public/textures/chipped/angry_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/angry_andesite.png b/public/textures/chipped/angry_andesite.png deleted file mode 100644 index fc390d52..00000000 Binary files a/public/textures/chipped/angry_andesite.png and /dev/null differ diff --git a/public/textures/chipped/angry_basalt.png b/public/textures/chipped/angry_basalt.png deleted file mode 100644 index c10733a4..00000000 Binary files a/public/textures/chipped/angry_basalt.png and /dev/null differ diff --git a/public/textures/chipped/angry_blackstone.png b/public/textures/chipped/angry_blackstone.png deleted file mode 100644 index bd324f09..00000000 Binary files a/public/textures/chipped/angry_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/angry_blue_ice.png b/public/textures/chipped/angry_blue_ice.png deleted file mode 100644 index 00662428..00000000 Binary files a/public/textures/chipped/angry_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/angry_borderless_bricks.png b/public/textures/chipped/angry_borderless_bricks.png deleted file mode 100644 index 2373de69..00000000 Binary files a/public/textures/chipped/angry_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/angry_bricks.png b/public/textures/chipped/angry_bricks.png deleted file mode 100644 index d2b6314f..00000000 Binary files a/public/textures/chipped/angry_bricks.png and /dev/null differ diff --git a/public/textures/chipped/angry_calcite.png b/public/textures/chipped/angry_calcite.png deleted file mode 100644 index 2e25b9f4..00000000 Binary files a/public/textures/chipped/angry_calcite.png and /dev/null differ diff --git a/public/textures/chipped/angry_clay.png b/public/textures/chipped/angry_clay.png deleted file mode 100644 index f40f3884..00000000 Binary files a/public/textures/chipped/angry_clay.png and /dev/null differ diff --git a/public/textures/chipped/angry_coal_block.png b/public/textures/chipped/angry_coal_block.png deleted file mode 100644 index 3e882e8e..00000000 Binary files a/public/textures/chipped/angry_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_cobblestone.png b/public/textures/chipped/angry_cobblestone.png deleted file mode 100644 index 307ff803..00000000 Binary files a/public/textures/chipped/angry_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/angry_crying_obsidian.png b/public/textures/chipped/angry_crying_obsidian.png deleted file mode 100644 index f310607b..00000000 Binary files a/public/textures/chipped/angry_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/angry_dark_prismarine.png b/public/textures/chipped/angry_dark_prismarine.png deleted file mode 100644 index 8ec96d5c..00000000 Binary files a/public/textures/chipped/angry_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/angry_deepslate.png b/public/textures/chipped/angry_deepslate.png deleted file mode 100644 index bd1ffdd3..00000000 Binary files a/public/textures/chipped/angry_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/angry_diorite.png b/public/textures/chipped/angry_diorite.png deleted file mode 100644 index da705f39..00000000 Binary files a/public/textures/chipped/angry_diorite.png and /dev/null differ diff --git a/public/textures/chipped/angry_dirt.png b/public/textures/chipped/angry_dirt.png deleted file mode 100644 index 0c76b200..00000000 Binary files a/public/textures/chipped/angry_dirt.png and /dev/null differ diff --git a/public/textures/chipped/angry_dripstone_block.png b/public/textures/chipped/angry_dripstone_block.png deleted file mode 100644 index a2fa8346..00000000 Binary files a/public/textures/chipped/angry_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_end_stone.png b/public/textures/chipped/angry_end_stone.png deleted file mode 100644 index bceca848..00000000 Binary files a/public/textures/chipped/angry_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/angry_gilded_blackstone.png b/public/textures/chipped/angry_gilded_blackstone.png deleted file mode 100644 index de26457b..00000000 Binary files a/public/textures/chipped/angry_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/angry_granite.png b/public/textures/chipped/angry_granite.png deleted file mode 100644 index f782222f..00000000 Binary files a/public/textures/chipped/angry_granite.png and /dev/null differ diff --git a/public/textures/chipped/angry_ice.png b/public/textures/chipped/angry_ice.png deleted file mode 100644 index bc74f667..00000000 Binary files a/public/textures/chipped/angry_ice.png and /dev/null differ diff --git a/public/textures/chipped/angry_lapis_block.png b/public/textures/chipped/angry_lapis_block.png deleted file mode 100644 index b59b6a49..00000000 Binary files a/public/textures/chipped/angry_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_lodestone.png b/public/textures/chipped/angry_lodestone.png deleted file mode 100644 index 2404d541..00000000 Binary files a/public/textures/chipped/angry_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/angry_magma_block.png b/public/textures/chipped/angry_magma_block.png deleted file mode 100644 index 01800a5f..00000000 Binary files a/public/textures/chipped/angry_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_mossy_cobblestone.png b/public/textures/chipped/angry_mossy_cobblestone.png deleted file mode 100644 index 3db9a337..00000000 Binary files a/public/textures/chipped/angry_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/angry_mossy_stone_bricks.png b/public/textures/chipped/angry_mossy_stone_bricks.png deleted file mode 100644 index 18616aa8..00000000 Binary files a/public/textures/chipped/angry_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/angry_mud.png b/public/textures/chipped/angry_mud.png deleted file mode 100644 index b1c969d9..00000000 Binary files a/public/textures/chipped/angry_mud.png and /dev/null differ diff --git a/public/textures/chipped/angry_mud_bricks.png b/public/textures/chipped/angry_mud_bricks.png deleted file mode 100644 index a9075256..00000000 Binary files a/public/textures/chipped/angry_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/angry_nether_bricks.png b/public/textures/chipped/angry_nether_bricks.png deleted file mode 100644 index c4cd2beb..00000000 Binary files a/public/textures/chipped/angry_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/angry_netherrack.png b/public/textures/chipped/angry_netherrack.png deleted file mode 100644 index 8cce1eae..00000000 Binary files a/public/textures/chipped/angry_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/angry_obsidian.png b/public/textures/chipped/angry_obsidian.png deleted file mode 100644 index 2f506edf..00000000 Binary files a/public/textures/chipped/angry_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/angry_packed_ice.png b/public/textures/chipped/angry_packed_ice.png deleted file mode 100644 index a3ad21a2..00000000 Binary files a/public/textures/chipped/angry_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/angry_packed_mud.png b/public/textures/chipped/angry_packed_mud.png deleted file mode 100644 index 1ce309bb..00000000 Binary files a/public/textures/chipped/angry_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/angry_prismarine.png b/public/textures/chipped/angry_prismarine.png deleted file mode 100644 index d7fbe157..00000000 Binary files a/public/textures/chipped/angry_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/angry_purpur_block.png b/public/textures/chipped/angry_purpur_block.png deleted file mode 100644 index 72b2c9d1..00000000 Binary files a/public/textures/chipped/angry_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_quartz_block.png b/public/textures/chipped/angry_quartz_block.png deleted file mode 100644 index 20c68016..00000000 Binary files a/public/textures/chipped/angry_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_raw_copper_block.png b/public/textures/chipped/angry_raw_copper_block.png deleted file mode 100644 index 8ca7824a..00000000 Binary files a/public/textures/chipped/angry_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_raw_gold_block.png b/public/textures/chipped/angry_raw_gold_block.png deleted file mode 100644 index d3c46b38..00000000 Binary files a/public/textures/chipped/angry_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_raw_iron_block.png b/public/textures/chipped/angry_raw_iron_block.png deleted file mode 100644 index c3401cee..00000000 Binary files a/public/textures/chipped/angry_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_red_nether_bricks.png b/public/textures/chipped/angry_red_nether_bricks.png deleted file mode 100644 index 029d707b..00000000 Binary files a/public/textures/chipped/angry_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/angry_red_sandstone.png b/public/textures/chipped/angry_red_sandstone.png deleted file mode 100644 index 3f9e1766..00000000 Binary files a/public/textures/chipped/angry_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/angry_redstone_block.png b/public/textures/chipped/angry_redstone_block.png deleted file mode 100644 index f144ce0f..00000000 Binary files a/public/textures/chipped/angry_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_sandstone.png b/public/textures/chipped/angry_sandstone.png deleted file mode 100644 index f9880c17..00000000 Binary files a/public/textures/chipped/angry_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/angry_smooth_stone.png b/public/textures/chipped/angry_smooth_stone.png deleted file mode 100644 index 7816466d..00000000 Binary files a/public/textures/chipped/angry_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/angry_snow_block.png b/public/textures/chipped/angry_snow_block.png deleted file mode 100644 index 6ab4c3ad..00000000 Binary files a/public/textures/chipped/angry_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/angry_stone.png b/public/textures/chipped/angry_stone.png deleted file mode 100644 index a9c91dc3..00000000 Binary files a/public/textures/chipped/angry_stone.png and /dev/null differ diff --git a/public/textures/chipped/angry_tuff.png b/public/textures/chipped/angry_tuff.png deleted file mode 100644 index 0bce02d4..00000000 Binary files a/public/textures/chipped/angry_tuff.png and /dev/null differ diff --git a/public/textures/chipped/anguished_carved_pumpkin.png b/public/textures/chipped/anguished_carved_pumpkin.png deleted file mode 100644 index 7a050a97..00000000 Binary files a/public/textures/chipped/anguished_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/anguished_jack_o_lantern.png b/public/textures/chipped/anguished_jack_o_lantern.png deleted file mode 100644 index 816569df..00000000 Binary files a/public/textures/chipped/anguished_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/antique_hay_block.png b/public/textures/chipped/antique_hay_block.png deleted file mode 100644 index 33f1c710..00000000 Binary files a/public/textures/chipped/antique_hay_block.png and /dev/null differ diff --git a/public/textures/chipped/apple_acacia_leaves.png b/public/textures/chipped/apple_acacia_leaves.png deleted file mode 100644 index b0799b51..00000000 Binary files a/public/textures/chipped/apple_acacia_leaves.png and /dev/null differ diff --git a/public/textures/chipped/apple_birch_leaves.png b/public/textures/chipped/apple_birch_leaves.png deleted file mode 100644 index 8efb53f7..00000000 Binary files a/public/textures/chipped/apple_birch_leaves.png and /dev/null differ diff --git a/public/textures/chipped/apple_dark_oak_leaves.png b/public/textures/chipped/apple_dark_oak_leaves.png deleted file mode 100644 index 4f26f74c..00000000 Binary files a/public/textures/chipped/apple_dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/apple_jungle_leaves.png b/public/textures/chipped/apple_jungle_leaves.png deleted file mode 100644 index fc6a2e0a..00000000 Binary files a/public/textures/chipped/apple_jungle_leaves.png and /dev/null differ diff --git a/public/textures/chipped/apple_oak_leaves.png b/public/textures/chipped/apple_oak_leaves.png deleted file mode 100644 index e35a6860..00000000 Binary files a/public/textures/chipped/apple_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/apple_spruce_leaves.png b/public/textures/chipped/apple_spruce_leaves.png deleted file mode 100644 index 1eb7544b..00000000 Binary files a/public/textures/chipped/apple_spruce_leaves.png and /dev/null differ diff --git a/public/textures/chipped/arched_black_stained_glass_pane_pillar.png b/public/textures/chipped/arched_black_stained_glass_pane_pillar.png deleted file mode 100644 index 66855587..00000000 Binary files a/public/textures/chipped/arched_black_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_black_stained_glass_pillar.png b/public/textures/chipped/arched_black_stained_glass_pillar.png deleted file mode 100644 index aecce015..00000000 Binary files a/public/textures/chipped/arched_black_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_blue_stained_glass_pane_pillar.png b/public/textures/chipped/arched_blue_stained_glass_pane_pillar.png deleted file mode 100644 index 3746da8c..00000000 Binary files a/public/textures/chipped/arched_blue_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_blue_stained_glass_pillar.png b/public/textures/chipped/arched_blue_stained_glass_pillar.png deleted file mode 100644 index 33683f85..00000000 Binary files a/public/textures/chipped/arched_blue_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_brown_stained_glass_pane_pillar.png b/public/textures/chipped/arched_brown_stained_glass_pane_pillar.png deleted file mode 100644 index 7859d9e2..00000000 Binary files a/public/textures/chipped/arched_brown_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_brown_stained_glass_pillar.png b/public/textures/chipped/arched_brown_stained_glass_pillar.png deleted file mode 100644 index a160b8bf..00000000 Binary files a/public/textures/chipped/arched_brown_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_cyan_stained_glass_pane_pillar.png b/public/textures/chipped/arched_cyan_stained_glass_pane_pillar.png deleted file mode 100644 index 09e5cbf7..00000000 Binary files a/public/textures/chipped/arched_cyan_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_cyan_stained_glass_pillar.png b/public/textures/chipped/arched_cyan_stained_glass_pillar.png deleted file mode 100644 index dc3e1c1b..00000000 Binary files a/public/textures/chipped/arched_cyan_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_gray_stained_glass_pane_pillar.png b/public/textures/chipped/arched_gray_stained_glass_pane_pillar.png deleted file mode 100644 index 9bd0bfb2..00000000 Binary files a/public/textures/chipped/arched_gray_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_gray_stained_glass_pillar.png b/public/textures/chipped/arched_gray_stained_glass_pillar.png deleted file mode 100644 index 809504ee..00000000 Binary files a/public/textures/chipped/arched_gray_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_green_stained_glass_pane_pillar.png b/public/textures/chipped/arched_green_stained_glass_pane_pillar.png deleted file mode 100644 index 499a7f09..00000000 Binary files a/public/textures/chipped/arched_green_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_green_stained_glass_pillar.png b/public/textures/chipped/arched_green_stained_glass_pillar.png deleted file mode 100644 index c700d82f..00000000 Binary files a/public/textures/chipped/arched_green_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_leaded_glass_pane_pillar.png b/public/textures/chipped/arched_leaded_glass_pane_pillar.png deleted file mode 100644 index 8d69f51d..00000000 Binary files a/public/textures/chipped/arched_leaded_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_leaded_glass_pillar.png b/public/textures/chipped/arched_leaded_glass_pillar.png deleted file mode 100644 index 5ec34957..00000000 Binary files a/public/textures/chipped/arched_leaded_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_light_blue_stained_glass_pane_pillar.png b/public/textures/chipped/arched_light_blue_stained_glass_pane_pillar.png deleted file mode 100644 index 73e68220..00000000 Binary files a/public/textures/chipped/arched_light_blue_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_light_blue_stained_glass_pillar.png b/public/textures/chipped/arched_light_blue_stained_glass_pillar.png deleted file mode 100644 index 9cda8929..00000000 Binary files a/public/textures/chipped/arched_light_blue_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_light_gray_stained_glass_pane_pillar.png b/public/textures/chipped/arched_light_gray_stained_glass_pane_pillar.png deleted file mode 100644 index 680df38a..00000000 Binary files a/public/textures/chipped/arched_light_gray_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_light_gray_stained_glass_pillar.png b/public/textures/chipped/arched_light_gray_stained_glass_pillar.png deleted file mode 100644 index 489d523f..00000000 Binary files a/public/textures/chipped/arched_light_gray_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_lime_stained_glass_pane_pillar.png b/public/textures/chipped/arched_lime_stained_glass_pane_pillar.png deleted file mode 100644 index cc7d804a..00000000 Binary files a/public/textures/chipped/arched_lime_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_lime_stained_glass_pillar.png b/public/textures/chipped/arched_lime_stained_glass_pillar.png deleted file mode 100644 index 638d619c..00000000 Binary files a/public/textures/chipped/arched_lime_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_magenta_stained_glass_pane_pillar.png b/public/textures/chipped/arched_magenta_stained_glass_pane_pillar.png deleted file mode 100644 index 58981ef2..00000000 Binary files a/public/textures/chipped/arched_magenta_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_magenta_stained_glass_pillar.png b/public/textures/chipped/arched_magenta_stained_glass_pillar.png deleted file mode 100644 index 4bbfb7e4..00000000 Binary files a/public/textures/chipped/arched_magenta_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_orange_stained_glass_pane_pillar.png b/public/textures/chipped/arched_orange_stained_glass_pane_pillar.png deleted file mode 100644 index f6861b08..00000000 Binary files a/public/textures/chipped/arched_orange_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_orange_stained_glass_pillar.png b/public/textures/chipped/arched_orange_stained_glass_pillar.png deleted file mode 100644 index a9e6dd4f..00000000 Binary files a/public/textures/chipped/arched_orange_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_pink_stained_glass_pane_pillar.png b/public/textures/chipped/arched_pink_stained_glass_pane_pillar.png deleted file mode 100644 index 2b283c76..00000000 Binary files a/public/textures/chipped/arched_pink_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_pink_stained_glass_pillar.png b/public/textures/chipped/arched_pink_stained_glass_pillar.png deleted file mode 100644 index fbf8cdb1..00000000 Binary files a/public/textures/chipped/arched_pink_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_purple_stained_glass_pane_pillar.png b/public/textures/chipped/arched_purple_stained_glass_pane_pillar.png deleted file mode 100644 index 0b112f6b..00000000 Binary files a/public/textures/chipped/arched_purple_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_purple_stained_glass_pillar.png b/public/textures/chipped/arched_purple_stained_glass_pillar.png deleted file mode 100644 index 6f5e521e..00000000 Binary files a/public/textures/chipped/arched_purple_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_red_stained_glass_pane_pillar.png b/public/textures/chipped/arched_red_stained_glass_pane_pillar.png deleted file mode 100644 index 7e323a42..00000000 Binary files a/public/textures/chipped/arched_red_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_red_stained_glass_pillar.png b/public/textures/chipped/arched_red_stained_glass_pillar.png deleted file mode 100644 index bcfda486..00000000 Binary files a/public/textures/chipped/arched_red_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_white_stained_glass_pane_pillar.png b/public/textures/chipped/arched_white_stained_glass_pane_pillar.png deleted file mode 100644 index 05a0320c..00000000 Binary files a/public/textures/chipped/arched_white_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_white_stained_glass_pillar.png b/public/textures/chipped/arched_white_stained_glass_pillar.png deleted file mode 100644 index e94dce38..00000000 Binary files a/public/textures/chipped/arched_white_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_yellow_stained_glass_pane_pillar.png b/public/textures/chipped/arched_yellow_stained_glass_pane_pillar.png deleted file mode 100644 index e0e2f403..00000000 Binary files a/public/textures/chipped/arched_yellow_stained_glass_pane_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arched_yellow_stained_glass_pillar.png b/public/textures/chipped/arched_yellow_stained_glass_pillar.png deleted file mode 100644 index 489c6193..00000000 Binary files a/public/textures/chipped/arched_yellow_stained_glass_pillar.png and /dev/null differ diff --git a/public/textures/chipped/arrow_mud.png b/public/textures/chipped/arrow_mud.png deleted file mode 100644 index b0dc4a61..00000000 Binary files a/public/textures/chipped/arrow_mud.png and /dev/null differ diff --git a/public/textures/chipped/arrow_mud_bricks.png b/public/textures/chipped/arrow_mud_bricks.png deleted file mode 100644 index c0de69c1..00000000 Binary files a/public/textures/chipped/arrow_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/arrow_packed_mud.png b/public/textures/chipped/arrow_packed_mud.png deleted file mode 100644 index c6e6c3f5..00000000 Binary files a/public/textures/chipped/arrow_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/ash_sand.png b/public/textures/chipped/ash_sand.png deleted file mode 100644 index 8e2d5843..00000000 Binary files a/public/textures/chipped/ash_sand.png and /dev/null differ diff --git a/public/textures/chipped/autumnkin.png b/public/textures/chipped/autumnkin.png deleted file mode 100644 index e08a3501..00000000 Binary files a/public/textures/chipped/autumnkin.png and /dev/null differ diff --git a/public/textures/chipped/bad_time_carved_pumpkin.png b/public/textures/chipped/bad_time_carved_pumpkin.png deleted file mode 100644 index 39015965..00000000 Binary files a/public/textures/chipped/bad_time_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/bad_time_jack_o_lantern.png b/public/textures/chipped/bad_time_jack_o_lantern.png deleted file mode 100644 index 98161f39..00000000 Binary files a/public/textures/chipped/bad_time_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/bamboo_barrel.png b/public/textures/chipped/bamboo_barrel.png deleted file mode 100644 index f4f90294..00000000 Binary files a/public/textures/chipped/bamboo_barrel.png and /dev/null differ diff --git a/public/textures/chipped/bamboo_dried_kelp_block.png b/public/textures/chipped/bamboo_dried_kelp_block.png deleted file mode 100644 index 676dabed..00000000 Binary files a/public/textures/chipped/bamboo_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/bamboo_planks_fine_mosaic.png b/public/textures/chipped/bamboo_planks_fine_mosaic.png deleted file mode 100644 index cfa63ab7..00000000 Binary files a/public/textures/chipped/bamboo_planks_fine_mosaic.png and /dev/null differ diff --git a/public/textures/chipped/bamboo_planks_panel.png b/public/textures/chipped/bamboo_planks_panel.png deleted file mode 100644 index 256d11eb..00000000 Binary files a/public/textures/chipped/bamboo_planks_panel.png and /dev/null differ diff --git a/public/textures/chipped/bamboo_planks_shavings.png b/public/textures/chipped/bamboo_planks_shavings.png deleted file mode 100644 index 52dbec38..00000000 Binary files a/public/textures/chipped/bamboo_planks_shavings.png and /dev/null differ diff --git a/public/textures/chipped/barbed_iron_bars.png b/public/textures/chipped/barbed_iron_bars.png deleted file mode 100644 index 1c8a9027..00000000 Binary files a/public/textures/chipped/barbed_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/barky_black_carpet.png b/public/textures/chipped/barky_black_carpet.png deleted file mode 100644 index a8e2721c..00000000 Binary files a/public/textures/chipped/barky_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_black_wool.png b/public/textures/chipped/barky_black_wool.png deleted file mode 100644 index 65c65e09..00000000 Binary files a/public/textures/chipped/barky_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_blue_carpet.png b/public/textures/chipped/barky_blue_carpet.png deleted file mode 100644 index ede2fb91..00000000 Binary files a/public/textures/chipped/barky_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_blue_wool.png b/public/textures/chipped/barky_blue_wool.png deleted file mode 100644 index c76635b9..00000000 Binary files a/public/textures/chipped/barky_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_brown_carpet.png b/public/textures/chipped/barky_brown_carpet.png deleted file mode 100644 index 1ba38647..00000000 Binary files a/public/textures/chipped/barky_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_brown_wool.png b/public/textures/chipped/barky_brown_wool.png deleted file mode 100644 index 32aac1fb..00000000 Binary files a/public/textures/chipped/barky_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_cyan_carpet.png b/public/textures/chipped/barky_cyan_carpet.png deleted file mode 100644 index de7c6eda..00000000 Binary files a/public/textures/chipped/barky_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_cyan_wool.png b/public/textures/chipped/barky_cyan_wool.png deleted file mode 100644 index 506b91dc..00000000 Binary files a/public/textures/chipped/barky_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_gray_carpet.png b/public/textures/chipped/barky_gray_carpet.png deleted file mode 100644 index 02483ece..00000000 Binary files a/public/textures/chipped/barky_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_gray_wool.png b/public/textures/chipped/barky_gray_wool.png deleted file mode 100644 index f010d5a0..00000000 Binary files a/public/textures/chipped/barky_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_green_carpet.png b/public/textures/chipped/barky_green_carpet.png deleted file mode 100644 index bb389eae..00000000 Binary files a/public/textures/chipped/barky_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_green_wool.png b/public/textures/chipped/barky_green_wool.png deleted file mode 100644 index f53273d9..00000000 Binary files a/public/textures/chipped/barky_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_light_blue_carpet.png b/public/textures/chipped/barky_light_blue_carpet.png deleted file mode 100644 index cf9de371..00000000 Binary files a/public/textures/chipped/barky_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_light_blue_wool.png b/public/textures/chipped/barky_light_blue_wool.png deleted file mode 100644 index a01d3a72..00000000 Binary files a/public/textures/chipped/barky_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_light_gray_carpet.png b/public/textures/chipped/barky_light_gray_carpet.png deleted file mode 100644 index 1bf58268..00000000 Binary files a/public/textures/chipped/barky_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_light_gray_wool.png b/public/textures/chipped/barky_light_gray_wool.png deleted file mode 100644 index 9db86170..00000000 Binary files a/public/textures/chipped/barky_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_lime_carpet.png b/public/textures/chipped/barky_lime_carpet.png deleted file mode 100644 index 699141f7..00000000 Binary files a/public/textures/chipped/barky_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_lime_wool.png b/public/textures/chipped/barky_lime_wool.png deleted file mode 100644 index 5a483037..00000000 Binary files a/public/textures/chipped/barky_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_magenta_carpet.png b/public/textures/chipped/barky_magenta_carpet.png deleted file mode 100644 index a1324e7e..00000000 Binary files a/public/textures/chipped/barky_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_magenta_wool.png b/public/textures/chipped/barky_magenta_wool.png deleted file mode 100644 index c663c9aa..00000000 Binary files a/public/textures/chipped/barky_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_orange_carpet.png b/public/textures/chipped/barky_orange_carpet.png deleted file mode 100644 index 7fa2d86f..00000000 Binary files a/public/textures/chipped/barky_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_orange_wool.png b/public/textures/chipped/barky_orange_wool.png deleted file mode 100644 index cce43dac..00000000 Binary files a/public/textures/chipped/barky_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_pink_carpet.png b/public/textures/chipped/barky_pink_carpet.png deleted file mode 100644 index 32f6ba94..00000000 Binary files a/public/textures/chipped/barky_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_pink_wool.png b/public/textures/chipped/barky_pink_wool.png deleted file mode 100644 index 2b088caf..00000000 Binary files a/public/textures/chipped/barky_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_purple_carpet.png b/public/textures/chipped/barky_purple_carpet.png deleted file mode 100644 index ec06a036..00000000 Binary files a/public/textures/chipped/barky_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_purple_wool.png b/public/textures/chipped/barky_purple_wool.png deleted file mode 100644 index 87bdb5d9..00000000 Binary files a/public/textures/chipped/barky_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_red_carpet.png b/public/textures/chipped/barky_red_carpet.png deleted file mode 100644 index ebf3e26c..00000000 Binary files a/public/textures/chipped/barky_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_red_wool.png b/public/textures/chipped/barky_red_wool.png deleted file mode 100644 index c6826f5f..00000000 Binary files a/public/textures/chipped/barky_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_white_carpet.png b/public/textures/chipped/barky_white_carpet.png deleted file mode 100644 index 62858a93..00000000 Binary files a/public/textures/chipped/barky_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_white_wool.png b/public/textures/chipped/barky_white_wool.png deleted file mode 100644 index 39290704..00000000 Binary files a/public/textures/chipped/barky_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/barky_yellow_carpet.png b/public/textures/chipped/barky_yellow_carpet.png deleted file mode 100644 index 771b2f07..00000000 Binary files a/public/textures/chipped/barky_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/barky_yellow_wool.png b/public/textures/chipped/barky_yellow_wool.png deleted file mode 100644 index b4a1e403..00000000 Binary files a/public/textures/chipped/barky_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/barred_acacia_trapdoor.png b/public/textures/chipped/barred_acacia_trapdoor.png deleted file mode 100644 index 70981708..00000000 Binary files a/public/textures/chipped/barred_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/barred_bamboo_door.png b/public/textures/chipped/barred_bamboo_door.png deleted file mode 100644 index 29659bc8..00000000 Binary files a/public/textures/chipped/barred_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/barred_bamboo_trapdoor.png b/public/textures/chipped/barred_bamboo_trapdoor.png deleted file mode 100644 index c7b987b8..00000000 Binary files a/public/textures/chipped/barred_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/barred_birch_door.png b/public/textures/chipped/barred_birch_door.png deleted file mode 100644 index 9cd40517..00000000 Binary files a/public/textures/chipped/barred_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/barred_birch_trapdoor.png b/public/textures/chipped/barred_birch_trapdoor.png deleted file mode 100644 index a06d3f70..00000000 Binary files a/public/textures/chipped/barred_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/barred_cherry_door.png b/public/textures/chipped/barred_cherry_door.png deleted file mode 100644 index c07d8543..00000000 Binary files a/public/textures/chipped/barred_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/barred_cherry_trapdoor.png b/public/textures/chipped/barred_cherry_trapdoor.png deleted file mode 100644 index fdca5675..00000000 Binary files a/public/textures/chipped/barred_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/barred_crimson_door.png b/public/textures/chipped/barred_crimson_door.png deleted file mode 100644 index 49daedd3..00000000 Binary files a/public/textures/chipped/barred_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/barred_crimson_trapdoor.png b/public/textures/chipped/barred_crimson_trapdoor.png deleted file mode 100644 index 71009329..00000000 Binary files a/public/textures/chipped/barred_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/barred_dark_oak_door.png b/public/textures/chipped/barred_dark_oak_door.png deleted file mode 100644 index c14c5310..00000000 Binary files a/public/textures/chipped/barred_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/barred_dark_oak_trapdoor.png b/public/textures/chipped/barred_dark_oak_trapdoor.png deleted file mode 100644 index e6113bb4..00000000 Binary files a/public/textures/chipped/barred_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/barred_jungle_door.png b/public/textures/chipped/barred_jungle_door.png deleted file mode 100644 index b2348378..00000000 Binary files a/public/textures/chipped/barred_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/barred_jungle_trapdoor.png b/public/textures/chipped/barred_jungle_trapdoor.png deleted file mode 100644 index 5bb3cbb6..00000000 Binary files a/public/textures/chipped/barred_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/barred_mangrove_door.png b/public/textures/chipped/barred_mangrove_door.png deleted file mode 100644 index 2aa16f47..00000000 Binary files a/public/textures/chipped/barred_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/barred_mangrove_trapdoor.png b/public/textures/chipped/barred_mangrove_trapdoor.png deleted file mode 100644 index 816852c2..00000000 Binary files a/public/textures/chipped/barred_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/barred_oak_door.png b/public/textures/chipped/barred_oak_door.png deleted file mode 100644 index 2693f1cf..00000000 Binary files a/public/textures/chipped/barred_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/barred_oak_trapdoor.png b/public/textures/chipped/barred_oak_trapdoor.png deleted file mode 100644 index 88b458bb..00000000 Binary files a/public/textures/chipped/barred_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/barred_ochre_froglight.png b/public/textures/chipped/barred_ochre_froglight.png deleted file mode 100644 index 631137d4..00000000 Binary files a/public/textures/chipped/barred_ochre_froglight.png and /dev/null differ diff --git a/public/textures/chipped/barred_pearlescent_froglight.png b/public/textures/chipped/barred_pearlescent_froglight.png deleted file mode 100644 index af9afae0..00000000 Binary files a/public/textures/chipped/barred_pearlescent_froglight.png and /dev/null differ diff --git a/public/textures/chipped/barred_spruce_door.png b/public/textures/chipped/barred_spruce_door.png deleted file mode 100644 index b1444497..00000000 Binary files a/public/textures/chipped/barred_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/barred_spruce_trapdoor.png b/public/textures/chipped/barred_spruce_trapdoor.png deleted file mode 100644 index 44a56ce7..00000000 Binary files a/public/textures/chipped/barred_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/barred_verdant_froglight.png b/public/textures/chipped/barred_verdant_froglight.png deleted file mode 100644 index b314ccfa..00000000 Binary files a/public/textures/chipped/barred_verdant_froglight.png and /dev/null differ diff --git a/public/textures/chipped/barred_warped_door.png b/public/textures/chipped/barred_warped_door.png deleted file mode 100644 index bcb8271e..00000000 Binary files a/public/textures/chipped/barred_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/barred_warped_trapdoor.png b/public/textures/chipped/barred_warped_trapdoor.png deleted file mode 100644 index 859eaa6c..00000000 Binary files a/public/textures/chipped/barred_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/basalt_bricks.png b/public/textures/chipped/basalt_bricks.png deleted file mode 100644 index 138a5400..00000000 Binary files a/public/textures/chipped/basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/basalt_mini_tiles.png b/public/textures/chipped/basalt_mini_tiles.png deleted file mode 100644 index fdb27e68..00000000 Binary files a/public/textures/chipped/basalt_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/basalt_pillar.png b/public/textures/chipped/basalt_pillar.png deleted file mode 100644 index d05fe858..00000000 Binary files a/public/textures/chipped/basalt_pillar.png and /dev/null differ diff --git a/public/textures/chipped/basalt_pillar_top.png b/public/textures/chipped/basalt_pillar_top.png deleted file mode 100644 index e8e54932..00000000 Binary files a/public/textures/chipped/basalt_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/basalt_pointed_dripstone.png b/public/textures/chipped/basalt_pointed_dripstone.png deleted file mode 100644 index fefe7ad0..00000000 Binary files a/public/textures/chipped/basalt_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/basalt_scales.png b/public/textures/chipped/basalt_scales.png deleted file mode 100644 index 49f9b3b0..00000000 Binary files a/public/textures/chipped/basalt_scales.png and /dev/null differ diff --git a/public/textures/chipped/basket_woven_acacia_planks.png b/public/textures/chipped/basket_woven_acacia_planks.png deleted file mode 100644 index 7a784ae7..00000000 Binary files a/public/textures/chipped/basket_woven_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/basket_woven_bamboo_planks.png b/public/textures/chipped/basket_woven_bamboo_planks.png deleted file mode 100644 index 75aac5ea..00000000 Binary files a/public/textures/chipped/basket_woven_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/basket_woven_birch_planks.png b/public/textures/chipped/basket_woven_birch_planks.png deleted file mode 100644 index 5d727439..00000000 Binary files a/public/textures/chipped/basket_woven_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/basket_woven_cherry_planks.png b/public/textures/chipped/basket_woven_cherry_planks.png deleted file mode 100644 index 97507fbd..00000000 Binary files a/public/textures/chipped/basket_woven_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/basket_woven_crimson_planks.png b/public/textures/chipped/basket_woven_crimson_planks.png deleted file mode 100644 index 781e11b5..00000000 Binary files a/public/textures/chipped/basket_woven_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/basket_woven_dark_oak_planks.png b/public/textures/chipped/basket_woven_dark_oak_planks.png deleted file mode 100644 index 2b828183..00000000 Binary files a/public/textures/chipped/basket_woven_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/basket_woven_jungle_planks.png b/public/textures/chipped/basket_woven_jungle_planks.png deleted file mode 100644 index 589e201a..00000000 Binary files a/public/textures/chipped/basket_woven_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/basket_woven_mangrove_planks.png b/public/textures/chipped/basket_woven_mangrove_planks.png deleted file mode 100644 index 27e430d4..00000000 Binary files a/public/textures/chipped/basket_woven_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/basket_woven_oak_planks.png b/public/textures/chipped/basket_woven_oak_planks.png deleted file mode 100644 index f37cc196..00000000 Binary files a/public/textures/chipped/basket_woven_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/basket_woven_spruce_planks.png b/public/textures/chipped/basket_woven_spruce_planks.png deleted file mode 100644 index 598a5531..00000000 Binary files a/public/textures/chipped/basket_woven_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/basket_woven_warped_planks.png b/public/textures/chipped/basket_woven_warped_planks.png deleted file mode 100644 index 027aed04..00000000 Binary files a/public/textures/chipped/basket_woven_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/beach_acacia_door.png b/public/textures/chipped/beach_acacia_door.png deleted file mode 100644 index 7d8a2088..00000000 Binary files a/public/textures/chipped/beach_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/beach_bamboo_door.png b/public/textures/chipped/beach_bamboo_door.png deleted file mode 100644 index a357e5fc..00000000 Binary files a/public/textures/chipped/beach_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/beach_birch_door.png b/public/textures/chipped/beach_birch_door.png deleted file mode 100644 index 36a1439d..00000000 Binary files a/public/textures/chipped/beach_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/beach_cherry_door.png b/public/textures/chipped/beach_cherry_door.png deleted file mode 100644 index cb087873..00000000 Binary files a/public/textures/chipped/beach_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/beach_crimson_door.png b/public/textures/chipped/beach_crimson_door.png deleted file mode 100644 index c3c88ab8..00000000 Binary files a/public/textures/chipped/beach_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/beach_dark_oak_door.png b/public/textures/chipped/beach_dark_oak_door.png deleted file mode 100644 index 99c95ffd..00000000 Binary files a/public/textures/chipped/beach_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/beach_mangrove_door.png b/public/textures/chipped/beach_mangrove_door.png deleted file mode 100644 index 5369eee1..00000000 Binary files a/public/textures/chipped/beach_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/beach_oak_door.png b/public/textures/chipped/beach_oak_door.png deleted file mode 100644 index 188c2a7f..00000000 Binary files a/public/textures/chipped/beach_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/beach_spruce_door.png b/public/textures/chipped/beach_spruce_door.png deleted file mode 100644 index c3a96919..00000000 Binary files a/public/textures/chipped/beach_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/beach_warped_door.png b/public/textures/chipped/beach_warped_door.png deleted file mode 100644 index 8fca8d8d..00000000 Binary files a/public/textures/chipped/beach_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/big_flower_lily_pad.png b/public/textures/chipped/big_flower_lily_pad.png deleted file mode 100644 index 3d454c79..00000000 Binary files a/public/textures/chipped/big_flower_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/big_lantern.png b/public/textures/chipped/big_lantern.png deleted file mode 100644 index 2f57a82c..00000000 Binary files a/public/textures/chipped/big_lantern.png and /dev/null differ diff --git a/public/textures/chipped/big_soul_lantern.png b/public/textures/chipped/big_soul_lantern.png deleted file mode 100644 index a18c9b95..00000000 Binary files a/public/textures/chipped/big_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/birch_barrel.png b/public/textures/chipped/birch_barrel.png deleted file mode 100644 index ecea3e85..00000000 Binary files a/public/textures/chipped/birch_barrel.png and /dev/null differ diff --git a/public/textures/chipped/birch_crate.png b/public/textures/chipped/birch_crate.png deleted file mode 100644 index 54017e4e..00000000 Binary files a/public/textures/chipped/birch_crate.png and /dev/null differ diff --git a/public/textures/chipped/birch_planks_mosaic.png b/public/textures/chipped/birch_planks_mosaic.png deleted file mode 100644 index a819e4a5..00000000 Binary files a/public/textures/chipped/birch_planks_mosaic.png and /dev/null differ diff --git a/public/textures/chipped/birch_planks_panel.png b/public/textures/chipped/birch_planks_panel.png deleted file mode 100644 index ab3fbfb9..00000000 Binary files a/public/textures/chipped/birch_planks_panel.png and /dev/null differ diff --git a/public/textures/chipped/birch_planks_shavings.png b/public/textures/chipped/birch_planks_shavings.png deleted file mode 100644 index ce0ed7ce..00000000 Binary files a/public/textures/chipped/birch_planks_shavings.png and /dev/null differ diff --git a/public/textures/chipped/birch_torch.png b/public/textures/chipped/birch_torch.png deleted file mode 100644 index 392fcc82..00000000 Binary files a/public/textures/chipped/birch_torch.png and /dev/null differ diff --git a/public/textures/chipped/black_concrete_bricks.png b/public/textures/chipped/black_concrete_bricks.png deleted file mode 100644 index 7a5cf3a2..00000000 Binary files a/public/textures/chipped/black_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/black_concrete_panel.png b/public/textures/chipped/black_concrete_panel.png deleted file mode 100644 index cb0c1a87..00000000 Binary files a/public/textures/chipped/black_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/black_concrete_pillar.png b/public/textures/chipped/black_concrete_pillar.png deleted file mode 100644 index 00f540cf..00000000 Binary files a/public/textures/chipped/black_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/black_concrete_tiles.png b/public/textures/chipped/black_concrete_tiles.png deleted file mode 100644 index a8c3d8f7..00000000 Binary files a/public/textures/chipped/black_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/black_glazed_terracotta_pillar_sides.png b/public/textures/chipped/black_glazed_terracotta_pillar_sides.png deleted file mode 100644 index ac8fdb34..00000000 Binary files a/public/textures/chipped/black_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/black_glazed_terracotta_pillar_top.png b/public/textures/chipped/black_glazed_terracotta_pillar_top.png deleted file mode 100644 index 918652fb..00000000 Binary files a/public/textures/chipped/black_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/black_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/black_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index 83aa1979..00000000 Binary files a/public/textures/chipped/black_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/black_glazed_terracotta_tiles.png b/public/textures/chipped/black_glazed_terracotta_tiles.png deleted file mode 100644 index 1abeac8c..00000000 Binary files a/public/textures/chipped/black_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/black_terracotta_bricks.png b/public/textures/chipped/black_terracotta_bricks.png deleted file mode 100644 index 7e10bb62..00000000 Binary files a/public/textures/chipped/black_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/black_terracotta_column.png b/public/textures/chipped/black_terracotta_column.png deleted file mode 100644 index cb2f9c1c..00000000 Binary files a/public/textures/chipped/black_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/black_terracotta_pillar.png b/public/textures/chipped/black_terracotta_pillar.png deleted file mode 100644 index 6695bd30..00000000 Binary files a/public/textures/chipped/black_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/black_terracotta_tile.png b/public/textures/chipped/black_terracotta_tile.png deleted file mode 100644 index 54864808..00000000 Binary files a/public/textures/chipped/black_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/black_terracotta_tiles.png b/public/textures/chipped/black_terracotta_tiles.png deleted file mode 100644 index 14ca7a7b..00000000 Binary files a/public/textures/chipped/black_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/blackstone_mini_tiles.png b/public/textures/chipped/blackstone_mini_tiles.png deleted file mode 100644 index 509246ef..00000000 Binary files a/public/textures/chipped/blackstone_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/blackstone_pillar.png b/public/textures/chipped/blackstone_pillar.png deleted file mode 100644 index 9aa59c56..00000000 Binary files a/public/textures/chipped/blackstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/blackstone_pillar_top.png b/public/textures/chipped/blackstone_pillar_top.png deleted file mode 100644 index 8e6d7a8f..00000000 Binary files a/public/textures/chipped/blackstone_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/blackstone_pointed_dripstone.png b/public/textures/chipped/blackstone_pointed_dripstone.png deleted file mode 100644 index daae596f..00000000 Binary files a/public/textures/chipped/blackstone_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/blackstone_scales.png b/public/textures/chipped/blackstone_scales.png deleted file mode 100644 index 5e6e5ec4..00000000 Binary files a/public/textures/chipped/blackstone_scales.png and /dev/null differ diff --git a/public/textures/chipped/blank_amethyst_block_carving.png b/public/textures/chipped/blank_amethyst_block_carving.png deleted file mode 100644 index 2b7c2b23..00000000 Binary files a/public/textures/chipped/blank_amethyst_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_ancient_debris_carving.png b/public/textures/chipped/blank_ancient_debris_carving.png deleted file mode 100644 index 0088def4..00000000 Binary files a/public/textures/chipped/blank_ancient_debris_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_andesite_carving.png b/public/textures/chipped/blank_andesite_carving.png deleted file mode 100644 index dc89a8ac..00000000 Binary files a/public/textures/chipped/blank_andesite_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_basalt_carving.png b/public/textures/chipped/blank_basalt_carving.png deleted file mode 100644 index 48d85757..00000000 Binary files a/public/textures/chipped/blank_basalt_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_blackstone_carving.png b/public/textures/chipped/blank_blackstone_carving.png deleted file mode 100644 index 7d2ff592..00000000 Binary files a/public/textures/chipped/blank_blackstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_blue_ice_carving.png b/public/textures/chipped/blank_blue_ice_carving.png deleted file mode 100644 index f50d922c..00000000 Binary files a/public/textures/chipped/blank_blue_ice_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_borderless_bricks_carving.png b/public/textures/chipped/blank_borderless_bricks_carving.png deleted file mode 100644 index 2b580682..00000000 Binary files a/public/textures/chipped/blank_borderless_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_bricks_carving.png b/public/textures/chipped/blank_bricks_carving.png deleted file mode 100644 index 5942e28e..00000000 Binary files a/public/textures/chipped/blank_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_calcite_carving.png b/public/textures/chipped/blank_calcite_carving.png deleted file mode 100644 index ffef7a39..00000000 Binary files a/public/textures/chipped/blank_calcite_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_clay_carving.png b/public/textures/chipped/blank_clay_carving.png deleted file mode 100644 index 47f10bdf..00000000 Binary files a/public/textures/chipped/blank_clay_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_coal_block_carving.png b/public/textures/chipped/blank_coal_block_carving.png deleted file mode 100644 index 028d25d6..00000000 Binary files a/public/textures/chipped/blank_coal_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_cobblestone_carving.png b/public/textures/chipped/blank_cobblestone_carving.png deleted file mode 100644 index 4b59120c..00000000 Binary files a/public/textures/chipped/blank_cobblestone_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_crying_obsidian_carving.png b/public/textures/chipped/blank_crying_obsidian_carving.png deleted file mode 100644 index 524f0e49..00000000 Binary files a/public/textures/chipped/blank_crying_obsidian_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_dark_prismarine_carving.png b/public/textures/chipped/blank_dark_prismarine_carving.png deleted file mode 100644 index f7994fcc..00000000 Binary files a/public/textures/chipped/blank_dark_prismarine_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_deepslate_carving.png b/public/textures/chipped/blank_deepslate_carving.png deleted file mode 100644 index 7f610779..00000000 Binary files a/public/textures/chipped/blank_deepslate_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_diorite_carving.png b/public/textures/chipped/blank_diorite_carving.png deleted file mode 100644 index 3d8c2f16..00000000 Binary files a/public/textures/chipped/blank_diorite_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_dirt_carving.png b/public/textures/chipped/blank_dirt_carving.png deleted file mode 100644 index 01c38340..00000000 Binary files a/public/textures/chipped/blank_dirt_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_dripstone_block_carving.png b/public/textures/chipped/blank_dripstone_block_carving.png deleted file mode 100644 index a8f51a8e..00000000 Binary files a/public/textures/chipped/blank_dripstone_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_end_stone_carving.png b/public/textures/chipped/blank_end_stone_carving.png deleted file mode 100644 index a240e671..00000000 Binary files a/public/textures/chipped/blank_end_stone_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_gilded_blackstone_carving.png b/public/textures/chipped/blank_gilded_blackstone_carving.png deleted file mode 100644 index cf6fad94..00000000 Binary files a/public/textures/chipped/blank_gilded_blackstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_granite_carving.png b/public/textures/chipped/blank_granite_carving.png deleted file mode 100644 index 3721c017..00000000 Binary files a/public/textures/chipped/blank_granite_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_ice_carving.png b/public/textures/chipped/blank_ice_carving.png deleted file mode 100644 index 7619ac7b..00000000 Binary files a/public/textures/chipped/blank_ice_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_lapis_block_carving.png b/public/textures/chipped/blank_lapis_block_carving.png deleted file mode 100644 index db702b80..00000000 Binary files a/public/textures/chipped/blank_lapis_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_lodestone_carving.png b/public/textures/chipped/blank_lodestone_carving.png deleted file mode 100644 index 20c09e88..00000000 Binary files a/public/textures/chipped/blank_lodestone_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_lodestone_side.png b/public/textures/chipped/blank_lodestone_side.png deleted file mode 100644 index d41ce2f5..00000000 Binary files a/public/textures/chipped/blank_lodestone_side.png and /dev/null differ diff --git a/public/textures/chipped/blank_magma_block_carving.png b/public/textures/chipped/blank_magma_block_carving.png deleted file mode 100644 index 6ba46ed2..00000000 Binary files a/public/textures/chipped/blank_magma_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_mossy_cobblestone_carving.png b/public/textures/chipped/blank_mossy_cobblestone_carving.png deleted file mode 100644 index 921820dc..00000000 Binary files a/public/textures/chipped/blank_mossy_cobblestone_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_mossy_stone_bricks_carving.png b/public/textures/chipped/blank_mossy_stone_bricks_carving.png deleted file mode 100644 index d00cb2d9..00000000 Binary files a/public/textures/chipped/blank_mossy_stone_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_nether_bricks_carving.png b/public/textures/chipped/blank_nether_bricks_carving.png deleted file mode 100644 index c8d99abd..00000000 Binary files a/public/textures/chipped/blank_nether_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_netherrack_carving.png b/public/textures/chipped/blank_netherrack_carving.png deleted file mode 100644 index db299f79..00000000 Binary files a/public/textures/chipped/blank_netherrack_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_obsidian_carving.png b/public/textures/chipped/blank_obsidian_carving.png deleted file mode 100644 index e66cfd0b..00000000 Binary files a/public/textures/chipped/blank_obsidian_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_packed_ice_carving.png b/public/textures/chipped/blank_packed_ice_carving.png deleted file mode 100644 index 3589fdb3..00000000 Binary files a/public/textures/chipped/blank_packed_ice_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_prismarine_carving.png b/public/textures/chipped/blank_prismarine_carving.png deleted file mode 100644 index 16303d53..00000000 Binary files a/public/textures/chipped/blank_prismarine_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_purpur_block_carving.png b/public/textures/chipped/blank_purpur_block_carving.png deleted file mode 100644 index 5dc66861..00000000 Binary files a/public/textures/chipped/blank_purpur_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_quartz_block_carving.png b/public/textures/chipped/blank_quartz_block_carving.png deleted file mode 100644 index 0c3e03c7..00000000 Binary files a/public/textures/chipped/blank_quartz_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_raw_copper_block_carving.png b/public/textures/chipped/blank_raw_copper_block_carving.png deleted file mode 100644 index 49b75fb3..00000000 Binary files a/public/textures/chipped/blank_raw_copper_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_raw_gold_block_carving.png b/public/textures/chipped/blank_raw_gold_block_carving.png deleted file mode 100644 index a2a1b195..00000000 Binary files a/public/textures/chipped/blank_raw_gold_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_raw_iron_block_carving.png b/public/textures/chipped/blank_raw_iron_block_carving.png deleted file mode 100644 index 58627767..00000000 Binary files a/public/textures/chipped/blank_raw_iron_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_red_nether_bricks_carving.png b/public/textures/chipped/blank_red_nether_bricks_carving.png deleted file mode 100644 index 00f072b4..00000000 Binary files a/public/textures/chipped/blank_red_nether_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_red_sandstone_carving.png b/public/textures/chipped/blank_red_sandstone_carving.png deleted file mode 100644 index 0eeafc65..00000000 Binary files a/public/textures/chipped/blank_red_sandstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_redstone_block_carving.png b/public/textures/chipped/blank_redstone_block_carving.png deleted file mode 100644 index 96c6974f..00000000 Binary files a/public/textures/chipped/blank_redstone_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_sandstone_carving.png b/public/textures/chipped/blank_sandstone_carving.png deleted file mode 100644 index 989a1753..00000000 Binary files a/public/textures/chipped/blank_sandstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_smooth_stone_carving.png b/public/textures/chipped/blank_smooth_stone_carving.png deleted file mode 100644 index ab7200c3..00000000 Binary files a/public/textures/chipped/blank_smooth_stone_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_snow_block_carving.png b/public/textures/chipped/blank_snow_block_carving.png deleted file mode 100644 index 28b0d216..00000000 Binary files a/public/textures/chipped/blank_snow_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_stone_carving.png b/public/textures/chipped/blank_stone_carving.png deleted file mode 100644 index c4e55d46..00000000 Binary files a/public/textures/chipped/blank_stone_carving.png and /dev/null differ diff --git a/public/textures/chipped/blank_tuff_carving.png b/public/textures/chipped/blank_tuff_carving.png deleted file mode 100644 index fef9414a..00000000 Binary files a/public/textures/chipped/blank_tuff_carving.png and /dev/null differ diff --git a/public/textures/chipped/blobby_moss_block.png b/public/textures/chipped/blobby_moss_block.png deleted file mode 100644 index faf50bed..00000000 Binary files a/public/textures/chipped/blobby_moss_block.png and /dev/null differ diff --git a/public/textures/chipped/blocky_black_carpet.png b/public/textures/chipped/blocky_black_carpet.png deleted file mode 100644 index c3820d55..00000000 Binary files a/public/textures/chipped/blocky_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_black_wool.png b/public/textures/chipped/blocky_black_wool.png deleted file mode 100644 index b0060364..00000000 Binary files a/public/textures/chipped/blocky_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_blue_carpet.png b/public/textures/chipped/blocky_blue_carpet.png deleted file mode 100644 index 0660624e..00000000 Binary files a/public/textures/chipped/blocky_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_blue_wool.png b/public/textures/chipped/blocky_blue_wool.png deleted file mode 100644 index 7193dff6..00000000 Binary files a/public/textures/chipped/blocky_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_brown_carpet.png b/public/textures/chipped/blocky_brown_carpet.png deleted file mode 100644 index 5c8e80d0..00000000 Binary files a/public/textures/chipped/blocky_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_brown_wool.png b/public/textures/chipped/blocky_brown_wool.png deleted file mode 100644 index 1bd956da..00000000 Binary files a/public/textures/chipped/blocky_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_cyan_carpet.png b/public/textures/chipped/blocky_cyan_carpet.png deleted file mode 100644 index 264bbe14..00000000 Binary files a/public/textures/chipped/blocky_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_cyan_wool.png b/public/textures/chipped/blocky_cyan_wool.png deleted file mode 100644 index 5d2d4748..00000000 Binary files a/public/textures/chipped/blocky_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_gray_carpet.png b/public/textures/chipped/blocky_gray_carpet.png deleted file mode 100644 index 42db5161..00000000 Binary files a/public/textures/chipped/blocky_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_gray_wool.png b/public/textures/chipped/blocky_gray_wool.png deleted file mode 100644 index 4a426312..00000000 Binary files a/public/textures/chipped/blocky_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_green_carpet.png b/public/textures/chipped/blocky_green_carpet.png deleted file mode 100644 index 117da4e4..00000000 Binary files a/public/textures/chipped/blocky_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_green_wool.png b/public/textures/chipped/blocky_green_wool.png deleted file mode 100644 index 6c4b8682..00000000 Binary files a/public/textures/chipped/blocky_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_light_blue_carpet.png b/public/textures/chipped/blocky_light_blue_carpet.png deleted file mode 100644 index c37767fb..00000000 Binary files a/public/textures/chipped/blocky_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_light_blue_wool.png b/public/textures/chipped/blocky_light_blue_wool.png deleted file mode 100644 index 550096a9..00000000 Binary files a/public/textures/chipped/blocky_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_light_gray_carpet.png b/public/textures/chipped/blocky_light_gray_carpet.png deleted file mode 100644 index 2e3d3a05..00000000 Binary files a/public/textures/chipped/blocky_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_light_gray_wool.png b/public/textures/chipped/blocky_light_gray_wool.png deleted file mode 100644 index 98556fed..00000000 Binary files a/public/textures/chipped/blocky_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_lime_carpet.png b/public/textures/chipped/blocky_lime_carpet.png deleted file mode 100644 index 9d65dc55..00000000 Binary files a/public/textures/chipped/blocky_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_lime_wool.png b/public/textures/chipped/blocky_lime_wool.png deleted file mode 100644 index d67153b7..00000000 Binary files a/public/textures/chipped/blocky_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_magenta_carpet.png b/public/textures/chipped/blocky_magenta_carpet.png deleted file mode 100644 index bc304b93..00000000 Binary files a/public/textures/chipped/blocky_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_magenta_wool.png b/public/textures/chipped/blocky_magenta_wool.png deleted file mode 100644 index 0505ac6b..00000000 Binary files a/public/textures/chipped/blocky_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_orange_carpet.png b/public/textures/chipped/blocky_orange_carpet.png deleted file mode 100644 index dede7441..00000000 Binary files a/public/textures/chipped/blocky_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_orange_wool.png b/public/textures/chipped/blocky_orange_wool.png deleted file mode 100644 index de60e32e..00000000 Binary files a/public/textures/chipped/blocky_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_pink_carpet.png b/public/textures/chipped/blocky_pink_carpet.png deleted file mode 100644 index ff5950a4..00000000 Binary files a/public/textures/chipped/blocky_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_pink_wool.png b/public/textures/chipped/blocky_pink_wool.png deleted file mode 100644 index ee1b8f29..00000000 Binary files a/public/textures/chipped/blocky_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_purple_carpet.png b/public/textures/chipped/blocky_purple_carpet.png deleted file mode 100644 index 1c0f2373..00000000 Binary files a/public/textures/chipped/blocky_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_purple_wool.png b/public/textures/chipped/blocky_purple_wool.png deleted file mode 100644 index 65c8dd6c..00000000 Binary files a/public/textures/chipped/blocky_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_red_carpet.png b/public/textures/chipped/blocky_red_carpet.png deleted file mode 100644 index 539fc941..00000000 Binary files a/public/textures/chipped/blocky_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_red_wool.png b/public/textures/chipped/blocky_red_wool.png deleted file mode 100644 index a8d45cc0..00000000 Binary files a/public/textures/chipped/blocky_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_white_carpet.png b/public/textures/chipped/blocky_white_carpet.png deleted file mode 100644 index 9a72dedb..00000000 Binary files a/public/textures/chipped/blocky_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_white_wool.png b/public/textures/chipped/blocky_white_wool.png deleted file mode 100644 index c58e6f83..00000000 Binary files a/public/textures/chipped/blocky_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/blocky_yellow_carpet.png b/public/textures/chipped/blocky_yellow_carpet.png deleted file mode 100644 index 5c15ce7e..00000000 Binary files a/public/textures/chipped/blocky_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/blocky_yellow_wool.png b/public/textures/chipped/blocky_yellow_wool.png deleted file mode 100644 index 3f731d53..00000000 Binary files a/public/textures/chipped/blocky_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/bloomed_warped_roots.png b/public/textures/chipped/bloomed_warped_roots.png deleted file mode 100644 index e4d9529c..00000000 Binary files a/public/textures/chipped/bloomed_warped_roots.png and /dev/null differ diff --git a/public/textures/chipped/blooming_mushroom_stem.png b/public/textures/chipped/blooming_mushroom_stem.png deleted file mode 100644 index 841d9971..00000000 Binary files a/public/textures/chipped/blooming_mushroom_stem.png and /dev/null differ diff --git a/public/textures/chipped/blue_concrete_bricks.png b/public/textures/chipped/blue_concrete_bricks.png deleted file mode 100644 index c1f9d330..00000000 Binary files a/public/textures/chipped/blue_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/blue_concrete_panel.png b/public/textures/chipped/blue_concrete_panel.png deleted file mode 100644 index 206d5759..00000000 Binary files a/public/textures/chipped/blue_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/blue_concrete_pillar.png b/public/textures/chipped/blue_concrete_pillar.png deleted file mode 100644 index a6d7dcee..00000000 Binary files a/public/textures/chipped/blue_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/blue_concrete_tiles.png b/public/textures/chipped/blue_concrete_tiles.png deleted file mode 100644 index f20291e9..00000000 Binary files a/public/textures/chipped/blue_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/blue_dried_kelp_block.png b/public/textures/chipped/blue_dried_kelp_block.png deleted file mode 100644 index 35aa0eca..00000000 Binary files a/public/textures/chipped/blue_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/blue_glazed_terracotta_pillar_sides.png b/public/textures/chipped/blue_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 0dc40601..00000000 Binary files a/public/textures/chipped/blue_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/blue_glazed_terracotta_pillar_top.png b/public/textures/chipped/blue_glazed_terracotta_pillar_top.png deleted file mode 100644 index 006099e1..00000000 Binary files a/public/textures/chipped/blue_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/blue_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/blue_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index ce20205a..00000000 Binary files a/public/textures/chipped/blue_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/blue_glazed_terracotta_tiles.png b/public/textures/chipped/blue_glazed_terracotta_tiles.png deleted file mode 100644 index c56cec05..00000000 Binary files a/public/textures/chipped/blue_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/blue_ice_bricks.png b/public/textures/chipped/blue_ice_bricks.png deleted file mode 100644 index 338de385..00000000 Binary files a/public/textures/chipped/blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/blue_ice_mini_tiles.png b/public/textures/chipped/blue_ice_mini_tiles.png deleted file mode 100644 index 751ff865..00000000 Binary files a/public/textures/chipped/blue_ice_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/blue_ice_pillar.png b/public/textures/chipped/blue_ice_pillar.png deleted file mode 100644 index ce2b6c8f..00000000 Binary files a/public/textures/chipped/blue_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/blue_ice_pillar_top.png b/public/textures/chipped/blue_ice_pillar_top.png deleted file mode 100644 index f0749369..00000000 Binary files a/public/textures/chipped/blue_ice_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/blue_ice_scales.png b/public/textures/chipped/blue_ice_scales.png deleted file mode 100644 index fca70c81..00000000 Binary files a/public/textures/chipped/blue_ice_scales.png and /dev/null differ diff --git a/public/textures/chipped/blue_mangrove_roots.png b/public/textures/chipped/blue_mangrove_roots.png deleted file mode 100644 index 994eb912..00000000 Binary files a/public/textures/chipped/blue_mangrove_roots.png and /dev/null differ diff --git a/public/textures/chipped/blue_moss_block.png b/public/textures/chipped/blue_moss_block.png deleted file mode 100644 index eb7e56b8..00000000 Binary files a/public/textures/chipped/blue_moss_block.png and /dev/null differ diff --git a/public/textures/chipped/blue_paper_lantern.png b/public/textures/chipped/blue_paper_lantern.png deleted file mode 100644 index c3fea386..00000000 Binary files a/public/textures/chipped/blue_paper_lantern.png and /dev/null differ diff --git a/public/textures/chipped/blue_paper_soul_lantern.png b/public/textures/chipped/blue_paper_soul_lantern.png deleted file mode 100644 index 2a69b070..00000000 Binary files a/public/textures/chipped/blue_paper_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/blue_redstone_torch.png b/public/textures/chipped/blue_redstone_torch.png deleted file mode 100644 index 66cdc3ea..00000000 Binary files a/public/textures/chipped/blue_redstone_torch.png and /dev/null differ diff --git a/public/textures/chipped/blue_terracotta_bricks.png b/public/textures/chipped/blue_terracotta_bricks.png deleted file mode 100644 index 58fd0ca4..00000000 Binary files a/public/textures/chipped/blue_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/blue_terracotta_column.png b/public/textures/chipped/blue_terracotta_column.png deleted file mode 100644 index ed7405ad..00000000 Binary files a/public/textures/chipped/blue_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/blue_terracotta_pillar.png b/public/textures/chipped/blue_terracotta_pillar.png deleted file mode 100644 index d62c51d8..00000000 Binary files a/public/textures/chipped/blue_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/blue_terracotta_tile.png b/public/textures/chipped/blue_terracotta_tile.png deleted file mode 100644 index e4c46245..00000000 Binary files a/public/textures/chipped/blue_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/blue_terracotta_tiles.png b/public/textures/chipped/blue_terracotta_tiles.png deleted file mode 100644 index a3eb0df3..00000000 Binary files a/public/textures/chipped/blue_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/blue_tube_soul_lantern.png b/public/textures/chipped/blue_tube_soul_lantern.png deleted file mode 100644 index bf38c4e1..00000000 Binary files a/public/textures/chipped/blue_tube_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/boarded_acacia_door.png b/public/textures/chipped/boarded_acacia_door.png deleted file mode 100644 index fce2b3ca..00000000 Binary files a/public/textures/chipped/boarded_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/boarded_bamboo_door.png b/public/textures/chipped/boarded_bamboo_door.png deleted file mode 100644 index 4482e33a..00000000 Binary files a/public/textures/chipped/boarded_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/boarded_birch_door.png b/public/textures/chipped/boarded_birch_door.png deleted file mode 100644 index 8a17832d..00000000 Binary files a/public/textures/chipped/boarded_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/boarded_cherry_door.png b/public/textures/chipped/boarded_cherry_door.png deleted file mode 100644 index a5ceb81f..00000000 Binary files a/public/textures/chipped/boarded_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/boarded_crimson_door.png b/public/textures/chipped/boarded_crimson_door.png deleted file mode 100644 index 1ba9475b..00000000 Binary files a/public/textures/chipped/boarded_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/boarded_dark_oak_door.png b/public/textures/chipped/boarded_dark_oak_door.png deleted file mode 100644 index 6df8c05a..00000000 Binary files a/public/textures/chipped/boarded_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/boarded_jungle_door.png b/public/textures/chipped/boarded_jungle_door.png deleted file mode 100644 index 8618bb65..00000000 Binary files a/public/textures/chipped/boarded_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/boarded_mangrove_door.png b/public/textures/chipped/boarded_mangrove_door.png deleted file mode 100644 index 38b777ab..00000000 Binary files a/public/textures/chipped/boarded_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/boarded_oak_door.png b/public/textures/chipped/boarded_oak_door.png deleted file mode 100644 index 88fdd911..00000000 Binary files a/public/textures/chipped/boarded_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/boarded_warped_door.png b/public/textures/chipped/boarded_warped_door.png deleted file mode 100644 index 8e1922a2..00000000 Binary files a/public/textures/chipped/boarded_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/bolby_nether_sprouts.png b/public/textures/chipped/bolby_nether_sprouts.png deleted file mode 100644 index 43dd894d..00000000 Binary files a/public/textures/chipped/bolby_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/bolted_black_concrete.png b/public/textures/chipped/bolted_black_concrete.png deleted file mode 100644 index 0e956761..00000000 Binary files a/public/textures/chipped/bolted_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_blue_concrete.png b/public/textures/chipped/bolted_blue_concrete.png deleted file mode 100644 index 9df2ca1c..00000000 Binary files a/public/textures/chipped/bolted_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_brown_concrete.png b/public/textures/chipped/bolted_brown_concrete.png deleted file mode 100644 index 5effb395..00000000 Binary files a/public/textures/chipped/bolted_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_cyan_concrete.png b/public/textures/chipped/bolted_cyan_concrete.png deleted file mode 100644 index 309c38d3..00000000 Binary files a/public/textures/chipped/bolted_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_gray_concrete.png b/public/textures/chipped/bolted_gray_concrete.png deleted file mode 100644 index 8977019e..00000000 Binary files a/public/textures/chipped/bolted_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_green_concrete.png b/public/textures/chipped/bolted_green_concrete.png deleted file mode 100644 index dde21e19..00000000 Binary files a/public/textures/chipped/bolted_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_iron_bars.png b/public/textures/chipped/bolted_iron_bars.png deleted file mode 100644 index e77305f7..00000000 Binary files a/public/textures/chipped/bolted_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/bolted_light_blue_concrete.png b/public/textures/chipped/bolted_light_blue_concrete.png deleted file mode 100644 index e1d0e517..00000000 Binary files a/public/textures/chipped/bolted_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_light_gray_concrete.png b/public/textures/chipped/bolted_light_gray_concrete.png deleted file mode 100644 index 02de3fd0..00000000 Binary files a/public/textures/chipped/bolted_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_lime_concrete.png b/public/textures/chipped/bolted_lime_concrete.png deleted file mode 100644 index a675cc80..00000000 Binary files a/public/textures/chipped/bolted_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_magenta_concrete.png b/public/textures/chipped/bolted_magenta_concrete.png deleted file mode 100644 index 35bea79d..00000000 Binary files a/public/textures/chipped/bolted_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_orange_concrete.png b/public/textures/chipped/bolted_orange_concrete.png deleted file mode 100644 index 5adeecdf..00000000 Binary files a/public/textures/chipped/bolted_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_pink_concrete.png b/public/textures/chipped/bolted_pink_concrete.png deleted file mode 100644 index a350a2ea..00000000 Binary files a/public/textures/chipped/bolted_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_purple_concrete.png b/public/textures/chipped/bolted_purple_concrete.png deleted file mode 100644 index 08e295f0..00000000 Binary files a/public/textures/chipped/bolted_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_red_concrete.png b/public/textures/chipped/bolted_red_concrete.png deleted file mode 100644 index a803e8c3..00000000 Binary files a/public/textures/chipped/bolted_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_white_concrete.png b/public/textures/chipped/bolted_white_concrete.png deleted file mode 100644 index 6fe4a7c8..00000000 Binary files a/public/textures/chipped/bolted_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/bolted_yellow_concrete.png b/public/textures/chipped/bolted_yellow_concrete.png deleted file mode 100644 index 2f54d132..00000000 Binary files a/public/textures/chipped/bolted_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/boo_carved_pumpkin.png b/public/textures/chipped/boo_carved_pumpkin.png deleted file mode 100644 index b04c5960..00000000 Binary files a/public/textures/chipped/boo_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/boo_jack_o_lantern.png b/public/textures/chipped/boo_jack_o_lantern.png deleted file mode 100644 index 5a88c85f..00000000 Binary files a/public/textures/chipped/boo_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/bordered_amethyst_block.png b/public/textures/chipped/bordered_amethyst_block.png deleted file mode 100644 index 0e5eccb7..00000000 Binary files a/public/textures/chipped/bordered_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_ancient_debris.png b/public/textures/chipped/bordered_ancient_debris.png deleted file mode 100644 index f2545bea..00000000 Binary files a/public/textures/chipped/bordered_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/bordered_andesite.png b/public/textures/chipped/bordered_andesite.png deleted file mode 100644 index db67920b..00000000 Binary files a/public/textures/chipped/bordered_andesite.png and /dev/null differ diff --git a/public/textures/chipped/bordered_basalt.png b/public/textures/chipped/bordered_basalt.png deleted file mode 100644 index 3f81ee50..00000000 Binary files a/public/textures/chipped/bordered_basalt.png and /dev/null differ diff --git a/public/textures/chipped/bordered_blackstone.png b/public/textures/chipped/bordered_blackstone.png deleted file mode 100644 index 42fadcf0..00000000 Binary files a/public/textures/chipped/bordered_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/bordered_blue_ice.png b/public/textures/chipped/bordered_blue_ice.png deleted file mode 100644 index 3154d5fe..00000000 Binary files a/public/textures/chipped/bordered_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/bordered_borderless_bricks.png b/public/textures/chipped/bordered_borderless_bricks.png deleted file mode 100644 index bc08999e..00000000 Binary files a/public/textures/chipped/bordered_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/bordered_bricks.png b/public/textures/chipped/bordered_bricks.png deleted file mode 100644 index 03f638c1..00000000 Binary files a/public/textures/chipped/bordered_bricks.png and /dev/null differ diff --git a/public/textures/chipped/bordered_calcite.png b/public/textures/chipped/bordered_calcite.png deleted file mode 100644 index ac8c17db..00000000 Binary files a/public/textures/chipped/bordered_calcite.png and /dev/null differ diff --git a/public/textures/chipped/bordered_clay.png b/public/textures/chipped/bordered_clay.png deleted file mode 100644 index ca387318..00000000 Binary files a/public/textures/chipped/bordered_clay.png and /dev/null differ diff --git a/public/textures/chipped/bordered_coal_block.png b/public/textures/chipped/bordered_coal_block.png deleted file mode 100644 index 946c182d..00000000 Binary files a/public/textures/chipped/bordered_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_cobblestone.png b/public/textures/chipped/bordered_cobblestone.png deleted file mode 100644 index 876ebac0..00000000 Binary files a/public/textures/chipped/bordered_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/bordered_crying_obsidian.png b/public/textures/chipped/bordered_crying_obsidian.png deleted file mode 100644 index 84e5436c..00000000 Binary files a/public/textures/chipped/bordered_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/bordered_dark_prismarine.png b/public/textures/chipped/bordered_dark_prismarine.png deleted file mode 100644 index 372e0f6b..00000000 Binary files a/public/textures/chipped/bordered_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/bordered_deepslate.png b/public/textures/chipped/bordered_deepslate.png deleted file mode 100644 index da0a92f7..00000000 Binary files a/public/textures/chipped/bordered_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/bordered_diorite.png b/public/textures/chipped/bordered_diorite.png deleted file mode 100644 index 21bef6a9..00000000 Binary files a/public/textures/chipped/bordered_diorite.png and /dev/null differ diff --git a/public/textures/chipped/bordered_dirt.png b/public/textures/chipped/bordered_dirt.png deleted file mode 100644 index a4a91de6..00000000 Binary files a/public/textures/chipped/bordered_dirt.png and /dev/null differ diff --git a/public/textures/chipped/bordered_dripstone_block.png b/public/textures/chipped/bordered_dripstone_block.png deleted file mode 100644 index f69b6343..00000000 Binary files a/public/textures/chipped/bordered_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_end_stone.png b/public/textures/chipped/bordered_end_stone.png deleted file mode 100644 index 818aaf19..00000000 Binary files a/public/textures/chipped/bordered_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/bordered_gilded_blackstone.png b/public/textures/chipped/bordered_gilded_blackstone.png deleted file mode 100644 index ef441ab5..00000000 Binary files a/public/textures/chipped/bordered_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/bordered_granite.png b/public/textures/chipped/bordered_granite.png deleted file mode 100644 index 9a2ef909..00000000 Binary files a/public/textures/chipped/bordered_granite.png and /dev/null differ diff --git a/public/textures/chipped/bordered_ice.png b/public/textures/chipped/bordered_ice.png deleted file mode 100644 index 391266cd..00000000 Binary files a/public/textures/chipped/bordered_ice.png and /dev/null differ diff --git a/public/textures/chipped/bordered_lapis_block.png b/public/textures/chipped/bordered_lapis_block.png deleted file mode 100644 index d38fc0e4..00000000 Binary files a/public/textures/chipped/bordered_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_lodestone.png b/public/textures/chipped/bordered_lodestone.png deleted file mode 100644 index 136f6b11..00000000 Binary files a/public/textures/chipped/bordered_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/bordered_magma_block.png b/public/textures/chipped/bordered_magma_block.png deleted file mode 100644 index 0457da84..00000000 Binary files a/public/textures/chipped/bordered_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_mossy_cobblestone.png b/public/textures/chipped/bordered_mossy_cobblestone.png deleted file mode 100644 index c320b28a..00000000 Binary files a/public/textures/chipped/bordered_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/bordered_mossy_stone_bricks.png b/public/textures/chipped/bordered_mossy_stone_bricks.png deleted file mode 100644 index fd953997..00000000 Binary files a/public/textures/chipped/bordered_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/bordered_mud.png b/public/textures/chipped/bordered_mud.png deleted file mode 100644 index 7be09579..00000000 Binary files a/public/textures/chipped/bordered_mud.png and /dev/null differ diff --git a/public/textures/chipped/bordered_mud_bricks.png b/public/textures/chipped/bordered_mud_bricks.png deleted file mode 100644 index 9a18bfc9..00000000 Binary files a/public/textures/chipped/bordered_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/bordered_nether_bricks.png b/public/textures/chipped/bordered_nether_bricks.png deleted file mode 100644 index a360ebb9..00000000 Binary files a/public/textures/chipped/bordered_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/bordered_netherrack.png b/public/textures/chipped/bordered_netherrack.png deleted file mode 100644 index 6ca88ef9..00000000 Binary files a/public/textures/chipped/bordered_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/bordered_obsidian.png b/public/textures/chipped/bordered_obsidian.png deleted file mode 100644 index b0e02119..00000000 Binary files a/public/textures/chipped/bordered_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/bordered_packed_ice.png b/public/textures/chipped/bordered_packed_ice.png deleted file mode 100644 index ff965bfe..00000000 Binary files a/public/textures/chipped/bordered_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/bordered_packed_mud.png b/public/textures/chipped/bordered_packed_mud.png deleted file mode 100644 index 6719bab2..00000000 Binary files a/public/textures/chipped/bordered_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/bordered_prismarine.png b/public/textures/chipped/bordered_prismarine.png deleted file mode 100644 index 2a91cff9..00000000 Binary files a/public/textures/chipped/bordered_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/bordered_purpur_block.png b/public/textures/chipped/bordered_purpur_block.png deleted file mode 100644 index d3f989c0..00000000 Binary files a/public/textures/chipped/bordered_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_quartz_block.png b/public/textures/chipped/bordered_quartz_block.png deleted file mode 100644 index fc82a20d..00000000 Binary files a/public/textures/chipped/bordered_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_raw_copper_block.png b/public/textures/chipped/bordered_raw_copper_block.png deleted file mode 100644 index 2a64ec66..00000000 Binary files a/public/textures/chipped/bordered_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_raw_gold_block.png b/public/textures/chipped/bordered_raw_gold_block.png deleted file mode 100644 index e0312c88..00000000 Binary files a/public/textures/chipped/bordered_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_raw_iron_block.png b/public/textures/chipped/bordered_raw_iron_block.png deleted file mode 100644 index 0e3a9d63..00000000 Binary files a/public/textures/chipped/bordered_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_red_nether_bricks.png b/public/textures/chipped/bordered_red_nether_bricks.png deleted file mode 100644 index ed91258a..00000000 Binary files a/public/textures/chipped/bordered_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/bordered_red_sandstone.png b/public/textures/chipped/bordered_red_sandstone.png deleted file mode 100644 index c342d79e..00000000 Binary files a/public/textures/chipped/bordered_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/bordered_redstone_block.png b/public/textures/chipped/bordered_redstone_block.png deleted file mode 100644 index 97db5934..00000000 Binary files a/public/textures/chipped/bordered_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_sandstone.png b/public/textures/chipped/bordered_sandstone.png deleted file mode 100644 index 23d8b4fc..00000000 Binary files a/public/textures/chipped/bordered_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/bordered_smooth_stone.png b/public/textures/chipped/bordered_smooth_stone.png deleted file mode 100644 index 706794bd..00000000 Binary files a/public/textures/chipped/bordered_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/bordered_snow_block.png b/public/textures/chipped/bordered_snow_block.png deleted file mode 100644 index 5ce8a8c1..00000000 Binary files a/public/textures/chipped/bordered_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/bordered_stone.png b/public/textures/chipped/bordered_stone.png deleted file mode 100644 index ea4f58da..00000000 Binary files a/public/textures/chipped/bordered_stone.png and /dev/null differ diff --git a/public/textures/chipped/bordered_tuff.png b/public/textures/chipped/bordered_tuff.png deleted file mode 100644 index 84954f01..00000000 Binary files a/public/textures/chipped/bordered_tuff.png and /dev/null differ diff --git a/public/textures/chipped/borderless_bricks_bricks.png b/public/textures/chipped/borderless_bricks_bricks.png deleted file mode 100644 index eb3d794f..00000000 Binary files a/public/textures/chipped/borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/borderless_bricks_mini_tiles.png b/public/textures/chipped/borderless_bricks_mini_tiles.png deleted file mode 100644 index 035aefc6..00000000 Binary files a/public/textures/chipped/borderless_bricks_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/borderless_bricks_pillar.png b/public/textures/chipped/borderless_bricks_pillar.png deleted file mode 100644 index b0f49063..00000000 Binary files a/public/textures/chipped/borderless_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/borderless_bricks_pillar_top.png b/public/textures/chipped/borderless_bricks_pillar_top.png deleted file mode 100644 index 7e507b89..00000000 Binary files a/public/textures/chipped/borderless_bricks_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/borderless_bricks_scales.png b/public/textures/chipped/borderless_bricks_scales.png deleted file mode 100644 index 62ec8b6f..00000000 Binary files a/public/textures/chipped/borderless_bricks_scales.png and /dev/null differ diff --git a/public/textures/chipped/botanical_oak_bookshelf.png b/public/textures/chipped/botanical_oak_bookshelf.png deleted file mode 100644 index 2a040d44..00000000 Binary files a/public/textures/chipped/botanical_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/botanical_oak_cubed_bookshelf.png b/public/textures/chipped/botanical_oak_cubed_bookshelf.png deleted file mode 100644 index 7c83d070..00000000 Binary files a/public/textures/chipped/botanical_oak_cubed_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/botanical_oak_large_bookshelf.png b/public/textures/chipped/botanical_oak_large_bookshelf.png deleted file mode 100644 index 578d73bd..00000000 Binary files a/public/textures/chipped/botanical_oak_large_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/botanist_workbench.png b/public/textures/chipped/botanist_workbench.png deleted file mode 100644 index 62dd377f..00000000 Binary files a/public/textures/chipped/botanist_workbench.png and /dev/null differ diff --git a/public/textures/chipped/boxed_acacia_planks.png b/public/textures/chipped/boxed_acacia_planks.png deleted file mode 100644 index 327cfffc..00000000 Binary files a/public/textures/chipped/boxed_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/boxed_bamboo_planks.png b/public/textures/chipped/boxed_bamboo_planks.png deleted file mode 100644 index 85d05d3f..00000000 Binary files a/public/textures/chipped/boxed_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/boxed_birch_planks.png b/public/textures/chipped/boxed_birch_planks.png deleted file mode 100644 index 322b0acd..00000000 Binary files a/public/textures/chipped/boxed_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/boxed_cherry_planks.png b/public/textures/chipped/boxed_cherry_planks.png deleted file mode 100644 index 157e707d..00000000 Binary files a/public/textures/chipped/boxed_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/boxed_crimson_planks.png b/public/textures/chipped/boxed_crimson_planks.png deleted file mode 100644 index 4d71e89e..00000000 Binary files a/public/textures/chipped/boxed_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/boxed_dark_oak_planks.png b/public/textures/chipped/boxed_dark_oak_planks.png deleted file mode 100644 index 676e74d9..00000000 Binary files a/public/textures/chipped/boxed_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/boxed_jungle_planks.png b/public/textures/chipped/boxed_jungle_planks.png deleted file mode 100644 index 769fdaa4..00000000 Binary files a/public/textures/chipped/boxed_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/boxed_mangrove_planks.png b/public/textures/chipped/boxed_mangrove_planks.png deleted file mode 100644 index 794884c1..00000000 Binary files a/public/textures/chipped/boxed_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/boxed_oak_planks.png b/public/textures/chipped/boxed_oak_planks.png deleted file mode 100644 index 739b6e95..00000000 Binary files a/public/textures/chipped/boxed_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/boxed_spruce_planks.png b/public/textures/chipped/boxed_spruce_planks.png deleted file mode 100644 index e7a29ecb..00000000 Binary files a/public/textures/chipped/boxed_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/boxed_warped_planks.png b/public/textures/chipped/boxed_warped_planks.png deleted file mode 100644 index a5e180d7..00000000 Binary files a/public/textures/chipped/boxed_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bond_acacia_planks.png b/public/textures/chipped/brick_bond_acacia_planks.png deleted file mode 100644 index c9d39e5b..00000000 Binary files a/public/textures/chipped/brick_bond_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bond_bamboo_planks.png b/public/textures/chipped/brick_bond_bamboo_planks.png deleted file mode 100644 index 5bf7e11e..00000000 Binary files a/public/textures/chipped/brick_bond_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bond_birch_planks.png b/public/textures/chipped/brick_bond_birch_planks.png deleted file mode 100644 index 8276f1d9..00000000 Binary files a/public/textures/chipped/brick_bond_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bond_cherry_planks.png b/public/textures/chipped/brick_bond_cherry_planks.png deleted file mode 100644 index 8100e887..00000000 Binary files a/public/textures/chipped/brick_bond_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bond_crimson_planks.png b/public/textures/chipped/brick_bond_crimson_planks.png deleted file mode 100644 index d6e1b620..00000000 Binary files a/public/textures/chipped/brick_bond_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bond_dark_oak_planks.png b/public/textures/chipped/brick_bond_dark_oak_planks.png deleted file mode 100644 index e142b193..00000000 Binary files a/public/textures/chipped/brick_bond_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bond_jungle_planks.png b/public/textures/chipped/brick_bond_jungle_planks.png deleted file mode 100644 index bf38c383..00000000 Binary files a/public/textures/chipped/brick_bond_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bond_mangrove_planks.png b/public/textures/chipped/brick_bond_mangrove_planks.png deleted file mode 100644 index 58d01df0..00000000 Binary files a/public/textures/chipped/brick_bond_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bond_oak_planks.png b/public/textures/chipped/brick_bond_oak_planks.png deleted file mode 100644 index 3937a0de..00000000 Binary files a/public/textures/chipped/brick_bond_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bond_spruce_planks.png b/public/textures/chipped/brick_bond_spruce_planks.png deleted file mode 100644 index 26d36f4b..00000000 Binary files a/public/textures/chipped/brick_bond_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bond_warped_planks.png b/public/textures/chipped/brick_bond_warped_planks.png deleted file mode 100644 index cde0d9ba..00000000 Binary files a/public/textures/chipped/brick_bond_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_amethyst_block.png b/public/textures/chipped/brick_bordered_amethyst_block.png deleted file mode 100644 index 46ea7414..00000000 Binary files a/public/textures/chipped/brick_bordered_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_ancient_debris.png b/public/textures/chipped/brick_bordered_ancient_debris.png deleted file mode 100644 index b7147ade..00000000 Binary files a/public/textures/chipped/brick_bordered_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_andesite.png b/public/textures/chipped/brick_bordered_andesite.png deleted file mode 100644 index bd4afc59..00000000 Binary files a/public/textures/chipped/brick_bordered_andesite.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_basalt.png b/public/textures/chipped/brick_bordered_basalt.png deleted file mode 100644 index 9190cde8..00000000 Binary files a/public/textures/chipped/brick_bordered_basalt.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_blackstone.png b/public/textures/chipped/brick_bordered_blackstone.png deleted file mode 100644 index 483d33d3..00000000 Binary files a/public/textures/chipped/brick_bordered_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_blue_ice.png b/public/textures/chipped/brick_bordered_blue_ice.png deleted file mode 100644 index 34876f59..00000000 Binary files a/public/textures/chipped/brick_bordered_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_borderless_bricks.png b/public/textures/chipped/brick_bordered_borderless_bricks.png deleted file mode 100644 index bfa3f863..00000000 Binary files a/public/textures/chipped/brick_bordered_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_bricks.png b/public/textures/chipped/brick_bordered_bricks.png deleted file mode 100644 index 1afaa1ed..00000000 Binary files a/public/textures/chipped/brick_bordered_bricks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_calcite.png b/public/textures/chipped/brick_bordered_calcite.png deleted file mode 100644 index 67cbdc6a..00000000 Binary files a/public/textures/chipped/brick_bordered_calcite.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_clay.png b/public/textures/chipped/brick_bordered_clay.png deleted file mode 100644 index b9c896cc..00000000 Binary files a/public/textures/chipped/brick_bordered_clay.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_coal_block.png b/public/textures/chipped/brick_bordered_coal_block.png deleted file mode 100644 index aec3d757..00000000 Binary files a/public/textures/chipped/brick_bordered_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_cobblestone.png b/public/textures/chipped/brick_bordered_cobblestone.png deleted file mode 100644 index 0af50178..00000000 Binary files a/public/textures/chipped/brick_bordered_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_crying_obsidian.png b/public/textures/chipped/brick_bordered_crying_obsidian.png deleted file mode 100644 index 93df6fca..00000000 Binary files a/public/textures/chipped/brick_bordered_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_dark_prismarine.png b/public/textures/chipped/brick_bordered_dark_prismarine.png deleted file mode 100644 index 79026a1d..00000000 Binary files a/public/textures/chipped/brick_bordered_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_deepslate.png b/public/textures/chipped/brick_bordered_deepslate.png deleted file mode 100644 index 3189e00b..00000000 Binary files a/public/textures/chipped/brick_bordered_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_diorite.png b/public/textures/chipped/brick_bordered_diorite.png deleted file mode 100644 index 295ec6d4..00000000 Binary files a/public/textures/chipped/brick_bordered_diorite.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_dirt.png b/public/textures/chipped/brick_bordered_dirt.png deleted file mode 100644 index 4ff72877..00000000 Binary files a/public/textures/chipped/brick_bordered_dirt.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_dripstone_block.png b/public/textures/chipped/brick_bordered_dripstone_block.png deleted file mode 100644 index acd9152f..00000000 Binary files a/public/textures/chipped/brick_bordered_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_end_stone.png b/public/textures/chipped/brick_bordered_end_stone.png deleted file mode 100644 index 9f884f0f..00000000 Binary files a/public/textures/chipped/brick_bordered_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_gilded_blackstone.png b/public/textures/chipped/brick_bordered_gilded_blackstone.png deleted file mode 100644 index a8e11fe1..00000000 Binary files a/public/textures/chipped/brick_bordered_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_granite.png b/public/textures/chipped/brick_bordered_granite.png deleted file mode 100644 index 379fe0da..00000000 Binary files a/public/textures/chipped/brick_bordered_granite.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_ice.png b/public/textures/chipped/brick_bordered_ice.png deleted file mode 100644 index 48d0b39c..00000000 Binary files a/public/textures/chipped/brick_bordered_ice.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_lapis_block.png b/public/textures/chipped/brick_bordered_lapis_block.png deleted file mode 100644 index 740c84fa..00000000 Binary files a/public/textures/chipped/brick_bordered_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_lodestone.png b/public/textures/chipped/brick_bordered_lodestone.png deleted file mode 100644 index ff1adca9..00000000 Binary files a/public/textures/chipped/brick_bordered_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_magma_block.png b/public/textures/chipped/brick_bordered_magma_block.png deleted file mode 100644 index f45cacbf..00000000 Binary files a/public/textures/chipped/brick_bordered_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_mossy_cobblestone.png b/public/textures/chipped/brick_bordered_mossy_cobblestone.png deleted file mode 100644 index 276b24f4..00000000 Binary files a/public/textures/chipped/brick_bordered_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_mossy_stone_bricks.png b/public/textures/chipped/brick_bordered_mossy_stone_bricks.png deleted file mode 100644 index 05d67863..00000000 Binary files a/public/textures/chipped/brick_bordered_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_mud.png b/public/textures/chipped/brick_bordered_mud.png deleted file mode 100644 index 66157be2..00000000 Binary files a/public/textures/chipped/brick_bordered_mud.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_mud_bricks.png b/public/textures/chipped/brick_bordered_mud_bricks.png deleted file mode 100644 index a95045fd..00000000 Binary files a/public/textures/chipped/brick_bordered_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_nether_bricks.png b/public/textures/chipped/brick_bordered_nether_bricks.png deleted file mode 100644 index e4adc9f5..00000000 Binary files a/public/textures/chipped/brick_bordered_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_netherrack.png b/public/textures/chipped/brick_bordered_netherrack.png deleted file mode 100644 index 785c3f78..00000000 Binary files a/public/textures/chipped/brick_bordered_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_obsidian.png b/public/textures/chipped/brick_bordered_obsidian.png deleted file mode 100644 index bdda58fc..00000000 Binary files a/public/textures/chipped/brick_bordered_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_packed_ice.png b/public/textures/chipped/brick_bordered_packed_ice.png deleted file mode 100644 index 85f5a3b3..00000000 Binary files a/public/textures/chipped/brick_bordered_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_packed_mud.png b/public/textures/chipped/brick_bordered_packed_mud.png deleted file mode 100644 index 4632c02c..00000000 Binary files a/public/textures/chipped/brick_bordered_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_prismarine.png b/public/textures/chipped/brick_bordered_prismarine.png deleted file mode 100644 index ebbbcd95..00000000 Binary files a/public/textures/chipped/brick_bordered_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_purpur_block.png b/public/textures/chipped/brick_bordered_purpur_block.png deleted file mode 100644 index d67577bf..00000000 Binary files a/public/textures/chipped/brick_bordered_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_quartz_block.png b/public/textures/chipped/brick_bordered_quartz_block.png deleted file mode 100644 index 1c058f14..00000000 Binary files a/public/textures/chipped/brick_bordered_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_raw_copper_block.png b/public/textures/chipped/brick_bordered_raw_copper_block.png deleted file mode 100644 index 05aef20e..00000000 Binary files a/public/textures/chipped/brick_bordered_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_raw_gold_block.png b/public/textures/chipped/brick_bordered_raw_gold_block.png deleted file mode 100644 index 795d0aba..00000000 Binary files a/public/textures/chipped/brick_bordered_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_raw_iron_block.png b/public/textures/chipped/brick_bordered_raw_iron_block.png deleted file mode 100644 index 970f0c48..00000000 Binary files a/public/textures/chipped/brick_bordered_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_red_nether_bricks.png b/public/textures/chipped/brick_bordered_red_nether_bricks.png deleted file mode 100644 index 8feda3c2..00000000 Binary files a/public/textures/chipped/brick_bordered_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_red_sandstone.png b/public/textures/chipped/brick_bordered_red_sandstone.png deleted file mode 100644 index 179ef105..00000000 Binary files a/public/textures/chipped/brick_bordered_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_redstone_block.png b/public/textures/chipped/brick_bordered_redstone_block.png deleted file mode 100644 index e627ad52..00000000 Binary files a/public/textures/chipped/brick_bordered_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_sandstone.png b/public/textures/chipped/brick_bordered_sandstone.png deleted file mode 100644 index ddb829c5..00000000 Binary files a/public/textures/chipped/brick_bordered_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_smooth_stone.png b/public/textures/chipped/brick_bordered_smooth_stone.png deleted file mode 100644 index ea45abe5..00000000 Binary files a/public/textures/chipped/brick_bordered_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_snow_block.png b/public/textures/chipped/brick_bordered_snow_block.png deleted file mode 100644 index 12529911..00000000 Binary files a/public/textures/chipped/brick_bordered_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_stone.png b/public/textures/chipped/brick_bordered_stone.png deleted file mode 100644 index 0546e9b5..00000000 Binary files a/public/textures/chipped/brick_bordered_stone.png and /dev/null differ diff --git a/public/textures/chipped/brick_bordered_tuff.png b/public/textures/chipped/brick_bordered_tuff.png deleted file mode 100644 index ce664673..00000000 Binary files a/public/textures/chipped/brick_bordered_tuff.png and /dev/null differ diff --git a/public/textures/chipped/bricked_mangrove_planks.png b/public/textures/chipped/bricked_mangrove_planks.png deleted file mode 100644 index f1081695..00000000 Binary files a/public/textures/chipped/bricked_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/bricks_bricks.png b/public/textures/chipped/bricks_bricks.png deleted file mode 100644 index 53a3e860..00000000 Binary files a/public/textures/chipped/bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/bricks_mini_tiles.png b/public/textures/chipped/bricks_mini_tiles.png deleted file mode 100644 index 15b0fbac..00000000 Binary files a/public/textures/chipped/bricks_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/bricks_pillar.png b/public/textures/chipped/bricks_pillar.png deleted file mode 100644 index 7493d123..00000000 Binary files a/public/textures/chipped/bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/bricks_pillar_top.png b/public/textures/chipped/bricks_pillar_top.png deleted file mode 100644 index f235e0a9..00000000 Binary files a/public/textures/chipped/bricks_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/bricks_scales.png b/public/textures/chipped/bricks_scales.png deleted file mode 100644 index 18d198f1..00000000 Binary files a/public/textures/chipped/bricks_scales.png and /dev/null differ diff --git a/public/textures/chipped/bricky_acacia_planks.png b/public/textures/chipped/bricky_acacia_planks.png deleted file mode 100644 index 4fee3d39..00000000 Binary files a/public/textures/chipped/bricky_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/bricky_bamboo_planks.png b/public/textures/chipped/bricky_bamboo_planks.png deleted file mode 100644 index 01ef6ed8..00000000 Binary files a/public/textures/chipped/bricky_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/bricky_birch_planks.png b/public/textures/chipped/bricky_birch_planks.png deleted file mode 100644 index 821e5cd7..00000000 Binary files a/public/textures/chipped/bricky_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/bricky_cherry_planks.png b/public/textures/chipped/bricky_cherry_planks.png deleted file mode 100644 index 578626ae..00000000 Binary files a/public/textures/chipped/bricky_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/bricky_crimson_planks.png b/public/textures/chipped/bricky_crimson_planks.png deleted file mode 100644 index cd864bb2..00000000 Binary files a/public/textures/chipped/bricky_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/bricky_dark_oak_planks.png b/public/textures/chipped/bricky_dark_oak_planks.png deleted file mode 100644 index 6d4e4d73..00000000 Binary files a/public/textures/chipped/bricky_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/bricky_jungle_planks.png b/public/textures/chipped/bricky_jungle_planks.png deleted file mode 100644 index 40582178..00000000 Binary files a/public/textures/chipped/bricky_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/bricky_mangrove_planks.png b/public/textures/chipped/bricky_mangrove_planks.png deleted file mode 100644 index a22fd87c..00000000 Binary files a/public/textures/chipped/bricky_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/bricky_oak_planks.png b/public/textures/chipped/bricky_oak_planks.png deleted file mode 100644 index 4c69a4ba..00000000 Binary files a/public/textures/chipped/bricky_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/bricky_spruce_planks.png b/public/textures/chipped/bricky_spruce_planks.png deleted file mode 100644 index f3a4c94d..00000000 Binary files a/public/textures/chipped/bricky_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/bricky_warped_planks.png b/public/textures/chipped/bricky_warped_planks.png deleted file mode 100644 index fd053c88..00000000 Binary files a/public/textures/chipped/bricky_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/bright_melon.png b/public/textures/chipped/bright_melon.png deleted file mode 100644 index c5119849..00000000 Binary files a/public/textures/chipped/bright_melon.png and /dev/null differ diff --git a/public/textures/chipped/broken_cobweb.png b/public/textures/chipped/broken_cobweb.png deleted file mode 100644 index 0e637433..00000000 Binary files a/public/textures/chipped/broken_cobweb.png and /dev/null differ diff --git a/public/textures/chipped/broken_glowstone.png b/public/textures/chipped/broken_glowstone.png deleted file mode 100644 index ab7afdf4..00000000 Binary files a/public/textures/chipped/broken_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/broken_lily_pad.png b/public/textures/chipped/broken_lily_pad.png deleted file mode 100644 index 83b26dc7..00000000 Binary files a/public/textures/chipped/broken_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/broken_mushroom_stem.png b/public/textures/chipped/broken_mushroom_stem.png deleted file mode 100644 index 7e38eb6e..00000000 Binary files a/public/textures/chipped/broken_mushroom_stem.png and /dev/null differ diff --git a/public/textures/chipped/broken_sea_lantern.png b/public/textures/chipped/broken_sea_lantern.png deleted file mode 100644 index bd282c10..00000000 Binary files a/public/textures/chipped/broken_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/broken_shroomlight.png b/public/textures/chipped/broken_shroomlight.png deleted file mode 100644 index 426a3d13..00000000 Binary files a/public/textures/chipped/broken_shroomlight.png and /dev/null differ diff --git a/public/textures/chipped/brown_concrete_bricks.png b/public/textures/chipped/brown_concrete_bricks.png deleted file mode 100644 index 95edbaa8..00000000 Binary files a/public/textures/chipped/brown_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/brown_concrete_panel.png b/public/textures/chipped/brown_concrete_panel.png deleted file mode 100644 index 12964373..00000000 Binary files a/public/textures/chipped/brown_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/brown_concrete_pillar.png b/public/textures/chipped/brown_concrete_pillar.png deleted file mode 100644 index dc49002f..00000000 Binary files a/public/textures/chipped/brown_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/brown_concrete_tiles.png b/public/textures/chipped/brown_concrete_tiles.png deleted file mode 100644 index af1606b6..00000000 Binary files a/public/textures/chipped/brown_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/brown_dried_kelp_block.png b/public/textures/chipped/brown_dried_kelp_block.png deleted file mode 100644 index cf20e7a5..00000000 Binary files a/public/textures/chipped/brown_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/brown_glazed_terracotta_pillar_sides.png b/public/textures/chipped/brown_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 06b3168e..00000000 Binary files a/public/textures/chipped/brown_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/brown_glazed_terracotta_pillar_top.png b/public/textures/chipped/brown_glazed_terracotta_pillar_top.png deleted file mode 100644 index c43cc74e..00000000 Binary files a/public/textures/chipped/brown_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/brown_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/brown_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index 4e1493f2..00000000 Binary files a/public/textures/chipped/brown_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/brown_glazed_terracotta_tiles.png b/public/textures/chipped/brown_glazed_terracotta_tiles.png deleted file mode 100644 index 9015b997..00000000 Binary files a/public/textures/chipped/brown_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/brown_mushroom_bulb.png b/public/textures/chipped/brown_mushroom_bulb.png deleted file mode 100644 index ee9b49b3..00000000 Binary files a/public/textures/chipped/brown_mushroom_bulb.png and /dev/null differ diff --git a/public/textures/chipped/brown_mushroom_bushel.png b/public/textures/chipped/brown_mushroom_bushel.png deleted file mode 100644 index c4a9a662..00000000 Binary files a/public/textures/chipped/brown_mushroom_bushel.png and /dev/null differ diff --git a/public/textures/chipped/brown_mushroom_cluster.png b/public/textures/chipped/brown_mushroom_cluster.png deleted file mode 100644 index 864b2aa3..00000000 Binary files a/public/textures/chipped/brown_mushroom_cluster.png and /dev/null differ diff --git a/public/textures/chipped/brown_mushroom_trio.png b/public/textures/chipped/brown_mushroom_trio.png deleted file mode 100644 index 1c096626..00000000 Binary files a/public/textures/chipped/brown_mushroom_trio.png and /dev/null differ diff --git a/public/textures/chipped/brown_terracotta_bricks.png b/public/textures/chipped/brown_terracotta_bricks.png deleted file mode 100644 index d9fb6342..00000000 Binary files a/public/textures/chipped/brown_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/brown_terracotta_column.png b/public/textures/chipped/brown_terracotta_column.png deleted file mode 100644 index 51a8dc71..00000000 Binary files a/public/textures/chipped/brown_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/brown_terracotta_pillar.png b/public/textures/chipped/brown_terracotta_pillar.png deleted file mode 100644 index 4259bba7..00000000 Binary files a/public/textures/chipped/brown_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/brown_terracotta_tile.png b/public/textures/chipped/brown_terracotta_tile.png deleted file mode 100644 index b4c04196..00000000 Binary files a/public/textures/chipped/brown_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/brown_terracotta_tiles.png b/public/textures/chipped/brown_terracotta_tiles.png deleted file mode 100644 index e3a56c0c..00000000 Binary files a/public/textures/chipped/brown_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/bubbling_nether_wart_block.png b/public/textures/chipped/bubbling_nether_wart_block.png deleted file mode 100644 index 2d727212..00000000 Binary files a/public/textures/chipped/bubbling_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/bubbling_warped_wart_block.png b/public/textures/chipped/bubbling_warped_wart_block.png deleted file mode 100644 index 4eaa031a..00000000 Binary files a/public/textures/chipped/bubbling_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/budding_crimson_roots.png b/public/textures/chipped/budding_crimson_roots.png deleted file mode 100644 index a98a720f..00000000 Binary files a/public/textures/chipped/budding_crimson_roots.png and /dev/null differ diff --git a/public/textures/chipped/budding_crimson_roots_bulb.png b/public/textures/chipped/budding_crimson_roots_bulb.png deleted file mode 100644 index c21cd309..00000000 Binary files a/public/textures/chipped/budding_crimson_roots_bulb.png and /dev/null differ diff --git a/public/textures/chipped/bulbed_brown_mushroom.png b/public/textures/chipped/bulbed_brown_mushroom.png deleted file mode 100644 index cedb3ee9..00000000 Binary files a/public/textures/chipped/bulbed_brown_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/bulbed_crimson_fungus.png b/public/textures/chipped/bulbed_crimson_fungus.png deleted file mode 100644 index 10650f57..00000000 Binary files a/public/textures/chipped/bulbed_crimson_fungus.png and /dev/null differ diff --git a/public/textures/chipped/bulbed_glowstone.png b/public/textures/chipped/bulbed_glowstone.png deleted file mode 100644 index 438e8bc8..00000000 Binary files a/public/textures/chipped/bulbed_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/bulbed_red_mushroom.png b/public/textures/chipped/bulbed_red_mushroom.png deleted file mode 100644 index b8805528..00000000 Binary files a/public/textures/chipped/bulbed_red_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/bulbed_sea_lantern.png b/public/textures/chipped/bulbed_sea_lantern.png deleted file mode 100644 index 933c162c..00000000 Binary files a/public/textures/chipped/bulbed_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/bulbed_warped_fungus.png b/public/textures/chipped/bulbed_warped_fungus.png deleted file mode 100644 index 5687036e..00000000 Binary files a/public/textures/chipped/bulbed_warped_fungus.png and /dev/null differ diff --git a/public/textures/chipped/bulby_sponge.png b/public/textures/chipped/bulby_sponge.png deleted file mode 100644 index 08598376..00000000 Binary files a/public/textures/chipped/bulby_sponge.png and /dev/null differ diff --git a/public/textures/chipped/bundled_acacia_log.png b/public/textures/chipped/bundled_acacia_log.png deleted file mode 100644 index 1df19267..00000000 Binary files a/public/textures/chipped/bundled_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/bundled_birch_log.png b/public/textures/chipped/bundled_birch_log.png deleted file mode 100644 index 933ca256..00000000 Binary files a/public/textures/chipped/bundled_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/bundled_black_carpet.png b/public/textures/chipped/bundled_black_carpet.png deleted file mode 100644 index eb89061c..00000000 Binary files a/public/textures/chipped/bundled_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_black_wool.png b/public/textures/chipped/bundled_black_wool.png deleted file mode 100644 index 571d9fb3..00000000 Binary files a/public/textures/chipped/bundled_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_blue_carpet.png b/public/textures/chipped/bundled_blue_carpet.png deleted file mode 100644 index 0f0149b1..00000000 Binary files a/public/textures/chipped/bundled_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_blue_wool.png b/public/textures/chipped/bundled_blue_wool.png deleted file mode 100644 index dd868b51..00000000 Binary files a/public/textures/chipped/bundled_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_brown_carpet.png b/public/textures/chipped/bundled_brown_carpet.png deleted file mode 100644 index 6e2f6351..00000000 Binary files a/public/textures/chipped/bundled_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_brown_wool.png b/public/textures/chipped/bundled_brown_wool.png deleted file mode 100644 index d9339aef..00000000 Binary files a/public/textures/chipped/bundled_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_cherry_log.png b/public/textures/chipped/bundled_cherry_log.png deleted file mode 100644 index 726ee128..00000000 Binary files a/public/textures/chipped/bundled_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/bundled_crimson_stem.png b/public/textures/chipped/bundled_crimson_stem.png deleted file mode 100644 index 82b7c9cf..00000000 Binary files a/public/textures/chipped/bundled_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/bundled_cyan_carpet.png b/public/textures/chipped/bundled_cyan_carpet.png deleted file mode 100644 index d1229fef..00000000 Binary files a/public/textures/chipped/bundled_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_cyan_wool.png b/public/textures/chipped/bundled_cyan_wool.png deleted file mode 100644 index 389a261e..00000000 Binary files a/public/textures/chipped/bundled_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_dark_oak_log.png b/public/textures/chipped/bundled_dark_oak_log.png deleted file mode 100644 index 58a76737..00000000 Binary files a/public/textures/chipped/bundled_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/bundled_gray_carpet.png b/public/textures/chipped/bundled_gray_carpet.png deleted file mode 100644 index aed301cd..00000000 Binary files a/public/textures/chipped/bundled_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_gray_wool.png b/public/textures/chipped/bundled_gray_wool.png deleted file mode 100644 index 4b6b186a..00000000 Binary files a/public/textures/chipped/bundled_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_green_carpet.png b/public/textures/chipped/bundled_green_carpet.png deleted file mode 100644 index c95651e6..00000000 Binary files a/public/textures/chipped/bundled_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_green_wool.png b/public/textures/chipped/bundled_green_wool.png deleted file mode 100644 index 44f5ff69..00000000 Binary files a/public/textures/chipped/bundled_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_hay_block.png b/public/textures/chipped/bundled_hay_block.png deleted file mode 100644 index db93151e..00000000 Binary files a/public/textures/chipped/bundled_hay_block.png and /dev/null differ diff --git a/public/textures/chipped/bundled_jungle_log.png b/public/textures/chipped/bundled_jungle_log.png deleted file mode 100644 index 71269d14..00000000 Binary files a/public/textures/chipped/bundled_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/bundled_light_blue_carpet.png b/public/textures/chipped/bundled_light_blue_carpet.png deleted file mode 100644 index e15e559c..00000000 Binary files a/public/textures/chipped/bundled_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_light_blue_wool.png b/public/textures/chipped/bundled_light_blue_wool.png deleted file mode 100644 index bd31ef8e..00000000 Binary files a/public/textures/chipped/bundled_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_light_gray_carpet.png b/public/textures/chipped/bundled_light_gray_carpet.png deleted file mode 100644 index 0e62ba9a..00000000 Binary files a/public/textures/chipped/bundled_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_light_gray_wool.png b/public/textures/chipped/bundled_light_gray_wool.png deleted file mode 100644 index 1d900ef8..00000000 Binary files a/public/textures/chipped/bundled_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_lime_carpet.png b/public/textures/chipped/bundled_lime_carpet.png deleted file mode 100644 index 9f6ebbab..00000000 Binary files a/public/textures/chipped/bundled_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_lime_wool.png b/public/textures/chipped/bundled_lime_wool.png deleted file mode 100644 index c928624b..00000000 Binary files a/public/textures/chipped/bundled_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_magenta_carpet.png b/public/textures/chipped/bundled_magenta_carpet.png deleted file mode 100644 index 1d3daaac..00000000 Binary files a/public/textures/chipped/bundled_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_magenta_wool.png b/public/textures/chipped/bundled_magenta_wool.png deleted file mode 100644 index 74bbe76a..00000000 Binary files a/public/textures/chipped/bundled_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_mangrove_log.png b/public/textures/chipped/bundled_mangrove_log.png deleted file mode 100644 index 6f1cfaec..00000000 Binary files a/public/textures/chipped/bundled_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/bundled_oak_log.png b/public/textures/chipped/bundled_oak_log.png deleted file mode 100644 index eafe2d5a..00000000 Binary files a/public/textures/chipped/bundled_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/bundled_orange_carpet.png b/public/textures/chipped/bundled_orange_carpet.png deleted file mode 100644 index 38283537..00000000 Binary files a/public/textures/chipped/bundled_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_orange_wool.png b/public/textures/chipped/bundled_orange_wool.png deleted file mode 100644 index 965066dc..00000000 Binary files a/public/textures/chipped/bundled_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_pink_carpet.png b/public/textures/chipped/bundled_pink_carpet.png deleted file mode 100644 index 763e2d76..00000000 Binary files a/public/textures/chipped/bundled_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_pink_wool.png b/public/textures/chipped/bundled_pink_wool.png deleted file mode 100644 index 6fc3f96f..00000000 Binary files a/public/textures/chipped/bundled_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_purple_carpet.png b/public/textures/chipped/bundled_purple_carpet.png deleted file mode 100644 index 810fb9a6..00000000 Binary files a/public/textures/chipped/bundled_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_purple_wool.png b/public/textures/chipped/bundled_purple_wool.png deleted file mode 100644 index ea9f85fe..00000000 Binary files a/public/textures/chipped/bundled_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_red_carpet.png b/public/textures/chipped/bundled_red_carpet.png deleted file mode 100644 index ed311aa7..00000000 Binary files a/public/textures/chipped/bundled_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_red_wool.png b/public/textures/chipped/bundled_red_wool.png deleted file mode 100644 index cbb4be9d..00000000 Binary files a/public/textures/chipped/bundled_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_spruce_log.png b/public/textures/chipped/bundled_spruce_log.png deleted file mode 100644 index 3d4bd728..00000000 Binary files a/public/textures/chipped/bundled_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/bundled_warped_stem.png b/public/textures/chipped/bundled_warped_stem.png deleted file mode 100644 index c5b7f6d0..00000000 Binary files a/public/textures/chipped/bundled_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/bundled_white_carpet.png b/public/textures/chipped/bundled_white_carpet.png deleted file mode 100644 index f05b4471..00000000 Binary files a/public/textures/chipped/bundled_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_white_wool.png b/public/textures/chipped/bundled_white_wool.png deleted file mode 100644 index 852d965c..00000000 Binary files a/public/textures/chipped/bundled_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/bundled_yellow_carpet.png b/public/textures/chipped/bundled_yellow_carpet.png deleted file mode 100644 index 3c02d093..00000000 Binary files a/public/textures/chipped/bundled_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/bundled_yellow_wool.png b/public/textures/chipped/bundled_yellow_wool.png deleted file mode 100644 index b1e7db03..00000000 Binary files a/public/textures/chipped/bundled_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/burning_coal_lantern.png b/public/textures/chipped/burning_coal_lantern.png deleted file mode 100644 index ed14e927..00000000 Binary files a/public/textures/chipped/burning_coal_lantern.png and /dev/null differ diff --git a/public/textures/chipped/bushy_nether_sprouts.png b/public/textures/chipped/bushy_nether_sprouts.png deleted file mode 100644 index 6d5096b3..00000000 Binary files a/public/textures/chipped/bushy_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/button_brown_mushroom.png b/public/textures/chipped/button_brown_mushroom.png deleted file mode 100644 index 05f05a39..00000000 Binary files a/public/textures/chipped/button_brown_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/button_crimson_fungus.png b/public/textures/chipped/button_crimson_fungus.png deleted file mode 100644 index a5f7611e..00000000 Binary files a/public/textures/chipped/button_crimson_fungus.png and /dev/null differ diff --git a/public/textures/chipped/button_mud.png b/public/textures/chipped/button_mud.png deleted file mode 100644 index 10db0923..00000000 Binary files a/public/textures/chipped/button_mud.png and /dev/null differ diff --git a/public/textures/chipped/button_mud_bricks.png b/public/textures/chipped/button_mud_bricks.png deleted file mode 100644 index 8eaf84de..00000000 Binary files a/public/textures/chipped/button_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/button_packed_mud.png b/public/textures/chipped/button_packed_mud.png deleted file mode 100644 index a1f48fd7..00000000 Binary files a/public/textures/chipped/button_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/button_red_mushroom.png b/public/textures/chipped/button_red_mushroom.png deleted file mode 100644 index 04c102ac..00000000 Binary files a/public/textures/chipped/button_red_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/button_warped_fungus.png b/public/textures/chipped/button_warped_fungus.png deleted file mode 100644 index 35169d7c..00000000 Binary files a/public/textures/chipped/button_warped_fungus.png and /dev/null differ diff --git a/public/textures/chipped/calcite_bricks.png b/public/textures/chipped/calcite_bricks.png deleted file mode 100644 index 04179497..00000000 Binary files a/public/textures/chipped/calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/calcite_mini_tiles.png b/public/textures/chipped/calcite_mini_tiles.png deleted file mode 100644 index f46f1187..00000000 Binary files a/public/textures/chipped/calcite_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/calcite_pillar.png b/public/textures/chipped/calcite_pillar.png deleted file mode 100644 index 0ac4abf6..00000000 Binary files a/public/textures/chipped/calcite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/calcite_pillar_top.png b/public/textures/chipped/calcite_pillar_top.png deleted file mode 100644 index d15525be..00000000 Binary files a/public/textures/chipped/calcite_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/calcite_pointed_dripstone.png b/public/textures/chipped/calcite_pointed_dripstone.png deleted file mode 100644 index f16bc9b9..00000000 Binary files a/public/textures/chipped/calcite_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/calcite_scales.png b/public/textures/chipped/calcite_scales.png deleted file mode 100644 index 54d574ce..00000000 Binary files a/public/textures/chipped/calcite_scales.png and /dev/null differ diff --git a/public/textures/chipped/carpenters_table.png b/public/textures/chipped/carpenters_table.png deleted file mode 100644 index ef89fa63..00000000 Binary files a/public/textures/chipped/carpenters_table.png and /dev/null differ diff --git a/public/textures/chipped/carved_amethyst_block.png b/public/textures/chipped/carved_amethyst_block.png deleted file mode 100644 index 2a5629f8..00000000 Binary files a/public/textures/chipped/carved_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/carved_ancient_debris.png b/public/textures/chipped/carved_ancient_debris.png deleted file mode 100644 index 71fb3178..00000000 Binary files a/public/textures/chipped/carved_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/carved_andesite.png b/public/textures/chipped/carved_andesite.png deleted file mode 100644 index 22792741..00000000 Binary files a/public/textures/chipped/carved_andesite.png and /dev/null differ diff --git a/public/textures/chipped/carved_basalt.png b/public/textures/chipped/carved_basalt.png deleted file mode 100644 index b6067ea4..00000000 Binary files a/public/textures/chipped/carved_basalt.png and /dev/null differ diff --git a/public/textures/chipped/carved_blackstone.png b/public/textures/chipped/carved_blackstone.png deleted file mode 100644 index d7f7813f..00000000 Binary files a/public/textures/chipped/carved_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/carved_blue_ice.png b/public/textures/chipped/carved_blue_ice.png deleted file mode 100644 index c52158ab..00000000 Binary files a/public/textures/chipped/carved_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/carved_borderless_bricks.png b/public/textures/chipped/carved_borderless_bricks.png deleted file mode 100644 index 92bee686..00000000 Binary files a/public/textures/chipped/carved_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/carved_bricks.png b/public/textures/chipped/carved_bricks.png deleted file mode 100644 index 0347e8ee..00000000 Binary files a/public/textures/chipped/carved_bricks.png and /dev/null differ diff --git a/public/textures/chipped/carved_calcite.png b/public/textures/chipped/carved_calcite.png deleted file mode 100644 index b4781090..00000000 Binary files a/public/textures/chipped/carved_calcite.png and /dev/null differ diff --git a/public/textures/chipped/carved_clay.png b/public/textures/chipped/carved_clay.png deleted file mode 100644 index 95645f7e..00000000 Binary files a/public/textures/chipped/carved_clay.png and /dev/null differ diff --git a/public/textures/chipped/carved_coal_block.png b/public/textures/chipped/carved_coal_block.png deleted file mode 100644 index 833797f7..00000000 Binary files a/public/textures/chipped/carved_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/carved_cobblestone.png b/public/textures/chipped/carved_cobblestone.png deleted file mode 100644 index b4e82863..00000000 Binary files a/public/textures/chipped/carved_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/carved_crying_obsidian.png b/public/textures/chipped/carved_crying_obsidian.png deleted file mode 100644 index 7dcc7d8d..00000000 Binary files a/public/textures/chipped/carved_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/carved_dark_prismarine.png b/public/textures/chipped/carved_dark_prismarine.png deleted file mode 100644 index a2922f48..00000000 Binary files a/public/textures/chipped/carved_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/carved_deepslate.png b/public/textures/chipped/carved_deepslate.png deleted file mode 100644 index 987ac3bf..00000000 Binary files a/public/textures/chipped/carved_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/carved_diorite.png b/public/textures/chipped/carved_diorite.png deleted file mode 100644 index 024f8f8e..00000000 Binary files a/public/textures/chipped/carved_diorite.png and /dev/null differ diff --git a/public/textures/chipped/carved_dirt.png b/public/textures/chipped/carved_dirt.png deleted file mode 100644 index d30220c3..00000000 Binary files a/public/textures/chipped/carved_dirt.png and /dev/null differ diff --git a/public/textures/chipped/carved_dripstone_block.png b/public/textures/chipped/carved_dripstone_block.png deleted file mode 100644 index 1bf69f4f..00000000 Binary files a/public/textures/chipped/carved_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/carved_end_stone.png b/public/textures/chipped/carved_end_stone.png deleted file mode 100644 index ed311dee..00000000 Binary files a/public/textures/chipped/carved_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/carved_gilded_blackstone.png b/public/textures/chipped/carved_gilded_blackstone.png deleted file mode 100644 index 872efe60..00000000 Binary files a/public/textures/chipped/carved_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/carved_granite.png b/public/textures/chipped/carved_granite.png deleted file mode 100644 index 15a7ef45..00000000 Binary files a/public/textures/chipped/carved_granite.png and /dev/null differ diff --git a/public/textures/chipped/carved_ice.png b/public/textures/chipped/carved_ice.png deleted file mode 100644 index f45fbc9e..00000000 Binary files a/public/textures/chipped/carved_ice.png and /dev/null differ diff --git a/public/textures/chipped/carved_lapis_block.png b/public/textures/chipped/carved_lapis_block.png deleted file mode 100644 index 446b9538..00000000 Binary files a/public/textures/chipped/carved_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/carved_lodestone.png b/public/textures/chipped/carved_lodestone.png deleted file mode 100644 index 51b95693..00000000 Binary files a/public/textures/chipped/carved_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/carved_magma_block.png b/public/textures/chipped/carved_magma_block.png deleted file mode 100644 index 63ed8d2b..00000000 Binary files a/public/textures/chipped/carved_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/carved_mangrove_planks.png b/public/textures/chipped/carved_mangrove_planks.png deleted file mode 100644 index 05662387..00000000 Binary files a/public/textures/chipped/carved_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/carved_mossy_cobblestone.png b/public/textures/chipped/carved_mossy_cobblestone.png deleted file mode 100644 index d333e1be..00000000 Binary files a/public/textures/chipped/carved_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/carved_mossy_stone_bricks.png b/public/textures/chipped/carved_mossy_stone_bricks.png deleted file mode 100644 index ce1b79be..00000000 Binary files a/public/textures/chipped/carved_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/carved_mud.png b/public/textures/chipped/carved_mud.png deleted file mode 100644 index e9544a05..00000000 Binary files a/public/textures/chipped/carved_mud.png and /dev/null differ diff --git a/public/textures/chipped/carved_mud_bricks.png b/public/textures/chipped/carved_mud_bricks.png deleted file mode 100644 index 83924c74..00000000 Binary files a/public/textures/chipped/carved_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/carved_mud_bricks_pillar.png b/public/textures/chipped/carved_mud_bricks_pillar.png deleted file mode 100644 index 785d7ae6..00000000 Binary files a/public/textures/chipped/carved_mud_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/carved_mud_pillar.png b/public/textures/chipped/carved_mud_pillar.png deleted file mode 100644 index 92d42c4f..00000000 Binary files a/public/textures/chipped/carved_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/carved_nether_bricks.png b/public/textures/chipped/carved_nether_bricks.png deleted file mode 100644 index 6f58ee36..00000000 Binary files a/public/textures/chipped/carved_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/carved_netherrack.png b/public/textures/chipped/carved_netherrack.png deleted file mode 100644 index cb66c1b0..00000000 Binary files a/public/textures/chipped/carved_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/carved_obsidian.png b/public/textures/chipped/carved_obsidian.png deleted file mode 100644 index cbdf84d9..00000000 Binary files a/public/textures/chipped/carved_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/carved_packed_ice.png b/public/textures/chipped/carved_packed_ice.png deleted file mode 100644 index 30714941..00000000 Binary files a/public/textures/chipped/carved_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/carved_packed_mud.png b/public/textures/chipped/carved_packed_mud.png deleted file mode 100644 index baa8aaf6..00000000 Binary files a/public/textures/chipped/carved_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/carved_packed_mud_pillar.png b/public/textures/chipped/carved_packed_mud_pillar.png deleted file mode 100644 index 73251541..00000000 Binary files a/public/textures/chipped/carved_packed_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/carved_prismarine.png b/public/textures/chipped/carved_prismarine.png deleted file mode 100644 index 2088c878..00000000 Binary files a/public/textures/chipped/carved_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/carved_purpur_block.png b/public/textures/chipped/carved_purpur_block.png deleted file mode 100644 index f0d00565..00000000 Binary files a/public/textures/chipped/carved_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/carved_raw_copper_block.png b/public/textures/chipped/carved_raw_copper_block.png deleted file mode 100644 index 65834208..00000000 Binary files a/public/textures/chipped/carved_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/carved_raw_gold_block.png b/public/textures/chipped/carved_raw_gold_block.png deleted file mode 100644 index 56894933..00000000 Binary files a/public/textures/chipped/carved_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/carved_raw_iron_block.png b/public/textures/chipped/carved_raw_iron_block.png deleted file mode 100644 index c2abff67..00000000 Binary files a/public/textures/chipped/carved_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/carved_red_nether_bricks.png b/public/textures/chipped/carved_red_nether_bricks.png deleted file mode 100644 index 855d72a6..00000000 Binary files a/public/textures/chipped/carved_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/carved_red_sandstone.png b/public/textures/chipped/carved_red_sandstone.png deleted file mode 100644 index 6747c9c6..00000000 Binary files a/public/textures/chipped/carved_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/carved_redstone_block.png b/public/textures/chipped/carved_redstone_block.png deleted file mode 100644 index 29e3bb64..00000000 Binary files a/public/textures/chipped/carved_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/carved_sandstone.png b/public/textures/chipped/carved_sandstone.png deleted file mode 100644 index 962cf0b1..00000000 Binary files a/public/textures/chipped/carved_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/carved_smooth_stone.png b/public/textures/chipped/carved_smooth_stone.png deleted file mode 100644 index 6449a51c..00000000 Binary files a/public/textures/chipped/carved_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/carved_snow_block.png b/public/textures/chipped/carved_snow_block.png deleted file mode 100644 index 1c89f3b0..00000000 Binary files a/public/textures/chipped/carved_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/carved_stone.png b/public/textures/chipped/carved_stone.png deleted file mode 100644 index 6433cc98..00000000 Binary files a/public/textures/chipped/carved_stone.png and /dev/null differ diff --git a/public/textures/chipped/carved_stripped_acacia_log.png b/public/textures/chipped/carved_stripped_acacia_log.png deleted file mode 100644 index de85e566..00000000 Binary files a/public/textures/chipped/carved_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/carved_stripped_birch_log.png b/public/textures/chipped/carved_stripped_birch_log.png deleted file mode 100644 index f26bc2ba..00000000 Binary files a/public/textures/chipped/carved_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/carved_stripped_cherry_log.png b/public/textures/chipped/carved_stripped_cherry_log.png deleted file mode 100644 index aa78b715..00000000 Binary files a/public/textures/chipped/carved_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/carved_stripped_crimson_stem.png b/public/textures/chipped/carved_stripped_crimson_stem.png deleted file mode 100644 index bd622e78..00000000 Binary files a/public/textures/chipped/carved_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/carved_stripped_dark_oak_log.png b/public/textures/chipped/carved_stripped_dark_oak_log.png deleted file mode 100644 index e06efcb7..00000000 Binary files a/public/textures/chipped/carved_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/carved_stripped_jungle_log.png b/public/textures/chipped/carved_stripped_jungle_log.png deleted file mode 100644 index f9a23c8f..00000000 Binary files a/public/textures/chipped/carved_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/carved_stripped_mangrove_log.png b/public/textures/chipped/carved_stripped_mangrove_log.png deleted file mode 100644 index 59433bf0..00000000 Binary files a/public/textures/chipped/carved_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/carved_stripped_oak_log.png b/public/textures/chipped/carved_stripped_oak_log.png deleted file mode 100644 index a52535c4..00000000 Binary files a/public/textures/chipped/carved_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/carved_stripped_spruce_log.png b/public/textures/chipped/carved_stripped_spruce_log.png deleted file mode 100644 index c134eb74..00000000 Binary files a/public/textures/chipped/carved_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/carved_stripped_warped_stem.png b/public/textures/chipped/carved_stripped_warped_stem.png deleted file mode 100644 index 08718f46..00000000 Binary files a/public/textures/chipped/carved_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/carved_tuff.png b/public/textures/chipped/carved_tuff.png deleted file mode 100644 index 0cf03217..00000000 Binary files a/public/textures/chipped/carved_tuff.png and /dev/null differ diff --git a/public/textures/chipped/center_cut_acacia_log.png b/public/textures/chipped/center_cut_acacia_log.png deleted file mode 100644 index f75721d6..00000000 Binary files a/public/textures/chipped/center_cut_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/center_cut_birch_log.png b/public/textures/chipped/center_cut_birch_log.png deleted file mode 100644 index e07b9ab5..00000000 Binary files a/public/textures/chipped/center_cut_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/center_cut_cherry_log.png b/public/textures/chipped/center_cut_cherry_log.png deleted file mode 100644 index 4419501e..00000000 Binary files a/public/textures/chipped/center_cut_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/center_cut_crimson_stem.png b/public/textures/chipped/center_cut_crimson_stem.png deleted file mode 100644 index a1d400b8..00000000 Binary files a/public/textures/chipped/center_cut_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/center_cut_dark_oak_log.png b/public/textures/chipped/center_cut_dark_oak_log.png deleted file mode 100644 index 2746dd84..00000000 Binary files a/public/textures/chipped/center_cut_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/center_cut_jungle_log.png b/public/textures/chipped/center_cut_jungle_log.png deleted file mode 100644 index 8f580149..00000000 Binary files a/public/textures/chipped/center_cut_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/center_cut_mangrove_log.png b/public/textures/chipped/center_cut_mangrove_log.png deleted file mode 100644 index eee0436f..00000000 Binary files a/public/textures/chipped/center_cut_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/center_cut_oak_log.png b/public/textures/chipped/center_cut_oak_log.png deleted file mode 100644 index 085b9114..00000000 Binary files a/public/textures/chipped/center_cut_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/center_cut_spruce_log.png b/public/textures/chipped/center_cut_spruce_log.png deleted file mode 100644 index cc03ceeb..00000000 Binary files a/public/textures/chipped/center_cut_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/center_cut_warped_stem.png b/public/textures/chipped/center_cut_warped_stem.png deleted file mode 100644 index 7ee78bac..00000000 Binary files a/public/textures/chipped/center_cut_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/centered_mud.png b/public/textures/chipped/centered_mud.png deleted file mode 100644 index 77b4179e..00000000 Binary files a/public/textures/chipped/centered_mud.png and /dev/null differ diff --git a/public/textures/chipped/centered_mud_bricks.png b/public/textures/chipped/centered_mud_bricks.png deleted file mode 100644 index 3131288f..00000000 Binary files a/public/textures/chipped/centered_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/centered_packed_mud.png b/public/textures/chipped/centered_packed_mud.png deleted file mode 100644 index 792613b8..00000000 Binary files a/public/textures/chipped/centered_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/chained_iron_bars.png b/public/textures/chipped/chained_iron_bars.png deleted file mode 100644 index 22ae9afb..00000000 Binary files a/public/textures/chipped/chained_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/checkered_acacia_trapdoor.png b/public/textures/chipped/checkered_acacia_trapdoor.png deleted file mode 100644 index 698d96b3..00000000 Binary files a/public/textures/chipped/checkered_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/checkered_amethyst_block_tiles.png b/public/textures/chipped/checkered_amethyst_block_tiles.png deleted file mode 100644 index 8e96b16a..00000000 Binary files a/public/textures/chipped/checkered_amethyst_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_ancient_debris_tiles.png b/public/textures/chipped/checkered_ancient_debris_tiles.png deleted file mode 100644 index a899e1a3..00000000 Binary files a/public/textures/chipped/checkered_ancient_debris_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_andesite_tiles.png b/public/textures/chipped/checkered_andesite_tiles.png deleted file mode 100644 index 01e64ae6..00000000 Binary files a/public/textures/chipped/checkered_andesite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_bamboo_trapdoor.png b/public/textures/chipped/checkered_bamboo_trapdoor.png deleted file mode 100644 index 671db1f6..00000000 Binary files a/public/textures/chipped/checkered_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/checkered_basalt_tiles.png b/public/textures/chipped/checkered_basalt_tiles.png deleted file mode 100644 index ec9115c5..00000000 Binary files a/public/textures/chipped/checkered_basalt_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_birch_trapdoor.png b/public/textures/chipped/checkered_birch_trapdoor.png deleted file mode 100644 index 5430a1bd..00000000 Binary files a/public/textures/chipped/checkered_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/checkered_blackstone_tiles.png b/public/textures/chipped/checkered_blackstone_tiles.png deleted file mode 100644 index 5b3adac3..00000000 Binary files a/public/textures/chipped/checkered_blackstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_blue_ice_tiles.png b/public/textures/chipped/checkered_blue_ice_tiles.png deleted file mode 100644 index f0521ddf..00000000 Binary files a/public/textures/chipped/checkered_blue_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_borderless_bricks_tiles.png b/public/textures/chipped/checkered_borderless_bricks_tiles.png deleted file mode 100644 index bcdc4277..00000000 Binary files a/public/textures/chipped/checkered_borderless_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_bricks_tiles.png b/public/textures/chipped/checkered_bricks_tiles.png deleted file mode 100644 index 4d0e9c85..00000000 Binary files a/public/textures/chipped/checkered_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_calcite_tiles.png b/public/textures/chipped/checkered_calcite_tiles.png deleted file mode 100644 index 6ffa20ba..00000000 Binary files a/public/textures/chipped/checkered_calcite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_cherry_trapdoor.png b/public/textures/chipped/checkered_cherry_trapdoor.png deleted file mode 100644 index 2a2582f3..00000000 Binary files a/public/textures/chipped/checkered_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/checkered_clay_tiles.png b/public/textures/chipped/checkered_clay_tiles.png deleted file mode 100644 index 0b4ba2ad..00000000 Binary files a/public/textures/chipped/checkered_clay_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_coal_block_tiles.png b/public/textures/chipped/checkered_coal_block_tiles.png deleted file mode 100644 index 1447630c..00000000 Binary files a/public/textures/chipped/checkered_coal_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_cobblestone_tiles.png b/public/textures/chipped/checkered_cobblestone_tiles.png deleted file mode 100644 index 19fb7e43..00000000 Binary files a/public/textures/chipped/checkered_cobblestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_crimson_trapdoor.png b/public/textures/chipped/checkered_crimson_trapdoor.png deleted file mode 100644 index 10cff2f2..00000000 Binary files a/public/textures/chipped/checkered_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/checkered_crying_obsidian_tiles.png b/public/textures/chipped/checkered_crying_obsidian_tiles.png deleted file mode 100644 index 9116bcee..00000000 Binary files a/public/textures/chipped/checkered_crying_obsidian_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_dark_oak_trapdoor.png b/public/textures/chipped/checkered_dark_oak_trapdoor.png deleted file mode 100644 index 4febe475..00000000 Binary files a/public/textures/chipped/checkered_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/checkered_dark_prismarine_tiles.png b/public/textures/chipped/checkered_dark_prismarine_tiles.png deleted file mode 100644 index a1ab8aff..00000000 Binary files a/public/textures/chipped/checkered_dark_prismarine_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_deepslate_tiles.png b/public/textures/chipped/checkered_deepslate_tiles.png deleted file mode 100644 index 246bbc93..00000000 Binary files a/public/textures/chipped/checkered_deepslate_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_diorite_tiles.png b/public/textures/chipped/checkered_diorite_tiles.png deleted file mode 100644 index 1ed1b739..00000000 Binary files a/public/textures/chipped/checkered_diorite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_dirt_tiles.png b/public/textures/chipped/checkered_dirt_tiles.png deleted file mode 100644 index 3fe616f4..00000000 Binary files a/public/textures/chipped/checkered_dirt_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_dripstone_block_tiles.png b/public/textures/chipped/checkered_dripstone_block_tiles.png deleted file mode 100644 index a4770ad7..00000000 Binary files a/public/textures/chipped/checkered_dripstone_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_end_stone_tiles.png b/public/textures/chipped/checkered_end_stone_tiles.png deleted file mode 100644 index b30d361a..00000000 Binary files a/public/textures/chipped/checkered_end_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_gilded_blackstone_tiles.png b/public/textures/chipped/checkered_gilded_blackstone_tiles.png deleted file mode 100644 index 89441cd1..00000000 Binary files a/public/textures/chipped/checkered_gilded_blackstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_granite_tiles.png b/public/textures/chipped/checkered_granite_tiles.png deleted file mode 100644 index c3013ffa..00000000 Binary files a/public/textures/chipped/checkered_granite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_ice_tiles.png b/public/textures/chipped/checkered_ice_tiles.png deleted file mode 100644 index 52345902..00000000 Binary files a/public/textures/chipped/checkered_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_iron_lantern.png b/public/textures/chipped/checkered_iron_lantern.png deleted file mode 100644 index d720f068..00000000 Binary files a/public/textures/chipped/checkered_iron_lantern.png and /dev/null differ diff --git a/public/textures/chipped/checkered_iron_soul_lantern.png b/public/textures/chipped/checkered_iron_soul_lantern.png deleted file mode 100644 index 6b7f08f6..00000000 Binary files a/public/textures/chipped/checkered_iron_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/checkered_jungle_trapdoor.png b/public/textures/chipped/checkered_jungle_trapdoor.png deleted file mode 100644 index e3a49b64..00000000 Binary files a/public/textures/chipped/checkered_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/checkered_lapis_block_tiles.png b/public/textures/chipped/checkered_lapis_block_tiles.png deleted file mode 100644 index 1c0fbb86..00000000 Binary files a/public/textures/chipped/checkered_lapis_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_lodestone_tiles.png b/public/textures/chipped/checkered_lodestone_tiles.png deleted file mode 100644 index 073bde50..00000000 Binary files a/public/textures/chipped/checkered_lodestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_magma_block_tiles.png b/public/textures/chipped/checkered_magma_block_tiles.png deleted file mode 100644 index 8544ca90..00000000 Binary files a/public/textures/chipped/checkered_magma_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_mangrove_trapdoor.png b/public/textures/chipped/checkered_mangrove_trapdoor.png deleted file mode 100644 index 1dccfb6e..00000000 Binary files a/public/textures/chipped/checkered_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/checkered_mossy_cobblestone_tiles.png b/public/textures/chipped/checkered_mossy_cobblestone_tiles.png deleted file mode 100644 index cf8cd5ba..00000000 Binary files a/public/textures/chipped/checkered_mossy_cobblestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_mossy_stone_bricks_tiles.png b/public/textures/chipped/checkered_mossy_stone_bricks_tiles.png deleted file mode 100644 index f6a16618..00000000 Binary files a/public/textures/chipped/checkered_mossy_stone_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_nether_bricks_tiles.png b/public/textures/chipped/checkered_nether_bricks_tiles.png deleted file mode 100644 index 5593fa96..00000000 Binary files a/public/textures/chipped/checkered_nether_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_netherrack_tiles.png b/public/textures/chipped/checkered_netherrack_tiles.png deleted file mode 100644 index 12ec7b27..00000000 Binary files a/public/textures/chipped/checkered_netherrack_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_oak_trapdoor.png b/public/textures/chipped/checkered_oak_trapdoor.png deleted file mode 100644 index b9b0cacc..00000000 Binary files a/public/textures/chipped/checkered_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/checkered_obsidian_tiles.png b/public/textures/chipped/checkered_obsidian_tiles.png deleted file mode 100644 index 584d2165..00000000 Binary files a/public/textures/chipped/checkered_obsidian_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_packed_ice_tiles.png b/public/textures/chipped/checkered_packed_ice_tiles.png deleted file mode 100644 index 862119d2..00000000 Binary files a/public/textures/chipped/checkered_packed_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_prismarine_tiles.png b/public/textures/chipped/checkered_prismarine_tiles.png deleted file mode 100644 index b3ed12d7..00000000 Binary files a/public/textures/chipped/checkered_prismarine_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_quartz_block_tiles.png b/public/textures/chipped/checkered_quartz_block_tiles.png deleted file mode 100644 index dc6ea1a0..00000000 Binary files a/public/textures/chipped/checkered_quartz_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_raw_copper_block_tiles.png b/public/textures/chipped/checkered_raw_copper_block_tiles.png deleted file mode 100644 index 0812ee8e..00000000 Binary files a/public/textures/chipped/checkered_raw_copper_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_raw_gold_block_tiles.png b/public/textures/chipped/checkered_raw_gold_block_tiles.png deleted file mode 100644 index ce9c8664..00000000 Binary files a/public/textures/chipped/checkered_raw_gold_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_raw_iron_block_tiles.png b/public/textures/chipped/checkered_raw_iron_block_tiles.png deleted file mode 100644 index 71a61705..00000000 Binary files a/public/textures/chipped/checkered_raw_iron_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_red_nether_bricks_tiles.png b/public/textures/chipped/checkered_red_nether_bricks_tiles.png deleted file mode 100644 index 413f95e4..00000000 Binary files a/public/textures/chipped/checkered_red_nether_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_red_sandstone_tiles.png b/public/textures/chipped/checkered_red_sandstone_tiles.png deleted file mode 100644 index 0bce546b..00000000 Binary files a/public/textures/chipped/checkered_red_sandstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_redstone_block_tiles.png b/public/textures/chipped/checkered_redstone_block_tiles.png deleted file mode 100644 index abde48ea..00000000 Binary files a/public/textures/chipped/checkered_redstone_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_sandstone_tiles.png b/public/textures/chipped/checkered_sandstone_tiles.png deleted file mode 100644 index ae87e8c4..00000000 Binary files a/public/textures/chipped/checkered_sandstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_smooth_stone_tiles.png b/public/textures/chipped/checkered_smooth_stone_tiles.png deleted file mode 100644 index 578ab7b5..00000000 Binary files a/public/textures/chipped/checkered_smooth_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_snow_block_tiles.png b/public/textures/chipped/checkered_snow_block_tiles.png deleted file mode 100644 index d8ff20e1..00000000 Binary files a/public/textures/chipped/checkered_snow_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_spruce_trapdoor.png b/public/textures/chipped/checkered_spruce_trapdoor.png deleted file mode 100644 index 4684f3fd..00000000 Binary files a/public/textures/chipped/checkered_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/checkered_stone_tiles.png b/public/textures/chipped/checkered_stone_tiles.png deleted file mode 100644 index f86dae09..00000000 Binary files a/public/textures/chipped/checkered_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_tuff_tiles.png b/public/textures/chipped/checkered_tuff_tiles.png deleted file mode 100644 index f198ed0f..00000000 Binary files a/public/textures/chipped/checkered_tuff_tiles.png and /dev/null differ diff --git a/public/textures/chipped/checkered_warped_trapdoor.png b/public/textures/chipped/checkered_warped_trapdoor.png deleted file mode 100644 index df454aad..00000000 Binary files a/public/textures/chipped/checkered_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/cherry_acacia_leaves.png b/public/textures/chipped/cherry_acacia_leaves.png deleted file mode 100644 index 285ab4fe..00000000 Binary files a/public/textures/chipped/cherry_acacia_leaves.png and /dev/null differ diff --git a/public/textures/chipped/cherry_birch_leaves.png b/public/textures/chipped/cherry_birch_leaves.png deleted file mode 100644 index 2a052a0b..00000000 Binary files a/public/textures/chipped/cherry_birch_leaves.png and /dev/null differ diff --git a/public/textures/chipped/cherry_dark_oak_leaves.png b/public/textures/chipped/cherry_dark_oak_leaves.png deleted file mode 100644 index 55e1c8c8..00000000 Binary files a/public/textures/chipped/cherry_dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/cherry_jungle_leaves.png b/public/textures/chipped/cherry_jungle_leaves.png deleted file mode 100644 index 118b855e..00000000 Binary files a/public/textures/chipped/cherry_jungle_leaves.png and /dev/null differ diff --git a/public/textures/chipped/cherry_oak_leaves.png b/public/textures/chipped/cherry_oak_leaves.png deleted file mode 100644 index 74665d6c..00000000 Binary files a/public/textures/chipped/cherry_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/cherry_planks_mosaic.png b/public/textures/chipped/cherry_planks_mosaic.png deleted file mode 100644 index 4c960cf8..00000000 Binary files a/public/textures/chipped/cherry_planks_mosaic.png and /dev/null differ diff --git a/public/textures/chipped/cherry_planks_panel.png b/public/textures/chipped/cherry_planks_panel.png deleted file mode 100644 index eccab295..00000000 Binary files a/public/textures/chipped/cherry_planks_panel.png and /dev/null differ diff --git a/public/textures/chipped/cherry_planks_shavings.png b/public/textures/chipped/cherry_planks_shavings.png deleted file mode 100644 index e34ff808..00000000 Binary files a/public/textures/chipped/cherry_planks_shavings.png and /dev/null differ diff --git a/public/textures/chipped/cherry_spruce_leaves.png b/public/textures/chipped/cherry_spruce_leaves.png deleted file mode 100644 index 73737e2e..00000000 Binary files a/public/textures/chipped/cherry_spruce_leaves.png and /dev/null differ diff --git a/public/textures/chipped/chipped_diamond_block.png b/public/textures/chipped/chipped_diamond_block.png deleted file mode 100644 index c87d4109..00000000 Binary files a/public/textures/chipped/chipped_diamond_block.png and /dev/null differ diff --git a/public/textures/chipped/chipped_emerald_block.png b/public/textures/chipped/chipped_emerald_block.png deleted file mode 100644 index ac7e5445..00000000 Binary files a/public/textures/chipped/chipped_emerald_block.png and /dev/null differ diff --git a/public/textures/chipped/chipped_gold_block.png b/public/textures/chipped/chipped_gold_block.png deleted file mode 100644 index e07817d3..00000000 Binary files a/public/textures/chipped/chipped_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/chipped_iron_block.png b/public/textures/chipped/chipped_iron_block.png deleted file mode 100644 index 411403eb..00000000 Binary files a/public/textures/chipped/chipped_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/chipped_netherite_block.png b/public/textures/chipped/chipped_netherite_block.png deleted file mode 100644 index 8a16d213..00000000 Binary files a/public/textures/chipped/chipped_netherite_block.png and /dev/null differ diff --git a/public/textures/chipped/chipped_stripped_acacia_log.png b/public/textures/chipped/chipped_stripped_acacia_log.png deleted file mode 100644 index 12ba4a92..00000000 Binary files a/public/textures/chipped/chipped_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/chipped_stripped_birch_log.png b/public/textures/chipped/chipped_stripped_birch_log.png deleted file mode 100644 index 225612c1..00000000 Binary files a/public/textures/chipped/chipped_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/chipped_stripped_cherry_log.png b/public/textures/chipped/chipped_stripped_cherry_log.png deleted file mode 100644 index 62d1a47e..00000000 Binary files a/public/textures/chipped/chipped_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/chipped_stripped_crimson_stem.png b/public/textures/chipped/chipped_stripped_crimson_stem.png deleted file mode 100644 index ae9e2f0b..00000000 Binary files a/public/textures/chipped/chipped_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/chipped_stripped_dark_oak_log.png b/public/textures/chipped/chipped_stripped_dark_oak_log.png deleted file mode 100644 index 57b5cc4b..00000000 Binary files a/public/textures/chipped/chipped_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/chipped_stripped_jungle_log.png b/public/textures/chipped/chipped_stripped_jungle_log.png deleted file mode 100644 index 947d01bf..00000000 Binary files a/public/textures/chipped/chipped_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/chipped_stripped_mangrove_log.png b/public/textures/chipped/chipped_stripped_mangrove_log.png deleted file mode 100644 index 19990b95..00000000 Binary files a/public/textures/chipped/chipped_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/chipped_stripped_oak_log.png b/public/textures/chipped/chipped_stripped_oak_log.png deleted file mode 100644 index be9b85fd..00000000 Binary files a/public/textures/chipped/chipped_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/chipped_stripped_spruce_log.png b/public/textures/chipped/chipped_stripped_spruce_log.png deleted file mode 100644 index 42d56ff6..00000000 Binary files a/public/textures/chipped/chipped_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/chipped_stripped_warped_stem.png b/public/textures/chipped/chipped_stripped_warped_stem.png deleted file mode 100644 index f1465116..00000000 Binary files a/public/textures/chipped/chipped_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/chipped_waxed_copper_block.png b/public/textures/chipped/chipped_waxed_copper_block.png deleted file mode 100644 index 1571fbcf..00000000 Binary files a/public/textures/chipped/chipped_waxed_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/chipped_waxed_exposed_copper.png b/public/textures/chipped/chipped_waxed_exposed_copper.png deleted file mode 100644 index 759a7f36..00000000 Binary files a/public/textures/chipped/chipped_waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/chipped/chipped_waxed_oxidized_copper.png b/public/textures/chipped/chipped_waxed_oxidized_copper.png deleted file mode 100644 index e4f529df..00000000 Binary files a/public/textures/chipped/chipped_waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/chipped/chipped_waxed_weathered_copper.png b/public/textures/chipped/chipped_waxed_weathered_copper.png deleted file mode 100644 index 98195ae5..00000000 Binary files a/public/textures/chipped/chipped_waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/chipped/chisel.png b/public/textures/chipped/chisel.png deleted file mode 100644 index 328dfd4f..00000000 Binary files a/public/textures/chipped/chisel.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_black_terracotta.png b/public/textures/chipped/chiseled_black_terracotta.png deleted file mode 100644 index 1ca89daa..00000000 Binary files a/public/textures/chipped/chiseled_black_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_blue_terracotta.png b/public/textures/chipped/chiseled_blue_terracotta.png deleted file mode 100644 index 6f8f5f04..00000000 Binary files a/public/textures/chipped/chiseled_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_brown_terracotta.png b/public/textures/chipped/chiseled_brown_terracotta.png deleted file mode 100644 index fdc128f8..00000000 Binary files a/public/textures/chipped/chiseled_brown_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_cyan_terracotta.png b/public/textures/chipped/chiseled_cyan_terracotta.png deleted file mode 100644 index 155c3572..00000000 Binary files a/public/textures/chipped/chiseled_cyan_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_gray_terracotta.png b/public/textures/chipped/chiseled_gray_terracotta.png deleted file mode 100644 index 39cdd7a3..00000000 Binary files a/public/textures/chipped/chiseled_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_green_terracotta.png b/public/textures/chipped/chiseled_green_terracotta.png deleted file mode 100644 index b6217518..00000000 Binary files a/public/textures/chipped/chiseled_green_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_light_blue_terracotta.png b/public/textures/chipped/chiseled_light_blue_terracotta.png deleted file mode 100644 index a1745f8e..00000000 Binary files a/public/textures/chipped/chiseled_light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_light_gray_terracotta.png b/public/textures/chipped/chiseled_light_gray_terracotta.png deleted file mode 100644 index 32e7c06e..00000000 Binary files a/public/textures/chipped/chiseled_light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_lime_terracotta.png b/public/textures/chipped/chiseled_lime_terracotta.png deleted file mode 100644 index 02d84051..00000000 Binary files a/public/textures/chipped/chiseled_lime_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_magenta_terracotta.png b/public/textures/chipped/chiseled_magenta_terracotta.png deleted file mode 100644 index 6f68eb16..00000000 Binary files a/public/textures/chipped/chiseled_magenta_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_mangrove_planks.png b/public/textures/chipped/chiseled_mangrove_planks.png deleted file mode 100644 index b3c9cca7..00000000 Binary files a/public/textures/chipped/chiseled_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_mud.png b/public/textures/chipped/chiseled_mud.png deleted file mode 100644 index dc58361f..00000000 Binary files a/public/textures/chipped/chiseled_mud.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_mud_bricks.png b/public/textures/chipped/chiseled_mud_bricks.png deleted file mode 100644 index aaf8de4e..00000000 Binary files a/public/textures/chipped/chiseled_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_orange_terracotta.png b/public/textures/chipped/chiseled_orange_terracotta.png deleted file mode 100644 index f59910b0..00000000 Binary files a/public/textures/chipped/chiseled_orange_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_packed_mud.png b/public/textures/chipped/chiseled_packed_mud.png deleted file mode 100644 index d597441b..00000000 Binary files a/public/textures/chipped/chiseled_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_pink_terracotta.png b/public/textures/chipped/chiseled_pink_terracotta.png deleted file mode 100644 index 1f12c694..00000000 Binary files a/public/textures/chipped/chiseled_pink_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_purple_terracotta.png b/public/textures/chipped/chiseled_purple_terracotta.png deleted file mode 100644 index 21c468c5..00000000 Binary files a/public/textures/chipped/chiseled_purple_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_red_terracotta.png b/public/textures/chipped/chiseled_red_terracotta.png deleted file mode 100644 index b4361203..00000000 Binary files a/public/textures/chipped/chiseled_red_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_stripped_mangrove_log.png b/public/textures/chipped/chiseled_stripped_mangrove_log.png deleted file mode 100644 index ba887ead..00000000 Binary files a/public/textures/chipped/chiseled_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_terracotta.png b/public/textures/chipped/chiseled_terracotta.png deleted file mode 100644 index 3dace86c..00000000 Binary files a/public/textures/chipped/chiseled_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_white_terracotta.png b/public/textures/chipped/chiseled_white_terracotta.png deleted file mode 100644 index b2919831..00000000 Binary files a/public/textures/chipped/chiseled_white_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chiseled_yellow_terracotta.png b/public/textures/chipped/chiseled_yellow_terracotta.png deleted file mode 100644 index 17fec21d..00000000 Binary files a/public/textures/chipped/chiseled_yellow_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/chunky_gilded_blackstone.png b/public/textures/chipped/chunky_gilded_blackstone.png deleted file mode 100644 index 03ddc987..00000000 Binary files a/public/textures/chipped/chunky_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/circle_oak_glass.png b/public/textures/chipped/circle_oak_glass.png deleted file mode 100644 index b6c8adc3..00000000 Binary files a/public/textures/chipped/circle_oak_glass.png and /dev/null differ diff --git a/public/textures/chipped/circle_oak_glass_pane.png b/public/textures/chipped/circle_oak_glass_pane.png deleted file mode 100644 index 5ff253cb..00000000 Binary files a/public/textures/chipped/circle_oak_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_black_stained_glass.png b/public/textures/chipped/circular_black_stained_glass.png deleted file mode 100644 index aecce015..00000000 Binary files a/public/textures/chipped/circular_black_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_black_stained_glass_pane.png b/public/textures/chipped/circular_black_stained_glass_pane.png deleted file mode 100644 index 66855587..00000000 Binary files a/public/textures/chipped/circular_black_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_black_terracotta.png b/public/textures/chipped/circular_black_terracotta.png deleted file mode 100644 index a3a4ef68..00000000 Binary files a/public/textures/chipped/circular_black_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_blue_stained_glass.png b/public/textures/chipped/circular_blue_stained_glass.png deleted file mode 100644 index 33683f85..00000000 Binary files a/public/textures/chipped/circular_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_blue_stained_glass_pane.png b/public/textures/chipped/circular_blue_stained_glass_pane.png deleted file mode 100644 index 3746da8c..00000000 Binary files a/public/textures/chipped/circular_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_blue_terracotta.png b/public/textures/chipped/circular_blue_terracotta.png deleted file mode 100644 index c03cfe77..00000000 Binary files a/public/textures/chipped/circular_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_brown_stained_glass.png b/public/textures/chipped/circular_brown_stained_glass.png deleted file mode 100644 index a160b8bf..00000000 Binary files a/public/textures/chipped/circular_brown_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_brown_stained_glass_pane.png b/public/textures/chipped/circular_brown_stained_glass_pane.png deleted file mode 100644 index 7859d9e2..00000000 Binary files a/public/textures/chipped/circular_brown_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_brown_terracotta.png b/public/textures/chipped/circular_brown_terracotta.png deleted file mode 100644 index 8ffc9281..00000000 Binary files a/public/textures/chipped/circular_brown_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_cyan_stained_glass.png b/public/textures/chipped/circular_cyan_stained_glass.png deleted file mode 100644 index dc3e1c1b..00000000 Binary files a/public/textures/chipped/circular_cyan_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_cyan_stained_glass_pane.png b/public/textures/chipped/circular_cyan_stained_glass_pane.png deleted file mode 100644 index 09e5cbf7..00000000 Binary files a/public/textures/chipped/circular_cyan_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_cyan_terracotta.png b/public/textures/chipped/circular_cyan_terracotta.png deleted file mode 100644 index ee8849f8..00000000 Binary files a/public/textures/chipped/circular_cyan_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_gray_stained_glass.png b/public/textures/chipped/circular_gray_stained_glass.png deleted file mode 100644 index 809504ee..00000000 Binary files a/public/textures/chipped/circular_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_gray_stained_glass_pane.png b/public/textures/chipped/circular_gray_stained_glass_pane.png deleted file mode 100644 index 9bd0bfb2..00000000 Binary files a/public/textures/chipped/circular_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_gray_terracotta.png b/public/textures/chipped/circular_gray_terracotta.png deleted file mode 100644 index b0d5907d..00000000 Binary files a/public/textures/chipped/circular_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_green_stained_glass.png b/public/textures/chipped/circular_green_stained_glass.png deleted file mode 100644 index c700d82f..00000000 Binary files a/public/textures/chipped/circular_green_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_green_stained_glass_pane.png b/public/textures/chipped/circular_green_stained_glass_pane.png deleted file mode 100644 index 499a7f09..00000000 Binary files a/public/textures/chipped/circular_green_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_green_terracotta.png b/public/textures/chipped/circular_green_terracotta.png deleted file mode 100644 index 539e304b..00000000 Binary files a/public/textures/chipped/circular_green_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_light_blue_stained_glass.png b/public/textures/chipped/circular_light_blue_stained_glass.png deleted file mode 100644 index 9cda8929..00000000 Binary files a/public/textures/chipped/circular_light_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_light_blue_stained_glass_pane.png b/public/textures/chipped/circular_light_blue_stained_glass_pane.png deleted file mode 100644 index 73e68220..00000000 Binary files a/public/textures/chipped/circular_light_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_light_blue_terracotta.png b/public/textures/chipped/circular_light_blue_terracotta.png deleted file mode 100644 index 5c986050..00000000 Binary files a/public/textures/chipped/circular_light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_light_gray_stained_glass.png b/public/textures/chipped/circular_light_gray_stained_glass.png deleted file mode 100644 index 489d523f..00000000 Binary files a/public/textures/chipped/circular_light_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_light_gray_stained_glass_pane.png b/public/textures/chipped/circular_light_gray_stained_glass_pane.png deleted file mode 100644 index 680df38a..00000000 Binary files a/public/textures/chipped/circular_light_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_light_gray_terracotta.png b/public/textures/chipped/circular_light_gray_terracotta.png deleted file mode 100644 index fee0cbda..00000000 Binary files a/public/textures/chipped/circular_light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_lime_stained_glass.png b/public/textures/chipped/circular_lime_stained_glass.png deleted file mode 100644 index 638d619c..00000000 Binary files a/public/textures/chipped/circular_lime_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_lime_stained_glass_pane.png b/public/textures/chipped/circular_lime_stained_glass_pane.png deleted file mode 100644 index cc7d804a..00000000 Binary files a/public/textures/chipped/circular_lime_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_lime_terracotta.png b/public/textures/chipped/circular_lime_terracotta.png deleted file mode 100644 index a363e6cd..00000000 Binary files a/public/textures/chipped/circular_lime_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_magenta_stained_glass.png b/public/textures/chipped/circular_magenta_stained_glass.png deleted file mode 100644 index 4bbfb7e4..00000000 Binary files a/public/textures/chipped/circular_magenta_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_magenta_stained_glass_pane.png b/public/textures/chipped/circular_magenta_stained_glass_pane.png deleted file mode 100644 index 58981ef2..00000000 Binary files a/public/textures/chipped/circular_magenta_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_magenta_terracotta.png b/public/textures/chipped/circular_magenta_terracotta.png deleted file mode 100644 index 2e325d94..00000000 Binary files a/public/textures/chipped/circular_magenta_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_orange_stained_glass.png b/public/textures/chipped/circular_orange_stained_glass.png deleted file mode 100644 index a9e6dd4f..00000000 Binary files a/public/textures/chipped/circular_orange_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_orange_stained_glass_pane.png b/public/textures/chipped/circular_orange_stained_glass_pane.png deleted file mode 100644 index f6861b08..00000000 Binary files a/public/textures/chipped/circular_orange_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_orange_terracotta.png b/public/textures/chipped/circular_orange_terracotta.png deleted file mode 100644 index d25120c4..00000000 Binary files a/public/textures/chipped/circular_orange_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_pink_stained_glass.png b/public/textures/chipped/circular_pink_stained_glass.png deleted file mode 100644 index fbf8cdb1..00000000 Binary files a/public/textures/chipped/circular_pink_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_pink_stained_glass_pane.png b/public/textures/chipped/circular_pink_stained_glass_pane.png deleted file mode 100644 index 2b283c76..00000000 Binary files a/public/textures/chipped/circular_pink_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_pink_terracotta.png b/public/textures/chipped/circular_pink_terracotta.png deleted file mode 100644 index 3231ec20..00000000 Binary files a/public/textures/chipped/circular_pink_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_purple_stained_glass.png b/public/textures/chipped/circular_purple_stained_glass.png deleted file mode 100644 index 6f5e521e..00000000 Binary files a/public/textures/chipped/circular_purple_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_purple_stained_glass_pane.png b/public/textures/chipped/circular_purple_stained_glass_pane.png deleted file mode 100644 index 0b112f6b..00000000 Binary files a/public/textures/chipped/circular_purple_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_purple_terracotta.png b/public/textures/chipped/circular_purple_terracotta.png deleted file mode 100644 index eb3b635f..00000000 Binary files a/public/textures/chipped/circular_purple_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_red_stained_glass.png b/public/textures/chipped/circular_red_stained_glass.png deleted file mode 100644 index bcfda486..00000000 Binary files a/public/textures/chipped/circular_red_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_red_stained_glass_pane.png b/public/textures/chipped/circular_red_stained_glass_pane.png deleted file mode 100644 index 7e323a42..00000000 Binary files a/public/textures/chipped/circular_red_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_red_terracotta.png b/public/textures/chipped/circular_red_terracotta.png deleted file mode 100644 index ec15c2d6..00000000 Binary files a/public/textures/chipped/circular_red_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_terracotta.png b/public/textures/chipped/circular_terracotta.png deleted file mode 100644 index 504cf72f..00000000 Binary files a/public/textures/chipped/circular_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_white_stained_glass.png b/public/textures/chipped/circular_white_stained_glass.png deleted file mode 100644 index e94dce38..00000000 Binary files a/public/textures/chipped/circular_white_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_white_stained_glass_pane.png b/public/textures/chipped/circular_white_stained_glass_pane.png deleted file mode 100644 index 05a0320c..00000000 Binary files a/public/textures/chipped/circular_white_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_white_terracotta.png b/public/textures/chipped/circular_white_terracotta.png deleted file mode 100644 index 80924e09..00000000 Binary files a/public/textures/chipped/circular_white_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/circular_yellow_stained_glass.png b/public/textures/chipped/circular_yellow_stained_glass.png deleted file mode 100644 index 489c6193..00000000 Binary files a/public/textures/chipped/circular_yellow_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/circular_yellow_stained_glass_pane.png b/public/textures/chipped/circular_yellow_stained_glass_pane.png deleted file mode 100644 index e0e2f403..00000000 Binary files a/public/textures/chipped/circular_yellow_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/circular_yellow_terracotta.png b/public/textures/chipped/circular_yellow_terracotta.png deleted file mode 100644 index 477c9e31..00000000 Binary files a/public/textures/chipped/circular_yellow_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/classic_acacia_trapdoor.png b/public/textures/chipped/classic_acacia_trapdoor.png deleted file mode 100644 index 175e379a..00000000 Binary files a/public/textures/chipped/classic_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_bamboo_trapdoor.png b/public/textures/chipped/classic_bamboo_trapdoor.png deleted file mode 100644 index e05111ef..00000000 Binary files a/public/textures/chipped/classic_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_birch_trapdoor.png b/public/textures/chipped/classic_birch_trapdoor.png deleted file mode 100644 index e7af5302..00000000 Binary files a/public/textures/chipped/classic_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_cherry_trapdoor.png b/public/textures/chipped/classic_cherry_trapdoor.png deleted file mode 100644 index 5e308da7..00000000 Binary files a/public/textures/chipped/classic_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_crimson_trapdoor.png b/public/textures/chipped/classic_crimson_trapdoor.png deleted file mode 100644 index 7779f072..00000000 Binary files a/public/textures/chipped/classic_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_dark_oak_trapdoor.png b/public/textures/chipped/classic_dark_oak_trapdoor.png deleted file mode 100644 index 79b91008..00000000 Binary files a/public/textures/chipped/classic_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_jungle_trapdoor.png b/public/textures/chipped/classic_jungle_trapdoor.png deleted file mode 100644 index fa61ce37..00000000 Binary files a/public/textures/chipped/classic_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_mangrove_trapdoor.png b/public/textures/chipped/classic_mangrove_trapdoor.png deleted file mode 100644 index 6ebdfa7b..00000000 Binary files a/public/textures/chipped/classic_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_spruce_trapdoor.png b/public/textures/chipped/classic_spruce_trapdoor.png deleted file mode 100644 index b707963b..00000000 Binary files a/public/textures/chipped/classic_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_warped_trapdoor.png b/public/textures/chipped/classic_warped_trapdoor.png deleted file mode 100644 index 6d61af52..00000000 Binary files a/public/textures/chipped/classic_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_windowed_acacia_trapdoor.png b/public/textures/chipped/classic_windowed_acacia_trapdoor.png deleted file mode 100644 index 5c03116f..00000000 Binary files a/public/textures/chipped/classic_windowed_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_windowed_bamboo_trapdoor.png b/public/textures/chipped/classic_windowed_bamboo_trapdoor.png deleted file mode 100644 index 2e95b8e5..00000000 Binary files a/public/textures/chipped/classic_windowed_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_windowed_birch_trapdoor.png b/public/textures/chipped/classic_windowed_birch_trapdoor.png deleted file mode 100644 index 4220b5c6..00000000 Binary files a/public/textures/chipped/classic_windowed_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_windowed_cherry_trapdoor.png b/public/textures/chipped/classic_windowed_cherry_trapdoor.png deleted file mode 100644 index 3cf11475..00000000 Binary files a/public/textures/chipped/classic_windowed_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_windowed_crimson_trapdoor.png b/public/textures/chipped/classic_windowed_crimson_trapdoor.png deleted file mode 100644 index 37a4b24c..00000000 Binary files a/public/textures/chipped/classic_windowed_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_windowed_dark_oak_trapdoor.png b/public/textures/chipped/classic_windowed_dark_oak_trapdoor.png deleted file mode 100644 index bfa5f2cd..00000000 Binary files a/public/textures/chipped/classic_windowed_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_windowed_jungle_trapdoor.png b/public/textures/chipped/classic_windowed_jungle_trapdoor.png deleted file mode 100644 index c396aa43..00000000 Binary files a/public/textures/chipped/classic_windowed_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_windowed_mangrove_trapdoor.png b/public/textures/chipped/classic_windowed_mangrove_trapdoor.png deleted file mode 100644 index 1c9f80e3..00000000 Binary files a/public/textures/chipped/classic_windowed_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_windowed_oak_trapdoor.png b/public/textures/chipped/classic_windowed_oak_trapdoor.png deleted file mode 100644 index a811e0c0..00000000 Binary files a/public/textures/chipped/classic_windowed_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_windowed_spruce_trapdoor.png b/public/textures/chipped/classic_windowed_spruce_trapdoor.png deleted file mode 100644 index 9b8dd44c..00000000 Binary files a/public/textures/chipped/classic_windowed_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/classic_windowed_warped_trapdoor.png b/public/textures/chipped/classic_windowed_warped_trapdoor.png deleted file mode 100644 index 6ba4a7d6..00000000 Binary files a/public/textures/chipped/classic_windowed_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/clay_bricks.png b/public/textures/chipped/clay_bricks.png deleted file mode 100644 index ae775c05..00000000 Binary files a/public/textures/chipped/clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/clay_mini_tiles.png b/public/textures/chipped/clay_mini_tiles.png deleted file mode 100644 index ba57678f..00000000 Binary files a/public/textures/chipped/clay_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/clay_pillar.png b/public/textures/chipped/clay_pillar.png deleted file mode 100644 index 39de98b8..00000000 Binary files a/public/textures/chipped/clay_pillar.png and /dev/null differ diff --git a/public/textures/chipped/clay_pillar_top.png b/public/textures/chipped/clay_pillar_top.png deleted file mode 100644 index 89a6198a..00000000 Binary files a/public/textures/chipped/clay_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/clay_scales.png b/public/textures/chipped/clay_scales.png deleted file mode 100644 index c7cda52e..00000000 Binary files a/public/textures/chipped/clay_scales.png and /dev/null differ diff --git a/public/textures/chipped/clear_leaded_glass.png b/public/textures/chipped/clear_leaded_glass.png deleted file mode 100644 index 0aa67c21..00000000 Binary files a/public/textures/chipped/clear_leaded_glass.png and /dev/null differ diff --git a/public/textures/chipped/clear_leaded_glass_pane.png b/public/textures/chipped/clear_leaded_glass_pane.png deleted file mode 100644 index 630cd094..00000000 Binary files a/public/textures/chipped/clear_leaded_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/clustered_brown_mushroom.png b/public/textures/chipped/clustered_brown_mushroom.png deleted file mode 100644 index ea94e6ee..00000000 Binary files a/public/textures/chipped/clustered_brown_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/clustered_crimson_fungus.png b/public/textures/chipped/clustered_crimson_fungus.png deleted file mode 100644 index 323a5acb..00000000 Binary files a/public/textures/chipped/clustered_crimson_fungus.png and /dev/null differ diff --git a/public/textures/chipped/clustered_red_mushroom.png b/public/textures/chipped/clustered_red_mushroom.png deleted file mode 100644 index ff2fd8cd..00000000 Binary files a/public/textures/chipped/clustered_red_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/coal_barrel.png b/public/textures/chipped/coal_barrel.png deleted file mode 100644 index 16d382a3..00000000 Binary files a/public/textures/chipped/coal_barrel.png and /dev/null differ diff --git a/public/textures/chipped/coal_block_bricks.png b/public/textures/chipped/coal_block_bricks.png deleted file mode 100644 index ab49485c..00000000 Binary files a/public/textures/chipped/coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/coal_block_mini_tiles.png b/public/textures/chipped/coal_block_mini_tiles.png deleted file mode 100644 index 2795cbc4..00000000 Binary files a/public/textures/chipped/coal_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/coal_block_pillar.png b/public/textures/chipped/coal_block_pillar.png deleted file mode 100644 index a4231a80..00000000 Binary files a/public/textures/chipped/coal_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/coal_block_pillar_top.png b/public/textures/chipped/coal_block_pillar_top.png deleted file mode 100644 index df101c41..00000000 Binary files a/public/textures/chipped/coal_block_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/coal_block_scales.png b/public/textures/chipped/coal_block_scales.png deleted file mode 100644 index 79446cda..00000000 Binary files a/public/textures/chipped/coal_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/coarse_sand.png b/public/textures/chipped/coarse_sand.png deleted file mode 100644 index 16ab5f0f..00000000 Binary files a/public/textures/chipped/coarse_sand.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_amethyst_block.png b/public/textures/chipped/cobbled_amethyst_block.png deleted file mode 100644 index 93a56a2a..00000000 Binary files a/public/textures/chipped/cobbled_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_ancient_debris.png b/public/textures/chipped/cobbled_ancient_debris.png deleted file mode 100644 index e3ca5680..00000000 Binary files a/public/textures/chipped/cobbled_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_andesite.png b/public/textures/chipped/cobbled_andesite.png deleted file mode 100644 index 4d7c6155..00000000 Binary files a/public/textures/chipped/cobbled_andesite.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_basalt.png b/public/textures/chipped/cobbled_basalt.png deleted file mode 100644 index d003c5fe..00000000 Binary files a/public/textures/chipped/cobbled_basalt.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_blackstone.png b/public/textures/chipped/cobbled_blackstone.png deleted file mode 100644 index 7e1730ae..00000000 Binary files a/public/textures/chipped/cobbled_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_blue_ice.png b/public/textures/chipped/cobbled_blue_ice.png deleted file mode 100644 index a815e5c8..00000000 Binary files a/public/textures/chipped/cobbled_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_borderless_bricks.png b/public/textures/chipped/cobbled_borderless_bricks.png deleted file mode 100644 index 163371bd..00000000 Binary files a/public/textures/chipped/cobbled_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_bricks.png b/public/textures/chipped/cobbled_bricks.png deleted file mode 100644 index 163371bd..00000000 Binary files a/public/textures/chipped/cobbled_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_calcite.png b/public/textures/chipped/cobbled_calcite.png deleted file mode 100644 index ef3d73cc..00000000 Binary files a/public/textures/chipped/cobbled_calcite.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_clay.png b/public/textures/chipped/cobbled_clay.png deleted file mode 100644 index ed2edad0..00000000 Binary files a/public/textures/chipped/cobbled_clay.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_coal_block.png b/public/textures/chipped/cobbled_coal_block.png deleted file mode 100644 index 9c8b5d89..00000000 Binary files a/public/textures/chipped/cobbled_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_cobblestone.png b/public/textures/chipped/cobbled_cobblestone.png deleted file mode 100644 index d57dd7b1..00000000 Binary files a/public/textures/chipped/cobbled_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_crying_obsidian.png b/public/textures/chipped/cobbled_crying_obsidian.png deleted file mode 100644 index 83dbc941..00000000 Binary files a/public/textures/chipped/cobbled_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_dark_prismarine.png b/public/textures/chipped/cobbled_dark_prismarine.png deleted file mode 100644 index a294bf80..00000000 Binary files a/public/textures/chipped/cobbled_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_diorite.png b/public/textures/chipped/cobbled_diorite.png deleted file mode 100644 index 3f9c2fa6..00000000 Binary files a/public/textures/chipped/cobbled_diorite.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_dirt.png b/public/textures/chipped/cobbled_dirt.png deleted file mode 100644 index 82904051..00000000 Binary files a/public/textures/chipped/cobbled_dirt.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_dripstone_block.png b/public/textures/chipped/cobbled_dripstone_block.png deleted file mode 100644 index eefad296..00000000 Binary files a/public/textures/chipped/cobbled_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_end_stone.png b/public/textures/chipped/cobbled_end_stone.png deleted file mode 100644 index 933ed15a..00000000 Binary files a/public/textures/chipped/cobbled_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_gilded_blackstone.png b/public/textures/chipped/cobbled_gilded_blackstone.png deleted file mode 100644 index 8881627b..00000000 Binary files a/public/textures/chipped/cobbled_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_granite.png b/public/textures/chipped/cobbled_granite.png deleted file mode 100644 index 6c71b99c..00000000 Binary files a/public/textures/chipped/cobbled_granite.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_ice.png b/public/textures/chipped/cobbled_ice.png deleted file mode 100644 index f1ce1755..00000000 Binary files a/public/textures/chipped/cobbled_ice.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_lapis_block.png b/public/textures/chipped/cobbled_lapis_block.png deleted file mode 100644 index 53e36f1c..00000000 Binary files a/public/textures/chipped/cobbled_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_lodestone.png b/public/textures/chipped/cobbled_lodestone.png deleted file mode 100644 index 97a3988c..00000000 Binary files a/public/textures/chipped/cobbled_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_magma_block.png b/public/textures/chipped/cobbled_magma_block.png deleted file mode 100644 index 0603c531..00000000 Binary files a/public/textures/chipped/cobbled_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_mossy_cobblestone.png b/public/textures/chipped/cobbled_mossy_cobblestone.png deleted file mode 100644 index 0ddccff4..00000000 Binary files a/public/textures/chipped/cobbled_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_mossy_stone_bricks.png b/public/textures/chipped/cobbled_mossy_stone_bricks.png deleted file mode 100644 index bb67acde..00000000 Binary files a/public/textures/chipped/cobbled_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_nether_bricks.png b/public/textures/chipped/cobbled_nether_bricks.png deleted file mode 100644 index d1b3789a..00000000 Binary files a/public/textures/chipped/cobbled_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_netherrack.png b/public/textures/chipped/cobbled_netherrack.png deleted file mode 100644 index 2d09f59f..00000000 Binary files a/public/textures/chipped/cobbled_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_obsidian.png b/public/textures/chipped/cobbled_obsidian.png deleted file mode 100644 index 109698c7..00000000 Binary files a/public/textures/chipped/cobbled_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_packed_ice.png b/public/textures/chipped/cobbled_packed_ice.png deleted file mode 100644 index 951f6e0d..00000000 Binary files a/public/textures/chipped/cobbled_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_prismarine.png b/public/textures/chipped/cobbled_prismarine.png deleted file mode 100644 index ffba4f67..00000000 Binary files a/public/textures/chipped/cobbled_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_purpur_block.png b/public/textures/chipped/cobbled_purpur_block.png deleted file mode 100644 index e08ec099..00000000 Binary files a/public/textures/chipped/cobbled_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_quartz_block.png b/public/textures/chipped/cobbled_quartz_block.png deleted file mode 100644 index 677e62e6..00000000 Binary files a/public/textures/chipped/cobbled_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_raw_copper_block.png b/public/textures/chipped/cobbled_raw_copper_block.png deleted file mode 100644 index f34c8026..00000000 Binary files a/public/textures/chipped/cobbled_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_raw_gold_block.png b/public/textures/chipped/cobbled_raw_gold_block.png deleted file mode 100644 index d6222477..00000000 Binary files a/public/textures/chipped/cobbled_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_raw_iron_block.png b/public/textures/chipped/cobbled_raw_iron_block.png deleted file mode 100644 index 8fa0df6e..00000000 Binary files a/public/textures/chipped/cobbled_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_red_nether_bricks.png b/public/textures/chipped/cobbled_red_nether_bricks.png deleted file mode 100644 index e0b9f72b..00000000 Binary files a/public/textures/chipped/cobbled_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_red_sandstone.png b/public/textures/chipped/cobbled_red_sandstone.png deleted file mode 100644 index febe1581..00000000 Binary files a/public/textures/chipped/cobbled_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_redstone_block.png b/public/textures/chipped/cobbled_redstone_block.png deleted file mode 100644 index 9c3de444..00000000 Binary files a/public/textures/chipped/cobbled_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_sandstone.png b/public/textures/chipped/cobbled_sandstone.png deleted file mode 100644 index 67156c65..00000000 Binary files a/public/textures/chipped/cobbled_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_smooth_stone.png b/public/textures/chipped/cobbled_smooth_stone.png deleted file mode 100644 index 0d1b9176..00000000 Binary files a/public/textures/chipped/cobbled_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_snow_block.png b/public/textures/chipped/cobbled_snow_block.png deleted file mode 100644 index ad2f0042..00000000 Binary files a/public/textures/chipped/cobbled_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_stone.png b/public/textures/chipped/cobbled_stone.png deleted file mode 100644 index 10050df8..00000000 Binary files a/public/textures/chipped/cobbled_stone.png and /dev/null differ diff --git a/public/textures/chipped/cobbled_tuff.png b/public/textures/chipped/cobbled_tuff.png deleted file mode 100644 index a5bbe357..00000000 Binary files a/public/textures/chipped/cobbled_tuff.png and /dev/null differ diff --git a/public/textures/chipped/cobblestone_bricks.png b/public/textures/chipped/cobblestone_bricks.png deleted file mode 100644 index 775d34c9..00000000 Binary files a/public/textures/chipped/cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cobblestone_mini_tiles.png b/public/textures/chipped/cobblestone_mini_tiles.png deleted file mode 100644 index 53ab13fc..00000000 Binary files a/public/textures/chipped/cobblestone_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cobblestone_pillar.png b/public/textures/chipped/cobblestone_pillar.png deleted file mode 100644 index d885438e..00000000 Binary files a/public/textures/chipped/cobblestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/cobblestone_pillar_top.png b/public/textures/chipped/cobblestone_pillar_top.png deleted file mode 100644 index 18085201..00000000 Binary files a/public/textures/chipped/cobblestone_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/cobblestone_scales.png b/public/textures/chipped/cobblestone_scales.png deleted file mode 100644 index 81c6f0f4..00000000 Binary files a/public/textures/chipped/cobblestone_scales.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_acacia_trapdoor.png b/public/textures/chipped/cobweb_acacia_trapdoor.png deleted file mode 100644 index 13d32ad0..00000000 Binary files a/public/textures/chipped/cobweb_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_arch.png b/public/textures/chipped/cobweb_arch.png deleted file mode 100644 index f7949d25..00000000 Binary files a/public/textures/chipped/cobweb_arch.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_bamboo_trapdoor.png b/public/textures/chipped/cobweb_bamboo_trapdoor.png deleted file mode 100644 index d288f992..00000000 Binary files a/public/textures/chipped/cobweb_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_birch_trapdoor.png b/public/textures/chipped/cobweb_birch_trapdoor.png deleted file mode 100644 index d13e4c24..00000000 Binary files a/public/textures/chipped/cobweb_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_cherry_trapdoor.png b/public/textures/chipped/cobweb_cherry_trapdoor.png deleted file mode 100644 index dc8e2f03..00000000 Binary files a/public/textures/chipped/cobweb_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_crimson_trapdoor.png b/public/textures/chipped/cobweb_crimson_trapdoor.png deleted file mode 100644 index 6926e33a..00000000 Binary files a/public/textures/chipped/cobweb_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_dark_oak_trapdoor.png b/public/textures/chipped/cobweb_dark_oak_trapdoor.png deleted file mode 100644 index 40128680..00000000 Binary files a/public/textures/chipped/cobweb_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_floor.png b/public/textures/chipped/cobweb_floor.png deleted file mode 100644 index c43426d2..00000000 Binary files a/public/textures/chipped/cobweb_floor.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_jungle_trapdoor.png b/public/textures/chipped/cobweb_jungle_trapdoor.png deleted file mode 100644 index 5645f974..00000000 Binary files a/public/textures/chipped/cobweb_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_mangrove_trapdoor.png b/public/textures/chipped/cobweb_mangrove_trapdoor.png deleted file mode 100644 index 448adbab..00000000 Binary files a/public/textures/chipped/cobweb_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_oak_trapdoor.png b/public/textures/chipped/cobweb_oak_trapdoor.png deleted file mode 100644 index 7d7b677a..00000000 Binary files a/public/textures/chipped/cobweb_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_spruce_trapdoor.png b/public/textures/chipped/cobweb_spruce_trapdoor.png deleted file mode 100644 index 1454eb7f..00000000 Binary files a/public/textures/chipped/cobweb_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/cobweb_warped_trapdoor.png b/public/textures/chipped/cobweb_warped_trapdoor.png deleted file mode 100644 index 9d3d730f..00000000 Binary files a/public/textures/chipped/cobweb_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/compact_dried_kelp_block.png b/public/textures/chipped/compact_dried_kelp_block.png deleted file mode 100644 index 3248e079..00000000 Binary files a/public/textures/chipped/compact_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/copper_barrel.png b/public/textures/chipped/copper_barrel.png deleted file mode 100644 index 42dba252..00000000 Binary files a/public/textures/chipped/copper_barrel.png and /dev/null differ diff --git a/public/textures/chipped/cornered_acacia_planks.png b/public/textures/chipped/cornered_acacia_planks.png deleted file mode 100644 index 3cb037ee..00000000 Binary files a/public/textures/chipped/cornered_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/cornered_bamboo_planks.png b/public/textures/chipped/cornered_bamboo_planks.png deleted file mode 100644 index ff859035..00000000 Binary files a/public/textures/chipped/cornered_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/cornered_birch_planks.png b/public/textures/chipped/cornered_birch_planks.png deleted file mode 100644 index 594e5cd4..00000000 Binary files a/public/textures/chipped/cornered_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/cornered_black_carpet.png b/public/textures/chipped/cornered_black_carpet.png deleted file mode 100644 index 550ba975..00000000 Binary files a/public/textures/chipped/cornered_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_black_wool.png b/public/textures/chipped/cornered_black_wool.png deleted file mode 100644 index b3257dfb..00000000 Binary files a/public/textures/chipped/cornered_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_blue_carpet.png b/public/textures/chipped/cornered_blue_carpet.png deleted file mode 100644 index ee47e281..00000000 Binary files a/public/textures/chipped/cornered_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_blue_wool.png b/public/textures/chipped/cornered_blue_wool.png deleted file mode 100644 index a6a5ac4f..00000000 Binary files a/public/textures/chipped/cornered_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_brown_carpet.png b/public/textures/chipped/cornered_brown_carpet.png deleted file mode 100644 index 76252d24..00000000 Binary files a/public/textures/chipped/cornered_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_brown_wool.png b/public/textures/chipped/cornered_brown_wool.png deleted file mode 100644 index 9c9daf59..00000000 Binary files a/public/textures/chipped/cornered_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_cherry_planks.png b/public/textures/chipped/cornered_cherry_planks.png deleted file mode 100644 index c3f9038c..00000000 Binary files a/public/textures/chipped/cornered_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/cornered_crimson_planks.png b/public/textures/chipped/cornered_crimson_planks.png deleted file mode 100644 index 9017f414..00000000 Binary files a/public/textures/chipped/cornered_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/cornered_cyan_carpet.png b/public/textures/chipped/cornered_cyan_carpet.png deleted file mode 100644 index b2f6658b..00000000 Binary files a/public/textures/chipped/cornered_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_cyan_wool.png b/public/textures/chipped/cornered_cyan_wool.png deleted file mode 100644 index dcffd2ff..00000000 Binary files a/public/textures/chipped/cornered_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_dark_oak_planks.png b/public/textures/chipped/cornered_dark_oak_planks.png deleted file mode 100644 index b1e244be..00000000 Binary files a/public/textures/chipped/cornered_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/cornered_gray_carpet.png b/public/textures/chipped/cornered_gray_carpet.png deleted file mode 100644 index 74f5c397..00000000 Binary files a/public/textures/chipped/cornered_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_gray_wool.png b/public/textures/chipped/cornered_gray_wool.png deleted file mode 100644 index d9af263e..00000000 Binary files a/public/textures/chipped/cornered_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_green_carpet.png b/public/textures/chipped/cornered_green_carpet.png deleted file mode 100644 index ec853d79..00000000 Binary files a/public/textures/chipped/cornered_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_green_wool.png b/public/textures/chipped/cornered_green_wool.png deleted file mode 100644 index de09f0f4..00000000 Binary files a/public/textures/chipped/cornered_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_jungle_planks.png b/public/textures/chipped/cornered_jungle_planks.png deleted file mode 100644 index 02cd9dc6..00000000 Binary files a/public/textures/chipped/cornered_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/cornered_light_blue_carpet.png b/public/textures/chipped/cornered_light_blue_carpet.png deleted file mode 100644 index 31bd2fec..00000000 Binary files a/public/textures/chipped/cornered_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_light_blue_wool.png b/public/textures/chipped/cornered_light_blue_wool.png deleted file mode 100644 index d61ac8ca..00000000 Binary files a/public/textures/chipped/cornered_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_light_gray_carpet.png b/public/textures/chipped/cornered_light_gray_carpet.png deleted file mode 100644 index 31a87816..00000000 Binary files a/public/textures/chipped/cornered_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_light_gray_wool.png b/public/textures/chipped/cornered_light_gray_wool.png deleted file mode 100644 index add0f49c..00000000 Binary files a/public/textures/chipped/cornered_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_lime_carpet.png b/public/textures/chipped/cornered_lime_carpet.png deleted file mode 100644 index ebc15ed9..00000000 Binary files a/public/textures/chipped/cornered_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_lime_wool.png b/public/textures/chipped/cornered_lime_wool.png deleted file mode 100644 index b7549152..00000000 Binary files a/public/textures/chipped/cornered_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_magenta_carpet.png b/public/textures/chipped/cornered_magenta_carpet.png deleted file mode 100644 index c51d1577..00000000 Binary files a/public/textures/chipped/cornered_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_magenta_wool.png b/public/textures/chipped/cornered_magenta_wool.png deleted file mode 100644 index 1619b5f6..00000000 Binary files a/public/textures/chipped/cornered_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_mangrove_planks.png b/public/textures/chipped/cornered_mangrove_planks.png deleted file mode 100644 index b8dcd4ff..00000000 Binary files a/public/textures/chipped/cornered_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/cornered_oak_planks.png b/public/textures/chipped/cornered_oak_planks.png deleted file mode 100644 index ecc22e5e..00000000 Binary files a/public/textures/chipped/cornered_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/cornered_orange_carpet.png b/public/textures/chipped/cornered_orange_carpet.png deleted file mode 100644 index d731731a..00000000 Binary files a/public/textures/chipped/cornered_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_orange_wool.png b/public/textures/chipped/cornered_orange_wool.png deleted file mode 100644 index ff49ba94..00000000 Binary files a/public/textures/chipped/cornered_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_pink_carpet.png b/public/textures/chipped/cornered_pink_carpet.png deleted file mode 100644 index 6092d4df..00000000 Binary files a/public/textures/chipped/cornered_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_pink_wool.png b/public/textures/chipped/cornered_pink_wool.png deleted file mode 100644 index b2f5f1b6..00000000 Binary files a/public/textures/chipped/cornered_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_purple_carpet.png b/public/textures/chipped/cornered_purple_carpet.png deleted file mode 100644 index b2a14e43..00000000 Binary files a/public/textures/chipped/cornered_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_purple_wool.png b/public/textures/chipped/cornered_purple_wool.png deleted file mode 100644 index 0f54a6b7..00000000 Binary files a/public/textures/chipped/cornered_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_red_carpet.png b/public/textures/chipped/cornered_red_carpet.png deleted file mode 100644 index 6b810d51..00000000 Binary files a/public/textures/chipped/cornered_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_red_wool.png b/public/textures/chipped/cornered_red_wool.png deleted file mode 100644 index 746bb90e..00000000 Binary files a/public/textures/chipped/cornered_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_spruce_planks.png b/public/textures/chipped/cornered_spruce_planks.png deleted file mode 100644 index a227a9ef..00000000 Binary files a/public/textures/chipped/cornered_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/cornered_warped_planks.png b/public/textures/chipped/cornered_warped_planks.png deleted file mode 100644 index 709079d4..00000000 Binary files a/public/textures/chipped/cornered_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/cornered_white_carpet.png b/public/textures/chipped/cornered_white_carpet.png deleted file mode 100644 index 77d12e23..00000000 Binary files a/public/textures/chipped/cornered_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_white_wool.png b/public/textures/chipped/cornered_white_wool.png deleted file mode 100644 index 416ea68c..00000000 Binary files a/public/textures/chipped/cornered_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/cornered_yellow_carpet.png b/public/textures/chipped/cornered_yellow_carpet.png deleted file mode 100644 index ecce8576..00000000 Binary files a/public/textures/chipped/cornered_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cornered_yellow_wool.png b/public/textures/chipped/cornered_yellow_wool.png deleted file mode 100644 index fff6b611..00000000 Binary files a/public/textures/chipped/cornered_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/corny_nether_sprouts.png b/public/textures/chipped/corny_nether_sprouts.png deleted file mode 100644 index 5bedf78d..00000000 Binary files a/public/textures/chipped/corny_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/corrupted_nether_sprouts.png b/public/textures/chipped/corrupted_nether_sprouts.png deleted file mode 100644 index d993b04e..00000000 Binary files a/public/textures/chipped/corrupted_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/cracked_amethyst_block_bricks.png b/public/textures/chipped/cracked_amethyst_block_bricks.png deleted file mode 100644 index 3954582a..00000000 Binary files a/public/textures/chipped/cracked_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_ancient_debris_bricks.png b/public/textures/chipped/cracked_ancient_debris_bricks.png deleted file mode 100644 index 7ae85f2b..00000000 Binary files a/public/textures/chipped/cracked_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_andesite_bricks.png b/public/textures/chipped/cracked_andesite_bricks.png deleted file mode 100644 index 3de13980..00000000 Binary files a/public/textures/chipped/cracked_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_basalt_bricks.png b/public/textures/chipped/cracked_basalt_bricks.png deleted file mode 100644 index 9ad78963..00000000 Binary files a/public/textures/chipped/cracked_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_blue_ice_bricks.png b/public/textures/chipped/cracked_blue_ice_bricks.png deleted file mode 100644 index a482d9a2..00000000 Binary files a/public/textures/chipped/cracked_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_bone_block.png b/public/textures/chipped/cracked_bone_block.png deleted file mode 100644 index 91fb181b..00000000 Binary files a/public/textures/chipped/cracked_bone_block.png and /dev/null differ diff --git a/public/textures/chipped/cracked_borderless_bricks_bricks.png b/public/textures/chipped/cracked_borderless_bricks_bricks.png deleted file mode 100644 index 972cbdd1..00000000 Binary files a/public/textures/chipped/cracked_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_bricks_bricks.png b/public/textures/chipped/cracked_bricks_bricks.png deleted file mode 100644 index 6fbbc79b..00000000 Binary files a/public/textures/chipped/cracked_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_calcite_bricks.png b/public/textures/chipped/cracked_calcite_bricks.png deleted file mode 100644 index 9d8c7256..00000000 Binary files a/public/textures/chipped/cracked_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_clay_bricks.png b/public/textures/chipped/cracked_clay_bricks.png deleted file mode 100644 index 1b27fbf4..00000000 Binary files a/public/textures/chipped/cracked_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_coal_block_bricks.png b/public/textures/chipped/cracked_coal_block_bricks.png deleted file mode 100644 index 3a219f66..00000000 Binary files a/public/textures/chipped/cracked_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_cobblestone_bricks.png b/public/textures/chipped/cracked_cobblestone_bricks.png deleted file mode 100644 index 8bb13d1d..00000000 Binary files a/public/textures/chipped/cracked_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_crying_obsidian_bricks.png b/public/textures/chipped/cracked_crying_obsidian_bricks.png deleted file mode 100644 index 2d29e3eb..00000000 Binary files a/public/textures/chipped/cracked_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_dark_prismarine_bricks.png b/public/textures/chipped/cracked_dark_prismarine_bricks.png deleted file mode 100644 index ba01b54c..00000000 Binary files a/public/textures/chipped/cracked_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_diorite_bricks.png b/public/textures/chipped/cracked_diorite_bricks.png deleted file mode 100644 index 62edb853..00000000 Binary files a/public/textures/chipped/cracked_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_dirt_bricks.png b/public/textures/chipped/cracked_dirt_bricks.png deleted file mode 100644 index 91b78590..00000000 Binary files a/public/textures/chipped/cracked_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_amethyst_block_bricks.png b/public/textures/chipped/cracked_disordered_amethyst_block_bricks.png deleted file mode 100644 index 0950cc42..00000000 Binary files a/public/textures/chipped/cracked_disordered_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_ancient_debris_bricks.png b/public/textures/chipped/cracked_disordered_ancient_debris_bricks.png deleted file mode 100644 index f2aab58d..00000000 Binary files a/public/textures/chipped/cracked_disordered_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_andesite_bricks.png b/public/textures/chipped/cracked_disordered_andesite_bricks.png deleted file mode 100644 index 62f7b85c..00000000 Binary files a/public/textures/chipped/cracked_disordered_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_basalt_bricks.png b/public/textures/chipped/cracked_disordered_basalt_bricks.png deleted file mode 100644 index 4a8d1a7a..00000000 Binary files a/public/textures/chipped/cracked_disordered_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_blackstone_bricks.png b/public/textures/chipped/cracked_disordered_blackstone_bricks.png deleted file mode 100644 index 89dc6693..00000000 Binary files a/public/textures/chipped/cracked_disordered_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_blue_ice_bricks.png b/public/textures/chipped/cracked_disordered_blue_ice_bricks.png deleted file mode 100644 index c58df6ed..00000000 Binary files a/public/textures/chipped/cracked_disordered_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_borderless_bricks_bricks.png b/public/textures/chipped/cracked_disordered_borderless_bricks_bricks.png deleted file mode 100644 index 413b49fe..00000000 Binary files a/public/textures/chipped/cracked_disordered_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_bricks_bricks.png b/public/textures/chipped/cracked_disordered_bricks_bricks.png deleted file mode 100644 index a562950f..00000000 Binary files a/public/textures/chipped/cracked_disordered_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_calcite_bricks.png b/public/textures/chipped/cracked_disordered_calcite_bricks.png deleted file mode 100644 index c59b354a..00000000 Binary files a/public/textures/chipped/cracked_disordered_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_clay_bricks.png b/public/textures/chipped/cracked_disordered_clay_bricks.png deleted file mode 100644 index 767102fd..00000000 Binary files a/public/textures/chipped/cracked_disordered_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_coal_block_bricks.png b/public/textures/chipped/cracked_disordered_coal_block_bricks.png deleted file mode 100644 index 519c6bf1..00000000 Binary files a/public/textures/chipped/cracked_disordered_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_cobblestone_bricks.png b/public/textures/chipped/cracked_disordered_cobblestone_bricks.png deleted file mode 100644 index 9e8fe1d6..00000000 Binary files a/public/textures/chipped/cracked_disordered_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_crying_obsidian_bricks.png b/public/textures/chipped/cracked_disordered_crying_obsidian_bricks.png deleted file mode 100644 index 00d3127e..00000000 Binary files a/public/textures/chipped/cracked_disordered_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_dark_prismarine_bricks.png b/public/textures/chipped/cracked_disordered_dark_prismarine_bricks.png deleted file mode 100644 index 2e361abe..00000000 Binary files a/public/textures/chipped/cracked_disordered_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_deepslate_bricks.png b/public/textures/chipped/cracked_disordered_deepslate_bricks.png deleted file mode 100644 index 80f22f64..00000000 Binary files a/public/textures/chipped/cracked_disordered_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_diorite_bricks.png b/public/textures/chipped/cracked_disordered_diorite_bricks.png deleted file mode 100644 index 8446489d..00000000 Binary files a/public/textures/chipped/cracked_disordered_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_dirt_bricks.png b/public/textures/chipped/cracked_disordered_dirt_bricks.png deleted file mode 100644 index 4e9da2c5..00000000 Binary files a/public/textures/chipped/cracked_disordered_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_dripstone_block_bricks.png b/public/textures/chipped/cracked_disordered_dripstone_block_bricks.png deleted file mode 100644 index 4a4b5956..00000000 Binary files a/public/textures/chipped/cracked_disordered_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_end_stone_bricks.png b/public/textures/chipped/cracked_disordered_end_stone_bricks.png deleted file mode 100644 index 0445a9f5..00000000 Binary files a/public/textures/chipped/cracked_disordered_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_gilded_blackstone_bricks.png b/public/textures/chipped/cracked_disordered_gilded_blackstone_bricks.png deleted file mode 100644 index 0e7e6cec..00000000 Binary files a/public/textures/chipped/cracked_disordered_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_granite_bricks.png b/public/textures/chipped/cracked_disordered_granite_bricks.png deleted file mode 100644 index bca960a5..00000000 Binary files a/public/textures/chipped/cracked_disordered_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_ice_bricks.png b/public/textures/chipped/cracked_disordered_ice_bricks.png deleted file mode 100644 index 67ea3aab..00000000 Binary files a/public/textures/chipped/cracked_disordered_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_lapis_block_bricks.png b/public/textures/chipped/cracked_disordered_lapis_block_bricks.png deleted file mode 100644 index e13934d1..00000000 Binary files a/public/textures/chipped/cracked_disordered_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_lodestone_bricks.png b/public/textures/chipped/cracked_disordered_lodestone_bricks.png deleted file mode 100644 index 482704ce..00000000 Binary files a/public/textures/chipped/cracked_disordered_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_magma_block_bricks.png b/public/textures/chipped/cracked_disordered_magma_block_bricks.png deleted file mode 100644 index f8a27016..00000000 Binary files a/public/textures/chipped/cracked_disordered_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_mossy_cobblestone_bricks.png b/public/textures/chipped/cracked_disordered_mossy_cobblestone_bricks.png deleted file mode 100644 index f1690483..00000000 Binary files a/public/textures/chipped/cracked_disordered_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_mossy_stone_bricks_bricks.png b/public/textures/chipped/cracked_disordered_mossy_stone_bricks_bricks.png deleted file mode 100644 index b2184b50..00000000 Binary files a/public/textures/chipped/cracked_disordered_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_nether_bricks_bricks.png b/public/textures/chipped/cracked_disordered_nether_bricks_bricks.png deleted file mode 100644 index 27799fc9..00000000 Binary files a/public/textures/chipped/cracked_disordered_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_netherrack_bricks.png b/public/textures/chipped/cracked_disordered_netherrack_bricks.png deleted file mode 100644 index c534ae0c..00000000 Binary files a/public/textures/chipped/cracked_disordered_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_obsidian_bricks.png b/public/textures/chipped/cracked_disordered_obsidian_bricks.png deleted file mode 100644 index b34823c6..00000000 Binary files a/public/textures/chipped/cracked_disordered_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_packed_ice_bricks.png b/public/textures/chipped/cracked_disordered_packed_ice_bricks.png deleted file mode 100644 index e67f4cc9..00000000 Binary files a/public/textures/chipped/cracked_disordered_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_prismarine_bricks.png b/public/textures/chipped/cracked_disordered_prismarine_bricks.png deleted file mode 100644 index b3234494..00000000 Binary files a/public/textures/chipped/cracked_disordered_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_purpur_block_bricks.png b/public/textures/chipped/cracked_disordered_purpur_block_bricks.png deleted file mode 100644 index b7c3bbb0..00000000 Binary files a/public/textures/chipped/cracked_disordered_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_quartz_block_bricks.png b/public/textures/chipped/cracked_disordered_quartz_block_bricks.png deleted file mode 100644 index a1cc6bb3..00000000 Binary files a/public/textures/chipped/cracked_disordered_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_raw_copper_block_bricks.png b/public/textures/chipped/cracked_disordered_raw_copper_block_bricks.png deleted file mode 100644 index 7cbcd829..00000000 Binary files a/public/textures/chipped/cracked_disordered_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_raw_gold_block_bricks.png b/public/textures/chipped/cracked_disordered_raw_gold_block_bricks.png deleted file mode 100644 index 6210ddc6..00000000 Binary files a/public/textures/chipped/cracked_disordered_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_raw_iron_block_bricks.png b/public/textures/chipped/cracked_disordered_raw_iron_block_bricks.png deleted file mode 100644 index 3c5f70f9..00000000 Binary files a/public/textures/chipped/cracked_disordered_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_red_nether_bricks_bricks.png b/public/textures/chipped/cracked_disordered_red_nether_bricks_bricks.png deleted file mode 100644 index ebb82def..00000000 Binary files a/public/textures/chipped/cracked_disordered_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_red_sandstone_bricks.png b/public/textures/chipped/cracked_disordered_red_sandstone_bricks.png deleted file mode 100644 index 1c4e6371..00000000 Binary files a/public/textures/chipped/cracked_disordered_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_redstone_block_bricks.png b/public/textures/chipped/cracked_disordered_redstone_block_bricks.png deleted file mode 100644 index 893ea088..00000000 Binary files a/public/textures/chipped/cracked_disordered_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_sandstone_bricks.png b/public/textures/chipped/cracked_disordered_sandstone_bricks.png deleted file mode 100644 index 8456337d..00000000 Binary files a/public/textures/chipped/cracked_disordered_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_smooth_stone_bricks.png b/public/textures/chipped/cracked_disordered_smooth_stone_bricks.png deleted file mode 100644 index 821e7757..00000000 Binary files a/public/textures/chipped/cracked_disordered_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_snow_block_bricks.png b/public/textures/chipped/cracked_disordered_snow_block_bricks.png deleted file mode 100644 index e2d985a9..00000000 Binary files a/public/textures/chipped/cracked_disordered_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_stone_bricks.png b/public/textures/chipped/cracked_disordered_stone_bricks.png deleted file mode 100644 index 919b9269..00000000 Binary files a/public/textures/chipped/cracked_disordered_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_disordered_tuff_bricks.png b/public/textures/chipped/cracked_disordered_tuff_bricks.png deleted file mode 100644 index d03a865f..00000000 Binary files a/public/textures/chipped/cracked_disordered_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_dripstone_block_bricks.png b/public/textures/chipped/cracked_dripstone_block_bricks.png deleted file mode 100644 index 9ef9307f..00000000 Binary files a/public/textures/chipped/cracked_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_end_stone_bricks.png b/public/textures/chipped/cracked_end_stone_bricks.png deleted file mode 100644 index b5b78079..00000000 Binary files a/public/textures/chipped/cracked_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_amethyst_block_tiles.png b/public/textures/chipped/cracked_flat_amethyst_block_tiles.png deleted file mode 100644 index 8a94a7cd..00000000 Binary files a/public/textures/chipped/cracked_flat_amethyst_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_ancient_debris_tiles.png b/public/textures/chipped/cracked_flat_ancient_debris_tiles.png deleted file mode 100644 index 60ebf7b6..00000000 Binary files a/public/textures/chipped/cracked_flat_ancient_debris_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_andesite_tiles.png b/public/textures/chipped/cracked_flat_andesite_tiles.png deleted file mode 100644 index fbc7fcb0..00000000 Binary files a/public/textures/chipped/cracked_flat_andesite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_basalt_tiles.png b/public/textures/chipped/cracked_flat_basalt_tiles.png deleted file mode 100644 index 61ff042b..00000000 Binary files a/public/textures/chipped/cracked_flat_basalt_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_blackstone_tiles.png b/public/textures/chipped/cracked_flat_blackstone_tiles.png deleted file mode 100644 index 9c961574..00000000 Binary files a/public/textures/chipped/cracked_flat_blackstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_blue_ice_tiles.png b/public/textures/chipped/cracked_flat_blue_ice_tiles.png deleted file mode 100644 index a23a6c8e..00000000 Binary files a/public/textures/chipped/cracked_flat_blue_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_borderless_bricks_tiles.png b/public/textures/chipped/cracked_flat_borderless_bricks_tiles.png deleted file mode 100644 index 22a7c22e..00000000 Binary files a/public/textures/chipped/cracked_flat_borderless_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_bricks_tiles.png b/public/textures/chipped/cracked_flat_bricks_tiles.png deleted file mode 100644 index a6a9733e..00000000 Binary files a/public/textures/chipped/cracked_flat_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_calcite_tiles.png b/public/textures/chipped/cracked_flat_calcite_tiles.png deleted file mode 100644 index 5f0eddae..00000000 Binary files a/public/textures/chipped/cracked_flat_calcite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_clay_tiles.png b/public/textures/chipped/cracked_flat_clay_tiles.png deleted file mode 100644 index 6e213e1b..00000000 Binary files a/public/textures/chipped/cracked_flat_clay_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_coal_block_tiles.png b/public/textures/chipped/cracked_flat_coal_block_tiles.png deleted file mode 100644 index 4b2ec12a..00000000 Binary files a/public/textures/chipped/cracked_flat_coal_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_cobblestone_tiles.png b/public/textures/chipped/cracked_flat_cobblestone_tiles.png deleted file mode 100644 index a3b09ab9..00000000 Binary files a/public/textures/chipped/cracked_flat_cobblestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_crying_obsidian_tiles.png b/public/textures/chipped/cracked_flat_crying_obsidian_tiles.png deleted file mode 100644 index cc722f8b..00000000 Binary files a/public/textures/chipped/cracked_flat_crying_obsidian_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_dark_prismarine_tiles.png b/public/textures/chipped/cracked_flat_dark_prismarine_tiles.png deleted file mode 100644 index dd908656..00000000 Binary files a/public/textures/chipped/cracked_flat_dark_prismarine_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_diorite_tiles.png b/public/textures/chipped/cracked_flat_diorite_tiles.png deleted file mode 100644 index 2228052a..00000000 Binary files a/public/textures/chipped/cracked_flat_diorite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_dirt_tiles.png b/public/textures/chipped/cracked_flat_dirt_tiles.png deleted file mode 100644 index 8a006ed7..00000000 Binary files a/public/textures/chipped/cracked_flat_dirt_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_dripstone_block_tiles.png b/public/textures/chipped/cracked_flat_dripstone_block_tiles.png deleted file mode 100644 index 25c95ff0..00000000 Binary files a/public/textures/chipped/cracked_flat_dripstone_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_end_stone_tiles.png b/public/textures/chipped/cracked_flat_end_stone_tiles.png deleted file mode 100644 index 9b1bc163..00000000 Binary files a/public/textures/chipped/cracked_flat_end_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_gilded_blackstone_tiles.png b/public/textures/chipped/cracked_flat_gilded_blackstone_tiles.png deleted file mode 100644 index 1879b1e9..00000000 Binary files a/public/textures/chipped/cracked_flat_gilded_blackstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_granite_tiles.png b/public/textures/chipped/cracked_flat_granite_tiles.png deleted file mode 100644 index 102ba76e..00000000 Binary files a/public/textures/chipped/cracked_flat_granite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_ice_tiles.png b/public/textures/chipped/cracked_flat_ice_tiles.png deleted file mode 100644 index 05e03602..00000000 Binary files a/public/textures/chipped/cracked_flat_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_lapis_block_tiles.png b/public/textures/chipped/cracked_flat_lapis_block_tiles.png deleted file mode 100644 index a68533a2..00000000 Binary files a/public/textures/chipped/cracked_flat_lapis_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_lodestone_tiles.png b/public/textures/chipped/cracked_flat_lodestone_tiles.png deleted file mode 100644 index 8f6ce81d..00000000 Binary files a/public/textures/chipped/cracked_flat_lodestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_magma_block_tiles.png b/public/textures/chipped/cracked_flat_magma_block_tiles.png deleted file mode 100644 index 2e08b678..00000000 Binary files a/public/textures/chipped/cracked_flat_magma_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_mossy_cobblestone_tiles.png b/public/textures/chipped/cracked_flat_mossy_cobblestone_tiles.png deleted file mode 100644 index 82a1f4bd..00000000 Binary files a/public/textures/chipped/cracked_flat_mossy_cobblestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_mossy_stone_bricks_tiles.png b/public/textures/chipped/cracked_flat_mossy_stone_bricks_tiles.png deleted file mode 100644 index 0e4249ed..00000000 Binary files a/public/textures/chipped/cracked_flat_mossy_stone_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_nether_bricks_tiles.png b/public/textures/chipped/cracked_flat_nether_bricks_tiles.png deleted file mode 100644 index fd24c4a9..00000000 Binary files a/public/textures/chipped/cracked_flat_nether_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_netherrack_tiles.png b/public/textures/chipped/cracked_flat_netherrack_tiles.png deleted file mode 100644 index 192468c1..00000000 Binary files a/public/textures/chipped/cracked_flat_netherrack_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_obsidian_tiles.png b/public/textures/chipped/cracked_flat_obsidian_tiles.png deleted file mode 100644 index 6c08f8dd..00000000 Binary files a/public/textures/chipped/cracked_flat_obsidian_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_packed_ice_tiles.png b/public/textures/chipped/cracked_flat_packed_ice_tiles.png deleted file mode 100644 index 64e735e0..00000000 Binary files a/public/textures/chipped/cracked_flat_packed_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_prismarine_tiles.png b/public/textures/chipped/cracked_flat_prismarine_tiles.png deleted file mode 100644 index 1592bafa..00000000 Binary files a/public/textures/chipped/cracked_flat_prismarine_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_purpur_block_tiles.png b/public/textures/chipped/cracked_flat_purpur_block_tiles.png deleted file mode 100644 index 46ac5e95..00000000 Binary files a/public/textures/chipped/cracked_flat_purpur_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_quartz_block_tiles.png b/public/textures/chipped/cracked_flat_quartz_block_tiles.png deleted file mode 100644 index ed0f6a57..00000000 Binary files a/public/textures/chipped/cracked_flat_quartz_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_raw_copper_block_tiles.png b/public/textures/chipped/cracked_flat_raw_copper_block_tiles.png deleted file mode 100644 index 08e70462..00000000 Binary files a/public/textures/chipped/cracked_flat_raw_copper_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_raw_gold_block_tiles.png b/public/textures/chipped/cracked_flat_raw_gold_block_tiles.png deleted file mode 100644 index 7be9d6d6..00000000 Binary files a/public/textures/chipped/cracked_flat_raw_gold_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_raw_iron_block_tiles.png b/public/textures/chipped/cracked_flat_raw_iron_block_tiles.png deleted file mode 100644 index a37de3f7..00000000 Binary files a/public/textures/chipped/cracked_flat_raw_iron_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_red_nether_bricks_tiles.png b/public/textures/chipped/cracked_flat_red_nether_bricks_tiles.png deleted file mode 100644 index 2147c9b3..00000000 Binary files a/public/textures/chipped/cracked_flat_red_nether_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_red_sandstone_tiles.png b/public/textures/chipped/cracked_flat_red_sandstone_tiles.png deleted file mode 100644 index 86b697dc..00000000 Binary files a/public/textures/chipped/cracked_flat_red_sandstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_redstone_block_tiles.png b/public/textures/chipped/cracked_flat_redstone_block_tiles.png deleted file mode 100644 index 8cc45280..00000000 Binary files a/public/textures/chipped/cracked_flat_redstone_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_sandstone_tiles.png b/public/textures/chipped/cracked_flat_sandstone_tiles.png deleted file mode 100644 index 14f676ea..00000000 Binary files a/public/textures/chipped/cracked_flat_sandstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_smooth_stone_tiles.png b/public/textures/chipped/cracked_flat_smooth_stone_tiles.png deleted file mode 100644 index cef9504c..00000000 Binary files a/public/textures/chipped/cracked_flat_smooth_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_snow_block_tiles.png b/public/textures/chipped/cracked_flat_snow_block_tiles.png deleted file mode 100644 index 2911c03e..00000000 Binary files a/public/textures/chipped/cracked_flat_snow_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_stone_tiles.png b/public/textures/chipped/cracked_flat_stone_tiles.png deleted file mode 100644 index 3487db1d..00000000 Binary files a/public/textures/chipped/cracked_flat_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_flat_tuff_tiles.png b/public/textures/chipped/cracked_flat_tuff_tiles.png deleted file mode 100644 index 7a02cb2c..00000000 Binary files a/public/textures/chipped/cracked_flat_tuff_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cracked_gilded_blackstone_bricks.png b/public/textures/chipped/cracked_gilded_blackstone_bricks.png deleted file mode 100644 index 13d56da2..00000000 Binary files a/public/textures/chipped/cracked_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_glowstone.png b/public/textures/chipped/cracked_glowstone.png deleted file mode 100644 index 52594a43..00000000 Binary files a/public/textures/chipped/cracked_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/cracked_granite_bricks.png b/public/textures/chipped/cracked_granite_bricks.png deleted file mode 100644 index 3eedea13..00000000 Binary files a/public/textures/chipped/cracked_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_ice_bricks.png b/public/textures/chipped/cracked_ice_bricks.png deleted file mode 100644 index 7796ba88..00000000 Binary files a/public/textures/chipped/cracked_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_lapis_block_bricks.png b/public/textures/chipped/cracked_lapis_block_bricks.png deleted file mode 100644 index 63fcb97a..00000000 Binary files a/public/textures/chipped/cracked_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_lodestone_bricks.png b/public/textures/chipped/cracked_lodestone_bricks.png deleted file mode 100644 index 5aca4165..00000000 Binary files a/public/textures/chipped/cracked_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_magma_block_bricks.png b/public/textures/chipped/cracked_magma_block_bricks.png deleted file mode 100644 index b324c6f3..00000000 Binary files a/public/textures/chipped/cracked_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_mossy_cobblestone_bricks.png b/public/textures/chipped/cracked_mossy_cobblestone_bricks.png deleted file mode 100644 index 169ca7cc..00000000 Binary files a/public/textures/chipped/cracked_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_mossy_stone_bricks_bricks.png b/public/textures/chipped/cracked_mossy_stone_bricks_bricks.png deleted file mode 100644 index e426a188..00000000 Binary files a/public/textures/chipped/cracked_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_mud_bricks.png b/public/textures/chipped/cracked_mud_bricks.png deleted file mode 100644 index 5fdfc26a..00000000 Binary files a/public/textures/chipped/cracked_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_mud_bricks_bricks.png b/public/textures/chipped/cracked_mud_bricks_bricks.png deleted file mode 100644 index 5a0dc504..00000000 Binary files a/public/textures/chipped/cracked_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_nether_bricks_bricks.png b/public/textures/chipped/cracked_nether_bricks_bricks.png deleted file mode 100644 index 57fc6168..00000000 Binary files a/public/textures/chipped/cracked_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_netherrack_bricks.png b/public/textures/chipped/cracked_netherrack_bricks.png deleted file mode 100644 index bc39e7fd..00000000 Binary files a/public/textures/chipped/cracked_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_obsidian_bricks.png b/public/textures/chipped/cracked_obsidian_bricks.png deleted file mode 100644 index 110d9fc2..00000000 Binary files a/public/textures/chipped/cracked_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_packed_ice_bricks.png b/public/textures/chipped/cracked_packed_ice_bricks.png deleted file mode 100644 index 44aea1fc..00000000 Binary files a/public/textures/chipped/cracked_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_packed_mud_bricks.png b/public/textures/chipped/cracked_packed_mud_bricks.png deleted file mode 100644 index 286854d2..00000000 Binary files a/public/textures/chipped/cracked_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_prismarine_bricks.png b/public/textures/chipped/cracked_prismarine_bricks.png deleted file mode 100644 index 8b697390..00000000 Binary files a/public/textures/chipped/cracked_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_purpur_block_bricks.png b/public/textures/chipped/cracked_purpur_block_bricks.png deleted file mode 100644 index ad1dc8a3..00000000 Binary files a/public/textures/chipped/cracked_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_quartz_block_bricks.png b/public/textures/chipped/cracked_quartz_block_bricks.png deleted file mode 100644 index 3e6e8aea..00000000 Binary files a/public/textures/chipped/cracked_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_raw_copper_block_bricks.png b/public/textures/chipped/cracked_raw_copper_block_bricks.png deleted file mode 100644 index 03ac1eef..00000000 Binary files a/public/textures/chipped/cracked_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_raw_gold_block_bricks.png b/public/textures/chipped/cracked_raw_gold_block_bricks.png deleted file mode 100644 index 99ffd393..00000000 Binary files a/public/textures/chipped/cracked_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_raw_iron_block_bricks.png b/public/textures/chipped/cracked_raw_iron_block_bricks.png deleted file mode 100644 index 18121ba9..00000000 Binary files a/public/textures/chipped/cracked_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_red_nether_bricks_bricks.png b/public/textures/chipped/cracked_red_nether_bricks_bricks.png deleted file mode 100644 index 91cf058e..00000000 Binary files a/public/textures/chipped/cracked_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_red_sandstone_bricks.png b/public/textures/chipped/cracked_red_sandstone_bricks.png deleted file mode 100644 index d042443f..00000000 Binary files a/public/textures/chipped/cracked_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_redstone_block_bricks.png b/public/textures/chipped/cracked_redstone_block_bricks.png deleted file mode 100644 index 51ec5f0b..00000000 Binary files a/public/textures/chipped/cracked_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_sandstone_bricks.png b/public/textures/chipped/cracked_sandstone_bricks.png deleted file mode 100644 index 1a7d5104..00000000 Binary files a/public/textures/chipped/cracked_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_sea_lantern.png b/public/textures/chipped/cracked_sea_lantern.png deleted file mode 100644 index 2b7fdb0a..00000000 Binary files a/public/textures/chipped/cracked_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/cracked_shroomlight.png b/public/textures/chipped/cracked_shroomlight.png deleted file mode 100644 index 0a285cb2..00000000 Binary files a/public/textures/chipped/cracked_shroomlight.png and /dev/null differ diff --git a/public/textures/chipped/cracked_smooth_stone_bricks.png b/public/textures/chipped/cracked_smooth_stone_bricks.png deleted file mode 100644 index 40830e0b..00000000 Binary files a/public/textures/chipped/cracked_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_snow_block_bricks.png b/public/textures/chipped/cracked_snow_block_bricks.png deleted file mode 100644 index 539a0131..00000000 Binary files a/public/textures/chipped/cracked_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cracked_tuff_bricks.png b/public/textures/chipped/cracked_tuff_bricks.png deleted file mode 100644 index 7b193d93..00000000 Binary files a/public/textures/chipped/cracked_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/crafted_black_carpet.png b/public/textures/chipped/crafted_black_carpet.png deleted file mode 100644 index 29ed7f4e..00000000 Binary files a/public/textures/chipped/crafted_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_black_wool.png b/public/textures/chipped/crafted_black_wool.png deleted file mode 100644 index 127ea6e2..00000000 Binary files a/public/textures/chipped/crafted_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_blue_carpet.png b/public/textures/chipped/crafted_blue_carpet.png deleted file mode 100644 index 526c603f..00000000 Binary files a/public/textures/chipped/crafted_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_blue_wool.png b/public/textures/chipped/crafted_blue_wool.png deleted file mode 100644 index 1eeba800..00000000 Binary files a/public/textures/chipped/crafted_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_brown_carpet.png b/public/textures/chipped/crafted_brown_carpet.png deleted file mode 100644 index c2b9d238..00000000 Binary files a/public/textures/chipped/crafted_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_brown_wool.png b/public/textures/chipped/crafted_brown_wool.png deleted file mode 100644 index 1dbf8abb..00000000 Binary files a/public/textures/chipped/crafted_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_cyan_carpet.png b/public/textures/chipped/crafted_cyan_carpet.png deleted file mode 100644 index 041f1db6..00000000 Binary files a/public/textures/chipped/crafted_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_cyan_wool.png b/public/textures/chipped/crafted_cyan_wool.png deleted file mode 100644 index ce36287c..00000000 Binary files a/public/textures/chipped/crafted_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_gray_carpet.png b/public/textures/chipped/crafted_gray_carpet.png deleted file mode 100644 index 4de61f26..00000000 Binary files a/public/textures/chipped/crafted_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_gray_wool.png b/public/textures/chipped/crafted_gray_wool.png deleted file mode 100644 index 449f69ed..00000000 Binary files a/public/textures/chipped/crafted_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_green_carpet.png b/public/textures/chipped/crafted_green_carpet.png deleted file mode 100644 index 961a9869..00000000 Binary files a/public/textures/chipped/crafted_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_green_wool.png b/public/textures/chipped/crafted_green_wool.png deleted file mode 100644 index 8f57784c..00000000 Binary files a/public/textures/chipped/crafted_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_light_blue_carpet.png b/public/textures/chipped/crafted_light_blue_carpet.png deleted file mode 100644 index 29e3f362..00000000 Binary files a/public/textures/chipped/crafted_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_light_blue_wool.png b/public/textures/chipped/crafted_light_blue_wool.png deleted file mode 100644 index 3043db44..00000000 Binary files a/public/textures/chipped/crafted_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_light_gray_carpet.png b/public/textures/chipped/crafted_light_gray_carpet.png deleted file mode 100644 index 058f6f4a..00000000 Binary files a/public/textures/chipped/crafted_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_light_gray_wool.png b/public/textures/chipped/crafted_light_gray_wool.png deleted file mode 100644 index 83032517..00000000 Binary files a/public/textures/chipped/crafted_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_lime_carpet.png b/public/textures/chipped/crafted_lime_carpet.png deleted file mode 100644 index fc7e2bd5..00000000 Binary files a/public/textures/chipped/crafted_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_lime_wool.png b/public/textures/chipped/crafted_lime_wool.png deleted file mode 100644 index d73c988b..00000000 Binary files a/public/textures/chipped/crafted_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_magenta_carpet.png b/public/textures/chipped/crafted_magenta_carpet.png deleted file mode 100644 index 9601ad66..00000000 Binary files a/public/textures/chipped/crafted_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_magenta_wool.png b/public/textures/chipped/crafted_magenta_wool.png deleted file mode 100644 index 0c277a67..00000000 Binary files a/public/textures/chipped/crafted_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_orange_carpet.png b/public/textures/chipped/crafted_orange_carpet.png deleted file mode 100644 index ac33022c..00000000 Binary files a/public/textures/chipped/crafted_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_orange_wool.png b/public/textures/chipped/crafted_orange_wool.png deleted file mode 100644 index fc46e965..00000000 Binary files a/public/textures/chipped/crafted_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_pink_carpet.png b/public/textures/chipped/crafted_pink_carpet.png deleted file mode 100644 index 724028f4..00000000 Binary files a/public/textures/chipped/crafted_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_pink_wool.png b/public/textures/chipped/crafted_pink_wool.png deleted file mode 100644 index 322cfeb0..00000000 Binary files a/public/textures/chipped/crafted_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_purple_carpet.png b/public/textures/chipped/crafted_purple_carpet.png deleted file mode 100644 index 2c4c47ee..00000000 Binary files a/public/textures/chipped/crafted_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_purple_wool.png b/public/textures/chipped/crafted_purple_wool.png deleted file mode 100644 index 68e3c4e9..00000000 Binary files a/public/textures/chipped/crafted_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_red_carpet.png b/public/textures/chipped/crafted_red_carpet.png deleted file mode 100644 index e4f5e49d..00000000 Binary files a/public/textures/chipped/crafted_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_red_wool.png b/public/textures/chipped/crafted_red_wool.png deleted file mode 100644 index a7e217d5..00000000 Binary files a/public/textures/chipped/crafted_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_white_carpet.png b/public/textures/chipped/crafted_white_carpet.png deleted file mode 100644 index 654414c5..00000000 Binary files a/public/textures/chipped/crafted_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_white_wool.png b/public/textures/chipped/crafted_white_wool.png deleted file mode 100644 index 49de5fdd..00000000 Binary files a/public/textures/chipped/crafted_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/crafted_yellow_carpet.png b/public/textures/chipped/crafted_yellow_carpet.png deleted file mode 100644 index e72ccb09..00000000 Binary files a/public/textures/chipped/crafted_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/crafted_yellow_wool.png b/public/textures/chipped/crafted_yellow_wool.png deleted file mode 100644 index 04d921be..00000000 Binary files a/public/textures/chipped/crafted_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/crated_acacia_planks.png b/public/textures/chipped/crated_acacia_planks.png deleted file mode 100644 index 7c6f82d5..00000000 Binary files a/public/textures/chipped/crated_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/crated_bamboo_planks.png b/public/textures/chipped/crated_bamboo_planks.png deleted file mode 100644 index 19d6b9c8..00000000 Binary files a/public/textures/chipped/crated_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/crated_birch_planks.png b/public/textures/chipped/crated_birch_planks.png deleted file mode 100644 index 79c81faa..00000000 Binary files a/public/textures/chipped/crated_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/crated_cherry_planks.png b/public/textures/chipped/crated_cherry_planks.png deleted file mode 100644 index 4b3a4f01..00000000 Binary files a/public/textures/chipped/crated_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/crated_crimson_planks.png b/public/textures/chipped/crated_crimson_planks.png deleted file mode 100644 index 44713bbd..00000000 Binary files a/public/textures/chipped/crated_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/crated_dark_oak_planks.png b/public/textures/chipped/crated_dark_oak_planks.png deleted file mode 100644 index b23b6a3c..00000000 Binary files a/public/textures/chipped/crated_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/crated_jungle_planks.png b/public/textures/chipped/crated_jungle_planks.png deleted file mode 100644 index 45946638..00000000 Binary files a/public/textures/chipped/crated_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/crated_mangrove_planks.png b/public/textures/chipped/crated_mangrove_planks.png deleted file mode 100644 index 794884c1..00000000 Binary files a/public/textures/chipped/crated_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/crated_oak_planks.png b/public/textures/chipped/crated_oak_planks.png deleted file mode 100644 index b5ca9a83..00000000 Binary files a/public/textures/chipped/crated_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/crated_spruce_planks.png b/public/textures/chipped/crated_spruce_planks.png deleted file mode 100644 index 52c3756f..00000000 Binary files a/public/textures/chipped/crated_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/crated_warped_planks.png b/public/textures/chipped/crated_warped_planks.png deleted file mode 100644 index 5e3b040e..00000000 Binary files a/public/textures/chipped/crated_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/creeper_amethyst_block_carving.png b/public/textures/chipped/creeper_amethyst_block_carving.png deleted file mode 100644 index 92e27e21..00000000 Binary files a/public/textures/chipped/creeper_amethyst_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_ancient_debris_carving.png b/public/textures/chipped/creeper_ancient_debris_carving.png deleted file mode 100644 index 994fcce7..00000000 Binary files a/public/textures/chipped/creeper_ancient_debris_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_andesite_carving.png b/public/textures/chipped/creeper_andesite_carving.png deleted file mode 100644 index 2022bb75..00000000 Binary files a/public/textures/chipped/creeper_andesite_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_basalt_carving.png b/public/textures/chipped/creeper_basalt_carving.png deleted file mode 100644 index 4ddd3be5..00000000 Binary files a/public/textures/chipped/creeper_basalt_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_black_concrete.png b/public/textures/chipped/creeper_black_concrete.png deleted file mode 100644 index d39135a9..00000000 Binary files a/public/textures/chipped/creeper_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_blackstone_carving.png b/public/textures/chipped/creeper_blackstone_carving.png deleted file mode 100644 index 882d53ff..00000000 Binary files a/public/textures/chipped/creeper_blackstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_blue_concrete.png b/public/textures/chipped/creeper_blue_concrete.png deleted file mode 100644 index f77ba548..00000000 Binary files a/public/textures/chipped/creeper_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_blue_ice_carving.png b/public/textures/chipped/creeper_blue_ice_carving.png deleted file mode 100644 index 4c30b576..00000000 Binary files a/public/textures/chipped/creeper_blue_ice_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_borderless_bricks_carving.png b/public/textures/chipped/creeper_borderless_bricks_carving.png deleted file mode 100644 index cc167bef..00000000 Binary files a/public/textures/chipped/creeper_borderless_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_bricks_carving.png b/public/textures/chipped/creeper_bricks_carving.png deleted file mode 100644 index 40cf6362..00000000 Binary files a/public/textures/chipped/creeper_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_brown_concrete.png b/public/textures/chipped/creeper_brown_concrete.png deleted file mode 100644 index b9ebf838..00000000 Binary files a/public/textures/chipped/creeper_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_calcite_carving.png b/public/textures/chipped/creeper_calcite_carving.png deleted file mode 100644 index 45174747..00000000 Binary files a/public/textures/chipped/creeper_calcite_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_clay_carving.png b/public/textures/chipped/creeper_clay_carving.png deleted file mode 100644 index 6b66e3c8..00000000 Binary files a/public/textures/chipped/creeper_clay_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_coal_block_carving.png b/public/textures/chipped/creeper_coal_block_carving.png deleted file mode 100644 index 58d7d5d9..00000000 Binary files a/public/textures/chipped/creeper_coal_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_cobblestone_carving.png b/public/textures/chipped/creeper_cobblestone_carving.png deleted file mode 100644 index 0021a564..00000000 Binary files a/public/textures/chipped/creeper_cobblestone_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_crying_obsidian_carving.png b/public/textures/chipped/creeper_crying_obsidian_carving.png deleted file mode 100644 index 726e735b..00000000 Binary files a/public/textures/chipped/creeper_crying_obsidian_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_cyan_concrete.png b/public/textures/chipped/creeper_cyan_concrete.png deleted file mode 100644 index cd0293c1..00000000 Binary files a/public/textures/chipped/creeper_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_dark_prismarine_carving.png b/public/textures/chipped/creeper_dark_prismarine_carving.png deleted file mode 100644 index c253dc94..00000000 Binary files a/public/textures/chipped/creeper_dark_prismarine_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_deepslate_carving.png b/public/textures/chipped/creeper_deepslate_carving.png deleted file mode 100644 index 0c6b938c..00000000 Binary files a/public/textures/chipped/creeper_deepslate_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_diorite_carving.png b/public/textures/chipped/creeper_diorite_carving.png deleted file mode 100644 index 90d28138..00000000 Binary files a/public/textures/chipped/creeper_diorite_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_dirt_carving.png b/public/textures/chipped/creeper_dirt_carving.png deleted file mode 100644 index 78a9b7b8..00000000 Binary files a/public/textures/chipped/creeper_dirt_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_dripstone_block_carving.png b/public/textures/chipped/creeper_dripstone_block_carving.png deleted file mode 100644 index 29ffad48..00000000 Binary files a/public/textures/chipped/creeper_dripstone_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_end_stone_carving.png b/public/textures/chipped/creeper_end_stone_carving.png deleted file mode 100644 index 1020dd0e..00000000 Binary files a/public/textures/chipped/creeper_end_stone_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_gilded_blackstone_carving.png b/public/textures/chipped/creeper_gilded_blackstone_carving.png deleted file mode 100644 index da73e29b..00000000 Binary files a/public/textures/chipped/creeper_gilded_blackstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_granite_carving.png b/public/textures/chipped/creeper_granite_carving.png deleted file mode 100644 index f369c04e..00000000 Binary files a/public/textures/chipped/creeper_granite_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_gray_concrete.png b/public/textures/chipped/creeper_gray_concrete.png deleted file mode 100644 index 221dc164..00000000 Binary files a/public/textures/chipped/creeper_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_green_concrete.png b/public/textures/chipped/creeper_green_concrete.png deleted file mode 100644 index f70b4218..00000000 Binary files a/public/textures/chipped/creeper_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_ice_carving.png b/public/textures/chipped/creeper_ice_carving.png deleted file mode 100644 index a4b701d2..00000000 Binary files a/public/textures/chipped/creeper_ice_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_lapis_block_carving.png b/public/textures/chipped/creeper_lapis_block_carving.png deleted file mode 100644 index 2e19a7e8..00000000 Binary files a/public/textures/chipped/creeper_lapis_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_light_blue_concrete.png b/public/textures/chipped/creeper_light_blue_concrete.png deleted file mode 100644 index 8c9b73ef..00000000 Binary files a/public/textures/chipped/creeper_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_light_gray_concrete.png b/public/textures/chipped/creeper_light_gray_concrete.png deleted file mode 100644 index cb56e679..00000000 Binary files a/public/textures/chipped/creeper_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_lime_concrete.png b/public/textures/chipped/creeper_lime_concrete.png deleted file mode 100644 index ee7594c1..00000000 Binary files a/public/textures/chipped/creeper_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_lodestone_carving.png b/public/textures/chipped/creeper_lodestone_carving.png deleted file mode 100644 index d10ea8d2..00000000 Binary files a/public/textures/chipped/creeper_lodestone_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_magenta_concrete.png b/public/textures/chipped/creeper_magenta_concrete.png deleted file mode 100644 index d253c188..00000000 Binary files a/public/textures/chipped/creeper_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_magma_block_carving.png b/public/textures/chipped/creeper_magma_block_carving.png deleted file mode 100644 index d0849cd8..00000000 Binary files a/public/textures/chipped/creeper_magma_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_mossy_cobblestone_carving.png b/public/textures/chipped/creeper_mossy_cobblestone_carving.png deleted file mode 100644 index 02bfe859..00000000 Binary files a/public/textures/chipped/creeper_mossy_cobblestone_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_mossy_stone_bricks_carving.png b/public/textures/chipped/creeper_mossy_stone_bricks_carving.png deleted file mode 100644 index 34e83b05..00000000 Binary files a/public/textures/chipped/creeper_mossy_stone_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_mud_bricks_carving.png b/public/textures/chipped/creeper_mud_bricks_carving.png deleted file mode 100644 index d1741b32..00000000 Binary files a/public/textures/chipped/creeper_mud_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_mud_carving.png b/public/textures/chipped/creeper_mud_carving.png deleted file mode 100644 index 09b17a74..00000000 Binary files a/public/textures/chipped/creeper_mud_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_nether_bricks_carving.png b/public/textures/chipped/creeper_nether_bricks_carving.png deleted file mode 100644 index 1214c54b..00000000 Binary files a/public/textures/chipped/creeper_nether_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_netherrack_carving.png b/public/textures/chipped/creeper_netherrack_carving.png deleted file mode 100644 index 60a8bfb5..00000000 Binary files a/public/textures/chipped/creeper_netherrack_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_obsidian_carving.png b/public/textures/chipped/creeper_obsidian_carving.png deleted file mode 100644 index 83ca52d4..00000000 Binary files a/public/textures/chipped/creeper_obsidian_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_orange_concrete.png b/public/textures/chipped/creeper_orange_concrete.png deleted file mode 100644 index e9fa1933..00000000 Binary files a/public/textures/chipped/creeper_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_packed_ice_carving.png b/public/textures/chipped/creeper_packed_ice_carving.png deleted file mode 100644 index 3f86a7d8..00000000 Binary files a/public/textures/chipped/creeper_packed_ice_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_packed_mud_carving.png b/public/textures/chipped/creeper_packed_mud_carving.png deleted file mode 100644 index 67a3b11f..00000000 Binary files a/public/textures/chipped/creeper_packed_mud_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_pink_concrete.png b/public/textures/chipped/creeper_pink_concrete.png deleted file mode 100644 index d804146f..00000000 Binary files a/public/textures/chipped/creeper_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_prismarine_carving.png b/public/textures/chipped/creeper_prismarine_carving.png deleted file mode 100644 index bcf7e40c..00000000 Binary files a/public/textures/chipped/creeper_prismarine_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_purple_concrete.png b/public/textures/chipped/creeper_purple_concrete.png deleted file mode 100644 index 718106e4..00000000 Binary files a/public/textures/chipped/creeper_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_purpur_block_carving.png b/public/textures/chipped/creeper_purpur_block_carving.png deleted file mode 100644 index 9a461f79..00000000 Binary files a/public/textures/chipped/creeper_purpur_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_quartz_block_carving.png b/public/textures/chipped/creeper_quartz_block_carving.png deleted file mode 100644 index 048f5f88..00000000 Binary files a/public/textures/chipped/creeper_quartz_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_raw_copper_block_carving.png b/public/textures/chipped/creeper_raw_copper_block_carving.png deleted file mode 100644 index fe1ef5d3..00000000 Binary files a/public/textures/chipped/creeper_raw_copper_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_raw_gold_block_carving.png b/public/textures/chipped/creeper_raw_gold_block_carving.png deleted file mode 100644 index c2fc911a..00000000 Binary files a/public/textures/chipped/creeper_raw_gold_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_raw_iron_block_carving.png b/public/textures/chipped/creeper_raw_iron_block_carving.png deleted file mode 100644 index c8f4678c..00000000 Binary files a/public/textures/chipped/creeper_raw_iron_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_red_concrete.png b/public/textures/chipped/creeper_red_concrete.png deleted file mode 100644 index 7b4bb3a5..00000000 Binary files a/public/textures/chipped/creeper_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_red_nether_bricks_carving.png b/public/textures/chipped/creeper_red_nether_bricks_carving.png deleted file mode 100644 index d0ec35af..00000000 Binary files a/public/textures/chipped/creeper_red_nether_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_red_sandstone_carving.png b/public/textures/chipped/creeper_red_sandstone_carving.png deleted file mode 100644 index 2290ec94..00000000 Binary files a/public/textures/chipped/creeper_red_sandstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_redstone_block_carving.png b/public/textures/chipped/creeper_redstone_block_carving.png deleted file mode 100644 index 18e4850c..00000000 Binary files a/public/textures/chipped/creeper_redstone_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_sandstone_carving.png b/public/textures/chipped/creeper_sandstone_carving.png deleted file mode 100644 index 0fce22cf..00000000 Binary files a/public/textures/chipped/creeper_sandstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_smooth_stone_carving.png b/public/textures/chipped/creeper_smooth_stone_carving.png deleted file mode 100644 index cbdf76cc..00000000 Binary files a/public/textures/chipped/creeper_smooth_stone_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_snow_block_carving.png b/public/textures/chipped/creeper_snow_block_carving.png deleted file mode 100644 index e72cc9b3..00000000 Binary files a/public/textures/chipped/creeper_snow_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_stone_carving.png b/public/textures/chipped/creeper_stone_carving.png deleted file mode 100644 index f4d0f449..00000000 Binary files a/public/textures/chipped/creeper_stone_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_tuff_carving.png b/public/textures/chipped/creeper_tuff_carving.png deleted file mode 100644 index 28affa7d..00000000 Binary files a/public/textures/chipped/creeper_tuff_carving.png and /dev/null differ diff --git a/public/textures/chipped/creeper_white_concrete.png b/public/textures/chipped/creeper_white_concrete.png deleted file mode 100644 index c319d3c7..00000000 Binary files a/public/textures/chipped/creeper_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeper_yellow_concrete.png b/public/textures/chipped/creeper_yellow_concrete.png deleted file mode 100644 index eebd2771..00000000 Binary files a/public/textures/chipped/creeper_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/creeping_nether_sprouts.png b/public/textures/chipped/creeping_nether_sprouts.png deleted file mode 100644 index 5477ff1c..00000000 Binary files a/public/textures/chipped/creeping_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/creepy_carved_pumpkin.png b/public/textures/chipped/creepy_carved_pumpkin.png deleted file mode 100644 index 5097ba9f..00000000 Binary files a/public/textures/chipped/creepy_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/creepy_jack_o_lantern.png b/public/textures/chipped/creepy_jack_o_lantern.png deleted file mode 100644 index dbef6826..00000000 Binary files a/public/textures/chipped/creepy_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/crimson_barrel.png b/public/textures/chipped/crimson_barrel.png deleted file mode 100644 index b386a369..00000000 Binary files a/public/textures/chipped/crimson_barrel.png and /dev/null differ diff --git a/public/textures/chipped/crimson_crate.png b/public/textures/chipped/crimson_crate.png deleted file mode 100644 index 51826eb2..00000000 Binary files a/public/textures/chipped/crimson_crate.png and /dev/null differ diff --git a/public/textures/chipped/crimson_dried_kelp_block.png b/public/textures/chipped/crimson_dried_kelp_block.png deleted file mode 100644 index 91a4bd48..00000000 Binary files a/public/textures/chipped/crimson_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/crimson_fungus_bulb.png b/public/textures/chipped/crimson_fungus_bulb.png deleted file mode 100644 index abc83ff5..00000000 Binary files a/public/textures/chipped/crimson_fungus_bulb.png and /dev/null differ diff --git a/public/textures/chipped/crimson_fungus_bushel.png b/public/textures/chipped/crimson_fungus_bushel.png deleted file mode 100644 index f1d2fe73..00000000 Binary files a/public/textures/chipped/crimson_fungus_bushel.png and /dev/null differ diff --git a/public/textures/chipped/crimson_fungus_cluster.png b/public/textures/chipped/crimson_fungus_cluster.png deleted file mode 100644 index f60ed823..00000000 Binary files a/public/textures/chipped/crimson_fungus_cluster.png and /dev/null differ diff --git a/public/textures/chipped/crimson_fungus_trio.png b/public/textures/chipped/crimson_fungus_trio.png deleted file mode 100644 index 0ac3ad38..00000000 Binary files a/public/textures/chipped/crimson_fungus_trio.png and /dev/null differ diff --git a/public/textures/chipped/crimson_mangrove_roots.png b/public/textures/chipped/crimson_mangrove_roots.png deleted file mode 100644 index d7737317..00000000 Binary files a/public/textures/chipped/crimson_mangrove_roots.png and /dev/null differ diff --git a/public/textures/chipped/crimson_planks_mosaic.png b/public/textures/chipped/crimson_planks_mosaic.png deleted file mode 100644 index 6779f670..00000000 Binary files a/public/textures/chipped/crimson_planks_mosaic.png and /dev/null differ diff --git a/public/textures/chipped/crimson_planks_panel.png b/public/textures/chipped/crimson_planks_panel.png deleted file mode 100644 index 2f38e3e9..00000000 Binary files a/public/textures/chipped/crimson_planks_panel.png and /dev/null differ diff --git a/public/textures/chipped/crimson_planks_shavings.png b/public/textures/chipped/crimson_planks_shavings.png deleted file mode 100644 index 2c682c0a..00000000 Binary files a/public/textures/chipped/crimson_planks_shavings.png and /dev/null differ diff --git a/public/textures/chipped/crimson_redstone_torch.png b/public/textures/chipped/crimson_redstone_torch.png deleted file mode 100644 index 80436bc9..00000000 Binary files a/public/textures/chipped/crimson_redstone_torch.png and /dev/null differ diff --git a/public/textures/chipped/crimson_roots_bloom.png b/public/textures/chipped/crimson_roots_bloom.png deleted file mode 100644 index 03dffe4f..00000000 Binary files a/public/textures/chipped/crimson_roots_bloom.png and /dev/null differ diff --git a/public/textures/chipped/crimson_roots_bramble.png b/public/textures/chipped/crimson_roots_bramble.png deleted file mode 100644 index 8e9f96dc..00000000 Binary files a/public/textures/chipped/crimson_roots_bramble.png and /dev/null differ diff --git a/public/textures/chipped/crimson_roots_bud.png b/public/textures/chipped/crimson_roots_bud.png deleted file mode 100644 index 9188eb03..00000000 Binary files a/public/textures/chipped/crimson_roots_bud.png and /dev/null differ diff --git a/public/textures/chipped/crimson_roots_bulb.png b/public/textures/chipped/crimson_roots_bulb.png deleted file mode 100644 index f54c7c66..00000000 Binary files a/public/textures/chipped/crimson_roots_bulb.png and /dev/null differ diff --git a/public/textures/chipped/crimson_roots_floret.png b/public/textures/chipped/crimson_roots_floret.png deleted file mode 100644 index bd5cb1ef..00000000 Binary files a/public/textures/chipped/crimson_roots_floret.png and /dev/null differ diff --git a/public/textures/chipped/crimson_torch.png b/public/textures/chipped/crimson_torch.png deleted file mode 100644 index 81050cde..00000000 Binary files a/public/textures/chipped/crimson_torch.png and /dev/null differ diff --git a/public/textures/chipped/crooked_ladder.png b/public/textures/chipped/crooked_ladder.png deleted file mode 100644 index 64ec9682..00000000 Binary files a/public/textures/chipped/crooked_ladder.png and /dev/null differ diff --git a/public/textures/chipped/crooked_plank_ladder.png b/public/textures/chipped/crooked_plank_ladder.png deleted file mode 100644 index 0bf89faf..00000000 Binary files a/public/textures/chipped/crooked_plank_ladder.png and /dev/null differ diff --git a/public/textures/chipped/crooked_ropeplank_ladder.png b/public/textures/chipped/crooked_ropeplank_ladder.png deleted file mode 100644 index 3118f0ab..00000000 Binary files a/public/textures/chipped/crooked_ropeplank_ladder.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_black_carpet.png b/public/textures/chipped/cross_haired_black_carpet.png deleted file mode 100644 index e83bb9e9..00000000 Binary files a/public/textures/chipped/cross_haired_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_black_wool.png b/public/textures/chipped/cross_haired_black_wool.png deleted file mode 100644 index 2686e579..00000000 Binary files a/public/textures/chipped/cross_haired_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_blue_carpet.png b/public/textures/chipped/cross_haired_blue_carpet.png deleted file mode 100644 index 0abce4b8..00000000 Binary files a/public/textures/chipped/cross_haired_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_blue_wool.png b/public/textures/chipped/cross_haired_blue_wool.png deleted file mode 100644 index f768846f..00000000 Binary files a/public/textures/chipped/cross_haired_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_brown_carpet.png b/public/textures/chipped/cross_haired_brown_carpet.png deleted file mode 100644 index 34fa5fb6..00000000 Binary files a/public/textures/chipped/cross_haired_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_brown_wool.png b/public/textures/chipped/cross_haired_brown_wool.png deleted file mode 100644 index 4e8c3089..00000000 Binary files a/public/textures/chipped/cross_haired_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_cyan_carpet.png b/public/textures/chipped/cross_haired_cyan_carpet.png deleted file mode 100644 index e40a24c4..00000000 Binary files a/public/textures/chipped/cross_haired_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_cyan_wool.png b/public/textures/chipped/cross_haired_cyan_wool.png deleted file mode 100644 index e01673e1..00000000 Binary files a/public/textures/chipped/cross_haired_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_gray_carpet.png b/public/textures/chipped/cross_haired_gray_carpet.png deleted file mode 100644 index 02c41235..00000000 Binary files a/public/textures/chipped/cross_haired_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_gray_wool.png b/public/textures/chipped/cross_haired_gray_wool.png deleted file mode 100644 index b0afba73..00000000 Binary files a/public/textures/chipped/cross_haired_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_green_carpet.png b/public/textures/chipped/cross_haired_green_carpet.png deleted file mode 100644 index 7d6ffd78..00000000 Binary files a/public/textures/chipped/cross_haired_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_green_wool.png b/public/textures/chipped/cross_haired_green_wool.png deleted file mode 100644 index 0260b23a..00000000 Binary files a/public/textures/chipped/cross_haired_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_light_blue_carpet.png b/public/textures/chipped/cross_haired_light_blue_carpet.png deleted file mode 100644 index d08b77f9..00000000 Binary files a/public/textures/chipped/cross_haired_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_light_blue_wool.png b/public/textures/chipped/cross_haired_light_blue_wool.png deleted file mode 100644 index bc9c1faa..00000000 Binary files a/public/textures/chipped/cross_haired_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_light_gray_carpet.png b/public/textures/chipped/cross_haired_light_gray_carpet.png deleted file mode 100644 index 5120c9d1..00000000 Binary files a/public/textures/chipped/cross_haired_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_light_gray_wool.png b/public/textures/chipped/cross_haired_light_gray_wool.png deleted file mode 100644 index 2267443e..00000000 Binary files a/public/textures/chipped/cross_haired_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_lime_carpet.png b/public/textures/chipped/cross_haired_lime_carpet.png deleted file mode 100644 index e0f7ab9f..00000000 Binary files a/public/textures/chipped/cross_haired_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_lime_wool.png b/public/textures/chipped/cross_haired_lime_wool.png deleted file mode 100644 index 777e35c8..00000000 Binary files a/public/textures/chipped/cross_haired_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_magenta_carpet.png b/public/textures/chipped/cross_haired_magenta_carpet.png deleted file mode 100644 index 44637e99..00000000 Binary files a/public/textures/chipped/cross_haired_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_magenta_wool.png b/public/textures/chipped/cross_haired_magenta_wool.png deleted file mode 100644 index 1bd91a24..00000000 Binary files a/public/textures/chipped/cross_haired_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_orange_carpet.png b/public/textures/chipped/cross_haired_orange_carpet.png deleted file mode 100644 index 36f5911e..00000000 Binary files a/public/textures/chipped/cross_haired_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_orange_wool.png b/public/textures/chipped/cross_haired_orange_wool.png deleted file mode 100644 index aa928b0a..00000000 Binary files a/public/textures/chipped/cross_haired_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_pink_carpet.png b/public/textures/chipped/cross_haired_pink_carpet.png deleted file mode 100644 index f4dd18fc..00000000 Binary files a/public/textures/chipped/cross_haired_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_pink_wool.png b/public/textures/chipped/cross_haired_pink_wool.png deleted file mode 100644 index e464d36a..00000000 Binary files a/public/textures/chipped/cross_haired_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_purple_carpet.png b/public/textures/chipped/cross_haired_purple_carpet.png deleted file mode 100644 index 6f6cc308..00000000 Binary files a/public/textures/chipped/cross_haired_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_purple_wool.png b/public/textures/chipped/cross_haired_purple_wool.png deleted file mode 100644 index c37fe548..00000000 Binary files a/public/textures/chipped/cross_haired_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_red_carpet.png b/public/textures/chipped/cross_haired_red_carpet.png deleted file mode 100644 index 9ff12c78..00000000 Binary files a/public/textures/chipped/cross_haired_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_red_wool.png b/public/textures/chipped/cross_haired_red_wool.png deleted file mode 100644 index 470decbc..00000000 Binary files a/public/textures/chipped/cross_haired_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_white_carpet.png b/public/textures/chipped/cross_haired_white_carpet.png deleted file mode 100644 index 200c2e29..00000000 Binary files a/public/textures/chipped/cross_haired_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_white_wool.png b/public/textures/chipped/cross_haired_white_wool.png deleted file mode 100644 index c94eaf23..00000000 Binary files a/public/textures/chipped/cross_haired_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_yellow_carpet.png b/public/textures/chipped/cross_haired_yellow_carpet.png deleted file mode 100644 index d5e63a20..00000000 Binary files a/public/textures/chipped/cross_haired_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cross_haired_yellow_wool.png b/public/textures/chipped/cross_haired_yellow_wool.png deleted file mode 100644 index 4f4dacae..00000000 Binary files a/public/textures/chipped/cross_haired_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/cross_laced_acacia_planks.png b/public/textures/chipped/cross_laced_acacia_planks.png deleted file mode 100644 index 1f6be879..00000000 Binary files a/public/textures/chipped/cross_laced_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/cross_laced_bamboo_planks.png b/public/textures/chipped/cross_laced_bamboo_planks.png deleted file mode 100644 index b17cffc3..00000000 Binary files a/public/textures/chipped/cross_laced_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/cross_laced_birch_planks.png b/public/textures/chipped/cross_laced_birch_planks.png deleted file mode 100644 index b3e00da2..00000000 Binary files a/public/textures/chipped/cross_laced_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/cross_laced_cherry_planks.png b/public/textures/chipped/cross_laced_cherry_planks.png deleted file mode 100644 index 64ba86e7..00000000 Binary files a/public/textures/chipped/cross_laced_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/cross_laced_crimson_planks.png b/public/textures/chipped/cross_laced_crimson_planks.png deleted file mode 100644 index 8f09cd04..00000000 Binary files a/public/textures/chipped/cross_laced_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/cross_laced_dark_oak_planks.png b/public/textures/chipped/cross_laced_dark_oak_planks.png deleted file mode 100644 index be56233a..00000000 Binary files a/public/textures/chipped/cross_laced_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/cross_laced_jungle_planks.png b/public/textures/chipped/cross_laced_jungle_planks.png deleted file mode 100644 index 191bdef7..00000000 Binary files a/public/textures/chipped/cross_laced_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/cross_laced_mangrove_planks.png b/public/textures/chipped/cross_laced_mangrove_planks.png deleted file mode 100644 index d0411910..00000000 Binary files a/public/textures/chipped/cross_laced_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/cross_laced_oak_planks.png b/public/textures/chipped/cross_laced_oak_planks.png deleted file mode 100644 index e340b3a8..00000000 Binary files a/public/textures/chipped/cross_laced_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/cross_laced_spruce_planks.png b/public/textures/chipped/cross_laced_spruce_planks.png deleted file mode 100644 index f6505273..00000000 Binary files a/public/textures/chipped/cross_laced_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/cross_laced_warped_planks.png b/public/textures/chipped/cross_laced_warped_planks.png deleted file mode 100644 index de9c18db..00000000 Binary files a/public/textures/chipped/cross_laced_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossbolted_iron_bars.png b/public/textures/chipped/crossbolted_iron_bars.png deleted file mode 100644 index 9c0b9ce4..00000000 Binary files a/public/textures/chipped/crossbolted_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/crossed_acacia_planks.png b/public/textures/chipped/crossed_acacia_planks.png deleted file mode 100644 index afde9c7e..00000000 Binary files a/public/textures/chipped/crossed_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossed_bamboo_planks.png b/public/textures/chipped/crossed_bamboo_planks.png deleted file mode 100644 index 4a184709..00000000 Binary files a/public/textures/chipped/crossed_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossed_birch_planks.png b/public/textures/chipped/crossed_birch_planks.png deleted file mode 100644 index 0db5cf01..00000000 Binary files a/public/textures/chipped/crossed_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossed_black_terracotta.png b/public/textures/chipped/crossed_black_terracotta.png deleted file mode 100644 index 7bf77873..00000000 Binary files a/public/textures/chipped/crossed_black_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_blue_terracotta.png b/public/textures/chipped/crossed_blue_terracotta.png deleted file mode 100644 index f620242e..00000000 Binary files a/public/textures/chipped/crossed_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_brown_terracotta.png b/public/textures/chipped/crossed_brown_terracotta.png deleted file mode 100644 index 825e2e0f..00000000 Binary files a/public/textures/chipped/crossed_brown_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_cherry_planks.png b/public/textures/chipped/crossed_cherry_planks.png deleted file mode 100644 index 0d54739f..00000000 Binary files a/public/textures/chipped/crossed_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossed_crimson_planks.png b/public/textures/chipped/crossed_crimson_planks.png deleted file mode 100644 index c1c4da99..00000000 Binary files a/public/textures/chipped/crossed_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossed_cyan_terracotta.png b/public/textures/chipped/crossed_cyan_terracotta.png deleted file mode 100644 index 142420fa..00000000 Binary files a/public/textures/chipped/crossed_cyan_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_dark_oak_planks.png b/public/textures/chipped/crossed_dark_oak_planks.png deleted file mode 100644 index 4e3df351..00000000 Binary files a/public/textures/chipped/crossed_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossed_gray_terracotta.png b/public/textures/chipped/crossed_gray_terracotta.png deleted file mode 100644 index 62b7f1f1..00000000 Binary files a/public/textures/chipped/crossed_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_green_terracotta.png b/public/textures/chipped/crossed_green_terracotta.png deleted file mode 100644 index 9dd49b64..00000000 Binary files a/public/textures/chipped/crossed_green_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_iron_bars.png b/public/textures/chipped/crossed_iron_bars.png deleted file mode 100644 index 9163a7c2..00000000 Binary files a/public/textures/chipped/crossed_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/crossed_jungle_planks.png b/public/textures/chipped/crossed_jungle_planks.png deleted file mode 100644 index e6d83535..00000000 Binary files a/public/textures/chipped/crossed_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossed_light_blue_terracotta.png b/public/textures/chipped/crossed_light_blue_terracotta.png deleted file mode 100644 index c551a785..00000000 Binary files a/public/textures/chipped/crossed_light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_light_gray_terracotta.png b/public/textures/chipped/crossed_light_gray_terracotta.png deleted file mode 100644 index b36a052e..00000000 Binary files a/public/textures/chipped/crossed_light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_lime_terracotta.png b/public/textures/chipped/crossed_lime_terracotta.png deleted file mode 100644 index cb276c60..00000000 Binary files a/public/textures/chipped/crossed_lime_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_magenta_terracotta.png b/public/textures/chipped/crossed_magenta_terracotta.png deleted file mode 100644 index a1fc752c..00000000 Binary files a/public/textures/chipped/crossed_magenta_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_mangrove_planks.png b/public/textures/chipped/crossed_mangrove_planks.png deleted file mode 100644 index 1c854bc6..00000000 Binary files a/public/textures/chipped/crossed_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossed_oak_planks.png b/public/textures/chipped/crossed_oak_planks.png deleted file mode 100644 index 865d1f6c..00000000 Binary files a/public/textures/chipped/crossed_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossed_orange_terracotta.png b/public/textures/chipped/crossed_orange_terracotta.png deleted file mode 100644 index 96fceee7..00000000 Binary files a/public/textures/chipped/crossed_orange_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_pink_terracotta.png b/public/textures/chipped/crossed_pink_terracotta.png deleted file mode 100644 index 211e07bd..00000000 Binary files a/public/textures/chipped/crossed_pink_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_purple_terracotta.png b/public/textures/chipped/crossed_purple_terracotta.png deleted file mode 100644 index 980f2601..00000000 Binary files a/public/textures/chipped/crossed_purple_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_red_terracotta.png b/public/textures/chipped/crossed_red_terracotta.png deleted file mode 100644 index 2f767912..00000000 Binary files a/public/textures/chipped/crossed_red_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_spruce_planks.png b/public/textures/chipped/crossed_spruce_planks.png deleted file mode 100644 index f1041ba0..00000000 Binary files a/public/textures/chipped/crossed_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossed_terracotta.png b/public/textures/chipped/crossed_terracotta.png deleted file mode 100644 index 983d9af4..00000000 Binary files a/public/textures/chipped/crossed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_warped_planks.png b/public/textures/chipped/crossed_warped_planks.png deleted file mode 100644 index d8bf5969..00000000 Binary files a/public/textures/chipped/crossed_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/crossed_white_terracotta.png b/public/textures/chipped/crossed_white_terracotta.png deleted file mode 100644 index 2ea5478c..00000000 Binary files a/public/textures/chipped/crossed_white_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crossed_yellow_terracotta.png b/public/textures/chipped/crossed_yellow_terracotta.png deleted file mode 100644 index 68cabe6a..00000000 Binary files a/public/textures/chipped/crossed_yellow_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/crumbled_nether_wart_block.png b/public/textures/chipped/crumbled_nether_wart_block.png deleted file mode 100644 index 305248da..00000000 Binary files a/public/textures/chipped/crumbled_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/crumbled_warped_wart_block.png b/public/textures/chipped/crumbled_warped_wart_block.png deleted file mode 100644 index 28a03e23..00000000 Binary files a/public/textures/chipped/crumbled_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/crunched_bone_block.png b/public/textures/chipped/crunched_bone_block.png deleted file mode 100644 index fcfc2185..00000000 Binary files a/public/textures/chipped/crunched_bone_block.png and /dev/null differ diff --git a/public/textures/chipped/crunched_mud_bricks.png b/public/textures/chipped/crunched_mud_bricks.png deleted file mode 100644 index e1546c89..00000000 Binary files a/public/textures/chipped/crunched_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/crunched_mud_bricks_bricks.png b/public/textures/chipped/crunched_mud_bricks_bricks.png deleted file mode 100644 index d6c7f9e9..00000000 Binary files a/public/textures/chipped/crunched_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/crunched_packed_mud_bricks.png b/public/textures/chipped/crunched_packed_mud_bricks.png deleted file mode 100644 index 1513cd93..00000000 Binary files a/public/textures/chipped/crunched_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/crunchy_moss_block.png b/public/textures/chipped/crunchy_moss_block.png deleted file mode 100644 index 39d8b969..00000000 Binary files a/public/textures/chipped/crunchy_moss_block.png and /dev/null differ diff --git a/public/textures/chipped/crusted_nether_sprouts.png b/public/textures/chipped/crusted_nether_sprouts.png deleted file mode 100644 index 24bbcd52..00000000 Binary files a/public/textures/chipped/crusted_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/crying_amethyst_block.png b/public/textures/chipped/crying_amethyst_block.png deleted file mode 100644 index 6e52deb1..00000000 Binary files a/public/textures/chipped/crying_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_ancient_debris.png b/public/textures/chipped/crying_ancient_debris.png deleted file mode 100644 index b55de6f6..00000000 Binary files a/public/textures/chipped/crying_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/crying_andesite.png b/public/textures/chipped/crying_andesite.png deleted file mode 100644 index 15421c01..00000000 Binary files a/public/textures/chipped/crying_andesite.png and /dev/null differ diff --git a/public/textures/chipped/crying_basalt.png b/public/textures/chipped/crying_basalt.png deleted file mode 100644 index 605ad350..00000000 Binary files a/public/textures/chipped/crying_basalt.png and /dev/null differ diff --git a/public/textures/chipped/crying_blackstone.png b/public/textures/chipped/crying_blackstone.png deleted file mode 100644 index 1f92606e..00000000 Binary files a/public/textures/chipped/crying_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/crying_blue_ice.png b/public/textures/chipped/crying_blue_ice.png deleted file mode 100644 index 11ab282b..00000000 Binary files a/public/textures/chipped/crying_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/crying_borderless_bricks.png b/public/textures/chipped/crying_borderless_bricks.png deleted file mode 100644 index 891dfd3f..00000000 Binary files a/public/textures/chipped/crying_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/crying_bricks.png b/public/textures/chipped/crying_bricks.png deleted file mode 100644 index e425b2db..00000000 Binary files a/public/textures/chipped/crying_bricks.png and /dev/null differ diff --git a/public/textures/chipped/crying_calcite.png b/public/textures/chipped/crying_calcite.png deleted file mode 100644 index 74728d78..00000000 Binary files a/public/textures/chipped/crying_calcite.png and /dev/null differ diff --git a/public/textures/chipped/crying_clay.png b/public/textures/chipped/crying_clay.png deleted file mode 100644 index ec666820..00000000 Binary files a/public/textures/chipped/crying_clay.png and /dev/null differ diff --git a/public/textures/chipped/crying_coal_block.png b/public/textures/chipped/crying_coal_block.png deleted file mode 100644 index a6dbff43..00000000 Binary files a/public/textures/chipped/crying_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_cobblestone.png b/public/textures/chipped/crying_cobblestone.png deleted file mode 100644 index 5081aadc..00000000 Binary files a/public/textures/chipped/crying_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/crying_crimson_stem.png b/public/textures/chipped/crying_crimson_stem.png deleted file mode 100644 index b54ee766..00000000 Binary files a/public/textures/chipped/crying_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/crying_crying_obsidian.png b/public/textures/chipped/crying_crying_obsidian.png deleted file mode 100644 index 56f8403e..00000000 Binary files a/public/textures/chipped/crying_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/crying_dark_prismarine.png b/public/textures/chipped/crying_dark_prismarine.png deleted file mode 100644 index b9d0a9b6..00000000 Binary files a/public/textures/chipped/crying_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/crying_deepslate.png b/public/textures/chipped/crying_deepslate.png deleted file mode 100644 index 0bffb930..00000000 Binary files a/public/textures/chipped/crying_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/crying_diorite.png b/public/textures/chipped/crying_diorite.png deleted file mode 100644 index 3503d1a6..00000000 Binary files a/public/textures/chipped/crying_diorite.png and /dev/null differ diff --git a/public/textures/chipped/crying_dirt.png b/public/textures/chipped/crying_dirt.png deleted file mode 100644 index f07dc5fc..00000000 Binary files a/public/textures/chipped/crying_dirt.png and /dev/null differ diff --git a/public/textures/chipped/crying_dripstone_block.png b/public/textures/chipped/crying_dripstone_block.png deleted file mode 100644 index 880f8e19..00000000 Binary files a/public/textures/chipped/crying_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_end_stone.png b/public/textures/chipped/crying_end_stone.png deleted file mode 100644 index 456cb3a9..00000000 Binary files a/public/textures/chipped/crying_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/crying_gilded_blackstone.png b/public/textures/chipped/crying_gilded_blackstone.png deleted file mode 100644 index d3b4b1b7..00000000 Binary files a/public/textures/chipped/crying_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/crying_granite.png b/public/textures/chipped/crying_granite.png deleted file mode 100644 index 629481b5..00000000 Binary files a/public/textures/chipped/crying_granite.png and /dev/null differ diff --git a/public/textures/chipped/crying_ice.png b/public/textures/chipped/crying_ice.png deleted file mode 100644 index 376d0c2e..00000000 Binary files a/public/textures/chipped/crying_ice.png and /dev/null differ diff --git a/public/textures/chipped/crying_lapis_block.png b/public/textures/chipped/crying_lapis_block.png deleted file mode 100644 index 106c665c..00000000 Binary files a/public/textures/chipped/crying_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_lodestone.png b/public/textures/chipped/crying_lodestone.png deleted file mode 100644 index 44748790..00000000 Binary files a/public/textures/chipped/crying_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/crying_magma_block.png b/public/textures/chipped/crying_magma_block.png deleted file mode 100644 index 4d081f04..00000000 Binary files a/public/textures/chipped/crying_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_mossy_cobblestone.png b/public/textures/chipped/crying_mossy_cobblestone.png deleted file mode 100644 index e2a85e18..00000000 Binary files a/public/textures/chipped/crying_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/crying_mossy_stone_bricks.png b/public/textures/chipped/crying_mossy_stone_bricks.png deleted file mode 100644 index 09cf0a8b..00000000 Binary files a/public/textures/chipped/crying_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/crying_mud.png b/public/textures/chipped/crying_mud.png deleted file mode 100644 index cb7511e8..00000000 Binary files a/public/textures/chipped/crying_mud.png and /dev/null differ diff --git a/public/textures/chipped/crying_mud_bricks.png b/public/textures/chipped/crying_mud_bricks.png deleted file mode 100644 index 71257425..00000000 Binary files a/public/textures/chipped/crying_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/crying_nether_bricks.png b/public/textures/chipped/crying_nether_bricks.png deleted file mode 100644 index 3d46af3c..00000000 Binary files a/public/textures/chipped/crying_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/crying_netherrack.png b/public/textures/chipped/crying_netherrack.png deleted file mode 100644 index b172a4c7..00000000 Binary files a/public/textures/chipped/crying_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/crying_obsidian.png b/public/textures/chipped/crying_obsidian.png deleted file mode 100644 index baebf308..00000000 Binary files a/public/textures/chipped/crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/crying_obsidian_bricks.png b/public/textures/chipped/crying_obsidian_bricks.png deleted file mode 100644 index 5d8c240d..00000000 Binary files a/public/textures/chipped/crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/crying_obsidian_mini_tiles.png b/public/textures/chipped/crying_obsidian_mini_tiles.png deleted file mode 100644 index bc88586e..00000000 Binary files a/public/textures/chipped/crying_obsidian_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/crying_obsidian_pillar.png b/public/textures/chipped/crying_obsidian_pillar.png deleted file mode 100644 index 3904821f..00000000 Binary files a/public/textures/chipped/crying_obsidian_pillar.png and /dev/null differ diff --git a/public/textures/chipped/crying_obsidian_pillar_top.png b/public/textures/chipped/crying_obsidian_pillar_top.png deleted file mode 100644 index 6f5f8d57..00000000 Binary files a/public/textures/chipped/crying_obsidian_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/crying_obsidian_scales.png b/public/textures/chipped/crying_obsidian_scales.png deleted file mode 100644 index bc313b16..00000000 Binary files a/public/textures/chipped/crying_obsidian_scales.png and /dev/null differ diff --git a/public/textures/chipped/crying_packed_ice.png b/public/textures/chipped/crying_packed_ice.png deleted file mode 100644 index e78b2e20..00000000 Binary files a/public/textures/chipped/crying_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/crying_packed_mud.png b/public/textures/chipped/crying_packed_mud.png deleted file mode 100644 index 9b3ad307..00000000 Binary files a/public/textures/chipped/crying_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/crying_prismarine.png b/public/textures/chipped/crying_prismarine.png deleted file mode 100644 index dcdf251c..00000000 Binary files a/public/textures/chipped/crying_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/crying_purpur_block.png b/public/textures/chipped/crying_purpur_block.png deleted file mode 100644 index 2d4ab0f9..00000000 Binary files a/public/textures/chipped/crying_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_quartz_block.png b/public/textures/chipped/crying_quartz_block.png deleted file mode 100644 index 283fb645..00000000 Binary files a/public/textures/chipped/crying_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_raw_copper_block.png b/public/textures/chipped/crying_raw_copper_block.png deleted file mode 100644 index 187e9eb2..00000000 Binary files a/public/textures/chipped/crying_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_raw_gold_block.png b/public/textures/chipped/crying_raw_gold_block.png deleted file mode 100644 index 964d5e03..00000000 Binary files a/public/textures/chipped/crying_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_raw_iron_block.png b/public/textures/chipped/crying_raw_iron_block.png deleted file mode 100644 index adc71ea8..00000000 Binary files a/public/textures/chipped/crying_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_red_nether_bricks.png b/public/textures/chipped/crying_red_nether_bricks.png deleted file mode 100644 index 96543d7b..00000000 Binary files a/public/textures/chipped/crying_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/crying_red_sandstone.png b/public/textures/chipped/crying_red_sandstone.png deleted file mode 100644 index 55757b29..00000000 Binary files a/public/textures/chipped/crying_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/crying_redstone_block.png b/public/textures/chipped/crying_redstone_block.png deleted file mode 100644 index 64bde06f..00000000 Binary files a/public/textures/chipped/crying_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_sandstone.png b/public/textures/chipped/crying_sandstone.png deleted file mode 100644 index 4996a5a0..00000000 Binary files a/public/textures/chipped/crying_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/crying_smooth_stone.png b/public/textures/chipped/crying_smooth_stone.png deleted file mode 100644 index f6a709c4..00000000 Binary files a/public/textures/chipped/crying_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/crying_snow_block.png b/public/textures/chipped/crying_snow_block.png deleted file mode 100644 index 42cad0fe..00000000 Binary files a/public/textures/chipped/crying_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/crying_stone.png b/public/textures/chipped/crying_stone.png deleted file mode 100644 index 8b083cd6..00000000 Binary files a/public/textures/chipped/crying_stone.png and /dev/null differ diff --git a/public/textures/chipped/crying_tuff.png b/public/textures/chipped/crying_tuff.png deleted file mode 100644 index 6a7e6f1f..00000000 Binary files a/public/textures/chipped/crying_tuff.png and /dev/null differ diff --git a/public/textures/chipped/cubed_black_carpet.png b/public/textures/chipped/cubed_black_carpet.png deleted file mode 100644 index 92e4a115..00000000 Binary files a/public/textures/chipped/cubed_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_black_wool.png b/public/textures/chipped/cubed_black_wool.png deleted file mode 100644 index 4158d901..00000000 Binary files a/public/textures/chipped/cubed_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_blue_carpet.png b/public/textures/chipped/cubed_blue_carpet.png deleted file mode 100644 index 3d47e011..00000000 Binary files a/public/textures/chipped/cubed_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_blue_wool.png b/public/textures/chipped/cubed_blue_wool.png deleted file mode 100644 index 1940f130..00000000 Binary files a/public/textures/chipped/cubed_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_brown_carpet.png b/public/textures/chipped/cubed_brown_carpet.png deleted file mode 100644 index 09eb05c4..00000000 Binary files a/public/textures/chipped/cubed_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_brown_wool.png b/public/textures/chipped/cubed_brown_wool.png deleted file mode 100644 index 261f3b18..00000000 Binary files a/public/textures/chipped/cubed_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_cyan_carpet.png b/public/textures/chipped/cubed_cyan_carpet.png deleted file mode 100644 index e166b61e..00000000 Binary files a/public/textures/chipped/cubed_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_cyan_wool.png b/public/textures/chipped/cubed_cyan_wool.png deleted file mode 100644 index 057a0383..00000000 Binary files a/public/textures/chipped/cubed_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_gray_carpet.png b/public/textures/chipped/cubed_gray_carpet.png deleted file mode 100644 index 12eb0396..00000000 Binary files a/public/textures/chipped/cubed_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_gray_wool.png b/public/textures/chipped/cubed_gray_wool.png deleted file mode 100644 index c9d5c843..00000000 Binary files a/public/textures/chipped/cubed_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_green_carpet.png b/public/textures/chipped/cubed_green_carpet.png deleted file mode 100644 index f2891daf..00000000 Binary files a/public/textures/chipped/cubed_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_green_wool.png b/public/textures/chipped/cubed_green_wool.png deleted file mode 100644 index 4b1ef4b1..00000000 Binary files a/public/textures/chipped/cubed_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_light_blue_carpet.png b/public/textures/chipped/cubed_light_blue_carpet.png deleted file mode 100644 index 284688ce..00000000 Binary files a/public/textures/chipped/cubed_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_light_blue_wool.png b/public/textures/chipped/cubed_light_blue_wool.png deleted file mode 100644 index 9de1bb87..00000000 Binary files a/public/textures/chipped/cubed_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_light_gray_carpet.png b/public/textures/chipped/cubed_light_gray_carpet.png deleted file mode 100644 index 5d6076ce..00000000 Binary files a/public/textures/chipped/cubed_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_light_gray_wool.png b/public/textures/chipped/cubed_light_gray_wool.png deleted file mode 100644 index 97001cff..00000000 Binary files a/public/textures/chipped/cubed_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_lime_carpet.png b/public/textures/chipped/cubed_lime_carpet.png deleted file mode 100644 index edc4499c..00000000 Binary files a/public/textures/chipped/cubed_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_lime_wool.png b/public/textures/chipped/cubed_lime_wool.png deleted file mode 100644 index 9f46bc75..00000000 Binary files a/public/textures/chipped/cubed_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_magenta_carpet.png b/public/textures/chipped/cubed_magenta_carpet.png deleted file mode 100644 index e90a0634..00000000 Binary files a/public/textures/chipped/cubed_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_magenta_wool.png b/public/textures/chipped/cubed_magenta_wool.png deleted file mode 100644 index 8c6487c9..00000000 Binary files a/public/textures/chipped/cubed_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_oak_bookshelf.png b/public/textures/chipped/cubed_oak_bookshelf.png deleted file mode 100644 index 29c8270c..00000000 Binary files a/public/textures/chipped/cubed_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/cubed_oak_empty_bookshelf.png b/public/textures/chipped/cubed_oak_empty_bookshelf.png deleted file mode 100644 index 8a7ede0b..00000000 Binary files a/public/textures/chipped/cubed_oak_empty_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/cubed_oak_spaced_bookshelf.png b/public/textures/chipped/cubed_oak_spaced_bookshelf.png deleted file mode 100644 index 429395d6..00000000 Binary files a/public/textures/chipped/cubed_oak_spaced_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/cubed_oak_webbed_bookshelf.png b/public/textures/chipped/cubed_oak_webbed_bookshelf.png deleted file mode 100644 index fd9725d5..00000000 Binary files a/public/textures/chipped/cubed_oak_webbed_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/cubed_orange_carpet.png b/public/textures/chipped/cubed_orange_carpet.png deleted file mode 100644 index 7b37ab53..00000000 Binary files a/public/textures/chipped/cubed_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_orange_wool.png b/public/textures/chipped/cubed_orange_wool.png deleted file mode 100644 index ba588c55..00000000 Binary files a/public/textures/chipped/cubed_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_pink_carpet.png b/public/textures/chipped/cubed_pink_carpet.png deleted file mode 100644 index 3ec6b38c..00000000 Binary files a/public/textures/chipped/cubed_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_pink_wool.png b/public/textures/chipped/cubed_pink_wool.png deleted file mode 100644 index a777abc1..00000000 Binary files a/public/textures/chipped/cubed_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_purple_carpet.png b/public/textures/chipped/cubed_purple_carpet.png deleted file mode 100644 index fa221585..00000000 Binary files a/public/textures/chipped/cubed_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_purple_wool.png b/public/textures/chipped/cubed_purple_wool.png deleted file mode 100644 index 01f4f444..00000000 Binary files a/public/textures/chipped/cubed_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_red_carpet.png b/public/textures/chipped/cubed_red_carpet.png deleted file mode 100644 index f9a81f08..00000000 Binary files a/public/textures/chipped/cubed_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_red_wool.png b/public/textures/chipped/cubed_red_wool.png deleted file mode 100644 index ed4201dc..00000000 Binary files a/public/textures/chipped/cubed_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_white_carpet.png b/public/textures/chipped/cubed_white_carpet.png deleted file mode 100644 index d5ba43f3..00000000 Binary files a/public/textures/chipped/cubed_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_white_wool.png b/public/textures/chipped/cubed_white_wool.png deleted file mode 100644 index 7cfe620f..00000000 Binary files a/public/textures/chipped/cubed_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/cubed_yellow_carpet.png b/public/textures/chipped/cubed_yellow_carpet.png deleted file mode 100644 index b0f80167..00000000 Binary files a/public/textures/chipped/cubed_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/cubed_yellow_wool.png b/public/textures/chipped/cubed_yellow_wool.png deleted file mode 100644 index a6d02e64..00000000 Binary files a/public/textures/chipped/cubed_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/curled_black_terracotta.png b/public/textures/chipped/curled_black_terracotta.png deleted file mode 100644 index f9650a0a..00000000 Binary files a/public/textures/chipped/curled_black_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_blue_terracotta.png b/public/textures/chipped/curled_blue_terracotta.png deleted file mode 100644 index a6cdb8f7..00000000 Binary files a/public/textures/chipped/curled_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_brown_terracotta.png b/public/textures/chipped/curled_brown_terracotta.png deleted file mode 100644 index cf629921..00000000 Binary files a/public/textures/chipped/curled_brown_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_cyan_terracotta.png b/public/textures/chipped/curled_cyan_terracotta.png deleted file mode 100644 index e4f7ddc3..00000000 Binary files a/public/textures/chipped/curled_cyan_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_gray_terracotta.png b/public/textures/chipped/curled_gray_terracotta.png deleted file mode 100644 index 35364fed..00000000 Binary files a/public/textures/chipped/curled_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_green_terracotta.png b/public/textures/chipped/curled_green_terracotta.png deleted file mode 100644 index ac1ef327..00000000 Binary files a/public/textures/chipped/curled_green_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_light_blue_terracotta.png b/public/textures/chipped/curled_light_blue_terracotta.png deleted file mode 100644 index 4f69bebb..00000000 Binary files a/public/textures/chipped/curled_light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_light_gray_terracotta.png b/public/textures/chipped/curled_light_gray_terracotta.png deleted file mode 100644 index 5931a7b0..00000000 Binary files a/public/textures/chipped/curled_light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_lime_terracotta.png b/public/textures/chipped/curled_lime_terracotta.png deleted file mode 100644 index f75d59c8..00000000 Binary files a/public/textures/chipped/curled_lime_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_magenta_terracotta.png b/public/textures/chipped/curled_magenta_terracotta.png deleted file mode 100644 index e31329d8..00000000 Binary files a/public/textures/chipped/curled_magenta_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_orange_terracotta.png b/public/textures/chipped/curled_orange_terracotta.png deleted file mode 100644 index c1544187..00000000 Binary files a/public/textures/chipped/curled_orange_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_pink_terracotta.png b/public/textures/chipped/curled_pink_terracotta.png deleted file mode 100644 index 152d30d2..00000000 Binary files a/public/textures/chipped/curled_pink_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_purple_terracotta.png b/public/textures/chipped/curled_purple_terracotta.png deleted file mode 100644 index 3b5c7522..00000000 Binary files a/public/textures/chipped/curled_purple_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_red_terracotta.png b/public/textures/chipped/curled_red_terracotta.png deleted file mode 100644 index c8254119..00000000 Binary files a/public/textures/chipped/curled_red_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_terracotta.png b/public/textures/chipped/curled_terracotta.png deleted file mode 100644 index 82626103..00000000 Binary files a/public/textures/chipped/curled_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_white_terracotta.png b/public/textures/chipped/curled_white_terracotta.png deleted file mode 100644 index 6bd1973d..00000000 Binary files a/public/textures/chipped/curled_white_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curled_yellow_terracotta.png b/public/textures/chipped/curled_yellow_terracotta.png deleted file mode 100644 index 79bbad91..00000000 Binary files a/public/textures/chipped/curled_yellow_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/curly_amethyst_block_pillar.png b/public/textures/chipped/curly_amethyst_block_pillar.png deleted file mode 100644 index 58cbfb6c..00000000 Binary files a/public/textures/chipped/curly_amethyst_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_ancient_debris_pillar.png b/public/textures/chipped/curly_ancient_debris_pillar.png deleted file mode 100644 index 2da1ca0c..00000000 Binary files a/public/textures/chipped/curly_ancient_debris_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_andesite_pillar.png b/public/textures/chipped/curly_andesite_pillar.png deleted file mode 100644 index d70ef5cd..00000000 Binary files a/public/textures/chipped/curly_andesite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_basalt_pillar.png b/public/textures/chipped/curly_basalt_pillar.png deleted file mode 100644 index 750ce56e..00000000 Binary files a/public/textures/chipped/curly_basalt_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_blackstone_pillar.png b/public/textures/chipped/curly_blackstone_pillar.png deleted file mode 100644 index 8158f4ac..00000000 Binary files a/public/textures/chipped/curly_blackstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_blue_ice_pillar.png b/public/textures/chipped/curly_blue_ice_pillar.png deleted file mode 100644 index eeda0ed3..00000000 Binary files a/public/textures/chipped/curly_blue_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_borderless_bricks_pillar.png b/public/textures/chipped/curly_borderless_bricks_pillar.png deleted file mode 100644 index 274bbc74..00000000 Binary files a/public/textures/chipped/curly_borderless_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_bricks_pillar.png b/public/textures/chipped/curly_bricks_pillar.png deleted file mode 100644 index 2762d0bb..00000000 Binary files a/public/textures/chipped/curly_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_calcite_pillar.png b/public/textures/chipped/curly_calcite_pillar.png deleted file mode 100644 index bc1e245e..00000000 Binary files a/public/textures/chipped/curly_calcite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_clay_pillar.png b/public/textures/chipped/curly_clay_pillar.png deleted file mode 100644 index 7501e697..00000000 Binary files a/public/textures/chipped/curly_clay_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_coal_block_pillar.png b/public/textures/chipped/curly_coal_block_pillar.png deleted file mode 100644 index 3f2b0b6d..00000000 Binary files a/public/textures/chipped/curly_coal_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_cobblestone_pillar.png b/public/textures/chipped/curly_cobblestone_pillar.png deleted file mode 100644 index c5f34b12..00000000 Binary files a/public/textures/chipped/curly_cobblestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_crying_obsidian_pillar.png b/public/textures/chipped/curly_crying_obsidian_pillar.png deleted file mode 100644 index ba0ca5dd..00000000 Binary files a/public/textures/chipped/curly_crying_obsidian_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_dark_prismarine_pillar.png b/public/textures/chipped/curly_dark_prismarine_pillar.png deleted file mode 100644 index 6919011c..00000000 Binary files a/public/textures/chipped/curly_dark_prismarine_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_deepslate_pillar.png b/public/textures/chipped/curly_deepslate_pillar.png deleted file mode 100644 index 46899cd9..00000000 Binary files a/public/textures/chipped/curly_deepslate_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_diorite_pillar.png b/public/textures/chipped/curly_diorite_pillar.png deleted file mode 100644 index 441ebb30..00000000 Binary files a/public/textures/chipped/curly_diorite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_dirt_pillar.png b/public/textures/chipped/curly_dirt_pillar.png deleted file mode 100644 index 5baaca31..00000000 Binary files a/public/textures/chipped/curly_dirt_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_dripstone_block_pillar.png b/public/textures/chipped/curly_dripstone_block_pillar.png deleted file mode 100644 index 25ae33aa..00000000 Binary files a/public/textures/chipped/curly_dripstone_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_end_stone_pillar.png b/public/textures/chipped/curly_end_stone_pillar.png deleted file mode 100644 index a3972f53..00000000 Binary files a/public/textures/chipped/curly_end_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_gilded_blackstone_pillar.png b/public/textures/chipped/curly_gilded_blackstone_pillar.png deleted file mode 100644 index 1ce12971..00000000 Binary files a/public/textures/chipped/curly_gilded_blackstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_granite_pillar.png b/public/textures/chipped/curly_granite_pillar.png deleted file mode 100644 index baa50be2..00000000 Binary files a/public/textures/chipped/curly_granite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_ice_pillar.png b/public/textures/chipped/curly_ice_pillar.png deleted file mode 100644 index 153cb5e5..00000000 Binary files a/public/textures/chipped/curly_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_lapis_block_pillar.png b/public/textures/chipped/curly_lapis_block_pillar.png deleted file mode 100644 index 3d8f3f9c..00000000 Binary files a/public/textures/chipped/curly_lapis_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_lodestone_pillar.png b/public/textures/chipped/curly_lodestone_pillar.png deleted file mode 100644 index f93bbce7..00000000 Binary files a/public/textures/chipped/curly_lodestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_magma_block_pillar.png b/public/textures/chipped/curly_magma_block_pillar.png deleted file mode 100644 index 7fbde798..00000000 Binary files a/public/textures/chipped/curly_magma_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_mossy_cobblestone_pillar.png b/public/textures/chipped/curly_mossy_cobblestone_pillar.png deleted file mode 100644 index b68f3703..00000000 Binary files a/public/textures/chipped/curly_mossy_cobblestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_mossy_stone_bricks_pillar.png b/public/textures/chipped/curly_mossy_stone_bricks_pillar.png deleted file mode 100644 index a332cbdb..00000000 Binary files a/public/textures/chipped/curly_mossy_stone_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_mud_bricks_pillar.png b/public/textures/chipped/curly_mud_bricks_pillar.png deleted file mode 100644 index b1957f36..00000000 Binary files a/public/textures/chipped/curly_mud_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_mud_pillar.png b/public/textures/chipped/curly_mud_pillar.png deleted file mode 100644 index 30f715c2..00000000 Binary files a/public/textures/chipped/curly_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_nether_bricks_pillar.png b/public/textures/chipped/curly_nether_bricks_pillar.png deleted file mode 100644 index 70ecd2bd..00000000 Binary files a/public/textures/chipped/curly_nether_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_netherrack_pillar.png b/public/textures/chipped/curly_netherrack_pillar.png deleted file mode 100644 index a8978d8b..00000000 Binary files a/public/textures/chipped/curly_netherrack_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_obsidian_pillar.png b/public/textures/chipped/curly_obsidian_pillar.png deleted file mode 100644 index 96f072cd..00000000 Binary files a/public/textures/chipped/curly_obsidian_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_packed_ice_pillar.png b/public/textures/chipped/curly_packed_ice_pillar.png deleted file mode 100644 index 242379f4..00000000 Binary files a/public/textures/chipped/curly_packed_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_packed_mud_pillar.png b/public/textures/chipped/curly_packed_mud_pillar.png deleted file mode 100644 index 642d5948..00000000 Binary files a/public/textures/chipped/curly_packed_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_prismarine_pillar.png b/public/textures/chipped/curly_prismarine_pillar.png deleted file mode 100644 index ee8cf2e2..00000000 Binary files a/public/textures/chipped/curly_prismarine_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_purpur_block_pillar.png b/public/textures/chipped/curly_purpur_block_pillar.png deleted file mode 100644 index 1b16d4b6..00000000 Binary files a/public/textures/chipped/curly_purpur_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_quartz_block_pillar.png b/public/textures/chipped/curly_quartz_block_pillar.png deleted file mode 100644 index 984d1762..00000000 Binary files a/public/textures/chipped/curly_quartz_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_raw_copper_block_pillar.png b/public/textures/chipped/curly_raw_copper_block_pillar.png deleted file mode 100644 index 1807f501..00000000 Binary files a/public/textures/chipped/curly_raw_copper_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_raw_gold_block_pillar.png b/public/textures/chipped/curly_raw_gold_block_pillar.png deleted file mode 100644 index 8b655cb7..00000000 Binary files a/public/textures/chipped/curly_raw_gold_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_raw_iron_block_pillar.png b/public/textures/chipped/curly_raw_iron_block_pillar.png deleted file mode 100644 index f191ab97..00000000 Binary files a/public/textures/chipped/curly_raw_iron_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_red_nether_bricks_pillar.png b/public/textures/chipped/curly_red_nether_bricks_pillar.png deleted file mode 100644 index 1baa127b..00000000 Binary files a/public/textures/chipped/curly_red_nether_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_red_sandstone_pillar.png b/public/textures/chipped/curly_red_sandstone_pillar.png deleted file mode 100644 index 25245a95..00000000 Binary files a/public/textures/chipped/curly_red_sandstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_redstone_block_pillar.png b/public/textures/chipped/curly_redstone_block_pillar.png deleted file mode 100644 index df037c03..00000000 Binary files a/public/textures/chipped/curly_redstone_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_sandstone_pillar.png b/public/textures/chipped/curly_sandstone_pillar.png deleted file mode 100644 index 727ff6b3..00000000 Binary files a/public/textures/chipped/curly_sandstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_smooth_stone_pillar.png b/public/textures/chipped/curly_smooth_stone_pillar.png deleted file mode 100644 index 61658ff6..00000000 Binary files a/public/textures/chipped/curly_smooth_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_snow_block_pillar.png b/public/textures/chipped/curly_snow_block_pillar.png deleted file mode 100644 index a8b57488..00000000 Binary files a/public/textures/chipped/curly_snow_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_stone_pillar.png b/public/textures/chipped/curly_stone_pillar.png deleted file mode 100644 index db1387ac..00000000 Binary files a/public/textures/chipped/curly_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curly_tuff_pillar.png b/public/textures/chipped/curly_tuff_pillar.png deleted file mode 100644 index edb69ad4..00000000 Binary files a/public/textures/chipped/curly_tuff_pillar.png and /dev/null differ diff --git a/public/textures/chipped/curvy_bookshelf.png b/public/textures/chipped/curvy_bookshelf.png deleted file mode 100644 index 745e2711..00000000 Binary files a/public/textures/chipped/curvy_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/cut_amethyst_block_column.png b/public/textures/chipped/cut_amethyst_block_column.png deleted file mode 100644 index 17a1850c..00000000 Binary files a/public/textures/chipped/cut_amethyst_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_ancient_debris_column.png b/public/textures/chipped/cut_ancient_debris_column.png deleted file mode 100644 index 57e35de4..00000000 Binary files a/public/textures/chipped/cut_ancient_debris_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_andesite_column.png b/public/textures/chipped/cut_andesite_column.png deleted file mode 100644 index 52fed0b0..00000000 Binary files a/public/textures/chipped/cut_andesite_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_basalt_column.png b/public/textures/chipped/cut_basalt_column.png deleted file mode 100644 index 33fa91e4..00000000 Binary files a/public/textures/chipped/cut_basalt_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_black_terracotta.png b/public/textures/chipped/cut_black_terracotta.png deleted file mode 100644 index 86861708..00000000 Binary files a/public/textures/chipped/cut_black_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_blackstone_column.png b/public/textures/chipped/cut_blackstone_column.png deleted file mode 100644 index 0bd21387..00000000 Binary files a/public/textures/chipped/cut_blackstone_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_amethyst_block.png b/public/textures/chipped/cut_blank_amethyst_block.png deleted file mode 100644 index f69be377..00000000 Binary files a/public/textures/chipped/cut_blank_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_ancient_debris.png b/public/textures/chipped/cut_blank_ancient_debris.png deleted file mode 100644 index 475af926..00000000 Binary files a/public/textures/chipped/cut_blank_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_andesite.png b/public/textures/chipped/cut_blank_andesite.png deleted file mode 100644 index 68abc05e..00000000 Binary files a/public/textures/chipped/cut_blank_andesite.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_basalt.png b/public/textures/chipped/cut_blank_basalt.png deleted file mode 100644 index 85a497df..00000000 Binary files a/public/textures/chipped/cut_blank_basalt.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_blackstone.png b/public/textures/chipped/cut_blank_blackstone.png deleted file mode 100644 index e8f2603d..00000000 Binary files a/public/textures/chipped/cut_blank_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_blue_ice.png b/public/textures/chipped/cut_blank_blue_ice.png deleted file mode 100644 index 245272f4..00000000 Binary files a/public/textures/chipped/cut_blank_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_borderless_bricks.png b/public/textures/chipped/cut_blank_borderless_bricks.png deleted file mode 100644 index a8b7f825..00000000 Binary files a/public/textures/chipped/cut_blank_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_bricks.png b/public/textures/chipped/cut_blank_bricks.png deleted file mode 100644 index 32fe0235..00000000 Binary files a/public/textures/chipped/cut_blank_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_calcite.png b/public/textures/chipped/cut_blank_calcite.png deleted file mode 100644 index c45a6d14..00000000 Binary files a/public/textures/chipped/cut_blank_calcite.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_clay.png b/public/textures/chipped/cut_blank_clay.png deleted file mode 100644 index 530e88f4..00000000 Binary files a/public/textures/chipped/cut_blank_clay.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_coal_block.png b/public/textures/chipped/cut_blank_coal_block.png deleted file mode 100644 index 997bd897..00000000 Binary files a/public/textures/chipped/cut_blank_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_cobblestone.png b/public/textures/chipped/cut_blank_cobblestone.png deleted file mode 100644 index f77e5a8c..00000000 Binary files a/public/textures/chipped/cut_blank_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_crying_obsidian.png b/public/textures/chipped/cut_blank_crying_obsidian.png deleted file mode 100644 index fbca081d..00000000 Binary files a/public/textures/chipped/cut_blank_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_dark_prismarine.png b/public/textures/chipped/cut_blank_dark_prismarine.png deleted file mode 100644 index 2b1883ec..00000000 Binary files a/public/textures/chipped/cut_blank_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_deepslate.png b/public/textures/chipped/cut_blank_deepslate.png deleted file mode 100644 index 78813f8a..00000000 Binary files a/public/textures/chipped/cut_blank_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_diorite.png b/public/textures/chipped/cut_blank_diorite.png deleted file mode 100644 index 3ad2c147..00000000 Binary files a/public/textures/chipped/cut_blank_diorite.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_dirt.png b/public/textures/chipped/cut_blank_dirt.png deleted file mode 100644 index 03f9cbea..00000000 Binary files a/public/textures/chipped/cut_blank_dirt.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_dripstone_block.png b/public/textures/chipped/cut_blank_dripstone_block.png deleted file mode 100644 index 73ee5268..00000000 Binary files a/public/textures/chipped/cut_blank_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_end_stone.png b/public/textures/chipped/cut_blank_end_stone.png deleted file mode 100644 index 51d0387f..00000000 Binary files a/public/textures/chipped/cut_blank_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_gilded_blackstone.png b/public/textures/chipped/cut_blank_gilded_blackstone.png deleted file mode 100644 index 0d80961e..00000000 Binary files a/public/textures/chipped/cut_blank_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_granite.png b/public/textures/chipped/cut_blank_granite.png deleted file mode 100644 index 351f2718..00000000 Binary files a/public/textures/chipped/cut_blank_granite.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_ice.png b/public/textures/chipped/cut_blank_ice.png deleted file mode 100644 index b7dcd71b..00000000 Binary files a/public/textures/chipped/cut_blank_ice.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_lapis_block.png b/public/textures/chipped/cut_blank_lapis_block.png deleted file mode 100644 index 4264ea5b..00000000 Binary files a/public/textures/chipped/cut_blank_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_lodestone.png b/public/textures/chipped/cut_blank_lodestone.png deleted file mode 100644 index 8074f958..00000000 Binary files a/public/textures/chipped/cut_blank_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_magma_block.png b/public/textures/chipped/cut_blank_magma_block.png deleted file mode 100644 index a9e32181..00000000 Binary files a/public/textures/chipped/cut_blank_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_mossy_cobblestone.png b/public/textures/chipped/cut_blank_mossy_cobblestone.png deleted file mode 100644 index b652c712..00000000 Binary files a/public/textures/chipped/cut_blank_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_mossy_stone_bricks.png b/public/textures/chipped/cut_blank_mossy_stone_bricks.png deleted file mode 100644 index 9642016c..00000000 Binary files a/public/textures/chipped/cut_blank_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_mud.png b/public/textures/chipped/cut_blank_mud.png deleted file mode 100644 index 711a4a27..00000000 Binary files a/public/textures/chipped/cut_blank_mud.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_mud_bricks.png b/public/textures/chipped/cut_blank_mud_bricks.png deleted file mode 100644 index 6b5ca0ac..00000000 Binary files a/public/textures/chipped/cut_blank_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_nether_bricks.png b/public/textures/chipped/cut_blank_nether_bricks.png deleted file mode 100644 index 04aa94c6..00000000 Binary files a/public/textures/chipped/cut_blank_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_netherrack.png b/public/textures/chipped/cut_blank_netherrack.png deleted file mode 100644 index 92aa8594..00000000 Binary files a/public/textures/chipped/cut_blank_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_obsidian.png b/public/textures/chipped/cut_blank_obsidian.png deleted file mode 100644 index 24f5bbf6..00000000 Binary files a/public/textures/chipped/cut_blank_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_packed_ice.png b/public/textures/chipped/cut_blank_packed_ice.png deleted file mode 100644 index d4e27050..00000000 Binary files a/public/textures/chipped/cut_blank_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_packed_mud.png b/public/textures/chipped/cut_blank_packed_mud.png deleted file mode 100644 index 13c0bcd8..00000000 Binary files a/public/textures/chipped/cut_blank_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_prismarine.png b/public/textures/chipped/cut_blank_prismarine.png deleted file mode 100644 index b672c04a..00000000 Binary files a/public/textures/chipped/cut_blank_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_purpur_block.png b/public/textures/chipped/cut_blank_purpur_block.png deleted file mode 100644 index 49067720..00000000 Binary files a/public/textures/chipped/cut_blank_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_quartz_block.png b/public/textures/chipped/cut_blank_quartz_block.png deleted file mode 100644 index b77c28ef..00000000 Binary files a/public/textures/chipped/cut_blank_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_raw_copper_block.png b/public/textures/chipped/cut_blank_raw_copper_block.png deleted file mode 100644 index 876758ce..00000000 Binary files a/public/textures/chipped/cut_blank_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_raw_gold_block.png b/public/textures/chipped/cut_blank_raw_gold_block.png deleted file mode 100644 index 0baac7f5..00000000 Binary files a/public/textures/chipped/cut_blank_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_raw_iron_block.png b/public/textures/chipped/cut_blank_raw_iron_block.png deleted file mode 100644 index dff27c58..00000000 Binary files a/public/textures/chipped/cut_blank_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_red_nether_bricks.png b/public/textures/chipped/cut_blank_red_nether_bricks.png deleted file mode 100644 index e3565492..00000000 Binary files a/public/textures/chipped/cut_blank_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_red_sandstone.png b/public/textures/chipped/cut_blank_red_sandstone.png deleted file mode 100644 index 714d564e..00000000 Binary files a/public/textures/chipped/cut_blank_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_redstone_block.png b/public/textures/chipped/cut_blank_redstone_block.png deleted file mode 100644 index a2ff074d..00000000 Binary files a/public/textures/chipped/cut_blank_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_sandstone.png b/public/textures/chipped/cut_blank_sandstone.png deleted file mode 100644 index 5d450ad4..00000000 Binary files a/public/textures/chipped/cut_blank_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_smooth_stone.png b/public/textures/chipped/cut_blank_smooth_stone.png deleted file mode 100644 index bd02521c..00000000 Binary files a/public/textures/chipped/cut_blank_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_snow_block.png b/public/textures/chipped/cut_blank_snow_block.png deleted file mode 100644 index 94f410c2..00000000 Binary files a/public/textures/chipped/cut_blank_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_stone.png b/public/textures/chipped/cut_blank_stone.png deleted file mode 100644 index eb07efc6..00000000 Binary files a/public/textures/chipped/cut_blank_stone.png and /dev/null differ diff --git a/public/textures/chipped/cut_blank_tuff.png b/public/textures/chipped/cut_blank_tuff.png deleted file mode 100644 index 868f3159..00000000 Binary files a/public/textures/chipped/cut_blank_tuff.png and /dev/null differ diff --git a/public/textures/chipped/cut_blue_ice_column.png b/public/textures/chipped/cut_blue_ice_column.png deleted file mode 100644 index ddb05829..00000000 Binary files a/public/textures/chipped/cut_blue_ice_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_blue_terracotta.png b/public/textures/chipped/cut_blue_terracotta.png deleted file mode 100644 index 6072c2df..00000000 Binary files a/public/textures/chipped/cut_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_borderless_bricks_column.png b/public/textures/chipped/cut_borderless_bricks_column.png deleted file mode 100644 index 693c8fdf..00000000 Binary files a/public/textures/chipped/cut_borderless_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_bricks_column.png b/public/textures/chipped/cut_bricks_column.png deleted file mode 100644 index 8897cd71..00000000 Binary files a/public/textures/chipped/cut_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_brown_terracotta.png b/public/textures/chipped/cut_brown_terracotta.png deleted file mode 100644 index f719a6d4..00000000 Binary files a/public/textures/chipped/cut_brown_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_calcite_column.png b/public/textures/chipped/cut_calcite_column.png deleted file mode 100644 index cc00a291..00000000 Binary files a/public/textures/chipped/cut_calcite_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_clay_column.png b/public/textures/chipped/cut_clay_column.png deleted file mode 100644 index c1324c87..00000000 Binary files a/public/textures/chipped/cut_clay_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_coal_block_column.png b/public/textures/chipped/cut_coal_block_column.png deleted file mode 100644 index 389c4e97..00000000 Binary files a/public/textures/chipped/cut_coal_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_cobblestone_column.png b/public/textures/chipped/cut_cobblestone_column.png deleted file mode 100644 index cc0e1658..00000000 Binary files a/public/textures/chipped/cut_cobblestone_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_crying_obsidian_column.png b/public/textures/chipped/cut_crying_obsidian_column.png deleted file mode 100644 index 807eaf35..00000000 Binary files a/public/textures/chipped/cut_crying_obsidian_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_cyan_terracotta.png b/public/textures/chipped/cut_cyan_terracotta.png deleted file mode 100644 index 93753e94..00000000 Binary files a/public/textures/chipped/cut_cyan_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_dark_prismarine_column.png b/public/textures/chipped/cut_dark_prismarine_column.png deleted file mode 100644 index fc98e22e..00000000 Binary files a/public/textures/chipped/cut_dark_prismarine_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_deepslate_column.png b/public/textures/chipped/cut_deepslate_column.png deleted file mode 100644 index dc3676b1..00000000 Binary files a/public/textures/chipped/cut_deepslate_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_diorite_column.png b/public/textures/chipped/cut_diorite_column.png deleted file mode 100644 index ca80f5c8..00000000 Binary files a/public/textures/chipped/cut_diorite_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_dirt_column.png b/public/textures/chipped/cut_dirt_column.png deleted file mode 100644 index 1bd2d252..00000000 Binary files a/public/textures/chipped/cut_dirt_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_dripstone_block_column.png b/public/textures/chipped/cut_dripstone_block_column.png deleted file mode 100644 index a9c4811c..00000000 Binary files a/public/textures/chipped/cut_dripstone_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_end_stone_column.png b/public/textures/chipped/cut_end_stone_column.png deleted file mode 100644 index 74d77853..00000000 Binary files a/public/textures/chipped/cut_end_stone_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_gilded_blackstone_column.png b/public/textures/chipped/cut_gilded_blackstone_column.png deleted file mode 100644 index 09e702da..00000000 Binary files a/public/textures/chipped/cut_gilded_blackstone_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_granite_column.png b/public/textures/chipped/cut_granite_column.png deleted file mode 100644 index f70a3065..00000000 Binary files a/public/textures/chipped/cut_granite_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_gray_terracotta.png b/public/textures/chipped/cut_gray_terracotta.png deleted file mode 100644 index 7345e808..00000000 Binary files a/public/textures/chipped/cut_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_green_terracotta.png b/public/textures/chipped/cut_green_terracotta.png deleted file mode 100644 index 722d3c30..00000000 Binary files a/public/textures/chipped/cut_green_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_ice_column.png b/public/textures/chipped/cut_ice_column.png deleted file mode 100644 index 47967249..00000000 Binary files a/public/textures/chipped/cut_ice_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_lapis_block_column.png b/public/textures/chipped/cut_lapis_block_column.png deleted file mode 100644 index d2cce1d7..00000000 Binary files a/public/textures/chipped/cut_lapis_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_light_blue_terracotta.png b/public/textures/chipped/cut_light_blue_terracotta.png deleted file mode 100644 index 8548fd5c..00000000 Binary files a/public/textures/chipped/cut_light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_light_gray_terracotta.png b/public/textures/chipped/cut_light_gray_terracotta.png deleted file mode 100644 index c86b6a4b..00000000 Binary files a/public/textures/chipped/cut_light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_lime_terracotta.png b/public/textures/chipped/cut_lime_terracotta.png deleted file mode 100644 index cc4b18ed..00000000 Binary files a/public/textures/chipped/cut_lime_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_lodestone_column.png b/public/textures/chipped/cut_lodestone_column.png deleted file mode 100644 index a1e33159..00000000 Binary files a/public/textures/chipped/cut_lodestone_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_magenta_terracotta.png b/public/textures/chipped/cut_magenta_terracotta.png deleted file mode 100644 index 0a10e63b..00000000 Binary files a/public/textures/chipped/cut_magenta_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_magma_block_column.png b/public/textures/chipped/cut_magma_block_column.png deleted file mode 100644 index 7baa16ef..00000000 Binary files a/public/textures/chipped/cut_magma_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_mangrove_planks.png b/public/textures/chipped/cut_mangrove_planks.png deleted file mode 100644 index b8dcd4ff..00000000 Binary files a/public/textures/chipped/cut_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/cut_mossy_cobblestone_column.png b/public/textures/chipped/cut_mossy_cobblestone_column.png deleted file mode 100644 index c0242401..00000000 Binary files a/public/textures/chipped/cut_mossy_cobblestone_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_mossy_stone_bricks_column.png b/public/textures/chipped/cut_mossy_stone_bricks_column.png deleted file mode 100644 index c9609ee5..00000000 Binary files a/public/textures/chipped/cut_mossy_stone_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_nether_bricks_column.png b/public/textures/chipped/cut_nether_bricks_column.png deleted file mode 100644 index 0fb8d507..00000000 Binary files a/public/textures/chipped/cut_nether_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_netherrack_column.png b/public/textures/chipped/cut_netherrack_column.png deleted file mode 100644 index 59bf592c..00000000 Binary files a/public/textures/chipped/cut_netherrack_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_obsidian_column.png b/public/textures/chipped/cut_obsidian_column.png deleted file mode 100644 index 49a06924..00000000 Binary files a/public/textures/chipped/cut_obsidian_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_orange_terracotta.png b/public/textures/chipped/cut_orange_terracotta.png deleted file mode 100644 index 2627b591..00000000 Binary files a/public/textures/chipped/cut_orange_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_packed_ice_column.png b/public/textures/chipped/cut_packed_ice_column.png deleted file mode 100644 index fbacef80..00000000 Binary files a/public/textures/chipped/cut_packed_ice_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_pink_terracotta.png b/public/textures/chipped/cut_pink_terracotta.png deleted file mode 100644 index 78c411e4..00000000 Binary files a/public/textures/chipped/cut_pink_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_prismarine_column.png b/public/textures/chipped/cut_prismarine_column.png deleted file mode 100644 index a8c95279..00000000 Binary files a/public/textures/chipped/cut_prismarine_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_purple_terracotta.png b/public/textures/chipped/cut_purple_terracotta.png deleted file mode 100644 index 949691c1..00000000 Binary files a/public/textures/chipped/cut_purple_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_purpur_block_column.png b/public/textures/chipped/cut_purpur_block_column.png deleted file mode 100644 index af86010b..00000000 Binary files a/public/textures/chipped/cut_purpur_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_quartz_block_column.png b/public/textures/chipped/cut_quartz_block_column.png deleted file mode 100644 index 3c82f38f..00000000 Binary files a/public/textures/chipped/cut_quartz_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_raw_copper_block_column.png b/public/textures/chipped/cut_raw_copper_block_column.png deleted file mode 100644 index 9a14a548..00000000 Binary files a/public/textures/chipped/cut_raw_copper_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_raw_gold_block_column.png b/public/textures/chipped/cut_raw_gold_block_column.png deleted file mode 100644 index 21a94e11..00000000 Binary files a/public/textures/chipped/cut_raw_gold_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_raw_iron_block_column.png b/public/textures/chipped/cut_raw_iron_block_column.png deleted file mode 100644 index 71f2c3d6..00000000 Binary files a/public/textures/chipped/cut_raw_iron_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_red_nether_bricks_column.png b/public/textures/chipped/cut_red_nether_bricks_column.png deleted file mode 100644 index 5f5a23af..00000000 Binary files a/public/textures/chipped/cut_red_nether_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_red_sandstone_column.png b/public/textures/chipped/cut_red_sandstone_column.png deleted file mode 100644 index e4ce36cb..00000000 Binary files a/public/textures/chipped/cut_red_sandstone_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_red_terracotta.png b/public/textures/chipped/cut_red_terracotta.png deleted file mode 100644 index 735777fd..00000000 Binary files a/public/textures/chipped/cut_red_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_redstone_block_column.png b/public/textures/chipped/cut_redstone_block_column.png deleted file mode 100644 index 204c4b3e..00000000 Binary files a/public/textures/chipped/cut_redstone_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_sandstone_column.png b/public/textures/chipped/cut_sandstone_column.png deleted file mode 100644 index 5840871a..00000000 Binary files a/public/textures/chipped/cut_sandstone_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_smooth_stone_column.png b/public/textures/chipped/cut_smooth_stone_column.png deleted file mode 100644 index 93ee876b..00000000 Binary files a/public/textures/chipped/cut_smooth_stone_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_snow_block_column.png b/public/textures/chipped/cut_snow_block_column.png deleted file mode 100644 index a14c426c..00000000 Binary files a/public/textures/chipped/cut_snow_block_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_stone_column.png b/public/textures/chipped/cut_stone_column.png deleted file mode 100644 index f27f974a..00000000 Binary files a/public/textures/chipped/cut_stone_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_terracotta.png b/public/textures/chipped/cut_terracotta.png deleted file mode 100644 index 8f03c670..00000000 Binary files a/public/textures/chipped/cut_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_tuff_column.png b/public/textures/chipped/cut_tuff_column.png deleted file mode 100644 index 8c5f9ca4..00000000 Binary files a/public/textures/chipped/cut_tuff_column.png and /dev/null differ diff --git a/public/textures/chipped/cut_white_terracotta.png b/public/textures/chipped/cut_white_terracotta.png deleted file mode 100644 index 1d7f80dc..00000000 Binary files a/public/textures/chipped/cut_white_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cut_yellow_terracotta.png b/public/textures/chipped/cut_yellow_terracotta.png deleted file mode 100644 index 716ffedd..00000000 Binary files a/public/textures/chipped/cut_yellow_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/cyan_concrete_bricks.png b/public/textures/chipped/cyan_concrete_bricks.png deleted file mode 100644 index acbcea41..00000000 Binary files a/public/textures/chipped/cyan_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cyan_concrete_panel.png b/public/textures/chipped/cyan_concrete_panel.png deleted file mode 100644 index 8b4f0fc4..00000000 Binary files a/public/textures/chipped/cyan_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/cyan_concrete_pillar.png b/public/textures/chipped/cyan_concrete_pillar.png deleted file mode 100644 index 31187255..00000000 Binary files a/public/textures/chipped/cyan_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/cyan_concrete_tiles.png b/public/textures/chipped/cyan_concrete_tiles.png deleted file mode 100644 index 293a2119..00000000 Binary files a/public/textures/chipped/cyan_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cyan_glazed_terracotta_pillar_sides.png b/public/textures/chipped/cyan_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 2a8e163a..00000000 Binary files a/public/textures/chipped/cyan_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/cyan_glazed_terracotta_pillar_top.png b/public/textures/chipped/cyan_glazed_terracotta_pillar_top.png deleted file mode 100644 index 2c29134b..00000000 Binary files a/public/textures/chipped/cyan_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/cyan_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/cyan_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index dbe95987..00000000 Binary files a/public/textures/chipped/cyan_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cyan_glazed_terracotta_tiles.png b/public/textures/chipped/cyan_glazed_terracotta_tiles.png deleted file mode 100644 index bd8491da..00000000 Binary files a/public/textures/chipped/cyan_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/cyan_terracotta_bricks.png b/public/textures/chipped/cyan_terracotta_bricks.png deleted file mode 100644 index 4841bac6..00000000 Binary files a/public/textures/chipped/cyan_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/cyan_terracotta_column.png b/public/textures/chipped/cyan_terracotta_column.png deleted file mode 100644 index ce459ff8..00000000 Binary files a/public/textures/chipped/cyan_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/cyan_terracotta_pillar.png b/public/textures/chipped/cyan_terracotta_pillar.png deleted file mode 100644 index f963d79b..00000000 Binary files a/public/textures/chipped/cyan_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/cyan_terracotta_tile.png b/public/textures/chipped/cyan_terracotta_tile.png deleted file mode 100644 index 0e858fc4..00000000 Binary files a/public/textures/chipped/cyan_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/cyan_terracotta_tiles.png b/public/textures/chipped/cyan_terracotta_tiles.png deleted file mode 100644 index 02f36832..00000000 Binary files a/public/textures/chipped/cyan_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/d_sign_stripped_acacia_log.png b/public/textures/chipped/d_sign_stripped_acacia_log.png deleted file mode 100644 index 38dca4f4..00000000 Binary files a/public/textures/chipped/d_sign_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/d_sign_stripped_birch_log.png b/public/textures/chipped/d_sign_stripped_birch_log.png deleted file mode 100644 index 174f25f3..00000000 Binary files a/public/textures/chipped/d_sign_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/d_sign_stripped_cherry_log.png b/public/textures/chipped/d_sign_stripped_cherry_log.png deleted file mode 100644 index d5a1d7d8..00000000 Binary files a/public/textures/chipped/d_sign_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/d_sign_stripped_crimson_stem.png b/public/textures/chipped/d_sign_stripped_crimson_stem.png deleted file mode 100644 index 4d1a46df..00000000 Binary files a/public/textures/chipped/d_sign_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/d_sign_stripped_dark_oak_log.png b/public/textures/chipped/d_sign_stripped_dark_oak_log.png deleted file mode 100644 index ecdb6d00..00000000 Binary files a/public/textures/chipped/d_sign_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/d_sign_stripped_jungle_log.png b/public/textures/chipped/d_sign_stripped_jungle_log.png deleted file mode 100644 index 23ab7d88..00000000 Binary files a/public/textures/chipped/d_sign_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/d_sign_stripped_mangrove_log.png b/public/textures/chipped/d_sign_stripped_mangrove_log.png deleted file mode 100644 index e5cc5d58..00000000 Binary files a/public/textures/chipped/d_sign_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/d_sign_stripped_oak_log.png b/public/textures/chipped/d_sign_stripped_oak_log.png deleted file mode 100644 index 9668d222..00000000 Binary files a/public/textures/chipped/d_sign_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/d_sign_stripped_spruce_log.png b/public/textures/chipped/d_sign_stripped_spruce_log.png deleted file mode 100644 index a0beb3cd..00000000 Binary files a/public/textures/chipped/d_sign_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/d_sign_stripped_warped_stem.png b/public/textures/chipped/d_sign_stripped_warped_stem.png deleted file mode 100644 index d13787eb..00000000 Binary files a/public/textures/chipped/d_sign_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/damaged_acacia_log.png b/public/textures/chipped/damaged_acacia_log.png deleted file mode 100644 index 04112fe2..00000000 Binary files a/public/textures/chipped/damaged_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/damaged_birch_log.png b/public/textures/chipped/damaged_birch_log.png deleted file mode 100644 index a71b968e..00000000 Binary files a/public/textures/chipped/damaged_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/damaged_cherry_log.png b/public/textures/chipped/damaged_cherry_log.png deleted file mode 100644 index 7078a115..00000000 Binary files a/public/textures/chipped/damaged_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/damaged_crimson_stem.png b/public/textures/chipped/damaged_crimson_stem.png deleted file mode 100644 index 3c26327f..00000000 Binary files a/public/textures/chipped/damaged_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/damaged_dark_oak_log.png b/public/textures/chipped/damaged_dark_oak_log.png deleted file mode 100644 index 1ff2f8c1..00000000 Binary files a/public/textures/chipped/damaged_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/damaged_jungle_log.png b/public/textures/chipped/damaged_jungle_log.png deleted file mode 100644 index 9a692117..00000000 Binary files a/public/textures/chipped/damaged_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/damaged_mangrove_log.png b/public/textures/chipped/damaged_mangrove_log.png deleted file mode 100644 index 17d5e01c..00000000 Binary files a/public/textures/chipped/damaged_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/damaged_oak_log.png b/public/textures/chipped/damaged_oak_log.png deleted file mode 100644 index a19cee18..00000000 Binary files a/public/textures/chipped/damaged_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/damaged_spruce_log.png b/public/textures/chipped/damaged_spruce_log.png deleted file mode 100644 index a093aa49..00000000 Binary files a/public/textures/chipped/damaged_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/damaged_warped_stem.png b/public/textures/chipped/damaged_warped_stem.png deleted file mode 100644 index d4ab4bb8..00000000 Binary files a/public/textures/chipped/damaged_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/dark_blue_paper_lantern.png b/public/textures/chipped/dark_blue_paper_lantern.png deleted file mode 100644 index 1c995905..00000000 Binary files a/public/textures/chipped/dark_blue_paper_lantern.png and /dev/null differ diff --git a/public/textures/chipped/dark_bone_block.png b/public/textures/chipped/dark_bone_block.png deleted file mode 100644 index b3451038..00000000 Binary files a/public/textures/chipped/dark_bone_block.png and /dev/null differ diff --git a/public/textures/chipped/dark_broken_lily_pad.png b/public/textures/chipped/dark_broken_lily_pad.png deleted file mode 100644 index 1bf8c3a7..00000000 Binary files a/public/textures/chipped/dark_broken_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/dark_dotted_red_mushroom_block.png b/public/textures/chipped/dark_dotted_red_mushroom_block.png deleted file mode 100644 index 59620c3c..00000000 Binary files a/public/textures/chipped/dark_dotted_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dark_dusted_brown_mushroom_block.png b/public/textures/chipped/dark_dusted_brown_mushroom_block.png deleted file mode 100644 index 3d4cfb0b..00000000 Binary files a/public/textures/chipped/dark_dusted_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dark_dusted_red_mushroom_block.png b/public/textures/chipped/dark_dusted_red_mushroom_block.png deleted file mode 100644 index 067ef944..00000000 Binary files a/public/textures/chipped/dark_dusted_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dark_flowering_lily_pad.png b/public/textures/chipped/dark_flowering_lily_pad.png deleted file mode 100644 index 02f22ab7..00000000 Binary files a/public/textures/chipped/dark_flowering_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/dark_freckled_brown_mushroom_block.png b/public/textures/chipped/dark_freckled_brown_mushroom_block.png deleted file mode 100644 index 2fea4701..00000000 Binary files a/public/textures/chipped/dark_freckled_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dark_freckled_red_mushroom_block.png b/public/textures/chipped/dark_freckled_red_mushroom_block.png deleted file mode 100644 index c165bdf9..00000000 Binary files a/public/textures/chipped/dark_freckled_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dark_large_lily_pad.png b/public/textures/chipped/dark_large_lily_pad.png deleted file mode 100644 index 7f14f504..00000000 Binary files a/public/textures/chipped/dark_large_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/dark_leaf_lily_pad.png b/public/textures/chipped/dark_leaf_lily_pad.png deleted file mode 100644 index fa8b3eb4..00000000 Binary files a/public/textures/chipped/dark_leaf_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/dark_melon.png b/public/textures/chipped/dark_melon.png deleted file mode 100644 index 34eb0799..00000000 Binary files a/public/textures/chipped/dark_melon.png and /dev/null differ diff --git a/public/textures/chipped/dark_micro_lily_pads.png b/public/textures/chipped/dark_micro_lily_pads.png deleted file mode 100644 index 7e75c914..00000000 Binary files a/public/textures/chipped/dark_micro_lily_pads.png and /dev/null differ diff --git a/public/textures/chipped/dark_oak_crate.png b/public/textures/chipped/dark_oak_crate.png deleted file mode 100644 index 57196346..00000000 Binary files a/public/textures/chipped/dark_oak_crate.png and /dev/null differ diff --git a/public/textures/chipped/dark_oak_planks_mosaic.png b/public/textures/chipped/dark_oak_planks_mosaic.png deleted file mode 100644 index f7d55c65..00000000 Binary files a/public/textures/chipped/dark_oak_planks_mosaic.png and /dev/null differ diff --git a/public/textures/chipped/dark_oak_planks_panel.png b/public/textures/chipped/dark_oak_planks_panel.png deleted file mode 100644 index 2079342f..00000000 Binary files a/public/textures/chipped/dark_oak_planks_panel.png and /dev/null differ diff --git a/public/textures/chipped/dark_oak_planks_shavings.png b/public/textures/chipped/dark_oak_planks_shavings.png deleted file mode 100644 index 1496a3ff..00000000 Binary files a/public/textures/chipped/dark_oak_planks_shavings.png and /dev/null differ diff --git a/public/textures/chipped/dark_oak_torch.png b/public/textures/chipped/dark_oak_torch.png deleted file mode 100644 index 6047051c..00000000 Binary files a/public/textures/chipped/dark_oak_torch.png and /dev/null differ diff --git a/public/textures/chipped/dark_paddle_lily_pad.png b/public/textures/chipped/dark_paddle_lily_pad.png deleted file mode 100644 index 03fa1509..00000000 Binary files a/public/textures/chipped/dark_paddle_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/dark_prismarine_bricks.png b/public/textures/chipped/dark_prismarine_bricks.png deleted file mode 100644 index d9fec05c..00000000 Binary files a/public/textures/chipped/dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/dark_prismarine_pillar.png b/public/textures/chipped/dark_prismarine_pillar.png deleted file mode 100644 index e8e06a2e..00000000 Binary files a/public/textures/chipped/dark_prismarine_pillar.png and /dev/null differ diff --git a/public/textures/chipped/dark_prismarine_pillar_top.png b/public/textures/chipped/dark_prismarine_pillar_top.png deleted file mode 100644 index df15c29b..00000000 Binary files a/public/textures/chipped/dark_prismarine_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/dark_prismarine_scales.png b/public/textures/chipped/dark_prismarine_scales.png deleted file mode 100644 index 71ee2131..00000000 Binary files a/public/textures/chipped/dark_prismarine_scales.png and /dev/null differ diff --git a/public/textures/chipped/dark_rough_lily_pad.png b/public/textures/chipped/dark_rough_lily_pad.png deleted file mode 100644 index f089474d..00000000 Binary files a/public/textures/chipped/dark_rough_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/dark_scaled_brown_mushroom_block.png b/public/textures/chipped/dark_scaled_brown_mushroom_block.png deleted file mode 100644 index 74db0999..00000000 Binary files a/public/textures/chipped/dark_scaled_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dark_smol_lily_pad.png b/public/textures/chipped/dark_smol_lily_pad.png deleted file mode 100644 index d37ef3b4..00000000 Binary files a/public/textures/chipped/dark_smol_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/dark_smooth_brown_mushroom_block.png b/public/textures/chipped/dark_smooth_brown_mushroom_block.png deleted file mode 100644 index 5d5180ec..00000000 Binary files a/public/textures/chipped/dark_smooth_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dark_smooth_lily_pad.png b/public/textures/chipped/dark_smooth_lily_pad.png deleted file mode 100644 index 196dc3be..00000000 Binary files a/public/textures/chipped/dark_smooth_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/dark_smooth_red_mushroom_block.png b/public/textures/chipped/dark_smooth_red_mushroom_block.png deleted file mode 100644 index c18962d4..00000000 Binary files a/public/textures/chipped/dark_smooth_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dark_spotted_brown_mushroom_block.png b/public/textures/chipped/dark_spotted_brown_mushroom_block.png deleted file mode 100644 index e324166c..00000000 Binary files a/public/textures/chipped/dark_spotted_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dark_spotted_red_mushroom_block.png b/public/textures/chipped/dark_spotted_red_mushroom_block.png deleted file mode 100644 index 1e5e5df3..00000000 Binary files a/public/textures/chipped/dark_spotted_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dark_sprinkled_brown_mushroom_block.png b/public/textures/chipped/dark_sprinkled_brown_mushroom_block.png deleted file mode 100644 index ac64e4a2..00000000 Binary files a/public/textures/chipped/dark_sprinkled_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dead_acacia_leaves.png b/public/textures/chipped/dead_acacia_leaves.png deleted file mode 100644 index d372b575..00000000 Binary files a/public/textures/chipped/dead_acacia_leaves.png and /dev/null differ diff --git a/public/textures/chipped/dead_birch_leaves.png b/public/textures/chipped/dead_birch_leaves.png deleted file mode 100644 index 54fa047b..00000000 Binary files a/public/textures/chipped/dead_birch_leaves.png and /dev/null differ diff --git a/public/textures/chipped/dead_dark_oak_leaves.png b/public/textures/chipped/dead_dark_oak_leaves.png deleted file mode 100644 index 16fd3724..00000000 Binary files a/public/textures/chipped/dead_dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/dead_jungle_leaves.png b/public/textures/chipped/dead_jungle_leaves.png deleted file mode 100644 index dee755cb..00000000 Binary files a/public/textures/chipped/dead_jungle_leaves.png and /dev/null differ diff --git a/public/textures/chipped/dead_oak_leaves.png b/public/textures/chipped/dead_oak_leaves.png deleted file mode 100644 index 16fd3724..00000000 Binary files a/public/textures/chipped/dead_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/dead_spruce_leaves.png b/public/textures/chipped/dead_spruce_leaves.png deleted file mode 100644 index c05ad28d..00000000 Binary files a/public/textures/chipped/dead_spruce_leaves.png and /dev/null differ diff --git a/public/textures/chipped/decorated_black_glazed_terracotta.png b/public/textures/chipped/decorated_black_glazed_terracotta.png deleted file mode 100644 index aa0a9138..00000000 Binary files a/public/textures/chipped/decorated_black_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_black_terracotta.png b/public/textures/chipped/decorated_black_terracotta.png deleted file mode 100644 index 10c89603..00000000 Binary files a/public/textures/chipped/decorated_black_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_blue_glazed_terracotta.png b/public/textures/chipped/decorated_blue_glazed_terracotta.png deleted file mode 100644 index f96c2f88..00000000 Binary files a/public/textures/chipped/decorated_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_blue_terracotta.png b/public/textures/chipped/decorated_blue_terracotta.png deleted file mode 100644 index adeb45c3..00000000 Binary files a/public/textures/chipped/decorated_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_brown_glazed_terracotta.png b/public/textures/chipped/decorated_brown_glazed_terracotta.png deleted file mode 100644 index 1dbd1775..00000000 Binary files a/public/textures/chipped/decorated_brown_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_brown_terracotta.png b/public/textures/chipped/decorated_brown_terracotta.png deleted file mode 100644 index fb84f774..00000000 Binary files a/public/textures/chipped/decorated_brown_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_cyan_glazed_terracotta.png b/public/textures/chipped/decorated_cyan_glazed_terracotta.png deleted file mode 100644 index 2616af05..00000000 Binary files a/public/textures/chipped/decorated_cyan_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_cyan_terracotta.png b/public/textures/chipped/decorated_cyan_terracotta.png deleted file mode 100644 index 309dabd9..00000000 Binary files a/public/textures/chipped/decorated_cyan_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_gray_glazed_terracotta.png b/public/textures/chipped/decorated_gray_glazed_terracotta.png deleted file mode 100644 index 47f96df6..00000000 Binary files a/public/textures/chipped/decorated_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_gray_terracotta.png b/public/textures/chipped/decorated_gray_terracotta.png deleted file mode 100644 index 533280bb..00000000 Binary files a/public/textures/chipped/decorated_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_green_glazed_terracotta.png b/public/textures/chipped/decorated_green_glazed_terracotta.png deleted file mode 100644 index 3481acca..00000000 Binary files a/public/textures/chipped/decorated_green_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_green_terracotta.png b/public/textures/chipped/decorated_green_terracotta.png deleted file mode 100644 index bf22f458..00000000 Binary files a/public/textures/chipped/decorated_green_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_light_blue_glazed_terracotta.png b/public/textures/chipped/decorated_light_blue_glazed_terracotta.png deleted file mode 100644 index 36b0b46f..00000000 Binary files a/public/textures/chipped/decorated_light_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_light_blue_terracotta.png b/public/textures/chipped/decorated_light_blue_terracotta.png deleted file mode 100644 index a3d25820..00000000 Binary files a/public/textures/chipped/decorated_light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_light_gray_glazed_terracotta.png b/public/textures/chipped/decorated_light_gray_glazed_terracotta.png deleted file mode 100644 index 3c68d21b..00000000 Binary files a/public/textures/chipped/decorated_light_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_light_gray_terracotta.png b/public/textures/chipped/decorated_light_gray_terracotta.png deleted file mode 100644 index ea9e6c3a..00000000 Binary files a/public/textures/chipped/decorated_light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_lime_glazed_terracotta.png b/public/textures/chipped/decorated_lime_glazed_terracotta.png deleted file mode 100644 index b946a1bf..00000000 Binary files a/public/textures/chipped/decorated_lime_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_lime_terracotta.png b/public/textures/chipped/decorated_lime_terracotta.png deleted file mode 100644 index 3d8fc2f0..00000000 Binary files a/public/textures/chipped/decorated_lime_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_magenta_glazed_terracotta.png b/public/textures/chipped/decorated_magenta_glazed_terracotta.png deleted file mode 100644 index 7c5392a5..00000000 Binary files a/public/textures/chipped/decorated_magenta_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_magenta_terracotta.png b/public/textures/chipped/decorated_magenta_terracotta.png deleted file mode 100644 index fe0b5a61..00000000 Binary files a/public/textures/chipped/decorated_magenta_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_orange_glazed_terracotta.png b/public/textures/chipped/decorated_orange_glazed_terracotta.png deleted file mode 100644 index 76301d8a..00000000 Binary files a/public/textures/chipped/decorated_orange_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_orange_terracotta.png b/public/textures/chipped/decorated_orange_terracotta.png deleted file mode 100644 index 28e8aecf..00000000 Binary files a/public/textures/chipped/decorated_orange_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_pink_glazed_terracotta.png b/public/textures/chipped/decorated_pink_glazed_terracotta.png deleted file mode 100644 index 1f3077d5..00000000 Binary files a/public/textures/chipped/decorated_pink_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_pink_terracotta.png b/public/textures/chipped/decorated_pink_terracotta.png deleted file mode 100644 index 69111e9e..00000000 Binary files a/public/textures/chipped/decorated_pink_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_purple_glazed_terracotta.png b/public/textures/chipped/decorated_purple_glazed_terracotta.png deleted file mode 100644 index 35d185d0..00000000 Binary files a/public/textures/chipped/decorated_purple_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_purple_terracotta.png b/public/textures/chipped/decorated_purple_terracotta.png deleted file mode 100644 index 74cb0c63..00000000 Binary files a/public/textures/chipped/decorated_purple_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_red_glazed_terracotta.png b/public/textures/chipped/decorated_red_glazed_terracotta.png deleted file mode 100644 index 23df2c95..00000000 Binary files a/public/textures/chipped/decorated_red_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_red_terracotta.png b/public/textures/chipped/decorated_red_terracotta.png deleted file mode 100644 index 0ba599fc..00000000 Binary files a/public/textures/chipped/decorated_red_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_terracotta.png b/public/textures/chipped/decorated_terracotta.png deleted file mode 100644 index 6a20c77b..00000000 Binary files a/public/textures/chipped/decorated_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_white_glazed_terracotta.png b/public/textures/chipped/decorated_white_glazed_terracotta.png deleted file mode 100644 index 530a2f4c..00000000 Binary files a/public/textures/chipped/decorated_white_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_white_terracotta.png b/public/textures/chipped/decorated_white_terracotta.png deleted file mode 100644 index 87dfade0..00000000 Binary files a/public/textures/chipped/decorated_white_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_yellow_glazed_terracotta.png b/public/textures/chipped/decorated_yellow_glazed_terracotta.png deleted file mode 100644 index 0729ad03..00000000 Binary files a/public/textures/chipped/decorated_yellow_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/decorated_yellow_terracotta.png b/public/textures/chipped/decorated_yellow_terracotta.png deleted file mode 100644 index 0f9c214d..00000000 Binary files a/public/textures/chipped/decorated_yellow_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/deepslate_mini_tiles.png b/public/textures/chipped/deepslate_mini_tiles.png deleted file mode 100644 index bb6e7195..00000000 Binary files a/public/textures/chipped/deepslate_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/deepslate_pillar.png b/public/textures/chipped/deepslate_pillar.png deleted file mode 100644 index 9403d9c7..00000000 Binary files a/public/textures/chipped/deepslate_pillar.png and /dev/null differ diff --git a/public/textures/chipped/deepslate_pillar_top.png b/public/textures/chipped/deepslate_pillar_top.png deleted file mode 100644 index 211795ef..00000000 Binary files a/public/textures/chipped/deepslate_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/deepslate_pointed_dripstone.png b/public/textures/chipped/deepslate_pointed_dripstone.png deleted file mode 100644 index 88a0ba54..00000000 Binary files a/public/textures/chipped/deepslate_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/deepslate_scales.png b/public/textures/chipped/deepslate_scales.png deleted file mode 100644 index 20b4ee34..00000000 Binary files a/public/textures/chipped/deepslate_scales.png and /dev/null differ diff --git a/public/textures/chipped/dense_cobweb.png b/public/textures/chipped/dense_cobweb.png deleted file mode 100644 index 845834e4..00000000 Binary files a/public/textures/chipped/dense_cobweb.png and /dev/null differ diff --git a/public/textures/chipped/desert_sand.png b/public/textures/chipped/desert_sand.png deleted file mode 100644 index 1364fc8b..00000000 Binary files a/public/textures/chipped/desert_sand.png and /dev/null differ diff --git a/public/textures/chipped/detailed_acacia_planks.png b/public/textures/chipped/detailed_acacia_planks.png deleted file mode 100644 index 3b2600f0..00000000 Binary files a/public/textures/chipped/detailed_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/detailed_bamboo_planks.png b/public/textures/chipped/detailed_bamboo_planks.png deleted file mode 100644 index 48e294e9..00000000 Binary files a/public/textures/chipped/detailed_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/detailed_birch_planks.png b/public/textures/chipped/detailed_birch_planks.png deleted file mode 100644 index a3a12440..00000000 Binary files a/public/textures/chipped/detailed_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/detailed_cherry_planks.png b/public/textures/chipped/detailed_cherry_planks.png deleted file mode 100644 index ae50ee4f..00000000 Binary files a/public/textures/chipped/detailed_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/detailed_crimson_planks.png b/public/textures/chipped/detailed_crimson_planks.png deleted file mode 100644 index df0ae215..00000000 Binary files a/public/textures/chipped/detailed_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/detailed_dark_oak_planks.png b/public/textures/chipped/detailed_dark_oak_planks.png deleted file mode 100644 index 200d626c..00000000 Binary files a/public/textures/chipped/detailed_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/detailed_hay_block.png b/public/textures/chipped/detailed_hay_block.png deleted file mode 100644 index 01b87db7..00000000 Binary files a/public/textures/chipped/detailed_hay_block.png and /dev/null differ diff --git a/public/textures/chipped/detailed_jungle_planks.png b/public/textures/chipped/detailed_jungle_planks.png deleted file mode 100644 index f2080f68..00000000 Binary files a/public/textures/chipped/detailed_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/detailed_mangrove_planks.png b/public/textures/chipped/detailed_mangrove_planks.png deleted file mode 100644 index cff231ff..00000000 Binary files a/public/textures/chipped/detailed_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/detailed_oak_planks.png b/public/textures/chipped/detailed_oak_planks.png deleted file mode 100644 index 33ecdc79..00000000 Binary files a/public/textures/chipped/detailed_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/detailed_spruce_planks.png b/public/textures/chipped/detailed_spruce_planks.png deleted file mode 100644 index 733d9b68..00000000 Binary files a/public/textures/chipped/detailed_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/detailed_warped_planks.png b/public/textures/chipped/detailed_warped_planks.png deleted file mode 100644 index e5dd929d..00000000 Binary files a/public/textures/chipped/detailed_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/devious_carved_pumpkin.png b/public/textures/chipped/devious_carved_pumpkin.png deleted file mode 100644 index 46e4e2bf..00000000 Binary files a/public/textures/chipped/devious_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/devious_jack_o_lantern.png b/public/textures/chipped/devious_jack_o_lantern.png deleted file mode 100644 index 8c40b868..00000000 Binary files a/public/textures/chipped/devious_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/dewkin.png b/public/textures/chipped/dewkin.png deleted file mode 100644 index 13a52d93..00000000 Binary files a/public/textures/chipped/dewkin.png and /dev/null differ diff --git a/public/textures/chipped/diagonal_acacia_planks.png b/public/textures/chipped/diagonal_acacia_planks.png deleted file mode 100644 index a9163832..00000000 Binary files a/public/textures/chipped/diagonal_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/diagonal_bamboo_planks.png b/public/textures/chipped/diagonal_bamboo_planks.png deleted file mode 100644 index bba3912d..00000000 Binary files a/public/textures/chipped/diagonal_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/diagonal_birch_planks.png b/public/textures/chipped/diagonal_birch_planks.png deleted file mode 100644 index bd9abf07..00000000 Binary files a/public/textures/chipped/diagonal_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/diagonal_cherry_planks.png b/public/textures/chipped/diagonal_cherry_planks.png deleted file mode 100644 index 6ddb4f8e..00000000 Binary files a/public/textures/chipped/diagonal_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/diagonal_crimson_planks.png b/public/textures/chipped/diagonal_crimson_planks.png deleted file mode 100644 index 1d96eefd..00000000 Binary files a/public/textures/chipped/diagonal_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/diagonal_dark_oak_planks.png b/public/textures/chipped/diagonal_dark_oak_planks.png deleted file mode 100644 index 86ee2db2..00000000 Binary files a/public/textures/chipped/diagonal_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/diagonal_jungle_planks.png b/public/textures/chipped/diagonal_jungle_planks.png deleted file mode 100644 index 90a8f980..00000000 Binary files a/public/textures/chipped/diagonal_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/diagonal_mangrove_planks.png b/public/textures/chipped/diagonal_mangrove_planks.png deleted file mode 100644 index 52766cc3..00000000 Binary files a/public/textures/chipped/diagonal_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/diagonal_oak_planks.png b/public/textures/chipped/diagonal_oak_planks.png deleted file mode 100644 index 118932da..00000000 Binary files a/public/textures/chipped/diagonal_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/diagonal_spruce_planks.png b/public/textures/chipped/diagonal_spruce_planks.png deleted file mode 100644 index cf9d03d2..00000000 Binary files a/public/textures/chipped/diagonal_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/diagonal_warped_planks.png b/public/textures/chipped/diagonal_warped_planks.png deleted file mode 100644 index fccd80db..00000000 Binary files a/public/textures/chipped/diagonal_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_acacia_planks.png b/public/textures/chipped/diamond_acacia_planks.png deleted file mode 100644 index 2b0e8940..00000000 Binary files a/public/textures/chipped/diamond_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_bamboo_planks.png b/public/textures/chipped/diamond_bamboo_planks.png deleted file mode 100644 index 1e547d9f..00000000 Binary files a/public/textures/chipped/diamond_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_birch_planks.png b/public/textures/chipped/diamond_birch_planks.png deleted file mode 100644 index 917318a0..00000000 Binary files a/public/textures/chipped/diamond_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_block_panels.png b/public/textures/chipped/diamond_block_panels.png deleted file mode 100644 index 3eaea09c..00000000 Binary files a/public/textures/chipped/diamond_block_panels.png and /dev/null differ diff --git a/public/textures/chipped/diamond_cherry_planks.png b/public/textures/chipped/diamond_cherry_planks.png deleted file mode 100644 index e39dda8e..00000000 Binary files a/public/textures/chipped/diamond_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_crimson_planks.png b/public/textures/chipped/diamond_crimson_planks.png deleted file mode 100644 index fb684aaf..00000000 Binary files a/public/textures/chipped/diamond_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_dark_oak_planks.png b/public/textures/chipped/diamond_dark_oak_planks.png deleted file mode 100644 index 21258207..00000000 Binary files a/public/textures/chipped/diamond_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_jungle_planks.png b/public/textures/chipped/diamond_jungle_planks.png deleted file mode 100644 index f6087a78..00000000 Binary files a/public/textures/chipped/diamond_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_lodestone.png b/public/textures/chipped/diamond_lodestone.png deleted file mode 100644 index 9c62a3e9..00000000 Binary files a/public/textures/chipped/diamond_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/diamond_mangrove_planks.png b/public/textures/chipped/diamond_mangrove_planks.png deleted file mode 100644 index 2a273dcf..00000000 Binary files a/public/textures/chipped/diamond_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_mud_bricks.png b/public/textures/chipped/diamond_mud_bricks.png deleted file mode 100644 index 4e9d7a9f..00000000 Binary files a/public/textures/chipped/diamond_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_mud_bricks_bricks.png b/public/textures/chipped/diamond_mud_bricks_bricks.png deleted file mode 100644 index 74042978..00000000 Binary files a/public/textures/chipped/diamond_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_oak_planks.png b/public/textures/chipped/diamond_oak_planks.png deleted file mode 100644 index ab109a6b..00000000 Binary files a/public/textures/chipped/diamond_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_packed_mud_bricks.png b/public/textures/chipped/diamond_packed_mud_bricks.png deleted file mode 100644 index f419a272..00000000 Binary files a/public/textures/chipped/diamond_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_spruce_planks.png b/public/textures/chipped/diamond_spruce_planks.png deleted file mode 100644 index d0c9f245..00000000 Binary files a/public/textures/chipped/diamond_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/diamond_warped_planks.png b/public/textures/chipped/diamond_warped_planks.png deleted file mode 100644 index 01a6e855..00000000 Binary files a/public/textures/chipped/diamond_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/diorite_bricks.png b/public/textures/chipped/diorite_bricks.png deleted file mode 100644 index 6745021a..00000000 Binary files a/public/textures/chipped/diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/diorite_mini_tiles.png b/public/textures/chipped/diorite_mini_tiles.png deleted file mode 100644 index a512e823..00000000 Binary files a/public/textures/chipped/diorite_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/diorite_pillar.png b/public/textures/chipped/diorite_pillar.png deleted file mode 100644 index 646a89b5..00000000 Binary files a/public/textures/chipped/diorite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/diorite_pillar_top.png b/public/textures/chipped/diorite_pillar_top.png deleted file mode 100644 index 30a31457..00000000 Binary files a/public/textures/chipped/diorite_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/diorite_pointed_dripstone.png b/public/textures/chipped/diorite_pointed_dripstone.png deleted file mode 100644 index 5bcfc793..00000000 Binary files a/public/textures/chipped/diorite_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/diorite_scales.png b/public/textures/chipped/diorite_scales.png deleted file mode 100644 index 1e4e14ab..00000000 Binary files a/public/textures/chipped/diorite_scales.png and /dev/null differ diff --git a/public/textures/chipped/dirt_bricks.png b/public/textures/chipped/dirt_bricks.png deleted file mode 100644 index 70294a9b..00000000 Binary files a/public/textures/chipped/dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/dirt_mini_tiles.png b/public/textures/chipped/dirt_mini_tiles.png deleted file mode 100644 index e86adcc5..00000000 Binary files a/public/textures/chipped/dirt_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/dirt_pillar.png b/public/textures/chipped/dirt_pillar.png deleted file mode 100644 index 87368d3c..00000000 Binary files a/public/textures/chipped/dirt_pillar.png and /dev/null differ diff --git a/public/textures/chipped/dirt_pillar_top.png b/public/textures/chipped/dirt_pillar_top.png deleted file mode 100644 index 055cdd70..00000000 Binary files a/public/textures/chipped/dirt_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/dirt_scales.png b/public/textures/chipped/dirt_scales.png deleted file mode 100644 index b417f1dc..00000000 Binary files a/public/textures/chipped/dirt_scales.png and /dev/null differ diff --git a/public/textures/chipped/dirty_dewkin.png b/public/textures/chipped/dirty_dewkin.png deleted file mode 100644 index 082ab0f4..00000000 Binary files a/public/textures/chipped/dirty_dewkin.png and /dev/null differ diff --git a/public/textures/chipped/dirty_goldkin.png b/public/textures/chipped/dirty_goldkin.png deleted file mode 100644 index ab32ec49..00000000 Binary files a/public/textures/chipped/dirty_goldkin.png and /dev/null differ diff --git a/public/textures/chipped/dirty_gravel.png b/public/textures/chipped/dirty_gravel.png deleted file mode 100644 index ca1e6a37..00000000 Binary files a/public/textures/chipped/dirty_gravel.png and /dev/null differ diff --git a/public/textures/chipped/dirty_rosekin.png b/public/textures/chipped/dirty_rosekin.png deleted file mode 100644 index 6c1a57be..00000000 Binary files a/public/textures/chipped/dirty_rosekin.png and /dev/null differ diff --git a/public/textures/chipped/distorted_acacia_trapdoor.png b/public/textures/chipped/distorted_acacia_trapdoor.png deleted file mode 100644 index f6b52a73..00000000 Binary files a/public/textures/chipped/distorted_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/distorted_bamboo_trapdoor.png b/public/textures/chipped/distorted_bamboo_trapdoor.png deleted file mode 100644 index 8b1abd6a..00000000 Binary files a/public/textures/chipped/distorted_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/distorted_birch_trapdoor.png b/public/textures/chipped/distorted_birch_trapdoor.png deleted file mode 100644 index e0b45950..00000000 Binary files a/public/textures/chipped/distorted_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/distorted_cherry_trapdoor.png b/public/textures/chipped/distorted_cherry_trapdoor.png deleted file mode 100644 index a4d5b54e..00000000 Binary files a/public/textures/chipped/distorted_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/distorted_crimson_trapdoor.png b/public/textures/chipped/distorted_crimson_trapdoor.png deleted file mode 100644 index 814182c2..00000000 Binary files a/public/textures/chipped/distorted_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/distorted_dark_oak_trapdoor.png b/public/textures/chipped/distorted_dark_oak_trapdoor.png deleted file mode 100644 index 545155e8..00000000 Binary files a/public/textures/chipped/distorted_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/distorted_jungle_trapdoor.png b/public/textures/chipped/distorted_jungle_trapdoor.png deleted file mode 100644 index e73d8084..00000000 Binary files a/public/textures/chipped/distorted_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/distorted_oak_trapdoor.png b/public/textures/chipped/distorted_oak_trapdoor.png deleted file mode 100644 index e5bff905..00000000 Binary files a/public/textures/chipped/distorted_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/distorted_spruce_trapdoor.png b/public/textures/chipped/distorted_spruce_trapdoor.png deleted file mode 100644 index 7585eb5b..00000000 Binary files a/public/textures/chipped/distorted_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/donut_lantern.png b/public/textures/chipped/donut_lantern.png deleted file mode 100644 index 43bd20e9..00000000 Binary files a/public/textures/chipped/donut_lantern.png and /dev/null differ diff --git a/public/textures/chipped/donut_soul_lantern.png b/public/textures/chipped/donut_soul_lantern.png deleted file mode 100644 index 3f96969e..00000000 Binary files a/public/textures/chipped/donut_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/dot_lodestone.png b/public/textures/chipped/dot_lodestone.png deleted file mode 100644 index e57efef8..00000000 Binary files a/public/textures/chipped/dot_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/dotted_red_mushroom_block.png b/public/textures/chipped/dotted_red_mushroom_block.png deleted file mode 100644 index 49722fa3..00000000 Binary files a/public/textures/chipped/dotted_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/double_brown_mushroom.png b/public/textures/chipped/double_brown_mushroom.png deleted file mode 100644 index 7c6d0a3c..00000000 Binary files a/public/textures/chipped/double_brown_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/double_crimson_fungus.png b/public/textures/chipped/double_crimson_fungus.png deleted file mode 100644 index 4c329890..00000000 Binary files a/public/textures/chipped/double_crimson_fungus.png and /dev/null differ diff --git a/public/textures/chipped/double_herringbone_acacia_planks.png b/public/textures/chipped/double_herringbone_acacia_planks.png deleted file mode 100644 index 7be94a5f..00000000 Binary files a/public/textures/chipped/double_herringbone_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/double_herringbone_bamboo_planks.png b/public/textures/chipped/double_herringbone_bamboo_planks.png deleted file mode 100644 index ea289bfc..00000000 Binary files a/public/textures/chipped/double_herringbone_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/double_herringbone_birch_planks.png b/public/textures/chipped/double_herringbone_birch_planks.png deleted file mode 100644 index ac50dae5..00000000 Binary files a/public/textures/chipped/double_herringbone_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/double_herringbone_cherry_planks.png b/public/textures/chipped/double_herringbone_cherry_planks.png deleted file mode 100644 index 26542ad5..00000000 Binary files a/public/textures/chipped/double_herringbone_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/double_herringbone_crimson_planks.png b/public/textures/chipped/double_herringbone_crimson_planks.png deleted file mode 100644 index f871cbc2..00000000 Binary files a/public/textures/chipped/double_herringbone_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/double_herringbone_dark_oak_planks.png b/public/textures/chipped/double_herringbone_dark_oak_planks.png deleted file mode 100644 index bd083221..00000000 Binary files a/public/textures/chipped/double_herringbone_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/double_herringbone_jungle_planks.png b/public/textures/chipped/double_herringbone_jungle_planks.png deleted file mode 100644 index 79f937f1..00000000 Binary files a/public/textures/chipped/double_herringbone_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/double_herringbone_mangrove_planks.png b/public/textures/chipped/double_herringbone_mangrove_planks.png deleted file mode 100644 index 1395663e..00000000 Binary files a/public/textures/chipped/double_herringbone_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/double_herringbone_oak_planks.png b/public/textures/chipped/double_herringbone_oak_planks.png deleted file mode 100644 index bfb86d13..00000000 Binary files a/public/textures/chipped/double_herringbone_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/double_herringbone_spruce_planks.png b/public/textures/chipped/double_herringbone_spruce_planks.png deleted file mode 100644 index f52ea4b5..00000000 Binary files a/public/textures/chipped/double_herringbone_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/double_herringbone_warped_planks.png b/public/textures/chipped/double_herringbone_warped_planks.png deleted file mode 100644 index 5391b84e..00000000 Binary files a/public/textures/chipped/double_herringbone_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/double_inlayed_glowstone.png b/public/textures/chipped/double_inlayed_glowstone.png deleted file mode 100644 index 65c5f7d0..00000000 Binary files a/public/textures/chipped/double_inlayed_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/double_inlayed_sea_lantern.png b/public/textures/chipped/double_inlayed_sea_lantern.png deleted file mode 100644 index 30b042e1..00000000 Binary files a/public/textures/chipped/double_inlayed_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/double_inlayed_shroomlight.png b/public/textures/chipped/double_inlayed_shroomlight.png deleted file mode 100644 index 26429a70..00000000 Binary files a/public/textures/chipped/double_inlayed_shroomlight.png and /dev/null differ diff --git a/public/textures/chipped/double_mud_bricks.png b/public/textures/chipped/double_mud_bricks.png deleted file mode 100644 index d4a7d9e8..00000000 Binary files a/public/textures/chipped/double_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/double_mud_bricks_bricks.png b/public/textures/chipped/double_mud_bricks_bricks.png deleted file mode 100644 index 38e7006e..00000000 Binary files a/public/textures/chipped/double_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/double_packed_mud_bricks.png b/public/textures/chipped/double_packed_mud_bricks.png deleted file mode 100644 index a818b94a..00000000 Binary files a/public/textures/chipped/double_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/double_red_mushroom.png b/public/textures/chipped/double_red_mushroom.png deleted file mode 100644 index 575ab09f..00000000 Binary files a/public/textures/chipped/double_red_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/double_roped_bone_block.png b/public/textures/chipped/double_roped_bone_block.png deleted file mode 100644 index 6ba0d162..00000000 Binary files a/public/textures/chipped/double_roped_bone_block.png and /dev/null differ diff --git a/public/textures/chipped/double_warped_fungus.png b/public/textures/chipped/double_warped_fungus.png deleted file mode 100644 index e9a5b9d9..00000000 Binary files a/public/textures/chipped/double_warped_fungus.png and /dev/null differ diff --git a/public/textures/chipped/dried_nether_wart_block.png b/public/textures/chipped/dried_nether_wart_block.png deleted file mode 100644 index d7d4e7da..00000000 Binary files a/public/textures/chipped/dried_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/dried_warped_wart_block.png b/public/textures/chipped/dried_warped_wart_block.png deleted file mode 100644 index 66968b10..00000000 Binary files a/public/textures/chipped/dried_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/dripstone_block_bricks.png b/public/textures/chipped/dripstone_block_bricks.png deleted file mode 100644 index fd993af7..00000000 Binary files a/public/textures/chipped/dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/dripstone_block_mini_tiles.png b/public/textures/chipped/dripstone_block_mini_tiles.png deleted file mode 100644 index b905b2f7..00000000 Binary files a/public/textures/chipped/dripstone_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/dripstone_block_pillar.png b/public/textures/chipped/dripstone_block_pillar.png deleted file mode 100644 index 9f92acea..00000000 Binary files a/public/textures/chipped/dripstone_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/dripstone_block_pillar_top.png b/public/textures/chipped/dripstone_block_pillar_top.png deleted file mode 100644 index 8ae648ed..00000000 Binary files a/public/textures/chipped/dripstone_block_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/dripstone_block_scales.png b/public/textures/chipped/dripstone_block_scales.png deleted file mode 100644 index 57dd49dd..00000000 Binary files a/public/textures/chipped/dripstone_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/droopy_vine.png b/public/textures/chipped/droopy_vine.png deleted file mode 100644 index 809ef952..00000000 Binary files a/public/textures/chipped/droopy_vine.png and /dev/null differ diff --git a/public/textures/chipped/dual_paneled_acacia_door.png b/public/textures/chipped/dual_paneled_acacia_door.png deleted file mode 100644 index e091a5eb..00000000 Binary files a/public/textures/chipped/dual_paneled_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/dual_paneled_bamboo_door.png b/public/textures/chipped/dual_paneled_bamboo_door.png deleted file mode 100644 index b0bd750c..00000000 Binary files a/public/textures/chipped/dual_paneled_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/dual_paneled_birch_door.png b/public/textures/chipped/dual_paneled_birch_door.png deleted file mode 100644 index 8efbdfb0..00000000 Binary files a/public/textures/chipped/dual_paneled_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/dual_paneled_cherry_door.png b/public/textures/chipped/dual_paneled_cherry_door.png deleted file mode 100644 index f50c44d2..00000000 Binary files a/public/textures/chipped/dual_paneled_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/dual_paneled_crimson_door.png b/public/textures/chipped/dual_paneled_crimson_door.png deleted file mode 100644 index 81ae9076..00000000 Binary files a/public/textures/chipped/dual_paneled_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/dual_paneled_dark_oak_door.png b/public/textures/chipped/dual_paneled_dark_oak_door.png deleted file mode 100644 index 39d6006a..00000000 Binary files a/public/textures/chipped/dual_paneled_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/dual_paneled_jungle_door.png b/public/textures/chipped/dual_paneled_jungle_door.png deleted file mode 100644 index 9631b2ba..00000000 Binary files a/public/textures/chipped/dual_paneled_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/dual_paneled_mangrove_door.png b/public/textures/chipped/dual_paneled_mangrove_door.png deleted file mode 100644 index 61bc24fc..00000000 Binary files a/public/textures/chipped/dual_paneled_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/dual_paneled_oak_door.png b/public/textures/chipped/dual_paneled_oak_door.png deleted file mode 100644 index a11310d2..00000000 Binary files a/public/textures/chipped/dual_paneled_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/dual_paneled_spruce_door.png b/public/textures/chipped/dual_paneled_spruce_door.png deleted file mode 100644 index 39129150..00000000 Binary files a/public/textures/chipped/dual_paneled_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/dual_paneled_warped_door.png b/public/textures/chipped/dual_paneled_warped_door.png deleted file mode 100644 index f5c57bbb..00000000 Binary files a/public/textures/chipped/dual_paneled_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/duh_amethyst_block.png b/public/textures/chipped/duh_amethyst_block.png deleted file mode 100644 index 4db6f959..00000000 Binary files a/public/textures/chipped/duh_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_ancient_debris.png b/public/textures/chipped/duh_ancient_debris.png deleted file mode 100644 index 1e93591e..00000000 Binary files a/public/textures/chipped/duh_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/duh_andesite.png b/public/textures/chipped/duh_andesite.png deleted file mode 100644 index f8280e1f..00000000 Binary files a/public/textures/chipped/duh_andesite.png and /dev/null differ diff --git a/public/textures/chipped/duh_basalt.png b/public/textures/chipped/duh_basalt.png deleted file mode 100644 index 611f442e..00000000 Binary files a/public/textures/chipped/duh_basalt.png and /dev/null differ diff --git a/public/textures/chipped/duh_blackstone.png b/public/textures/chipped/duh_blackstone.png deleted file mode 100644 index 23a25cde..00000000 Binary files a/public/textures/chipped/duh_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/duh_blue_ice.png b/public/textures/chipped/duh_blue_ice.png deleted file mode 100644 index 7c4f4958..00000000 Binary files a/public/textures/chipped/duh_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/duh_borderless_bricks.png b/public/textures/chipped/duh_borderless_bricks.png deleted file mode 100644 index 010e4b06..00000000 Binary files a/public/textures/chipped/duh_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/duh_bricks.png b/public/textures/chipped/duh_bricks.png deleted file mode 100644 index 019ecd8f..00000000 Binary files a/public/textures/chipped/duh_bricks.png and /dev/null differ diff --git a/public/textures/chipped/duh_calcite.png b/public/textures/chipped/duh_calcite.png deleted file mode 100644 index c466cf94..00000000 Binary files a/public/textures/chipped/duh_calcite.png and /dev/null differ diff --git a/public/textures/chipped/duh_clay.png b/public/textures/chipped/duh_clay.png deleted file mode 100644 index a30944e8..00000000 Binary files a/public/textures/chipped/duh_clay.png and /dev/null differ diff --git a/public/textures/chipped/duh_coal_block.png b/public/textures/chipped/duh_coal_block.png deleted file mode 100644 index 83393446..00000000 Binary files a/public/textures/chipped/duh_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_cobblestone.png b/public/textures/chipped/duh_cobblestone.png deleted file mode 100644 index bba919aa..00000000 Binary files a/public/textures/chipped/duh_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/duh_crying_obsidian.png b/public/textures/chipped/duh_crying_obsidian.png deleted file mode 100644 index 477f6e30..00000000 Binary files a/public/textures/chipped/duh_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/duh_dark_prismarine.png b/public/textures/chipped/duh_dark_prismarine.png deleted file mode 100644 index f1fedd03..00000000 Binary files a/public/textures/chipped/duh_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/duh_deepslate.png b/public/textures/chipped/duh_deepslate.png deleted file mode 100644 index f47ff5ff..00000000 Binary files a/public/textures/chipped/duh_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/duh_diorite.png b/public/textures/chipped/duh_diorite.png deleted file mode 100644 index 754c31a5..00000000 Binary files a/public/textures/chipped/duh_diorite.png and /dev/null differ diff --git a/public/textures/chipped/duh_dirt.png b/public/textures/chipped/duh_dirt.png deleted file mode 100644 index 406f8c90..00000000 Binary files a/public/textures/chipped/duh_dirt.png and /dev/null differ diff --git a/public/textures/chipped/duh_dripstone_block.png b/public/textures/chipped/duh_dripstone_block.png deleted file mode 100644 index 3cf586b8..00000000 Binary files a/public/textures/chipped/duh_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_end_stone.png b/public/textures/chipped/duh_end_stone.png deleted file mode 100644 index f45c585e..00000000 Binary files a/public/textures/chipped/duh_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/duh_gilded_blackstone.png b/public/textures/chipped/duh_gilded_blackstone.png deleted file mode 100644 index c2422400..00000000 Binary files a/public/textures/chipped/duh_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/duh_granite.png b/public/textures/chipped/duh_granite.png deleted file mode 100644 index 07621678..00000000 Binary files a/public/textures/chipped/duh_granite.png and /dev/null differ diff --git a/public/textures/chipped/duh_ice.png b/public/textures/chipped/duh_ice.png deleted file mode 100644 index 7d42ac25..00000000 Binary files a/public/textures/chipped/duh_ice.png and /dev/null differ diff --git a/public/textures/chipped/duh_lapis_block.png b/public/textures/chipped/duh_lapis_block.png deleted file mode 100644 index 1f71a373..00000000 Binary files a/public/textures/chipped/duh_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_lodestone.png b/public/textures/chipped/duh_lodestone.png deleted file mode 100644 index 63485e29..00000000 Binary files a/public/textures/chipped/duh_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/duh_magma_block.png b/public/textures/chipped/duh_magma_block.png deleted file mode 100644 index b6fd5ca2..00000000 Binary files a/public/textures/chipped/duh_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_mossy_cobblestone.png b/public/textures/chipped/duh_mossy_cobblestone.png deleted file mode 100644 index 9612f64b..00000000 Binary files a/public/textures/chipped/duh_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/duh_mossy_stone_bricks.png b/public/textures/chipped/duh_mossy_stone_bricks.png deleted file mode 100644 index 9c1df826..00000000 Binary files a/public/textures/chipped/duh_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/duh_mud.png b/public/textures/chipped/duh_mud.png deleted file mode 100644 index 0752879b..00000000 Binary files a/public/textures/chipped/duh_mud.png and /dev/null differ diff --git a/public/textures/chipped/duh_mud_bricks.png b/public/textures/chipped/duh_mud_bricks.png deleted file mode 100644 index 64709c06..00000000 Binary files a/public/textures/chipped/duh_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/duh_nether_bricks.png b/public/textures/chipped/duh_nether_bricks.png deleted file mode 100644 index 00ba6e84..00000000 Binary files a/public/textures/chipped/duh_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/duh_netherrack.png b/public/textures/chipped/duh_netherrack.png deleted file mode 100644 index 30f638f5..00000000 Binary files a/public/textures/chipped/duh_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/duh_obsidian.png b/public/textures/chipped/duh_obsidian.png deleted file mode 100644 index 2cf29d50..00000000 Binary files a/public/textures/chipped/duh_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/duh_packed_ice.png b/public/textures/chipped/duh_packed_ice.png deleted file mode 100644 index de097a21..00000000 Binary files a/public/textures/chipped/duh_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/duh_packed_mud.png b/public/textures/chipped/duh_packed_mud.png deleted file mode 100644 index 5abf5446..00000000 Binary files a/public/textures/chipped/duh_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/duh_prismarine.png b/public/textures/chipped/duh_prismarine.png deleted file mode 100644 index 56b6f663..00000000 Binary files a/public/textures/chipped/duh_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/duh_purpur_block.png b/public/textures/chipped/duh_purpur_block.png deleted file mode 100644 index b403aa14..00000000 Binary files a/public/textures/chipped/duh_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_quartz_block.png b/public/textures/chipped/duh_quartz_block.png deleted file mode 100644 index f917826e..00000000 Binary files a/public/textures/chipped/duh_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_raw_copper_block.png b/public/textures/chipped/duh_raw_copper_block.png deleted file mode 100644 index e00ce0da..00000000 Binary files a/public/textures/chipped/duh_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_raw_gold_block.png b/public/textures/chipped/duh_raw_gold_block.png deleted file mode 100644 index 89825023..00000000 Binary files a/public/textures/chipped/duh_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_raw_iron_block.png b/public/textures/chipped/duh_raw_iron_block.png deleted file mode 100644 index 106c3f14..00000000 Binary files a/public/textures/chipped/duh_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_red_nether_bricks.png b/public/textures/chipped/duh_red_nether_bricks.png deleted file mode 100644 index a24e1652..00000000 Binary files a/public/textures/chipped/duh_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/duh_red_sandstone.png b/public/textures/chipped/duh_red_sandstone.png deleted file mode 100644 index 91b14988..00000000 Binary files a/public/textures/chipped/duh_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/duh_redstone_block.png b/public/textures/chipped/duh_redstone_block.png deleted file mode 100644 index 0b170e0d..00000000 Binary files a/public/textures/chipped/duh_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_sandstone.png b/public/textures/chipped/duh_sandstone.png deleted file mode 100644 index 7676689a..00000000 Binary files a/public/textures/chipped/duh_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/duh_smooth_stone.png b/public/textures/chipped/duh_smooth_stone.png deleted file mode 100644 index 2dcacd13..00000000 Binary files a/public/textures/chipped/duh_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/duh_snow_block.png b/public/textures/chipped/duh_snow_block.png deleted file mode 100644 index 304fa443..00000000 Binary files a/public/textures/chipped/duh_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/duh_stone.png b/public/textures/chipped/duh_stone.png deleted file mode 100644 index d65c111a..00000000 Binary files a/public/textures/chipped/duh_stone.png and /dev/null differ diff --git a/public/textures/chipped/duh_tuff.png b/public/textures/chipped/duh_tuff.png deleted file mode 100644 index 77279c02..00000000 Binary files a/public/textures/chipped/duh_tuff.png and /dev/null differ diff --git a/public/textures/chipped/dusted_brown_mushroom_block.png b/public/textures/chipped/dusted_brown_mushroom_block.png deleted file mode 100644 index f112ec9a..00000000 Binary files a/public/textures/chipped/dusted_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dusted_red_mushroom_block.png b/public/textures/chipped/dusted_red_mushroom_block.png deleted file mode 100644 index d063a52a..00000000 Binary files a/public/textures/chipped/dusted_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/dusty_bookshelf.png b/public/textures/chipped/dusty_bookshelf.png deleted file mode 100644 index b022c8da..00000000 Binary files a/public/textures/chipped/dusty_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/dusty_gravel.png b/public/textures/chipped/dusty_gravel.png deleted file mode 100644 index 2d8eb9c2..00000000 Binary files a/public/textures/chipped/dusty_gravel.png and /dev/null differ diff --git a/public/textures/chipped/edge_cut_acacia_log.png b/public/textures/chipped/edge_cut_acacia_log.png deleted file mode 100644 index 127004ee..00000000 Binary files a/public/textures/chipped/edge_cut_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/edge_cut_birch_log.png b/public/textures/chipped/edge_cut_birch_log.png deleted file mode 100644 index a224cda0..00000000 Binary files a/public/textures/chipped/edge_cut_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/edge_cut_cherry_log.png b/public/textures/chipped/edge_cut_cherry_log.png deleted file mode 100644 index ebfa3502..00000000 Binary files a/public/textures/chipped/edge_cut_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/edge_cut_crimson_stem.png b/public/textures/chipped/edge_cut_crimson_stem.png deleted file mode 100644 index d142032d..00000000 Binary files a/public/textures/chipped/edge_cut_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/edge_cut_dark_oak_log.png b/public/textures/chipped/edge_cut_dark_oak_log.png deleted file mode 100644 index f7413d42..00000000 Binary files a/public/textures/chipped/edge_cut_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/edge_cut_jungle_log.png b/public/textures/chipped/edge_cut_jungle_log.png deleted file mode 100644 index 3b81c8aa..00000000 Binary files a/public/textures/chipped/edge_cut_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/edge_cut_mangrove_log.png b/public/textures/chipped/edge_cut_mangrove_log.png deleted file mode 100644 index c4e7f3ac..00000000 Binary files a/public/textures/chipped/edge_cut_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/edge_cut_oak_log.png b/public/textures/chipped/edge_cut_oak_log.png deleted file mode 100644 index c04582a5..00000000 Binary files a/public/textures/chipped/edge_cut_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/edge_cut_spruce_log.png b/public/textures/chipped/edge_cut_spruce_log.png deleted file mode 100644 index 06381f25..00000000 Binary files a/public/textures/chipped/edge_cut_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/edge_cut_warped_stem.png b/public/textures/chipped/edge_cut_warped_stem.png deleted file mode 100644 index 4b1a2bb4..00000000 Binary files a/public/textures/chipped/edge_cut_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/edged_amethyst_block_bricks.png b/public/textures/chipped/edged_amethyst_block_bricks.png deleted file mode 100644 index d77729e2..00000000 Binary files a/public/textures/chipped/edged_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_ancient_debris_bricks.png b/public/textures/chipped/edged_ancient_debris_bricks.png deleted file mode 100644 index a0d05d25..00000000 Binary files a/public/textures/chipped/edged_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_andesite_bricks.png b/public/textures/chipped/edged_andesite_bricks.png deleted file mode 100644 index 3e149431..00000000 Binary files a/public/textures/chipped/edged_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_basalt_bricks.png b/public/textures/chipped/edged_basalt_bricks.png deleted file mode 100644 index fc473a1b..00000000 Binary files a/public/textures/chipped/edged_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_blackstone_bricks.png b/public/textures/chipped/edged_blackstone_bricks.png deleted file mode 100644 index 932ae055..00000000 Binary files a/public/textures/chipped/edged_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_blue_ice_bricks.png b/public/textures/chipped/edged_blue_ice_bricks.png deleted file mode 100644 index 735b2039..00000000 Binary files a/public/textures/chipped/edged_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_borderless_bricks_bricks.png b/public/textures/chipped/edged_borderless_bricks_bricks.png deleted file mode 100644 index 39815bad..00000000 Binary files a/public/textures/chipped/edged_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_bricks_bricks.png b/public/textures/chipped/edged_bricks_bricks.png deleted file mode 100644 index dbc95d8b..00000000 Binary files a/public/textures/chipped/edged_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_calcite_bricks.png b/public/textures/chipped/edged_calcite_bricks.png deleted file mode 100644 index a6a441cf..00000000 Binary files a/public/textures/chipped/edged_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_clay_bricks.png b/public/textures/chipped/edged_clay_bricks.png deleted file mode 100644 index 0606f63d..00000000 Binary files a/public/textures/chipped/edged_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_coal_block_bricks.png b/public/textures/chipped/edged_coal_block_bricks.png deleted file mode 100644 index 2b96228a..00000000 Binary files a/public/textures/chipped/edged_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_cobblestone_bricks.png b/public/textures/chipped/edged_cobblestone_bricks.png deleted file mode 100644 index 073dfe9f..00000000 Binary files a/public/textures/chipped/edged_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_crying_obsidian_bricks.png b/public/textures/chipped/edged_crying_obsidian_bricks.png deleted file mode 100644 index 847d655a..00000000 Binary files a/public/textures/chipped/edged_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_dark_prismarine_bricks.png b/public/textures/chipped/edged_dark_prismarine_bricks.png deleted file mode 100644 index 671d29f7..00000000 Binary files a/public/textures/chipped/edged_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_deepslate_bricks.png b/public/textures/chipped/edged_deepslate_bricks.png deleted file mode 100644 index 2e910aa0..00000000 Binary files a/public/textures/chipped/edged_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_diorite_bricks.png b/public/textures/chipped/edged_diorite_bricks.png deleted file mode 100644 index 0c1b1304..00000000 Binary files a/public/textures/chipped/edged_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_dirt_bricks.png b/public/textures/chipped/edged_dirt_bricks.png deleted file mode 100644 index e095187e..00000000 Binary files a/public/textures/chipped/edged_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_dripstone_block_bricks.png b/public/textures/chipped/edged_dripstone_block_bricks.png deleted file mode 100644 index d7a04be6..00000000 Binary files a/public/textures/chipped/edged_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_end_stone_bricks.png b/public/textures/chipped/edged_end_stone_bricks.png deleted file mode 100644 index dbec72f4..00000000 Binary files a/public/textures/chipped/edged_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_gilded_blackstone_bricks.png b/public/textures/chipped/edged_gilded_blackstone_bricks.png deleted file mode 100644 index f43391a4..00000000 Binary files a/public/textures/chipped/edged_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_glowstone_lantern.png b/public/textures/chipped/edged_glowstone_lantern.png deleted file mode 100644 index da32e2ff..00000000 Binary files a/public/textures/chipped/edged_glowstone_lantern.png and /dev/null differ diff --git a/public/textures/chipped/edged_granite_bricks.png b/public/textures/chipped/edged_granite_bricks.png deleted file mode 100644 index f4eafea2..00000000 Binary files a/public/textures/chipped/edged_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_ice_bricks.png b/public/textures/chipped/edged_ice_bricks.png deleted file mode 100644 index 554331c4..00000000 Binary files a/public/textures/chipped/edged_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_lapis_block_bricks.png b/public/textures/chipped/edged_lapis_block_bricks.png deleted file mode 100644 index d5d8adcc..00000000 Binary files a/public/textures/chipped/edged_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_lodestone_bricks.png b/public/textures/chipped/edged_lodestone_bricks.png deleted file mode 100644 index 36160151..00000000 Binary files a/public/textures/chipped/edged_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_magma_block_bricks.png b/public/textures/chipped/edged_magma_block_bricks.png deleted file mode 100644 index 4d458c2f..00000000 Binary files a/public/textures/chipped/edged_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_mossy_cobblestone_bricks.png b/public/textures/chipped/edged_mossy_cobblestone_bricks.png deleted file mode 100644 index 59fbb43b..00000000 Binary files a/public/textures/chipped/edged_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_mossy_stone_bricks_bricks.png b/public/textures/chipped/edged_mossy_stone_bricks_bricks.png deleted file mode 100644 index eb5cfb15..00000000 Binary files a/public/textures/chipped/edged_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_mud_bricks.png b/public/textures/chipped/edged_mud_bricks.png deleted file mode 100644 index ed84e686..00000000 Binary files a/public/textures/chipped/edged_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_mud_bricks_bricks.png b/public/textures/chipped/edged_mud_bricks_bricks.png deleted file mode 100644 index 9b687edb..00000000 Binary files a/public/textures/chipped/edged_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_nether_bricks_bricks.png b/public/textures/chipped/edged_nether_bricks_bricks.png deleted file mode 100644 index f4bbc940..00000000 Binary files a/public/textures/chipped/edged_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_netherrack_bricks.png b/public/textures/chipped/edged_netherrack_bricks.png deleted file mode 100644 index d81e4abd..00000000 Binary files a/public/textures/chipped/edged_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_obsidian_bricks.png b/public/textures/chipped/edged_obsidian_bricks.png deleted file mode 100644 index 97312275..00000000 Binary files a/public/textures/chipped/edged_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_packed_ice_bricks.png b/public/textures/chipped/edged_packed_ice_bricks.png deleted file mode 100644 index a33ac166..00000000 Binary files a/public/textures/chipped/edged_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_packed_mud_bricks.png b/public/textures/chipped/edged_packed_mud_bricks.png deleted file mode 100644 index e9d22ad9..00000000 Binary files a/public/textures/chipped/edged_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_prismarine_bricks.png b/public/textures/chipped/edged_prismarine_bricks.png deleted file mode 100644 index ebcbfb5a..00000000 Binary files a/public/textures/chipped/edged_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_purpur_block_bricks.png b/public/textures/chipped/edged_purpur_block_bricks.png deleted file mode 100644 index f7af669b..00000000 Binary files a/public/textures/chipped/edged_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_quartz_block_bricks.png b/public/textures/chipped/edged_quartz_block_bricks.png deleted file mode 100644 index 4a05b222..00000000 Binary files a/public/textures/chipped/edged_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_raw_copper_block_bricks.png b/public/textures/chipped/edged_raw_copper_block_bricks.png deleted file mode 100644 index 57a77f3f..00000000 Binary files a/public/textures/chipped/edged_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_raw_gold_block_bricks.png b/public/textures/chipped/edged_raw_gold_block_bricks.png deleted file mode 100644 index 30dbc0e3..00000000 Binary files a/public/textures/chipped/edged_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_raw_iron_block_bricks.png b/public/textures/chipped/edged_raw_iron_block_bricks.png deleted file mode 100644 index d463a679..00000000 Binary files a/public/textures/chipped/edged_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_red_nether_bricks_bricks.png b/public/textures/chipped/edged_red_nether_bricks_bricks.png deleted file mode 100644 index 2dbbb95f..00000000 Binary files a/public/textures/chipped/edged_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_red_sandstone_bricks.png b/public/textures/chipped/edged_red_sandstone_bricks.png deleted file mode 100644 index 9807b4db..00000000 Binary files a/public/textures/chipped/edged_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_redstone_block_bricks.png b/public/textures/chipped/edged_redstone_block_bricks.png deleted file mode 100644 index 95ccb816..00000000 Binary files a/public/textures/chipped/edged_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_redstone_lamp.png b/public/textures/chipped/edged_redstone_lamp.png deleted file mode 100644 index e939e674..00000000 Binary files a/public/textures/chipped/edged_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/edged_sandstone_bricks.png b/public/textures/chipped/edged_sandstone_bricks.png deleted file mode 100644 index 0226f250..00000000 Binary files a/public/textures/chipped/edged_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_shroomlight_lantern.png b/public/textures/chipped/edged_shroomlight_lantern.png deleted file mode 100644 index fbac1430..00000000 Binary files a/public/textures/chipped/edged_shroomlight_lantern.png and /dev/null differ diff --git a/public/textures/chipped/edged_smooth_stone_bricks.png b/public/textures/chipped/edged_smooth_stone_bricks.png deleted file mode 100644 index 826efddb..00000000 Binary files a/public/textures/chipped/edged_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_snow_block_bricks.png b/public/textures/chipped/edged_snow_block_bricks.png deleted file mode 100644 index db0d4312..00000000 Binary files a/public/textures/chipped/edged_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_stone_bricks.png b/public/textures/chipped/edged_stone_bricks.png deleted file mode 100644 index 293ca4bc..00000000 Binary files a/public/textures/chipped/edged_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_stripped_acacia_log.png b/public/textures/chipped/edged_stripped_acacia_log.png deleted file mode 100644 index 1af3b4dd..00000000 Binary files a/public/textures/chipped/edged_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/edged_stripped_birch_log.png b/public/textures/chipped/edged_stripped_birch_log.png deleted file mode 100644 index b520c27a..00000000 Binary files a/public/textures/chipped/edged_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/edged_stripped_cherry_log.png b/public/textures/chipped/edged_stripped_cherry_log.png deleted file mode 100644 index 1a3dd78f..00000000 Binary files a/public/textures/chipped/edged_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/edged_stripped_crimson_stem.png b/public/textures/chipped/edged_stripped_crimson_stem.png deleted file mode 100644 index f57cffe5..00000000 Binary files a/public/textures/chipped/edged_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/edged_stripped_dark_oak_log.png b/public/textures/chipped/edged_stripped_dark_oak_log.png deleted file mode 100644 index ac035bd2..00000000 Binary files a/public/textures/chipped/edged_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/edged_stripped_jungle_log.png b/public/textures/chipped/edged_stripped_jungle_log.png deleted file mode 100644 index 1a9748cd..00000000 Binary files a/public/textures/chipped/edged_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/edged_stripped_mangrove_log.png b/public/textures/chipped/edged_stripped_mangrove_log.png deleted file mode 100644 index ed7cfb5c..00000000 Binary files a/public/textures/chipped/edged_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/edged_stripped_oak_log.png b/public/textures/chipped/edged_stripped_oak_log.png deleted file mode 100644 index bc67541e..00000000 Binary files a/public/textures/chipped/edged_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/edged_stripped_spruce_log.png b/public/textures/chipped/edged_stripped_spruce_log.png deleted file mode 100644 index f380edbc..00000000 Binary files a/public/textures/chipped/edged_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/edged_stripped_warped_stem.png b/public/textures/chipped/edged_stripped_warped_stem.png deleted file mode 100644 index 555d3c56..00000000 Binary files a/public/textures/chipped/edged_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/edged_tuff_bricks.png b/public/textures/chipped/edged_tuff_bricks.png deleted file mode 100644 index a0086f4b..00000000 Binary files a/public/textures/chipped/edged_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/edged_white_redstone_lamp.png b/public/textures/chipped/edged_white_redstone_lamp.png deleted file mode 100644 index 94612bd8..00000000 Binary files a/public/textures/chipped/edged_white_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/elemental_ochre_froglight.png b/public/textures/chipped/elemental_ochre_froglight.png deleted file mode 100644 index 7fd1f7cc..00000000 Binary files a/public/textures/chipped/elemental_ochre_froglight.png and /dev/null differ diff --git a/public/textures/chipped/elemental_pearlescent_froglight.png b/public/textures/chipped/elemental_pearlescent_froglight.png deleted file mode 100644 index a9300141..00000000 Binary files a/public/textures/chipped/elemental_pearlescent_froglight.png and /dev/null differ diff --git a/public/textures/chipped/elemental_verdant_froglight.png b/public/textures/chipped/elemental_verdant_froglight.png deleted file mode 100644 index 66dd3128..00000000 Binary files a/public/textures/chipped/elemental_verdant_froglight.png and /dev/null differ diff --git a/public/textures/chipped/embossed_diamond_block.png b/public/textures/chipped/embossed_diamond_block.png deleted file mode 100644 index dbb3041b..00000000 Binary files a/public/textures/chipped/embossed_diamond_block.png and /dev/null differ diff --git a/public/textures/chipped/embossed_emerald_block.png b/public/textures/chipped/embossed_emerald_block.png deleted file mode 100644 index c60fda1c..00000000 Binary files a/public/textures/chipped/embossed_emerald_block.png and /dev/null differ diff --git a/public/textures/chipped/embossed_gold_block.png b/public/textures/chipped/embossed_gold_block.png deleted file mode 100644 index 4602a9e0..00000000 Binary files a/public/textures/chipped/embossed_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/embossed_netherite_block.png b/public/textures/chipped/embossed_netherite_block.png deleted file mode 100644 index 4042e660..00000000 Binary files a/public/textures/chipped/embossed_netherite_block.png and /dev/null differ diff --git a/public/textures/chipped/embossed_waxed_copper_block.png b/public/textures/chipped/embossed_waxed_copper_block.png deleted file mode 100644 index 73e76e61..00000000 Binary files a/public/textures/chipped/embossed_waxed_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/embossed_waxed_exposed_copper.png b/public/textures/chipped/embossed_waxed_exposed_copper.png deleted file mode 100644 index 2d24a26a..00000000 Binary files a/public/textures/chipped/embossed_waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/chipped/embossed_waxed_oxidized_copper.png b/public/textures/chipped/embossed_waxed_oxidized_copper.png deleted file mode 100644 index effdff81..00000000 Binary files a/public/textures/chipped/embossed_waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/chipped/embossed_waxed_weathered_copper.png b/public/textures/chipped/embossed_waxed_weathered_copper.png deleted file mode 100644 index 1421e3b9..00000000 Binary files a/public/textures/chipped/embossed_waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/chipped/emerald_block_panels.png b/public/textures/chipped/emerald_block_panels.png deleted file mode 100644 index c5c6a645..00000000 Binary files a/public/textures/chipped/emerald_block_panels.png and /dev/null differ diff --git a/public/textures/chipped/enclosed_acacia_planks.png b/public/textures/chipped/enclosed_acacia_planks.png deleted file mode 100644 index f7098496..00000000 Binary files a/public/textures/chipped/enclosed_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/enclosed_bamboo_planks.png b/public/textures/chipped/enclosed_bamboo_planks.png deleted file mode 100644 index ff859035..00000000 Binary files a/public/textures/chipped/enclosed_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/enclosed_birch_planks.png b/public/textures/chipped/enclosed_birch_planks.png deleted file mode 100644 index 6177d80c..00000000 Binary files a/public/textures/chipped/enclosed_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/enclosed_cherry_planks.png b/public/textures/chipped/enclosed_cherry_planks.png deleted file mode 100644 index 37ee0056..00000000 Binary files a/public/textures/chipped/enclosed_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/enclosed_crimson_planks.png b/public/textures/chipped/enclosed_crimson_planks.png deleted file mode 100644 index d681176d..00000000 Binary files a/public/textures/chipped/enclosed_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/enclosed_dark_oak_planks.png b/public/textures/chipped/enclosed_dark_oak_planks.png deleted file mode 100644 index 37c89d9a..00000000 Binary files a/public/textures/chipped/enclosed_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/enclosed_jungle_planks.png b/public/textures/chipped/enclosed_jungle_planks.png deleted file mode 100644 index 921e572a..00000000 Binary files a/public/textures/chipped/enclosed_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/enclosed_mangrove_planks.png b/public/textures/chipped/enclosed_mangrove_planks.png deleted file mode 100644 index 76537b44..00000000 Binary files a/public/textures/chipped/enclosed_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/enclosed_oak_planks.png b/public/textures/chipped/enclosed_oak_planks.png deleted file mode 100644 index 3fc9b17c..00000000 Binary files a/public/textures/chipped/enclosed_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/enclosed_spruce_planks.png b/public/textures/chipped/enclosed_spruce_planks.png deleted file mode 100644 index a4fdf99a..00000000 Binary files a/public/textures/chipped/enclosed_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/enclosed_warped_planks.png b/public/textures/chipped/enclosed_warped_planks.png deleted file mode 100644 index 57d942ed..00000000 Binary files a/public/textures/chipped/enclosed_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/end_carved_pumpkin.png b/public/textures/chipped/end_carved_pumpkin.png deleted file mode 100644 index 3b53729f..00000000 Binary files a/public/textures/chipped/end_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/end_jack_o_lantern.png b/public/textures/chipped/end_jack_o_lantern.png deleted file mode 100644 index aed8aeee..00000000 Binary files a/public/textures/chipped/end_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/end_pumpkin.png b/public/textures/chipped/end_pumpkin.png deleted file mode 100644 index 423f51bf..00000000 Binary files a/public/textures/chipped/end_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/end_pumpkin_purple.png b/public/textures/chipped/end_pumpkin_purple.png deleted file mode 100644 index 2cfd38c8..00000000 Binary files a/public/textures/chipped/end_pumpkin_purple.png and /dev/null differ diff --git a/public/textures/chipped/end_purple_carved_pumpkin.png b/public/textures/chipped/end_purple_carved_pumpkin.png deleted file mode 100644 index da02d648..00000000 Binary files a/public/textures/chipped/end_purple_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/end_purple_jack_o_lantern.png b/public/textures/chipped/end_purple_jack_o_lantern.png deleted file mode 100644 index e8a67767..00000000 Binary files a/public/textures/chipped/end_purple_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/end_stone_bricks.png b/public/textures/chipped/end_stone_bricks.png deleted file mode 100644 index eb3bd5a7..00000000 Binary files a/public/textures/chipped/end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/end_stone_mini_tiles.png b/public/textures/chipped/end_stone_mini_tiles.png deleted file mode 100644 index c68857c1..00000000 Binary files a/public/textures/chipped/end_stone_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/end_stone_pillar.png b/public/textures/chipped/end_stone_pillar.png deleted file mode 100644 index 5a3f1016..00000000 Binary files a/public/textures/chipped/end_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/end_stone_pillar_top.png b/public/textures/chipped/end_stone_pillar_top.png deleted file mode 100644 index c242e58c..00000000 Binary files a/public/textures/chipped/end_stone_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/end_stone_scales.png b/public/textures/chipped/end_stone_scales.png deleted file mode 100644 index f2f76942..00000000 Binary files a/public/textures/chipped/end_stone_scales.png and /dev/null differ diff --git a/public/textures/chipped/ender_lantern.png b/public/textures/chipped/ender_lantern.png deleted file mode 100644 index ca100ab3..00000000 Binary files a/public/textures/chipped/ender_lantern.png and /dev/null differ diff --git a/public/textures/chipped/endstone_pointed_dripstone.png b/public/textures/chipped/endstone_pointed_dripstone.png deleted file mode 100644 index 8f6a1c45..00000000 Binary files a/public/textures/chipped/endstone_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/engraved_amethyst_block.png b/public/textures/chipped/engraved_amethyst_block.png deleted file mode 100644 index f52cd6a4..00000000 Binary files a/public/textures/chipped/engraved_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_ancient_debris.png b/public/textures/chipped/engraved_ancient_debris.png deleted file mode 100644 index 55c788ae..00000000 Binary files a/public/textures/chipped/engraved_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/engraved_andesite.png b/public/textures/chipped/engraved_andesite.png deleted file mode 100644 index 9e409c42..00000000 Binary files a/public/textures/chipped/engraved_andesite.png and /dev/null differ diff --git a/public/textures/chipped/engraved_basalt.png b/public/textures/chipped/engraved_basalt.png deleted file mode 100644 index a52915d8..00000000 Binary files a/public/textures/chipped/engraved_basalt.png and /dev/null differ diff --git a/public/textures/chipped/engraved_blackstone.png b/public/textures/chipped/engraved_blackstone.png deleted file mode 100644 index da68f978..00000000 Binary files a/public/textures/chipped/engraved_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/engraved_blue_ice.png b/public/textures/chipped/engraved_blue_ice.png deleted file mode 100644 index 490e637b..00000000 Binary files a/public/textures/chipped/engraved_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/engraved_borderless_bricks.png b/public/textures/chipped/engraved_borderless_bricks.png deleted file mode 100644 index e9d3189e..00000000 Binary files a/public/textures/chipped/engraved_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/engraved_bricks.png b/public/textures/chipped/engraved_bricks.png deleted file mode 100644 index c0fb7f16..00000000 Binary files a/public/textures/chipped/engraved_bricks.png and /dev/null differ diff --git a/public/textures/chipped/engraved_calcite.png b/public/textures/chipped/engraved_calcite.png deleted file mode 100644 index 42c145d4..00000000 Binary files a/public/textures/chipped/engraved_calcite.png and /dev/null differ diff --git a/public/textures/chipped/engraved_clay.png b/public/textures/chipped/engraved_clay.png deleted file mode 100644 index c553a8fd..00000000 Binary files a/public/textures/chipped/engraved_clay.png and /dev/null differ diff --git a/public/textures/chipped/engraved_coal_block.png b/public/textures/chipped/engraved_coal_block.png deleted file mode 100644 index a41041e1..00000000 Binary files a/public/textures/chipped/engraved_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_cobblestone.png b/public/textures/chipped/engraved_cobblestone.png deleted file mode 100644 index 83af515f..00000000 Binary files a/public/textures/chipped/engraved_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/engraved_crying_obsidian.png b/public/textures/chipped/engraved_crying_obsidian.png deleted file mode 100644 index c9d2ab7b..00000000 Binary files a/public/textures/chipped/engraved_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/engraved_dark_prismarine.png b/public/textures/chipped/engraved_dark_prismarine.png deleted file mode 100644 index 26ab0253..00000000 Binary files a/public/textures/chipped/engraved_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/engraved_deepslate.png b/public/textures/chipped/engraved_deepslate.png deleted file mode 100644 index ade820d3..00000000 Binary files a/public/textures/chipped/engraved_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/engraved_diamond_block.png b/public/textures/chipped/engraved_diamond_block.png deleted file mode 100644 index 8eac981b..00000000 Binary files a/public/textures/chipped/engraved_diamond_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_diorite.png b/public/textures/chipped/engraved_diorite.png deleted file mode 100644 index c0ad6597..00000000 Binary files a/public/textures/chipped/engraved_diorite.png and /dev/null differ diff --git a/public/textures/chipped/engraved_dirt.png b/public/textures/chipped/engraved_dirt.png deleted file mode 100644 index 7ceff4d5..00000000 Binary files a/public/textures/chipped/engraved_dirt.png and /dev/null differ diff --git a/public/textures/chipped/engraved_dripstone_block.png b/public/textures/chipped/engraved_dripstone_block.png deleted file mode 100644 index fd0011cd..00000000 Binary files a/public/textures/chipped/engraved_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_emerald_block.png b/public/textures/chipped/engraved_emerald_block.png deleted file mode 100644 index 0d0f2fd3..00000000 Binary files a/public/textures/chipped/engraved_emerald_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_end_stone.png b/public/textures/chipped/engraved_end_stone.png deleted file mode 100644 index a4a7ae0e..00000000 Binary files a/public/textures/chipped/engraved_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/engraved_gilded_blackstone.png b/public/textures/chipped/engraved_gilded_blackstone.png deleted file mode 100644 index 575c26d8..00000000 Binary files a/public/textures/chipped/engraved_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/engraved_gold_block.png b/public/textures/chipped/engraved_gold_block.png deleted file mode 100644 index ef7270c6..00000000 Binary files a/public/textures/chipped/engraved_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_granite.png b/public/textures/chipped/engraved_granite.png deleted file mode 100644 index fc62605e..00000000 Binary files a/public/textures/chipped/engraved_granite.png and /dev/null differ diff --git a/public/textures/chipped/engraved_ice.png b/public/textures/chipped/engraved_ice.png deleted file mode 100644 index ed1109fd..00000000 Binary files a/public/textures/chipped/engraved_ice.png and /dev/null differ diff --git a/public/textures/chipped/engraved_iron_block.png b/public/textures/chipped/engraved_iron_block.png deleted file mode 100644 index 04680626..00000000 Binary files a/public/textures/chipped/engraved_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_lapis_block.png b/public/textures/chipped/engraved_lapis_block.png deleted file mode 100644 index 66eadc76..00000000 Binary files a/public/textures/chipped/engraved_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_lodestone.png b/public/textures/chipped/engraved_lodestone.png deleted file mode 100644 index 35df0594..00000000 Binary files a/public/textures/chipped/engraved_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/engraved_magma_block.png b/public/textures/chipped/engraved_magma_block.png deleted file mode 100644 index 488f05ad..00000000 Binary files a/public/textures/chipped/engraved_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_mossy_cobblestone.png b/public/textures/chipped/engraved_mossy_cobblestone.png deleted file mode 100644 index 18f9f4bc..00000000 Binary files a/public/textures/chipped/engraved_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/engraved_mossy_stone_bricks.png b/public/textures/chipped/engraved_mossy_stone_bricks.png deleted file mode 100644 index 09354137..00000000 Binary files a/public/textures/chipped/engraved_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/engraved_mud.png b/public/textures/chipped/engraved_mud.png deleted file mode 100644 index 2c4b3441..00000000 Binary files a/public/textures/chipped/engraved_mud.png and /dev/null differ diff --git a/public/textures/chipped/engraved_mud_bricks.png b/public/textures/chipped/engraved_mud_bricks.png deleted file mode 100644 index 06fd6e96..00000000 Binary files a/public/textures/chipped/engraved_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/engraved_nether_bricks.png b/public/textures/chipped/engraved_nether_bricks.png deleted file mode 100644 index e9e08f2b..00000000 Binary files a/public/textures/chipped/engraved_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/engraved_netherite_block.png b/public/textures/chipped/engraved_netherite_block.png deleted file mode 100644 index 611afd77..00000000 Binary files a/public/textures/chipped/engraved_netherite_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_netherrack.png b/public/textures/chipped/engraved_netherrack.png deleted file mode 100644 index bc8c6b90..00000000 Binary files a/public/textures/chipped/engraved_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/engraved_obsidian.png b/public/textures/chipped/engraved_obsidian.png deleted file mode 100644 index 6898171e..00000000 Binary files a/public/textures/chipped/engraved_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/engraved_packed_ice.png b/public/textures/chipped/engraved_packed_ice.png deleted file mode 100644 index 67b83a5e..00000000 Binary files a/public/textures/chipped/engraved_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/engraved_packed_mud.png b/public/textures/chipped/engraved_packed_mud.png deleted file mode 100644 index d7899dd0..00000000 Binary files a/public/textures/chipped/engraved_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/engraved_prismarine.png b/public/textures/chipped/engraved_prismarine.png deleted file mode 100644 index 22d752ca..00000000 Binary files a/public/textures/chipped/engraved_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/engraved_purpur_block.png b/public/textures/chipped/engraved_purpur_block.png deleted file mode 100644 index 73d998d0..00000000 Binary files a/public/textures/chipped/engraved_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_quartz_block.png b/public/textures/chipped/engraved_quartz_block.png deleted file mode 100644 index c5f61408..00000000 Binary files a/public/textures/chipped/engraved_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_raw_copper_block.png b/public/textures/chipped/engraved_raw_copper_block.png deleted file mode 100644 index 7b8f7e71..00000000 Binary files a/public/textures/chipped/engraved_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_raw_gold_block.png b/public/textures/chipped/engraved_raw_gold_block.png deleted file mode 100644 index ff8e8adf..00000000 Binary files a/public/textures/chipped/engraved_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_raw_iron_block.png b/public/textures/chipped/engraved_raw_iron_block.png deleted file mode 100644 index 1aa72649..00000000 Binary files a/public/textures/chipped/engraved_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_red_nether_bricks.png b/public/textures/chipped/engraved_red_nether_bricks.png deleted file mode 100644 index 8bb4d11b..00000000 Binary files a/public/textures/chipped/engraved_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/engraved_red_sandstone.png b/public/textures/chipped/engraved_red_sandstone.png deleted file mode 100644 index 7a753349..00000000 Binary files a/public/textures/chipped/engraved_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/engraved_redstone_block.png b/public/textures/chipped/engraved_redstone_block.png deleted file mode 100644 index 983d3713..00000000 Binary files a/public/textures/chipped/engraved_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_sandstone.png b/public/textures/chipped/engraved_sandstone.png deleted file mode 100644 index 3e5420a8..00000000 Binary files a/public/textures/chipped/engraved_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/engraved_smooth_stone.png b/public/textures/chipped/engraved_smooth_stone.png deleted file mode 100644 index 84093d0a..00000000 Binary files a/public/textures/chipped/engraved_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/engraved_snow_block.png b/public/textures/chipped/engraved_snow_block.png deleted file mode 100644 index d5e1382c..00000000 Binary files a/public/textures/chipped/engraved_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_stone.png b/public/textures/chipped/engraved_stone.png deleted file mode 100644 index b8244485..00000000 Binary files a/public/textures/chipped/engraved_stone.png and /dev/null differ diff --git a/public/textures/chipped/engraved_tuff.png b/public/textures/chipped/engraved_tuff.png deleted file mode 100644 index 8a2fa9bb..00000000 Binary files a/public/textures/chipped/engraved_tuff.png and /dev/null differ diff --git a/public/textures/chipped/engraved_waxed_copper_block.png b/public/textures/chipped/engraved_waxed_copper_block.png deleted file mode 100644 index 88fd940d..00000000 Binary files a/public/textures/chipped/engraved_waxed_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/engraved_waxed_exposed_copper.png b/public/textures/chipped/engraved_waxed_exposed_copper.png deleted file mode 100644 index f5d5874a..00000000 Binary files a/public/textures/chipped/engraved_waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/chipped/engraved_waxed_oxidized_copper.png b/public/textures/chipped/engraved_waxed_oxidized_copper.png deleted file mode 100644 index 41fdb0a5..00000000 Binary files a/public/textures/chipped/engraved_waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/chipped/engraved_waxed_weathered_copper.png b/public/textures/chipped/engraved_waxed_weathered_copper.png deleted file mode 100644 index 9d94744a..00000000 Binary files a/public/textures/chipped/engraved_waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/chipped/eroded_amethyst_block.png b/public/textures/chipped/eroded_amethyst_block.png deleted file mode 100644 index a4c6df36..00000000 Binary files a/public/textures/chipped/eroded_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_ancient_debris.png b/public/textures/chipped/eroded_ancient_debris.png deleted file mode 100644 index 075489ce..00000000 Binary files a/public/textures/chipped/eroded_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/eroded_andesite.png b/public/textures/chipped/eroded_andesite.png deleted file mode 100644 index 3a482e02..00000000 Binary files a/public/textures/chipped/eroded_andesite.png and /dev/null differ diff --git a/public/textures/chipped/eroded_basalt.png b/public/textures/chipped/eroded_basalt.png deleted file mode 100644 index 63b032de..00000000 Binary files a/public/textures/chipped/eroded_basalt.png and /dev/null differ diff --git a/public/textures/chipped/eroded_blackstone.png b/public/textures/chipped/eroded_blackstone.png deleted file mode 100644 index 60b5a52f..00000000 Binary files a/public/textures/chipped/eroded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/eroded_blue_ice.png b/public/textures/chipped/eroded_blue_ice.png deleted file mode 100644 index 6d03152a..00000000 Binary files a/public/textures/chipped/eroded_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/eroded_borderless_bricks.png b/public/textures/chipped/eroded_borderless_bricks.png deleted file mode 100644 index fe3f67be..00000000 Binary files a/public/textures/chipped/eroded_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/eroded_bricks.png b/public/textures/chipped/eroded_bricks.png deleted file mode 100644 index fe3f67be..00000000 Binary files a/public/textures/chipped/eroded_bricks.png and /dev/null differ diff --git a/public/textures/chipped/eroded_calcite.png b/public/textures/chipped/eroded_calcite.png deleted file mode 100644 index 2de00f70..00000000 Binary files a/public/textures/chipped/eroded_calcite.png and /dev/null differ diff --git a/public/textures/chipped/eroded_coal_block.png b/public/textures/chipped/eroded_coal_block.png deleted file mode 100644 index 91613d27..00000000 Binary files a/public/textures/chipped/eroded_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_cobblestone.png b/public/textures/chipped/eroded_cobblestone.png deleted file mode 100644 index 69900d0c..00000000 Binary files a/public/textures/chipped/eroded_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/eroded_crying_obsidian.png b/public/textures/chipped/eroded_crying_obsidian.png deleted file mode 100644 index 11da2807..00000000 Binary files a/public/textures/chipped/eroded_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/eroded_dark_prismarine.png b/public/textures/chipped/eroded_dark_prismarine.png deleted file mode 100644 index 62121fff..00000000 Binary files a/public/textures/chipped/eroded_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/eroded_deepslate.png b/public/textures/chipped/eroded_deepslate.png deleted file mode 100644 index f4bae36f..00000000 Binary files a/public/textures/chipped/eroded_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/eroded_diorite.png b/public/textures/chipped/eroded_diorite.png deleted file mode 100644 index ab7abdee..00000000 Binary files a/public/textures/chipped/eroded_diorite.png and /dev/null differ diff --git a/public/textures/chipped/eroded_dirt.png b/public/textures/chipped/eroded_dirt.png deleted file mode 100644 index 79bb5425..00000000 Binary files a/public/textures/chipped/eroded_dirt.png and /dev/null differ diff --git a/public/textures/chipped/eroded_dripstone_block.png b/public/textures/chipped/eroded_dripstone_block.png deleted file mode 100644 index 002f0ef2..00000000 Binary files a/public/textures/chipped/eroded_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_end_stone.png b/public/textures/chipped/eroded_end_stone.png deleted file mode 100644 index cb4da6f5..00000000 Binary files a/public/textures/chipped/eroded_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/eroded_gilded_blackstone.png b/public/textures/chipped/eroded_gilded_blackstone.png deleted file mode 100644 index 26fd826f..00000000 Binary files a/public/textures/chipped/eroded_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/eroded_granite.png b/public/textures/chipped/eroded_granite.png deleted file mode 100644 index cc062e9f..00000000 Binary files a/public/textures/chipped/eroded_granite.png and /dev/null differ diff --git a/public/textures/chipped/eroded_ice.png b/public/textures/chipped/eroded_ice.png deleted file mode 100644 index a103c6ec..00000000 Binary files a/public/textures/chipped/eroded_ice.png and /dev/null differ diff --git a/public/textures/chipped/eroded_lapis_block.png b/public/textures/chipped/eroded_lapis_block.png deleted file mode 100644 index 25b7a722..00000000 Binary files a/public/textures/chipped/eroded_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_lodestone.png b/public/textures/chipped/eroded_lodestone.png deleted file mode 100644 index a3c18c66..00000000 Binary files a/public/textures/chipped/eroded_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/eroded_magma_block.png b/public/textures/chipped/eroded_magma_block.png deleted file mode 100644 index 6626b7c7..00000000 Binary files a/public/textures/chipped/eroded_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_mossy_cobblestone.png b/public/textures/chipped/eroded_mossy_cobblestone.png deleted file mode 100644 index ee69cb40..00000000 Binary files a/public/textures/chipped/eroded_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/eroded_mossy_stone_bricks.png b/public/textures/chipped/eroded_mossy_stone_bricks.png deleted file mode 100644 index 48a5512c..00000000 Binary files a/public/textures/chipped/eroded_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/eroded_nether_bricks.png b/public/textures/chipped/eroded_nether_bricks.png deleted file mode 100644 index 95c79373..00000000 Binary files a/public/textures/chipped/eroded_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/eroded_netherrack.png b/public/textures/chipped/eroded_netherrack.png deleted file mode 100644 index 3769ba0b..00000000 Binary files a/public/textures/chipped/eroded_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/eroded_obsidian.png b/public/textures/chipped/eroded_obsidian.png deleted file mode 100644 index b35d580b..00000000 Binary files a/public/textures/chipped/eroded_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/eroded_packed_ice.png b/public/textures/chipped/eroded_packed_ice.png deleted file mode 100644 index 62669672..00000000 Binary files a/public/textures/chipped/eroded_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/eroded_prismarine.png b/public/textures/chipped/eroded_prismarine.png deleted file mode 100644 index 46010ee9..00000000 Binary files a/public/textures/chipped/eroded_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/eroded_purpur_block.png b/public/textures/chipped/eroded_purpur_block.png deleted file mode 100644 index 89dc5ee8..00000000 Binary files a/public/textures/chipped/eroded_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_quartz_block.png b/public/textures/chipped/eroded_quartz_block.png deleted file mode 100644 index c4d7b63a..00000000 Binary files a/public/textures/chipped/eroded_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_raw_copper_block.png b/public/textures/chipped/eroded_raw_copper_block.png deleted file mode 100644 index cc355992..00000000 Binary files a/public/textures/chipped/eroded_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_raw_gold_block.png b/public/textures/chipped/eroded_raw_gold_block.png deleted file mode 100644 index dacaa7fe..00000000 Binary files a/public/textures/chipped/eroded_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_raw_iron_block.png b/public/textures/chipped/eroded_raw_iron_block.png deleted file mode 100644 index 00005b37..00000000 Binary files a/public/textures/chipped/eroded_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_red_nether_bricks.png b/public/textures/chipped/eroded_red_nether_bricks.png deleted file mode 100644 index fd11ca3b..00000000 Binary files a/public/textures/chipped/eroded_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/eroded_red_sandstone.png b/public/textures/chipped/eroded_red_sandstone.png deleted file mode 100644 index ba09b0a8..00000000 Binary files a/public/textures/chipped/eroded_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/eroded_redstone_block.png b/public/textures/chipped/eroded_redstone_block.png deleted file mode 100644 index 5204593c..00000000 Binary files a/public/textures/chipped/eroded_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_sandstone.png b/public/textures/chipped/eroded_sandstone.png deleted file mode 100644 index 8774e0bd..00000000 Binary files a/public/textures/chipped/eroded_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/eroded_smooth_stone.png b/public/textures/chipped/eroded_smooth_stone.png deleted file mode 100644 index 41fc4301..00000000 Binary files a/public/textures/chipped/eroded_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/eroded_snow_block.png b/public/textures/chipped/eroded_snow_block.png deleted file mode 100644 index 109de336..00000000 Binary files a/public/textures/chipped/eroded_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/eroded_tuff.png b/public/textures/chipped/eroded_tuff.png deleted file mode 100644 index 9cf11ac6..00000000 Binary files a/public/textures/chipped/eroded_tuff.png and /dev/null differ diff --git a/public/textures/chipped/erratic_nether_wart_block.png b/public/textures/chipped/erratic_nether_wart_block.png deleted file mode 100644 index 9c6a0ef9..00000000 Binary files a/public/textures/chipped/erratic_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/erratic_warped_wart_block.png b/public/textures/chipped/erratic_warped_wart_block.png deleted file mode 100644 index 7a4c724d..00000000 Binary files a/public/textures/chipped/erratic_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/etched_amethyst_block_bricks.png b/public/textures/chipped/etched_amethyst_block_bricks.png deleted file mode 100644 index f768a43a..00000000 Binary files a/public/textures/chipped/etched_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_ancient_debris_bricks.png b/public/textures/chipped/etched_ancient_debris_bricks.png deleted file mode 100644 index b08a2b95..00000000 Binary files a/public/textures/chipped/etched_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_andesite_bricks.png b/public/textures/chipped/etched_andesite_bricks.png deleted file mode 100644 index b6a33e49..00000000 Binary files a/public/textures/chipped/etched_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_basalt_bricks.png b/public/textures/chipped/etched_basalt_bricks.png deleted file mode 100644 index b55e6c72..00000000 Binary files a/public/textures/chipped/etched_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_blackstone_bricks.png b/public/textures/chipped/etched_blackstone_bricks.png deleted file mode 100644 index 298fe67c..00000000 Binary files a/public/textures/chipped/etched_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_blue_ice_bricks.png b/public/textures/chipped/etched_blue_ice_bricks.png deleted file mode 100644 index 85f8fd6a..00000000 Binary files a/public/textures/chipped/etched_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_borderless_bricks_bricks.png b/public/textures/chipped/etched_borderless_bricks_bricks.png deleted file mode 100644 index e0c71472..00000000 Binary files a/public/textures/chipped/etched_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_bricks_bricks.png b/public/textures/chipped/etched_bricks_bricks.png deleted file mode 100644 index 158501fa..00000000 Binary files a/public/textures/chipped/etched_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_calcite_bricks.png b/public/textures/chipped/etched_calcite_bricks.png deleted file mode 100644 index d9e25099..00000000 Binary files a/public/textures/chipped/etched_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_clay_bricks.png b/public/textures/chipped/etched_clay_bricks.png deleted file mode 100644 index db52b6c6..00000000 Binary files a/public/textures/chipped/etched_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_coal_block_bricks.png b/public/textures/chipped/etched_coal_block_bricks.png deleted file mode 100644 index 1c7ac184..00000000 Binary files a/public/textures/chipped/etched_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_cobblestone_bricks.png b/public/textures/chipped/etched_cobblestone_bricks.png deleted file mode 100644 index f5edb430..00000000 Binary files a/public/textures/chipped/etched_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_crying_obsidian_bricks.png b/public/textures/chipped/etched_crying_obsidian_bricks.png deleted file mode 100644 index 98151b65..00000000 Binary files a/public/textures/chipped/etched_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_dark_prismarine_bricks.png b/public/textures/chipped/etched_dark_prismarine_bricks.png deleted file mode 100644 index bafe9b66..00000000 Binary files a/public/textures/chipped/etched_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_deepslate_bricks.png b/public/textures/chipped/etched_deepslate_bricks.png deleted file mode 100644 index a579e5e4..00000000 Binary files a/public/textures/chipped/etched_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_diorite_bricks.png b/public/textures/chipped/etched_diorite_bricks.png deleted file mode 100644 index 7579e0af..00000000 Binary files a/public/textures/chipped/etched_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_dirt_bricks.png b/public/textures/chipped/etched_dirt_bricks.png deleted file mode 100644 index 43515493..00000000 Binary files a/public/textures/chipped/etched_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_dripstone_block_bricks.png b/public/textures/chipped/etched_dripstone_block_bricks.png deleted file mode 100644 index 24d0ab11..00000000 Binary files a/public/textures/chipped/etched_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_end_stone_bricks.png b/public/textures/chipped/etched_end_stone_bricks.png deleted file mode 100644 index 8e53ac48..00000000 Binary files a/public/textures/chipped/etched_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_gilded_blackstone_bricks.png b/public/textures/chipped/etched_gilded_blackstone_bricks.png deleted file mode 100644 index 720d33d4..00000000 Binary files a/public/textures/chipped/etched_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_granite_bricks.png b/public/textures/chipped/etched_granite_bricks.png deleted file mode 100644 index a78ef7cc..00000000 Binary files a/public/textures/chipped/etched_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_ice_bricks.png b/public/textures/chipped/etched_ice_bricks.png deleted file mode 100644 index 6bd2f4a5..00000000 Binary files a/public/textures/chipped/etched_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_lapis_block_bricks.png b/public/textures/chipped/etched_lapis_block_bricks.png deleted file mode 100644 index d606e468..00000000 Binary files a/public/textures/chipped/etched_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_lodestone_bricks.png b/public/textures/chipped/etched_lodestone_bricks.png deleted file mode 100644 index c496fd95..00000000 Binary files a/public/textures/chipped/etched_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_magma_block_bricks.png b/public/textures/chipped/etched_magma_block_bricks.png deleted file mode 100644 index d6b87c6e..00000000 Binary files a/public/textures/chipped/etched_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_mossy_cobblestone_bricks.png b/public/textures/chipped/etched_mossy_cobblestone_bricks.png deleted file mode 100644 index e0a1f23b..00000000 Binary files a/public/textures/chipped/etched_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_mossy_stone_bricks_bricks.png b/public/textures/chipped/etched_mossy_stone_bricks_bricks.png deleted file mode 100644 index bdba1eab..00000000 Binary files a/public/textures/chipped/etched_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_mud_bricks.png b/public/textures/chipped/etched_mud_bricks.png deleted file mode 100644 index a4de33a7..00000000 Binary files a/public/textures/chipped/etched_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_mud_bricks_bricks.png b/public/textures/chipped/etched_mud_bricks_bricks.png deleted file mode 100644 index c0d66fb2..00000000 Binary files a/public/textures/chipped/etched_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_nether_bricks_bricks.png b/public/textures/chipped/etched_nether_bricks_bricks.png deleted file mode 100644 index 57a439d3..00000000 Binary files a/public/textures/chipped/etched_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_netherrack_bricks.png b/public/textures/chipped/etched_netherrack_bricks.png deleted file mode 100644 index 6a3b2388..00000000 Binary files a/public/textures/chipped/etched_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_obsidian_bricks.png b/public/textures/chipped/etched_obsidian_bricks.png deleted file mode 100644 index c723718c..00000000 Binary files a/public/textures/chipped/etched_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_packed_ice_bricks.png b/public/textures/chipped/etched_packed_ice_bricks.png deleted file mode 100644 index c27b509a..00000000 Binary files a/public/textures/chipped/etched_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_packed_mud_bricks.png b/public/textures/chipped/etched_packed_mud_bricks.png deleted file mode 100644 index 124a0717..00000000 Binary files a/public/textures/chipped/etched_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_prismarine_bricks.png b/public/textures/chipped/etched_prismarine_bricks.png deleted file mode 100644 index 6a1db7d8..00000000 Binary files a/public/textures/chipped/etched_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_purpur_block_bricks.png b/public/textures/chipped/etched_purpur_block_bricks.png deleted file mode 100644 index 215f7d14..00000000 Binary files a/public/textures/chipped/etched_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_quartz_block_bricks.png b/public/textures/chipped/etched_quartz_block_bricks.png deleted file mode 100644 index 6d383f97..00000000 Binary files a/public/textures/chipped/etched_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_raw_copper_block_bricks.png b/public/textures/chipped/etched_raw_copper_block_bricks.png deleted file mode 100644 index 78f83288..00000000 Binary files a/public/textures/chipped/etched_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_raw_gold_block_bricks.png b/public/textures/chipped/etched_raw_gold_block_bricks.png deleted file mode 100644 index 5e517a37..00000000 Binary files a/public/textures/chipped/etched_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_raw_iron_block_bricks.png b/public/textures/chipped/etched_raw_iron_block_bricks.png deleted file mode 100644 index 62af944a..00000000 Binary files a/public/textures/chipped/etched_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_red_nether_bricks_bricks.png b/public/textures/chipped/etched_red_nether_bricks_bricks.png deleted file mode 100644 index 87fe0d37..00000000 Binary files a/public/textures/chipped/etched_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_red_sandstone_bricks.png b/public/textures/chipped/etched_red_sandstone_bricks.png deleted file mode 100644 index e12568ee..00000000 Binary files a/public/textures/chipped/etched_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_redstone_block_bricks.png b/public/textures/chipped/etched_redstone_block_bricks.png deleted file mode 100644 index 79544516..00000000 Binary files a/public/textures/chipped/etched_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_sandstone_bricks.png b/public/textures/chipped/etched_sandstone_bricks.png deleted file mode 100644 index 384f100c..00000000 Binary files a/public/textures/chipped/etched_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_smooth_stone_bricks.png b/public/textures/chipped/etched_smooth_stone_bricks.png deleted file mode 100644 index a405923d..00000000 Binary files a/public/textures/chipped/etched_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_snow_block_bricks.png b/public/textures/chipped/etched_snow_block_bricks.png deleted file mode 100644 index 2a6dfc98..00000000 Binary files a/public/textures/chipped/etched_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_stone_bricks.png b/public/textures/chipped/etched_stone_bricks.png deleted file mode 100644 index 1956c99c..00000000 Binary files a/public/textures/chipped/etched_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/etched_tuff_bricks.png b/public/textures/chipped/etched_tuff_bricks.png deleted file mode 100644 index 3947a37b..00000000 Binary files a/public/textures/chipped/etched_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/exposed_ochre_froglight.png b/public/textures/chipped/exposed_ochre_froglight.png deleted file mode 100644 index 795c37fe..00000000 Binary files a/public/textures/chipped/exposed_ochre_froglight.png and /dev/null differ diff --git a/public/textures/chipped/exposed_pearlescent_froglight.png b/public/textures/chipped/exposed_pearlescent_froglight.png deleted file mode 100644 index 000273e9..00000000 Binary files a/public/textures/chipped/exposed_pearlescent_froglight.png and /dev/null differ diff --git a/public/textures/chipped/exposed_verdant_froglight.png b/public/textures/chipped/exposed_verdant_froglight.png deleted file mode 100644 index f4518dec..00000000 Binary files a/public/textures/chipped/exposed_verdant_froglight.png and /dev/null differ diff --git a/public/textures/chipped/eye_mud.png b/public/textures/chipped/eye_mud.png deleted file mode 100644 index 32796e15..00000000 Binary files a/public/textures/chipped/eye_mud.png and /dev/null differ diff --git a/public/textures/chipped/eye_mud_bricks.png b/public/textures/chipped/eye_mud_bricks.png deleted file mode 100644 index 49d24eda..00000000 Binary files a/public/textures/chipped/eye_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/eye_packed_mud.png b/public/textures/chipped/eye_packed_mud.png deleted file mode 100644 index dea1e532..00000000 Binary files a/public/textures/chipped/eye_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/eyed_nether_wart_block.png b/public/textures/chipped/eyed_nether_wart_block.png deleted file mode 100644 index be037285..00000000 Binary files a/public/textures/chipped/eyed_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/eyed_warped_wart_block.png b/public/textures/chipped/eyed_warped_wart_block.png deleted file mode 100644 index 0aaabf8a..00000000 Binary files a/public/textures/chipped/eyed_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/f_sign_stripped_acacia_log.png b/public/textures/chipped/f_sign_stripped_acacia_log.png deleted file mode 100644 index 74e25814..00000000 Binary files a/public/textures/chipped/f_sign_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/f_sign_stripped_birch_log.png b/public/textures/chipped/f_sign_stripped_birch_log.png deleted file mode 100644 index b7c788c9..00000000 Binary files a/public/textures/chipped/f_sign_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/f_sign_stripped_cherry_log.png b/public/textures/chipped/f_sign_stripped_cherry_log.png deleted file mode 100644 index ea99ffa4..00000000 Binary files a/public/textures/chipped/f_sign_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/f_sign_stripped_crimson_stem.png b/public/textures/chipped/f_sign_stripped_crimson_stem.png deleted file mode 100644 index 47a4a10f..00000000 Binary files a/public/textures/chipped/f_sign_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/f_sign_stripped_dark_oak_log.png b/public/textures/chipped/f_sign_stripped_dark_oak_log.png deleted file mode 100644 index 83a895a3..00000000 Binary files a/public/textures/chipped/f_sign_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/f_sign_stripped_jungle_log.png b/public/textures/chipped/f_sign_stripped_jungle_log.png deleted file mode 100644 index 1a3896de..00000000 Binary files a/public/textures/chipped/f_sign_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/f_sign_stripped_mangrove_log.png b/public/textures/chipped/f_sign_stripped_mangrove_log.png deleted file mode 100644 index 51966114..00000000 Binary files a/public/textures/chipped/f_sign_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/f_sign_stripped_oak_log.png b/public/textures/chipped/f_sign_stripped_oak_log.png deleted file mode 100644 index a096ad45..00000000 Binary files a/public/textures/chipped/f_sign_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/f_sign_stripped_spruce_log.png b/public/textures/chipped/f_sign_stripped_spruce_log.png deleted file mode 100644 index ac8eab34..00000000 Binary files a/public/textures/chipped/f_sign_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/f_sign_stripped_warped_stem.png b/public/textures/chipped/f_sign_stripped_warped_stem.png deleted file mode 100644 index 84789872..00000000 Binary files a/public/textures/chipped/f_sign_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/faded_soul_sand.png b/public/textures/chipped/faded_soul_sand.png deleted file mode 100644 index 81ec6047..00000000 Binary files a/public/textures/chipped/faded_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/fancy_acacia_trapdoor.png b/public/textures/chipped/fancy_acacia_trapdoor.png deleted file mode 100644 index 256437ed..00000000 Binary files a/public/textures/chipped/fancy_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/fancy_bamboo_trapdoor.png b/public/textures/chipped/fancy_bamboo_trapdoor.png deleted file mode 100644 index 72b47c32..00000000 Binary files a/public/textures/chipped/fancy_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/fancy_birch_trapdoor.png b/public/textures/chipped/fancy_birch_trapdoor.png deleted file mode 100644 index e9656ee1..00000000 Binary files a/public/textures/chipped/fancy_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/fancy_black_stained_glass.png b/public/textures/chipped/fancy_black_stained_glass.png deleted file mode 100644 index 8e8ff733..00000000 Binary files a/public/textures/chipped/fancy_black_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_black_stained_glass_pane.png b/public/textures/chipped/fancy_black_stained_glass_pane.png deleted file mode 100644 index 491b6d3d..00000000 Binary files a/public/textures/chipped/fancy_black_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_blue_stained_glass.png b/public/textures/chipped/fancy_blue_stained_glass.png deleted file mode 100644 index caafb06d..00000000 Binary files a/public/textures/chipped/fancy_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_blue_stained_glass_pane.png b/public/textures/chipped/fancy_blue_stained_glass_pane.png deleted file mode 100644 index b17dbbae..00000000 Binary files a/public/textures/chipped/fancy_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_brown_stained_glass.png b/public/textures/chipped/fancy_brown_stained_glass.png deleted file mode 100644 index 1f2d1873..00000000 Binary files a/public/textures/chipped/fancy_brown_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_brown_stained_glass_pane.png b/public/textures/chipped/fancy_brown_stained_glass_pane.png deleted file mode 100644 index f51ae785..00000000 Binary files a/public/textures/chipped/fancy_brown_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_cherry_trapdoor.png b/public/textures/chipped/fancy_cherry_trapdoor.png deleted file mode 100644 index c0616b7d..00000000 Binary files a/public/textures/chipped/fancy_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/fancy_chiseled_mud.png b/public/textures/chipped/fancy_chiseled_mud.png deleted file mode 100644 index 431f0430..00000000 Binary files a/public/textures/chipped/fancy_chiseled_mud.png and /dev/null differ diff --git a/public/textures/chipped/fancy_chiseled_mud_bricks.png b/public/textures/chipped/fancy_chiseled_mud_bricks.png deleted file mode 100644 index e31a9bef..00000000 Binary files a/public/textures/chipped/fancy_chiseled_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/fancy_chiseled_packed_mud.png b/public/textures/chipped/fancy_chiseled_packed_mud.png deleted file mode 100644 index 91768744..00000000 Binary files a/public/textures/chipped/fancy_chiseled_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/fancy_crimson_trapdoor.png b/public/textures/chipped/fancy_crimson_trapdoor.png deleted file mode 100644 index 8d29c410..00000000 Binary files a/public/textures/chipped/fancy_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/fancy_cyan_stained_glass.png b/public/textures/chipped/fancy_cyan_stained_glass.png deleted file mode 100644 index 7179ab75..00000000 Binary files a/public/textures/chipped/fancy_cyan_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_cyan_stained_glass_pane.png b/public/textures/chipped/fancy_cyan_stained_glass_pane.png deleted file mode 100644 index 02c6d97e..00000000 Binary files a/public/textures/chipped/fancy_cyan_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_dark_oak_trapdoor.png b/public/textures/chipped/fancy_dark_oak_trapdoor.png deleted file mode 100644 index 8c8339b3..00000000 Binary files a/public/textures/chipped/fancy_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/fancy_glowstone_lantern.png b/public/textures/chipped/fancy_glowstone_lantern.png deleted file mode 100644 index b81ed477..00000000 Binary files a/public/textures/chipped/fancy_glowstone_lantern.png and /dev/null differ diff --git a/public/textures/chipped/fancy_gray_stained_glass.png b/public/textures/chipped/fancy_gray_stained_glass.png deleted file mode 100644 index 66840aa9..00000000 Binary files a/public/textures/chipped/fancy_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_gray_stained_glass_pane.png b/public/textures/chipped/fancy_gray_stained_glass_pane.png deleted file mode 100644 index ae614738..00000000 Binary files a/public/textures/chipped/fancy_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_green_stained_glass.png b/public/textures/chipped/fancy_green_stained_glass.png deleted file mode 100644 index 42864636..00000000 Binary files a/public/textures/chipped/fancy_green_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_green_stained_glass_pane.png b/public/textures/chipped/fancy_green_stained_glass_pane.png deleted file mode 100644 index 45a5f89c..00000000 Binary files a/public/textures/chipped/fancy_green_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_leaded_glass.png b/public/textures/chipped/fancy_leaded_glass.png deleted file mode 100644 index 5ec34957..00000000 Binary files a/public/textures/chipped/fancy_leaded_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_leaded_glass_pane.png b/public/textures/chipped/fancy_leaded_glass_pane.png deleted file mode 100644 index 8d69f51d..00000000 Binary files a/public/textures/chipped/fancy_leaded_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_light_blue_stained_glass.png b/public/textures/chipped/fancy_light_blue_stained_glass.png deleted file mode 100644 index 55c2df7f..00000000 Binary files a/public/textures/chipped/fancy_light_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_light_blue_stained_glass_pane.png b/public/textures/chipped/fancy_light_blue_stained_glass_pane.png deleted file mode 100644 index f3c5ed28..00000000 Binary files a/public/textures/chipped/fancy_light_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_light_gray_stained_glass.png b/public/textures/chipped/fancy_light_gray_stained_glass.png deleted file mode 100644 index a45d0ffd..00000000 Binary files a/public/textures/chipped/fancy_light_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_light_gray_stained_glass_pane.png b/public/textures/chipped/fancy_light_gray_stained_glass_pane.png deleted file mode 100644 index 384ead14..00000000 Binary files a/public/textures/chipped/fancy_light_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_lime_stained_glass.png b/public/textures/chipped/fancy_lime_stained_glass.png deleted file mode 100644 index b1b5c544..00000000 Binary files a/public/textures/chipped/fancy_lime_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_lime_stained_glass_pane.png b/public/textures/chipped/fancy_lime_stained_glass_pane.png deleted file mode 100644 index 0e0312dd..00000000 Binary files a/public/textures/chipped/fancy_lime_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_magenta_stained_glass.png b/public/textures/chipped/fancy_magenta_stained_glass.png deleted file mode 100644 index 4c24c648..00000000 Binary files a/public/textures/chipped/fancy_magenta_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_magenta_stained_glass_pane.png b/public/textures/chipped/fancy_magenta_stained_glass_pane.png deleted file mode 100644 index 96fd27fa..00000000 Binary files a/public/textures/chipped/fancy_magenta_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_mud.png b/public/textures/chipped/fancy_mud.png deleted file mode 100644 index fe6c1e4c..00000000 Binary files a/public/textures/chipped/fancy_mud.png and /dev/null differ diff --git a/public/textures/chipped/fancy_mud_bricks.png b/public/textures/chipped/fancy_mud_bricks.png deleted file mode 100644 index 4f8b7a46..00000000 Binary files a/public/textures/chipped/fancy_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/fancy_mud_bricks_pillar.png b/public/textures/chipped/fancy_mud_bricks_pillar.png deleted file mode 100644 index e31381ad..00000000 Binary files a/public/textures/chipped/fancy_mud_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fancy_mud_pillar.png b/public/textures/chipped/fancy_mud_pillar.png deleted file mode 100644 index 1171f370..00000000 Binary files a/public/textures/chipped/fancy_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fancy_oak_trapdoor.png b/public/textures/chipped/fancy_oak_trapdoor.png deleted file mode 100644 index eeeac38d..00000000 Binary files a/public/textures/chipped/fancy_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/fancy_orange_stained_glass.png b/public/textures/chipped/fancy_orange_stained_glass.png deleted file mode 100644 index eb823be4..00000000 Binary files a/public/textures/chipped/fancy_orange_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_orange_stained_glass_pane.png b/public/textures/chipped/fancy_orange_stained_glass_pane.png deleted file mode 100644 index 249b02bb..00000000 Binary files a/public/textures/chipped/fancy_orange_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_packed_mud.png b/public/textures/chipped/fancy_packed_mud.png deleted file mode 100644 index db880ce7..00000000 Binary files a/public/textures/chipped/fancy_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/fancy_packed_mud_pillar.png b/public/textures/chipped/fancy_packed_mud_pillar.png deleted file mode 100644 index 90636f2c..00000000 Binary files a/public/textures/chipped/fancy_packed_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fancy_pink_stained_glass.png b/public/textures/chipped/fancy_pink_stained_glass.png deleted file mode 100644 index 1d4cc104..00000000 Binary files a/public/textures/chipped/fancy_pink_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_pink_stained_glass_pane.png b/public/textures/chipped/fancy_pink_stained_glass_pane.png deleted file mode 100644 index d5fde20a..00000000 Binary files a/public/textures/chipped/fancy_pink_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_purple_stained_glass.png b/public/textures/chipped/fancy_purple_stained_glass.png deleted file mode 100644 index 4aeebc52..00000000 Binary files a/public/textures/chipped/fancy_purple_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_purple_stained_glass_pane.png b/public/textures/chipped/fancy_purple_stained_glass_pane.png deleted file mode 100644 index 26bd1fab..00000000 Binary files a/public/textures/chipped/fancy_purple_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_red_stained_glass.png b/public/textures/chipped/fancy_red_stained_glass.png deleted file mode 100644 index b640fc06..00000000 Binary files a/public/textures/chipped/fancy_red_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_red_stained_glass_pane.png b/public/textures/chipped/fancy_red_stained_glass_pane.png deleted file mode 100644 index 5ead6f53..00000000 Binary files a/public/textures/chipped/fancy_red_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_redstone_lamp.png b/public/textures/chipped/fancy_redstone_lamp.png deleted file mode 100644 index bda48d3d..00000000 Binary files a/public/textures/chipped/fancy_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/fancy_sea_lantern.png b/public/textures/chipped/fancy_sea_lantern.png deleted file mode 100644 index b35dee5f..00000000 Binary files a/public/textures/chipped/fancy_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/fancy_shroomlight_lantern.png b/public/textures/chipped/fancy_shroomlight_lantern.png deleted file mode 100644 index 6c219921..00000000 Binary files a/public/textures/chipped/fancy_shroomlight_lantern.png and /dev/null differ diff --git a/public/textures/chipped/fancy_spruce_trapdoor.png b/public/textures/chipped/fancy_spruce_trapdoor.png deleted file mode 100644 index 6d5f1529..00000000 Binary files a/public/textures/chipped/fancy_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/fancy_white_redstone_lamp.png b/public/textures/chipped/fancy_white_redstone_lamp.png deleted file mode 100644 index d6ef8945..00000000 Binary files a/public/textures/chipped/fancy_white_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/fancy_white_stained_glass.png b/public/textures/chipped/fancy_white_stained_glass.png deleted file mode 100644 index 1994daf3..00000000 Binary files a/public/textures/chipped/fancy_white_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_white_stained_glass_pane.png b/public/textures/chipped/fancy_white_stained_glass_pane.png deleted file mode 100644 index c279f3e1..00000000 Binary files a/public/textures/chipped/fancy_white_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fancy_yellow_stained_glass.png b/public/textures/chipped/fancy_yellow_stained_glass.png deleted file mode 100644 index 48e98d24..00000000 Binary files a/public/textures/chipped/fancy_yellow_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/fancy_yellow_stained_glass_pane.png b/public/textures/chipped/fancy_yellow_stained_glass_pane.png deleted file mode 100644 index 1f05d9f7..00000000 Binary files a/public/textures/chipped/fancy_yellow_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/fertile_hay_block.png b/public/textures/chipped/fertile_hay_block.png deleted file mode 100644 index d27debee..00000000 Binary files a/public/textures/chipped/fertile_hay_block.png and /dev/null differ diff --git a/public/textures/chipped/fine_acacia_planks.png b/public/textures/chipped/fine_acacia_planks.png deleted file mode 100644 index 051a57d1..00000000 Binary files a/public/textures/chipped/fine_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_amethyst_block_pillar.png b/public/textures/chipped/fine_amethyst_block_pillar.png deleted file mode 100644 index dd73e8c0..00000000 Binary files a/public/textures/chipped/fine_amethyst_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_ancient_debris_pillar.png b/public/textures/chipped/fine_ancient_debris_pillar.png deleted file mode 100644 index 026c9d38..00000000 Binary files a/public/textures/chipped/fine_ancient_debris_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_andesite_pillar.png b/public/textures/chipped/fine_andesite_pillar.png deleted file mode 100644 index d70ef5cd..00000000 Binary files a/public/textures/chipped/fine_andesite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_bamboo_planks.png b/public/textures/chipped/fine_bamboo_planks.png deleted file mode 100644 index 00f62a9e..00000000 Binary files a/public/textures/chipped/fine_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_basalt_pillar.png b/public/textures/chipped/fine_basalt_pillar.png deleted file mode 100644 index c5f51f42..00000000 Binary files a/public/textures/chipped/fine_basalt_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_birch_planks.png b/public/textures/chipped/fine_birch_planks.png deleted file mode 100644 index c0419da6..00000000 Binary files a/public/textures/chipped/fine_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_blackstone_pillar.png b/public/textures/chipped/fine_blackstone_pillar.png deleted file mode 100644 index 4a889591..00000000 Binary files a/public/textures/chipped/fine_blackstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_blue_ice_pillar.png b/public/textures/chipped/fine_blue_ice_pillar.png deleted file mode 100644 index eeda0ed3..00000000 Binary files a/public/textures/chipped/fine_blue_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_borderless_bricks_pillar.png b/public/textures/chipped/fine_borderless_bricks_pillar.png deleted file mode 100644 index 72b86b34..00000000 Binary files a/public/textures/chipped/fine_borderless_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_bricks_pillar.png b/public/textures/chipped/fine_bricks_pillar.png deleted file mode 100644 index 344c8f98..00000000 Binary files a/public/textures/chipped/fine_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_calcite_pillar.png b/public/textures/chipped/fine_calcite_pillar.png deleted file mode 100644 index 2553e0c4..00000000 Binary files a/public/textures/chipped/fine_calcite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_cherry_planks.png b/public/textures/chipped/fine_cherry_planks.png deleted file mode 100644 index 10d9c1a0..00000000 Binary files a/public/textures/chipped/fine_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_clay_pillar.png b/public/textures/chipped/fine_clay_pillar.png deleted file mode 100644 index f08f420c..00000000 Binary files a/public/textures/chipped/fine_clay_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_coal_block_pillar.png b/public/textures/chipped/fine_coal_block_pillar.png deleted file mode 100644 index 69e92bd9..00000000 Binary files a/public/textures/chipped/fine_coal_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_cobblestone_pillar.png b/public/textures/chipped/fine_cobblestone_pillar.png deleted file mode 100644 index 3f6da486..00000000 Binary files a/public/textures/chipped/fine_cobblestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_crimson_planks.png b/public/textures/chipped/fine_crimson_planks.png deleted file mode 100644 index fede0be0..00000000 Binary files a/public/textures/chipped/fine_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_crying_obsidian_pillar.png b/public/textures/chipped/fine_crying_obsidian_pillar.png deleted file mode 100644 index 8ff153ca..00000000 Binary files a/public/textures/chipped/fine_crying_obsidian_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_dark_oak_planks.png b/public/textures/chipped/fine_dark_oak_planks.png deleted file mode 100644 index f9d523f5..00000000 Binary files a/public/textures/chipped/fine_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_dark_prismarine_pillar.png b/public/textures/chipped/fine_dark_prismarine_pillar.png deleted file mode 100644 index 375792e5..00000000 Binary files a/public/textures/chipped/fine_dark_prismarine_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_deepslate_pillar.png b/public/textures/chipped/fine_deepslate_pillar.png deleted file mode 100644 index 65db64e7..00000000 Binary files a/public/textures/chipped/fine_deepslate_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_diorite_pillar.png b/public/textures/chipped/fine_diorite_pillar.png deleted file mode 100644 index 5ba8d0f0..00000000 Binary files a/public/textures/chipped/fine_diorite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_dirt_pillar.png b/public/textures/chipped/fine_dirt_pillar.png deleted file mode 100644 index 6a547de9..00000000 Binary files a/public/textures/chipped/fine_dirt_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_dripstone_block_pillar.png b/public/textures/chipped/fine_dripstone_block_pillar.png deleted file mode 100644 index 8d74cf8a..00000000 Binary files a/public/textures/chipped/fine_dripstone_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_end_stone_pillar.png b/public/textures/chipped/fine_end_stone_pillar.png deleted file mode 100644 index 7453d0d2..00000000 Binary files a/public/textures/chipped/fine_end_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_gilded_blackstone_pillar.png b/public/textures/chipped/fine_gilded_blackstone_pillar.png deleted file mode 100644 index 9d0cd55d..00000000 Binary files a/public/textures/chipped/fine_gilded_blackstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_granite_pillar.png b/public/textures/chipped/fine_granite_pillar.png deleted file mode 100644 index 392eeaf6..00000000 Binary files a/public/textures/chipped/fine_granite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_ice_pillar.png b/public/textures/chipped/fine_ice_pillar.png deleted file mode 100644 index b118118b..00000000 Binary files a/public/textures/chipped/fine_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_jungle_planks.png b/public/textures/chipped/fine_jungle_planks.png deleted file mode 100644 index 97e5f915..00000000 Binary files a/public/textures/chipped/fine_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_lapis_block_pillar.png b/public/textures/chipped/fine_lapis_block_pillar.png deleted file mode 100644 index a2f85603..00000000 Binary files a/public/textures/chipped/fine_lapis_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_lodestone_pillar.png b/public/textures/chipped/fine_lodestone_pillar.png deleted file mode 100644 index 9aa68ed6..00000000 Binary files a/public/textures/chipped/fine_lodestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_magma_block_pillar.png b/public/textures/chipped/fine_magma_block_pillar.png deleted file mode 100644 index dc4edd78..00000000 Binary files a/public/textures/chipped/fine_magma_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_mangrove_planks.png b/public/textures/chipped/fine_mangrove_planks.png deleted file mode 100644 index 63a5e2a6..00000000 Binary files a/public/textures/chipped/fine_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_mossy_cobblestone_pillar.png b/public/textures/chipped/fine_mossy_cobblestone_pillar.png deleted file mode 100644 index 7c0eccb6..00000000 Binary files a/public/textures/chipped/fine_mossy_cobblestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_mossy_stone_bricks_pillar.png b/public/textures/chipped/fine_mossy_stone_bricks_pillar.png deleted file mode 100644 index 098fd73c..00000000 Binary files a/public/textures/chipped/fine_mossy_stone_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_mud_bricks_pillar.png b/public/textures/chipped/fine_mud_bricks_pillar.png deleted file mode 100644 index faedf31e..00000000 Binary files a/public/textures/chipped/fine_mud_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_mud_pillar.png b/public/textures/chipped/fine_mud_pillar.png deleted file mode 100644 index 30f81804..00000000 Binary files a/public/textures/chipped/fine_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_nether_bricks_pillar.png b/public/textures/chipped/fine_nether_bricks_pillar.png deleted file mode 100644 index 833598a4..00000000 Binary files a/public/textures/chipped/fine_nether_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_netherrack_pillar.png b/public/textures/chipped/fine_netherrack_pillar.png deleted file mode 100644 index 7f9c36af..00000000 Binary files a/public/textures/chipped/fine_netherrack_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_oak_planks.png b/public/textures/chipped/fine_oak_planks.png deleted file mode 100644 index 60e6fa90..00000000 Binary files a/public/textures/chipped/fine_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_obsidian_pillar.png b/public/textures/chipped/fine_obsidian_pillar.png deleted file mode 100644 index 8edef333..00000000 Binary files a/public/textures/chipped/fine_obsidian_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_packed_ice_pillar.png b/public/textures/chipped/fine_packed_ice_pillar.png deleted file mode 100644 index 33281f46..00000000 Binary files a/public/textures/chipped/fine_packed_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_packed_mud_pillar.png b/public/textures/chipped/fine_packed_mud_pillar.png deleted file mode 100644 index 80f861cb..00000000 Binary files a/public/textures/chipped/fine_packed_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_prismarine_pillar.png b/public/textures/chipped/fine_prismarine_pillar.png deleted file mode 100644 index f24b2086..00000000 Binary files a/public/textures/chipped/fine_prismarine_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_purpur_block_pillar.png b/public/textures/chipped/fine_purpur_block_pillar.png deleted file mode 100644 index 1b16d4b6..00000000 Binary files a/public/textures/chipped/fine_purpur_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_quartz_block_pillar.png b/public/textures/chipped/fine_quartz_block_pillar.png deleted file mode 100644 index 73fed7bb..00000000 Binary files a/public/textures/chipped/fine_quartz_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_raw_copper_block_pillar.png b/public/textures/chipped/fine_raw_copper_block_pillar.png deleted file mode 100644 index e30570da..00000000 Binary files a/public/textures/chipped/fine_raw_copper_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_raw_gold_block_pillar.png b/public/textures/chipped/fine_raw_gold_block_pillar.png deleted file mode 100644 index 2632c7f6..00000000 Binary files a/public/textures/chipped/fine_raw_gold_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_raw_iron_block_pillar.png b/public/textures/chipped/fine_raw_iron_block_pillar.png deleted file mode 100644 index c82b2a74..00000000 Binary files a/public/textures/chipped/fine_raw_iron_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_red_nether_bricks_pillar.png b/public/textures/chipped/fine_red_nether_bricks_pillar.png deleted file mode 100644 index db5bc239..00000000 Binary files a/public/textures/chipped/fine_red_nether_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_red_sandstone_pillar.png b/public/textures/chipped/fine_red_sandstone_pillar.png deleted file mode 100644 index f152735c..00000000 Binary files a/public/textures/chipped/fine_red_sandstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_redstone_block_pillar.png b/public/textures/chipped/fine_redstone_block_pillar.png deleted file mode 100644 index 8682c88c..00000000 Binary files a/public/textures/chipped/fine_redstone_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_sandstone_pillar.png b/public/textures/chipped/fine_sandstone_pillar.png deleted file mode 100644 index 5a5130be..00000000 Binary files a/public/textures/chipped/fine_sandstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_smooth_stone_pillar.png b/public/textures/chipped/fine_smooth_stone_pillar.png deleted file mode 100644 index eb796d87..00000000 Binary files a/public/textures/chipped/fine_smooth_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_snow_block_pillar.png b/public/textures/chipped/fine_snow_block_pillar.png deleted file mode 100644 index a8b57488..00000000 Binary files a/public/textures/chipped/fine_snow_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_soul_sand.png b/public/textures/chipped/fine_soul_sand.png deleted file mode 100644 index 138a75a1..00000000 Binary files a/public/textures/chipped/fine_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/fine_sponge.png b/public/textures/chipped/fine_sponge.png deleted file mode 100644 index ee8a93aa..00000000 Binary files a/public/textures/chipped/fine_sponge.png and /dev/null differ diff --git a/public/textures/chipped/fine_spruce_planks.png b/public/textures/chipped/fine_spruce_planks.png deleted file mode 100644 index db078407..00000000 Binary files a/public/textures/chipped/fine_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_stone_pillar.png b/public/textures/chipped/fine_stone_pillar.png deleted file mode 100644 index 95516b0e..00000000 Binary files a/public/textures/chipped/fine_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_tuff_pillar.png b/public/textures/chipped/fine_tuff_pillar.png deleted file mode 100644 index ef8a695e..00000000 Binary files a/public/textures/chipped/fine_tuff_pillar.png and /dev/null differ diff --git a/public/textures/chipped/fine_vertical_acacia_planks.png b/public/textures/chipped/fine_vertical_acacia_planks.png deleted file mode 100644 index 3b00ad2e..00000000 Binary files a/public/textures/chipped/fine_vertical_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_vertical_bamboo_planks.png b/public/textures/chipped/fine_vertical_bamboo_planks.png deleted file mode 100644 index f8c081ee..00000000 Binary files a/public/textures/chipped/fine_vertical_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_vertical_birch_planks.png b/public/textures/chipped/fine_vertical_birch_planks.png deleted file mode 100644 index db25294c..00000000 Binary files a/public/textures/chipped/fine_vertical_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_vertical_cherry_planks.png b/public/textures/chipped/fine_vertical_cherry_planks.png deleted file mode 100644 index 9b0a82a0..00000000 Binary files a/public/textures/chipped/fine_vertical_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_vertical_crimson_planks.png b/public/textures/chipped/fine_vertical_crimson_planks.png deleted file mode 100644 index 2aaef332..00000000 Binary files a/public/textures/chipped/fine_vertical_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_vertical_dark_oak_planks.png b/public/textures/chipped/fine_vertical_dark_oak_planks.png deleted file mode 100644 index a6d0d325..00000000 Binary files a/public/textures/chipped/fine_vertical_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_vertical_jungle_planks.png b/public/textures/chipped/fine_vertical_jungle_planks.png deleted file mode 100644 index 27d4682b..00000000 Binary files a/public/textures/chipped/fine_vertical_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_vertical_mangrove_planks.png b/public/textures/chipped/fine_vertical_mangrove_planks.png deleted file mode 100644 index b693570b..00000000 Binary files a/public/textures/chipped/fine_vertical_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_vertical_oak_planks.png b/public/textures/chipped/fine_vertical_oak_planks.png deleted file mode 100644 index 4241862c..00000000 Binary files a/public/textures/chipped/fine_vertical_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_vertical_spruce_planks.png b/public/textures/chipped/fine_vertical_spruce_planks.png deleted file mode 100644 index a8004cae..00000000 Binary files a/public/textures/chipped/fine_vertical_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_vertical_warped_planks.png b/public/textures/chipped/fine_vertical_warped_planks.png deleted file mode 100644 index c53d1a40..00000000 Binary files a/public/textures/chipped/fine_vertical_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/fine_warped_planks.png b/public/textures/chipped/fine_warped_planks.png deleted file mode 100644 index 690f1258..00000000 Binary files a/public/textures/chipped/fine_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/fired_nether_sprouts.png b/public/textures/chipped/fired_nether_sprouts.png deleted file mode 100644 index 5cf6ccf4..00000000 Binary files a/public/textures/chipped/fired_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/firewood_acacia_log.png b/public/textures/chipped/firewood_acacia_log.png deleted file mode 100644 index bb9f47a1..00000000 Binary files a/public/textures/chipped/firewood_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/firewood_birch_log.png b/public/textures/chipped/firewood_birch_log.png deleted file mode 100644 index 1b7e729a..00000000 Binary files a/public/textures/chipped/firewood_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/firewood_cherry_log.png b/public/textures/chipped/firewood_cherry_log.png deleted file mode 100644 index b72acc61..00000000 Binary files a/public/textures/chipped/firewood_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/firewood_crimson_stem.png b/public/textures/chipped/firewood_crimson_stem.png deleted file mode 100644 index db210c39..00000000 Binary files a/public/textures/chipped/firewood_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/firewood_dark_oak_log.png b/public/textures/chipped/firewood_dark_oak_log.png deleted file mode 100644 index 3b0440b5..00000000 Binary files a/public/textures/chipped/firewood_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/firewood_jungle_log.png b/public/textures/chipped/firewood_jungle_log.png deleted file mode 100644 index a2a09b31..00000000 Binary files a/public/textures/chipped/firewood_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/firewood_mangrove_log.png b/public/textures/chipped/firewood_mangrove_log.png deleted file mode 100644 index 35a1a36f..00000000 Binary files a/public/textures/chipped/firewood_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/firewood_oak_log.png b/public/textures/chipped/firewood_oak_log.png deleted file mode 100644 index f19eebe8..00000000 Binary files a/public/textures/chipped/firewood_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/firewood_spruce_log.png b/public/textures/chipped/firewood_spruce_log.png deleted file mode 100644 index ebfe7924..00000000 Binary files a/public/textures/chipped/firewood_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/firewood_warped_stem.png b/public/textures/chipped/firewood_warped_stem.png deleted file mode 100644 index 73e72e6d..00000000 Binary files a/public/textures/chipped/firewood_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/fish_barrel.png b/public/textures/chipped/fish_barrel.png deleted file mode 100644 index 7ec4fa4f..00000000 Binary files a/public/textures/chipped/fish_barrel.png and /dev/null differ diff --git a/public/textures/chipped/flat_amethyst_block_tiles.png b/public/textures/chipped/flat_amethyst_block_tiles.png deleted file mode 100644 index 136dc7d7..00000000 Binary files a/public/textures/chipped/flat_amethyst_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_ancient_debris_tiles.png b/public/textures/chipped/flat_ancient_debris_tiles.png deleted file mode 100644 index b8d22be8..00000000 Binary files a/public/textures/chipped/flat_ancient_debris_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_andesite_tiles.png b/public/textures/chipped/flat_andesite_tiles.png deleted file mode 100644 index d5734542..00000000 Binary files a/public/textures/chipped/flat_andesite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_basalt_tiles.png b/public/textures/chipped/flat_basalt_tiles.png deleted file mode 100644 index 5b36bb8e..00000000 Binary files a/public/textures/chipped/flat_basalt_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_blackstone_tiles.png b/public/textures/chipped/flat_blackstone_tiles.png deleted file mode 100644 index 3d25ed5e..00000000 Binary files a/public/textures/chipped/flat_blackstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_blue_ice_tiles.png b/public/textures/chipped/flat_blue_ice_tiles.png deleted file mode 100644 index 078675af..00000000 Binary files a/public/textures/chipped/flat_blue_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_borderless_bricks_tiles.png b/public/textures/chipped/flat_borderless_bricks_tiles.png deleted file mode 100644 index 42a8baf9..00000000 Binary files a/public/textures/chipped/flat_borderless_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_bricks_tiles.png b/public/textures/chipped/flat_bricks_tiles.png deleted file mode 100644 index e2c19452..00000000 Binary files a/public/textures/chipped/flat_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_calcite_tiles.png b/public/textures/chipped/flat_calcite_tiles.png deleted file mode 100644 index b35d9ec5..00000000 Binary files a/public/textures/chipped/flat_calcite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_clay_tiles.png b/public/textures/chipped/flat_clay_tiles.png deleted file mode 100644 index eba52122..00000000 Binary files a/public/textures/chipped/flat_clay_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_coal_block_tiles.png b/public/textures/chipped/flat_coal_block_tiles.png deleted file mode 100644 index e40c2908..00000000 Binary files a/public/textures/chipped/flat_coal_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_cobblestone_tiles.png b/public/textures/chipped/flat_cobblestone_tiles.png deleted file mode 100644 index 2ce70390..00000000 Binary files a/public/textures/chipped/flat_cobblestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_crying_obsidian_tiles.png b/public/textures/chipped/flat_crying_obsidian_tiles.png deleted file mode 100644 index 4440e3fd..00000000 Binary files a/public/textures/chipped/flat_crying_obsidian_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_dark_prismarine_tiles.png b/public/textures/chipped/flat_dark_prismarine_tiles.png deleted file mode 100644 index 7832134f..00000000 Binary files a/public/textures/chipped/flat_dark_prismarine_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_diorite_tiles.png b/public/textures/chipped/flat_diorite_tiles.png deleted file mode 100644 index f15dd4a5..00000000 Binary files a/public/textures/chipped/flat_diorite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_dirt_tiles.png b/public/textures/chipped/flat_dirt_tiles.png deleted file mode 100644 index d5971d46..00000000 Binary files a/public/textures/chipped/flat_dirt_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_dripstone_block_tiles.png b/public/textures/chipped/flat_dripstone_block_tiles.png deleted file mode 100644 index 329609a8..00000000 Binary files a/public/textures/chipped/flat_dripstone_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_end_stone_tiles.png b/public/textures/chipped/flat_end_stone_tiles.png deleted file mode 100644 index 7cff7cc3..00000000 Binary files a/public/textures/chipped/flat_end_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_gilded_blackstone_tiles.png b/public/textures/chipped/flat_gilded_blackstone_tiles.png deleted file mode 100644 index 69fa5537..00000000 Binary files a/public/textures/chipped/flat_gilded_blackstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_granite_tiles.png b/public/textures/chipped/flat_granite_tiles.png deleted file mode 100644 index 308cb9d8..00000000 Binary files a/public/textures/chipped/flat_granite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_ice_tiles.png b/public/textures/chipped/flat_ice_tiles.png deleted file mode 100644 index 7493903b..00000000 Binary files a/public/textures/chipped/flat_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_lapis_block_tiles.png b/public/textures/chipped/flat_lapis_block_tiles.png deleted file mode 100644 index ee21b3aa..00000000 Binary files a/public/textures/chipped/flat_lapis_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_lodestone_tiles.png b/public/textures/chipped/flat_lodestone_tiles.png deleted file mode 100644 index afbf8b48..00000000 Binary files a/public/textures/chipped/flat_lodestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_magma_block_tiles.png b/public/textures/chipped/flat_magma_block_tiles.png deleted file mode 100644 index 786c0d33..00000000 Binary files a/public/textures/chipped/flat_magma_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_mossy_cobblestone_tiles.png b/public/textures/chipped/flat_mossy_cobblestone_tiles.png deleted file mode 100644 index 138e10af..00000000 Binary files a/public/textures/chipped/flat_mossy_cobblestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_mossy_stone_bricks_tiles.png b/public/textures/chipped/flat_mossy_stone_bricks_tiles.png deleted file mode 100644 index 700faca9..00000000 Binary files a/public/textures/chipped/flat_mossy_stone_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_nether_bricks_tiles.png b/public/textures/chipped/flat_nether_bricks_tiles.png deleted file mode 100644 index 43e6e2e2..00000000 Binary files a/public/textures/chipped/flat_nether_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_netherrack_tiles.png b/public/textures/chipped/flat_netherrack_tiles.png deleted file mode 100644 index 46738c79..00000000 Binary files a/public/textures/chipped/flat_netherrack_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_obsidian_tiles.png b/public/textures/chipped/flat_obsidian_tiles.png deleted file mode 100644 index a520a25a..00000000 Binary files a/public/textures/chipped/flat_obsidian_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_packed_ice_tiles.png b/public/textures/chipped/flat_packed_ice_tiles.png deleted file mode 100644 index 5e85910d..00000000 Binary files a/public/textures/chipped/flat_packed_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_prismarine_tiles.png b/public/textures/chipped/flat_prismarine_tiles.png deleted file mode 100644 index a106ae81..00000000 Binary files a/public/textures/chipped/flat_prismarine_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_purpur_block_tiles.png b/public/textures/chipped/flat_purpur_block_tiles.png deleted file mode 100644 index edb0d1b5..00000000 Binary files a/public/textures/chipped/flat_purpur_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_quartz_block_tiles.png b/public/textures/chipped/flat_quartz_block_tiles.png deleted file mode 100644 index e3bdc097..00000000 Binary files a/public/textures/chipped/flat_quartz_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_raw_copper_block_tiles.png b/public/textures/chipped/flat_raw_copper_block_tiles.png deleted file mode 100644 index ab2812d2..00000000 Binary files a/public/textures/chipped/flat_raw_copper_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_raw_gold_block_tiles.png b/public/textures/chipped/flat_raw_gold_block_tiles.png deleted file mode 100644 index 1ae325e7..00000000 Binary files a/public/textures/chipped/flat_raw_gold_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_raw_iron_block_tiles.png b/public/textures/chipped/flat_raw_iron_block_tiles.png deleted file mode 100644 index 995c3171..00000000 Binary files a/public/textures/chipped/flat_raw_iron_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_red_nether_bricks_tiles.png b/public/textures/chipped/flat_red_nether_bricks_tiles.png deleted file mode 100644 index 2d60463c..00000000 Binary files a/public/textures/chipped/flat_red_nether_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_red_sandstone_tiles.png b/public/textures/chipped/flat_red_sandstone_tiles.png deleted file mode 100644 index 4fc68537..00000000 Binary files a/public/textures/chipped/flat_red_sandstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_redstone_block_tiles.png b/public/textures/chipped/flat_redstone_block_tiles.png deleted file mode 100644 index df9a8239..00000000 Binary files a/public/textures/chipped/flat_redstone_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_sandstone_tiles.png b/public/textures/chipped/flat_sandstone_tiles.png deleted file mode 100644 index 254b7203..00000000 Binary files a/public/textures/chipped/flat_sandstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_smooth_stone_tiles.png b/public/textures/chipped/flat_smooth_stone_tiles.png deleted file mode 100644 index c0e81a12..00000000 Binary files a/public/textures/chipped/flat_smooth_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_snow_block_tiles.png b/public/textures/chipped/flat_snow_block_tiles.png deleted file mode 100644 index 79d365a6..00000000 Binary files a/public/textures/chipped/flat_snow_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_stone_tiles.png b/public/textures/chipped/flat_stone_tiles.png deleted file mode 100644 index 0bfaeda5..00000000 Binary files a/public/textures/chipped/flat_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flat_tuff_tiles.png b/public/textures/chipped/flat_tuff_tiles.png deleted file mode 100644 index feabbb8c..00000000 Binary files a/public/textures/chipped/flat_tuff_tiles.png and /dev/null differ diff --git a/public/textures/chipped/flimsy_nether_sprouts.png b/public/textures/chipped/flimsy_nether_sprouts.png deleted file mode 100644 index e79de4f1..00000000 Binary files a/public/textures/chipped/flimsy_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/floral_iron_bars.png b/public/textures/chipped/floral_iron_bars.png deleted file mode 100644 index 477a9ca2..00000000 Binary files a/public/textures/chipped/floral_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/flowered_crimson_roots.png b/public/textures/chipped/flowered_crimson_roots.png deleted file mode 100644 index 37b85431..00000000 Binary files a/public/textures/chipped/flowered_crimson_roots.png and /dev/null differ diff --git a/public/textures/chipped/flowered_crimson_roots_bulb.png b/public/textures/chipped/flowered_crimson_roots_bulb.png deleted file mode 100644 index e76bee03..00000000 Binary files a/public/textures/chipped/flowered_crimson_roots_bulb.png and /dev/null differ diff --git a/public/textures/chipped/flowering_acacia_log.png b/public/textures/chipped/flowering_acacia_log.png deleted file mode 100644 index 9f2529c2..00000000 Binary files a/public/textures/chipped/flowering_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/flowering_birch_log.png b/public/textures/chipped/flowering_birch_log.png deleted file mode 100644 index 1826d8ec..00000000 Binary files a/public/textures/chipped/flowering_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/flowering_cherry_log.png b/public/textures/chipped/flowering_cherry_log.png deleted file mode 100644 index 729cf940..00000000 Binary files a/public/textures/chipped/flowering_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/flowering_dark_oak_log.png b/public/textures/chipped/flowering_dark_oak_log.png deleted file mode 100644 index 41c2a247..00000000 Binary files a/public/textures/chipped/flowering_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/flowering_jungle_log.png b/public/textures/chipped/flowering_jungle_log.png deleted file mode 100644 index 7703ee93..00000000 Binary files a/public/textures/chipped/flowering_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/flowering_lily_pad.png b/public/textures/chipped/flowering_lily_pad.png deleted file mode 100644 index 6db1bc1b..00000000 Binary files a/public/textures/chipped/flowering_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/flowering_mangrove_log.png b/public/textures/chipped/flowering_mangrove_log.png deleted file mode 100644 index 9dec86fa..00000000 Binary files a/public/textures/chipped/flowering_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/flowering_oak_log.png b/public/textures/chipped/flowering_oak_log.png deleted file mode 100644 index 497270be..00000000 Binary files a/public/textures/chipped/flowering_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/flowering_spruce_log.png b/public/textures/chipped/flowering_spruce_log.png deleted file mode 100644 index 525f1758..00000000 Binary files a/public/textures/chipped/flowering_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/flowering_warped_roots.png b/public/textures/chipped/flowering_warped_roots.png deleted file mode 100644 index 382ea658..00000000 Binary files a/public/textures/chipped/flowering_warped_roots.png and /dev/null differ diff --git a/public/textures/chipped/flowery_mangrove_roots.png b/public/textures/chipped/flowery_mangrove_roots.png deleted file mode 100644 index db10b3dc..00000000 Binary files a/public/textures/chipped/flowery_mangrove_roots.png and /dev/null differ diff --git a/public/textures/chipped/flowery_vine.png b/public/textures/chipped/flowery_vine.png deleted file mode 100644 index 785f741b..00000000 Binary files a/public/textures/chipped/flowery_vine.png and /dev/null differ diff --git a/public/textures/chipped/fortified_acacia_door.png b/public/textures/chipped/fortified_acacia_door.png deleted file mode 100644 index 21135a35..00000000 Binary files a/public/textures/chipped/fortified_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/fortified_bamboo_door.png b/public/textures/chipped/fortified_bamboo_door.png deleted file mode 100644 index e612c8b5..00000000 Binary files a/public/textures/chipped/fortified_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/fortified_birch_door.png b/public/textures/chipped/fortified_birch_door.png deleted file mode 100644 index 98786d2d..00000000 Binary files a/public/textures/chipped/fortified_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/fortified_cherry_door.png b/public/textures/chipped/fortified_cherry_door.png deleted file mode 100644 index 07cb9b32..00000000 Binary files a/public/textures/chipped/fortified_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/fortified_crimson_door.png b/public/textures/chipped/fortified_crimson_door.png deleted file mode 100644 index eaede399..00000000 Binary files a/public/textures/chipped/fortified_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/fortified_dark_oak_door.png b/public/textures/chipped/fortified_dark_oak_door.png deleted file mode 100644 index 236b01d1..00000000 Binary files a/public/textures/chipped/fortified_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/fortified_jungle_door.png b/public/textures/chipped/fortified_jungle_door.png deleted file mode 100644 index db4620af..00000000 Binary files a/public/textures/chipped/fortified_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/fortified_mangrove_door.png b/public/textures/chipped/fortified_mangrove_door.png deleted file mode 100644 index 1586482a..00000000 Binary files a/public/textures/chipped/fortified_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/fortified_oak_door.png b/public/textures/chipped/fortified_oak_door.png deleted file mode 100644 index 407b45f3..00000000 Binary files a/public/textures/chipped/fortified_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/fortified_spruce_door.png b/public/textures/chipped/fortified_spruce_door.png deleted file mode 100644 index e96d50ec..00000000 Binary files a/public/textures/chipped/fortified_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/fortified_warped_door.png b/public/textures/chipped/fortified_warped_door.png deleted file mode 100644 index 47d37c1a..00000000 Binary files a/public/textures/chipped/fortified_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/fractured_bone_block.png b/public/textures/chipped/fractured_bone_block.png deleted file mode 100644 index 210172ba..00000000 Binary files a/public/textures/chipped/fractured_bone_block.png and /dev/null differ diff --git a/public/textures/chipped/framed_acacia_planks.png b/public/textures/chipped/framed_acacia_planks.png deleted file mode 100644 index 9d74d4f8..00000000 Binary files a/public/textures/chipped/framed_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/framed_bamboo_planks.png b/public/textures/chipped/framed_bamboo_planks.png deleted file mode 100644 index 9d41d8e6..00000000 Binary files a/public/textures/chipped/framed_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/framed_birch_planks.png b/public/textures/chipped/framed_birch_planks.png deleted file mode 100644 index 4f822311..00000000 Binary files a/public/textures/chipped/framed_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/framed_cherry_planks.png b/public/textures/chipped/framed_cherry_planks.png deleted file mode 100644 index ebe9d8a1..00000000 Binary files a/public/textures/chipped/framed_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/framed_crimson_planks.png b/public/textures/chipped/framed_crimson_planks.png deleted file mode 100644 index ff7a2e52..00000000 Binary files a/public/textures/chipped/framed_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/framed_dark_oak_planks.png b/public/textures/chipped/framed_dark_oak_planks.png deleted file mode 100644 index e76f6244..00000000 Binary files a/public/textures/chipped/framed_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/framed_glowstone_lantern.png b/public/textures/chipped/framed_glowstone_lantern.png deleted file mode 100644 index 52cd3bf9..00000000 Binary files a/public/textures/chipped/framed_glowstone_lantern.png and /dev/null differ diff --git a/public/textures/chipped/framed_jungle_planks.png b/public/textures/chipped/framed_jungle_planks.png deleted file mode 100644 index 420f2279..00000000 Binary files a/public/textures/chipped/framed_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/framed_mangrove_planks.png b/public/textures/chipped/framed_mangrove_planks.png deleted file mode 100644 index 05662387..00000000 Binary files a/public/textures/chipped/framed_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/framed_oak_planks.png b/public/textures/chipped/framed_oak_planks.png deleted file mode 100644 index 4793d6a3..00000000 Binary files a/public/textures/chipped/framed_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/framed_sea_lantern.png b/public/textures/chipped/framed_sea_lantern.png deleted file mode 100644 index 725a7b49..00000000 Binary files a/public/textures/chipped/framed_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/framed_shroomlight_lantern.png b/public/textures/chipped/framed_shroomlight_lantern.png deleted file mode 100644 index 37ecf0e5..00000000 Binary files a/public/textures/chipped/framed_shroomlight_lantern.png and /dev/null differ diff --git a/public/textures/chipped/framed_spruce_planks.png b/public/textures/chipped/framed_spruce_planks.png deleted file mode 100644 index b03fc83c..00000000 Binary files a/public/textures/chipped/framed_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/framed_warped_planks.png b/public/textures/chipped/framed_warped_planks.png deleted file mode 100644 index 61817b4c..00000000 Binary files a/public/textures/chipped/framed_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/franken_brown_mushroom.png b/public/textures/chipped/franken_brown_mushroom.png deleted file mode 100644 index dcbe8d10..00000000 Binary files a/public/textures/chipped/franken_brown_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/franken_crimson_fungus.png b/public/textures/chipped/franken_crimson_fungus.png deleted file mode 100644 index 9d8f7f87..00000000 Binary files a/public/textures/chipped/franken_crimson_fungus.png and /dev/null differ diff --git a/public/textures/chipped/franken_red_mushroom.png b/public/textures/chipped/franken_red_mushroom.png deleted file mode 100644 index 735be9c6..00000000 Binary files a/public/textures/chipped/franken_red_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/franken_warped_fungus.png b/public/textures/chipped/franken_warped_fungus.png deleted file mode 100644 index d3fb704e..00000000 Binary files a/public/textures/chipped/franken_warped_fungus.png and /dev/null differ diff --git a/public/textures/chipped/freckled_brown_mushroom_block.png b/public/textures/chipped/freckled_brown_mushroom_block.png deleted file mode 100644 index 5c463e2d..00000000 Binary files a/public/textures/chipped/freckled_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/freckled_red_mushroom_block.png b/public/textures/chipped/freckled_red_mushroom_block.png deleted file mode 100644 index ff7818fa..00000000 Binary files a/public/textures/chipped/freckled_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/frosted_acacia_leaves.png b/public/textures/chipped/frosted_acacia_leaves.png deleted file mode 100644 index 0dec7312..00000000 Binary files a/public/textures/chipped/frosted_acacia_leaves.png and /dev/null differ diff --git a/public/textures/chipped/frosted_birch_leaves.png b/public/textures/chipped/frosted_birch_leaves.png deleted file mode 100644 index 849a95ef..00000000 Binary files a/public/textures/chipped/frosted_birch_leaves.png and /dev/null differ diff --git a/public/textures/chipped/frosted_dark_oak_leaves.png b/public/textures/chipped/frosted_dark_oak_leaves.png deleted file mode 100644 index eab4f553..00000000 Binary files a/public/textures/chipped/frosted_dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/frosted_jungle_leaves.png b/public/textures/chipped/frosted_jungle_leaves.png deleted file mode 100644 index 628de67f..00000000 Binary files a/public/textures/chipped/frosted_jungle_leaves.png and /dev/null differ diff --git a/public/textures/chipped/frosted_oak_leaves.png b/public/textures/chipped/frosted_oak_leaves.png deleted file mode 100644 index d9d803dd..00000000 Binary files a/public/textures/chipped/frosted_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/frosted_spruce_leaves.png b/public/textures/chipped/frosted_spruce_leaves.png deleted file mode 100644 index 7aed6fe8..00000000 Binary files a/public/textures/chipped/frosted_spruce_leaves.png and /dev/null differ diff --git a/public/textures/chipped/fruit_barrel.png b/public/textures/chipped/fruit_barrel.png deleted file mode 100644 index 2548f679..00000000 Binary files a/public/textures/chipped/fruit_barrel.png and /dev/null differ diff --git a/public/textures/chipped/full_bookshelf.png b/public/textures/chipped/full_bookshelf.png deleted file mode 100644 index d32cc1d4..00000000 Binary files a/public/textures/chipped/full_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/gated_acacia_door.png b/public/textures/chipped/gated_acacia_door.png deleted file mode 100644 index a78cce2a..00000000 Binary files a/public/textures/chipped/gated_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/gated_bamboo_door.png b/public/textures/chipped/gated_bamboo_door.png deleted file mode 100644 index 674c2882..00000000 Binary files a/public/textures/chipped/gated_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/gated_birch_door.png b/public/textures/chipped/gated_birch_door.png deleted file mode 100644 index 458c99c3..00000000 Binary files a/public/textures/chipped/gated_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/gated_cherry_door.png b/public/textures/chipped/gated_cherry_door.png deleted file mode 100644 index 1ee0210d..00000000 Binary files a/public/textures/chipped/gated_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/gated_crimson_door.png b/public/textures/chipped/gated_crimson_door.png deleted file mode 100644 index 62590882..00000000 Binary files a/public/textures/chipped/gated_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/gated_dark_oak_door.png b/public/textures/chipped/gated_dark_oak_door.png deleted file mode 100644 index 06ad5b0a..00000000 Binary files a/public/textures/chipped/gated_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/gated_jungle_door.png b/public/textures/chipped/gated_jungle_door.png deleted file mode 100644 index b2faa219..00000000 Binary files a/public/textures/chipped/gated_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/gated_mangrove_door.png b/public/textures/chipped/gated_mangrove_door.png deleted file mode 100644 index 679f5b05..00000000 Binary files a/public/textures/chipped/gated_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/gated_oak_door.png b/public/textures/chipped/gated_oak_door.png deleted file mode 100644 index d1602717..00000000 Binary files a/public/textures/chipped/gated_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/gated_spruce_door.png b/public/textures/chipped/gated_spruce_door.png deleted file mode 100644 index 09a807b2..00000000 Binary files a/public/textures/chipped/gated_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/gated_warped_door.png b/public/textures/chipped/gated_warped_door.png deleted file mode 100644 index 80185f0b..00000000 Binary files a/public/textures/chipped/gated_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/giant_sponge.png b/public/textures/chipped/giant_sponge.png deleted file mode 100644 index 7de35e0a..00000000 Binary files a/public/textures/chipped/giant_sponge.png and /dev/null differ diff --git a/public/textures/chipped/gilded_barrel.png b/public/textures/chipped/gilded_barrel.png deleted file mode 100644 index 8a494320..00000000 Binary files a/public/textures/chipped/gilded_barrel.png and /dev/null differ diff --git a/public/textures/chipped/gilded_basalt_bone_block.png b/public/textures/chipped/gilded_basalt_bone_block.png deleted file mode 100644 index 018d8cb2..00000000 Binary files a/public/textures/chipped/gilded_basalt_bone_block.png and /dev/null differ diff --git a/public/textures/chipped/gilded_blackstone_bricks.png b/public/textures/chipped/gilded_blackstone_bricks.png deleted file mode 100644 index e272003c..00000000 Binary files a/public/textures/chipped/gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/gilded_blackstone_mini_tiles.png b/public/textures/chipped/gilded_blackstone_mini_tiles.png deleted file mode 100644 index 0bf2ec33..00000000 Binary files a/public/textures/chipped/gilded_blackstone_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/gilded_blackstone_pillar.png b/public/textures/chipped/gilded_blackstone_pillar.png deleted file mode 100644 index 3f4f656a..00000000 Binary files a/public/textures/chipped/gilded_blackstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/gilded_blackstone_pillar_top.png b/public/textures/chipped/gilded_blackstone_pillar_top.png deleted file mode 100644 index 8e6d7a8f..00000000 Binary files a/public/textures/chipped/gilded_blackstone_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/gilded_blackstone_scales.png b/public/textures/chipped/gilded_blackstone_scales.png deleted file mode 100644 index 1fa5d2ad..00000000 Binary files a/public/textures/chipped/gilded_blackstone_scales.png and /dev/null differ diff --git a/public/textures/chipped/glad_amethyst_block.png b/public/textures/chipped/glad_amethyst_block.png deleted file mode 100644 index bf52b8b7..00000000 Binary files a/public/textures/chipped/glad_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_ancient_debris.png b/public/textures/chipped/glad_ancient_debris.png deleted file mode 100644 index 6e0bd12c..00000000 Binary files a/public/textures/chipped/glad_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/glad_andesite.png b/public/textures/chipped/glad_andesite.png deleted file mode 100644 index b8e83642..00000000 Binary files a/public/textures/chipped/glad_andesite.png and /dev/null differ diff --git a/public/textures/chipped/glad_basalt.png b/public/textures/chipped/glad_basalt.png deleted file mode 100644 index 001e40c1..00000000 Binary files a/public/textures/chipped/glad_basalt.png and /dev/null differ diff --git a/public/textures/chipped/glad_blackstone.png b/public/textures/chipped/glad_blackstone.png deleted file mode 100644 index 258a7356..00000000 Binary files a/public/textures/chipped/glad_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/glad_blue_ice.png b/public/textures/chipped/glad_blue_ice.png deleted file mode 100644 index 11526482..00000000 Binary files a/public/textures/chipped/glad_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/glad_borderless_bricks.png b/public/textures/chipped/glad_borderless_bricks.png deleted file mode 100644 index af1cf789..00000000 Binary files a/public/textures/chipped/glad_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/glad_bricks.png b/public/textures/chipped/glad_bricks.png deleted file mode 100644 index 08474c7f..00000000 Binary files a/public/textures/chipped/glad_bricks.png and /dev/null differ diff --git a/public/textures/chipped/glad_calcite.png b/public/textures/chipped/glad_calcite.png deleted file mode 100644 index 40acb217..00000000 Binary files a/public/textures/chipped/glad_calcite.png and /dev/null differ diff --git a/public/textures/chipped/glad_clay.png b/public/textures/chipped/glad_clay.png deleted file mode 100644 index 9c9bd2f9..00000000 Binary files a/public/textures/chipped/glad_clay.png and /dev/null differ diff --git a/public/textures/chipped/glad_coal_block.png b/public/textures/chipped/glad_coal_block.png deleted file mode 100644 index f591295e..00000000 Binary files a/public/textures/chipped/glad_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_cobblestone.png b/public/textures/chipped/glad_cobblestone.png deleted file mode 100644 index 269b586c..00000000 Binary files a/public/textures/chipped/glad_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/glad_crying_obsidian.png b/public/textures/chipped/glad_crying_obsidian.png deleted file mode 100644 index ea179217..00000000 Binary files a/public/textures/chipped/glad_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/glad_dark_prismarine.png b/public/textures/chipped/glad_dark_prismarine.png deleted file mode 100644 index 7eb1a081..00000000 Binary files a/public/textures/chipped/glad_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/glad_deepslate.png b/public/textures/chipped/glad_deepslate.png deleted file mode 100644 index a0e15b4f..00000000 Binary files a/public/textures/chipped/glad_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/glad_diorite.png b/public/textures/chipped/glad_diorite.png deleted file mode 100644 index 135b0111..00000000 Binary files a/public/textures/chipped/glad_diorite.png and /dev/null differ diff --git a/public/textures/chipped/glad_dirt.png b/public/textures/chipped/glad_dirt.png deleted file mode 100644 index d5951556..00000000 Binary files a/public/textures/chipped/glad_dirt.png and /dev/null differ diff --git a/public/textures/chipped/glad_dripstone_block.png b/public/textures/chipped/glad_dripstone_block.png deleted file mode 100644 index 20a87d06..00000000 Binary files a/public/textures/chipped/glad_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_end_stone.png b/public/textures/chipped/glad_end_stone.png deleted file mode 100644 index 4e1b1415..00000000 Binary files a/public/textures/chipped/glad_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/glad_gilded_blackstone.png b/public/textures/chipped/glad_gilded_blackstone.png deleted file mode 100644 index fb36d13a..00000000 Binary files a/public/textures/chipped/glad_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/glad_granite.png b/public/textures/chipped/glad_granite.png deleted file mode 100644 index 38c85e85..00000000 Binary files a/public/textures/chipped/glad_granite.png and /dev/null differ diff --git a/public/textures/chipped/glad_ice.png b/public/textures/chipped/glad_ice.png deleted file mode 100644 index 2041a8ce..00000000 Binary files a/public/textures/chipped/glad_ice.png and /dev/null differ diff --git a/public/textures/chipped/glad_lapis_block.png b/public/textures/chipped/glad_lapis_block.png deleted file mode 100644 index 82398650..00000000 Binary files a/public/textures/chipped/glad_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_lodestone.png b/public/textures/chipped/glad_lodestone.png deleted file mode 100644 index 1da34312..00000000 Binary files a/public/textures/chipped/glad_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/glad_magma_block.png b/public/textures/chipped/glad_magma_block.png deleted file mode 100644 index d2045856..00000000 Binary files a/public/textures/chipped/glad_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_mossy_cobblestone.png b/public/textures/chipped/glad_mossy_cobblestone.png deleted file mode 100644 index 01e7ff48..00000000 Binary files a/public/textures/chipped/glad_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/glad_mossy_stone_bricks.png b/public/textures/chipped/glad_mossy_stone_bricks.png deleted file mode 100644 index cbec9fbb..00000000 Binary files a/public/textures/chipped/glad_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/glad_mud.png b/public/textures/chipped/glad_mud.png deleted file mode 100644 index 3c4b1610..00000000 Binary files a/public/textures/chipped/glad_mud.png and /dev/null differ diff --git a/public/textures/chipped/glad_mud_bricks.png b/public/textures/chipped/glad_mud_bricks.png deleted file mode 100644 index 4bcc0913..00000000 Binary files a/public/textures/chipped/glad_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/glad_nether_bricks.png b/public/textures/chipped/glad_nether_bricks.png deleted file mode 100644 index 3d49f84a..00000000 Binary files a/public/textures/chipped/glad_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/glad_netherrack.png b/public/textures/chipped/glad_netherrack.png deleted file mode 100644 index 85a60345..00000000 Binary files a/public/textures/chipped/glad_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/glad_obsidian.png b/public/textures/chipped/glad_obsidian.png deleted file mode 100644 index 5ae7aee1..00000000 Binary files a/public/textures/chipped/glad_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/glad_packed_ice.png b/public/textures/chipped/glad_packed_ice.png deleted file mode 100644 index d8813526..00000000 Binary files a/public/textures/chipped/glad_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/glad_packed_mud.png b/public/textures/chipped/glad_packed_mud.png deleted file mode 100644 index 16a815a6..00000000 Binary files a/public/textures/chipped/glad_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/glad_prismarine.png b/public/textures/chipped/glad_prismarine.png deleted file mode 100644 index d5beea82..00000000 Binary files a/public/textures/chipped/glad_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/glad_purpur_block.png b/public/textures/chipped/glad_purpur_block.png deleted file mode 100644 index 5cb9e7a6..00000000 Binary files a/public/textures/chipped/glad_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_quartz_block.png b/public/textures/chipped/glad_quartz_block.png deleted file mode 100644 index 412f1210..00000000 Binary files a/public/textures/chipped/glad_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_raw_copper_block.png b/public/textures/chipped/glad_raw_copper_block.png deleted file mode 100644 index 2bdd244b..00000000 Binary files a/public/textures/chipped/glad_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_raw_gold_block.png b/public/textures/chipped/glad_raw_gold_block.png deleted file mode 100644 index 8b3efead..00000000 Binary files a/public/textures/chipped/glad_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_raw_iron_block.png b/public/textures/chipped/glad_raw_iron_block.png deleted file mode 100644 index a703ed17..00000000 Binary files a/public/textures/chipped/glad_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_red_nether_bricks.png b/public/textures/chipped/glad_red_nether_bricks.png deleted file mode 100644 index 290fe6fd..00000000 Binary files a/public/textures/chipped/glad_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/glad_red_sandstone.png b/public/textures/chipped/glad_red_sandstone.png deleted file mode 100644 index 4829f884..00000000 Binary files a/public/textures/chipped/glad_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/glad_redstone_block.png b/public/textures/chipped/glad_redstone_block.png deleted file mode 100644 index 11109340..00000000 Binary files a/public/textures/chipped/glad_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_sandstone.png b/public/textures/chipped/glad_sandstone.png deleted file mode 100644 index 51d2d60e..00000000 Binary files a/public/textures/chipped/glad_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/glad_smooth_stone.png b/public/textures/chipped/glad_smooth_stone.png deleted file mode 100644 index 149ba2e9..00000000 Binary files a/public/textures/chipped/glad_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/glad_snow_block.png b/public/textures/chipped/glad_snow_block.png deleted file mode 100644 index 81f6944b..00000000 Binary files a/public/textures/chipped/glad_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/glad_stone.png b/public/textures/chipped/glad_stone.png deleted file mode 100644 index 5dbba00d..00000000 Binary files a/public/textures/chipped/glad_stone.png and /dev/null differ diff --git a/public/textures/chipped/glad_tuff.png b/public/textures/chipped/glad_tuff.png deleted file mode 100644 index 101db5e3..00000000 Binary files a/public/textures/chipped/glad_tuff.png and /dev/null differ diff --git a/public/textures/chipped/glass_acacia_door.png b/public/textures/chipped/glass_acacia_door.png deleted file mode 100644 index 11b083e4..00000000 Binary files a/public/textures/chipped/glass_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/glass_bamboo_door.png b/public/textures/chipped/glass_bamboo_door.png deleted file mode 100644 index b97b61f1..00000000 Binary files a/public/textures/chipped/glass_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/glass_birch_door.png b/public/textures/chipped/glass_birch_door.png deleted file mode 100644 index d8da68e3..00000000 Binary files a/public/textures/chipped/glass_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/glass_cherry_door.png b/public/textures/chipped/glass_cherry_door.png deleted file mode 100644 index 55bd29a5..00000000 Binary files a/public/textures/chipped/glass_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/glass_crimson_door.png b/public/textures/chipped/glass_crimson_door.png deleted file mode 100644 index 3d8aaafe..00000000 Binary files a/public/textures/chipped/glass_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/glass_dark_oak_door.png b/public/textures/chipped/glass_dark_oak_door.png deleted file mode 100644 index 2ddcb423..00000000 Binary files a/public/textures/chipped/glass_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/glass_jungle_door.png b/public/textures/chipped/glass_jungle_door.png deleted file mode 100644 index b52ac278..00000000 Binary files a/public/textures/chipped/glass_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/glass_mangrove_door.png b/public/textures/chipped/glass_mangrove_door.png deleted file mode 100644 index a5d181af..00000000 Binary files a/public/textures/chipped/glass_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/glass_oak_door.png b/public/textures/chipped/glass_oak_door.png deleted file mode 100644 index 1af7b3da..00000000 Binary files a/public/textures/chipped/glass_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/glass_ochre_froglight.png b/public/textures/chipped/glass_ochre_froglight.png deleted file mode 100644 index f457b653..00000000 Binary files a/public/textures/chipped/glass_ochre_froglight.png and /dev/null differ diff --git a/public/textures/chipped/glass_pearlescent_froglight.png b/public/textures/chipped/glass_pearlescent_froglight.png deleted file mode 100644 index 007897f0..00000000 Binary files a/public/textures/chipped/glass_pearlescent_froglight.png and /dev/null differ diff --git a/public/textures/chipped/glass_spruce_door.png b/public/textures/chipped/glass_spruce_door.png deleted file mode 100644 index 3eb0462f..00000000 Binary files a/public/textures/chipped/glass_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/glass_verdant_froglight.png b/public/textures/chipped/glass_verdant_froglight.png deleted file mode 100644 index f89aab06..00000000 Binary files a/public/textures/chipped/glass_verdant_froglight.png and /dev/null differ diff --git a/public/textures/chipped/glass_warped_door.png b/public/textures/chipped/glass_warped_door.png deleted file mode 100644 index 0b6e60a8..00000000 Binary files a/public/textures/chipped/glass_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/glassblower.png b/public/textures/chipped/glassblower.png deleted file mode 100644 index c8f6d6f5..00000000 Binary files a/public/textures/chipped/glassblower.png and /dev/null differ diff --git a/public/textures/chipped/glittering_crimson_stem.png b/public/textures/chipped/glittering_crimson_stem.png deleted file mode 100644 index 32f39f70..00000000 Binary files a/public/textures/chipped/glittering_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/glow_torch.png b/public/textures/chipped/glow_torch.png deleted file mode 100644 index fc63bfc6..00000000 Binary files a/public/textures/chipped/glow_torch.png and /dev/null differ diff --git a/public/textures/chipped/glowing_crimson_stem.png b/public/textures/chipped/glowing_crimson_stem.png deleted file mode 100644 index f88d5a06..00000000 Binary files a/public/textures/chipped/glowing_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/glowing_lodestone_side.png b/public/textures/chipped/glowing_lodestone_side.png deleted file mode 100644 index a810a6e3..00000000 Binary files a/public/textures/chipped/glowing_lodestone_side.png and /dev/null differ diff --git a/public/textures/chipped/glowing_soul_sand.png b/public/textures/chipped/glowing_soul_sand.png deleted file mode 100644 index a4699f15..00000000 Binary files a/public/textures/chipped/glowing_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/glowstone_lantern.png b/public/textures/chipped/glowstone_lantern.png deleted file mode 100644 index cab48053..00000000 Binary files a/public/textures/chipped/glowstone_lantern.png and /dev/null differ diff --git a/public/textures/chipped/gold_barrel.png b/public/textures/chipped/gold_barrel.png deleted file mode 100644 index 868bf6ab..00000000 Binary files a/public/textures/chipped/gold_barrel.png and /dev/null differ diff --git a/public/textures/chipped/gold_block_panels.png b/public/textures/chipped/gold_block_panels.png deleted file mode 100644 index 9bf3b2c5..00000000 Binary files a/public/textures/chipped/gold_block_panels.png and /dev/null differ diff --git a/public/textures/chipped/golden_acacia_leaves.png b/public/textures/chipped/golden_acacia_leaves.png deleted file mode 100644 index b188f3a3..00000000 Binary files a/public/textures/chipped/golden_acacia_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_apple_acacia_leaves.png b/public/textures/chipped/golden_apple_acacia_leaves.png deleted file mode 100644 index bc5474f2..00000000 Binary files a/public/textures/chipped/golden_apple_acacia_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_apple_birch_leaves.png b/public/textures/chipped/golden_apple_birch_leaves.png deleted file mode 100644 index 00128164..00000000 Binary files a/public/textures/chipped/golden_apple_birch_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_apple_dark_oak_leaves.png b/public/textures/chipped/golden_apple_dark_oak_leaves.png deleted file mode 100644 index fe6d1ac1..00000000 Binary files a/public/textures/chipped/golden_apple_dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_apple_jungle_leaves.png b/public/textures/chipped/golden_apple_jungle_leaves.png deleted file mode 100644 index efa00b28..00000000 Binary files a/public/textures/chipped/golden_apple_jungle_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_apple_oak_leaves.png b/public/textures/chipped/golden_apple_oak_leaves.png deleted file mode 100644 index a8c14602..00000000 Binary files a/public/textures/chipped/golden_apple_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_apple_spruce_leaves.png b/public/textures/chipped/golden_apple_spruce_leaves.png deleted file mode 100644 index 2afa8ba2..00000000 Binary files a/public/textures/chipped/golden_apple_spruce_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_barred_acacia_trapdoor.png b/public/textures/chipped/golden_barred_acacia_trapdoor.png deleted file mode 100644 index 66860aed..00000000 Binary files a/public/textures/chipped/golden_barred_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/golden_barred_bamboo_trapdoor.png b/public/textures/chipped/golden_barred_bamboo_trapdoor.png deleted file mode 100644 index 48be7ea8..00000000 Binary files a/public/textures/chipped/golden_barred_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/golden_barred_birch_trapdoor.png b/public/textures/chipped/golden_barred_birch_trapdoor.png deleted file mode 100644 index 59036eea..00000000 Binary files a/public/textures/chipped/golden_barred_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/golden_barred_cherry_trapdoor.png b/public/textures/chipped/golden_barred_cherry_trapdoor.png deleted file mode 100644 index a76092f2..00000000 Binary files a/public/textures/chipped/golden_barred_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/golden_barred_crimson_trapdoor.png b/public/textures/chipped/golden_barred_crimson_trapdoor.png deleted file mode 100644 index aff7a28b..00000000 Binary files a/public/textures/chipped/golden_barred_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/golden_barred_dark_oak_trapdoor.png b/public/textures/chipped/golden_barred_dark_oak_trapdoor.png deleted file mode 100644 index cc46b0b0..00000000 Binary files a/public/textures/chipped/golden_barred_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/golden_barred_jungle_trapdoor.png b/public/textures/chipped/golden_barred_jungle_trapdoor.png deleted file mode 100644 index 8a5faeca..00000000 Binary files a/public/textures/chipped/golden_barred_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/golden_barred_mangrove_trapdoor.png b/public/textures/chipped/golden_barred_mangrove_trapdoor.png deleted file mode 100644 index 05ddd813..00000000 Binary files a/public/textures/chipped/golden_barred_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/golden_barred_oak_trapdoor.png b/public/textures/chipped/golden_barred_oak_trapdoor.png deleted file mode 100644 index 8b2d2732..00000000 Binary files a/public/textures/chipped/golden_barred_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/golden_barred_spruce_trapdoor.png b/public/textures/chipped/golden_barred_spruce_trapdoor.png deleted file mode 100644 index c00d23f4..00000000 Binary files a/public/textures/chipped/golden_barred_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/golden_barred_warped_trapdoor.png b/public/textures/chipped/golden_barred_warped_trapdoor.png deleted file mode 100644 index a17d3c2c..00000000 Binary files a/public/textures/chipped/golden_barred_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/golden_birch_leaves.png b/public/textures/chipped/golden_birch_leaves.png deleted file mode 100644 index 305ca7d0..00000000 Binary files a/public/textures/chipped/golden_birch_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_cherry_acacia_leaves.png b/public/textures/chipped/golden_cherry_acacia_leaves.png deleted file mode 100644 index 5d508c2f..00000000 Binary files a/public/textures/chipped/golden_cherry_acacia_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_cherry_birch_leaves.png b/public/textures/chipped/golden_cherry_birch_leaves.png deleted file mode 100644 index 829b84db..00000000 Binary files a/public/textures/chipped/golden_cherry_birch_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_cherry_dark_oak_leaves.png b/public/textures/chipped/golden_cherry_dark_oak_leaves.png deleted file mode 100644 index a9e81e1e..00000000 Binary files a/public/textures/chipped/golden_cherry_dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_cherry_jungle_leaves.png b/public/textures/chipped/golden_cherry_jungle_leaves.png deleted file mode 100644 index b42c611c..00000000 Binary files a/public/textures/chipped/golden_cherry_jungle_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_cherry_oak_leaves.png b/public/textures/chipped/golden_cherry_oak_leaves.png deleted file mode 100644 index 39f71102..00000000 Binary files a/public/textures/chipped/golden_cherry_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_cherry_spruce_leaves.png b/public/textures/chipped/golden_cherry_spruce_leaves.png deleted file mode 100644 index 2e0fe6c4..00000000 Binary files a/public/textures/chipped/golden_cherry_spruce_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_dark_oak_leaves.png b/public/textures/chipped/golden_dark_oak_leaves.png deleted file mode 100644 index 7ca7c9b0..00000000 Binary files a/public/textures/chipped/golden_dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_jungle_leaves.png b/public/textures/chipped/golden_jungle_leaves.png deleted file mode 100644 index a96969b2..00000000 Binary files a/public/textures/chipped/golden_jungle_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_melon.png b/public/textures/chipped/golden_melon.png deleted file mode 100644 index 30921cbb..00000000 Binary files a/public/textures/chipped/golden_melon.png and /dev/null differ diff --git a/public/textures/chipped/golden_oak_leaves.png b/public/textures/chipped/golden_oak_leaves.png deleted file mode 100644 index 7ca7c9b0..00000000 Binary files a/public/textures/chipped/golden_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/golden_paper_soul_lantern.png b/public/textures/chipped/golden_paper_soul_lantern.png deleted file mode 100644 index 068bf5e8..00000000 Binary files a/public/textures/chipped/golden_paper_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/golden_spruce_leaves.png b/public/textures/chipped/golden_spruce_leaves.png deleted file mode 100644 index f9e5df45..00000000 Binary files a/public/textures/chipped/golden_spruce_leaves.png and /dev/null differ diff --git a/public/textures/chipped/goldkin.png b/public/textures/chipped/goldkin.png deleted file mode 100644 index a0c72b7f..00000000 Binary files a/public/textures/chipped/goldkin.png and /dev/null differ diff --git a/public/textures/chipped/granite_bricks.png b/public/textures/chipped/granite_bricks.png deleted file mode 100644 index a5e98c71..00000000 Binary files a/public/textures/chipped/granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/granite_mini_tiles.png b/public/textures/chipped/granite_mini_tiles.png deleted file mode 100644 index e4297081..00000000 Binary files a/public/textures/chipped/granite_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/granite_pillar.png b/public/textures/chipped/granite_pillar.png deleted file mode 100644 index fc15bc0c..00000000 Binary files a/public/textures/chipped/granite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/granite_pillar_top.png b/public/textures/chipped/granite_pillar_top.png deleted file mode 100644 index 94cfed64..00000000 Binary files a/public/textures/chipped/granite_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/granite_pointed_dripstone.png b/public/textures/chipped/granite_pointed_dripstone.png deleted file mode 100644 index 63baef62..00000000 Binary files a/public/textures/chipped/granite_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/granite_prismarine.png b/public/textures/chipped/granite_prismarine.png deleted file mode 100644 index f6ffd9a6..00000000 Binary files a/public/textures/chipped/granite_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/granite_scales.png b/public/textures/chipped/granite_scales.png deleted file mode 100644 index eb44484f..00000000 Binary files a/public/textures/chipped/granite_scales.png and /dev/null differ diff --git a/public/textures/chipped/graveled_soul_sand.png b/public/textures/chipped/graveled_soul_sand.png deleted file mode 100644 index 1a695a5c..00000000 Binary files a/public/textures/chipped/graveled_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/gray_concrete_bricks.png b/public/textures/chipped/gray_concrete_bricks.png deleted file mode 100644 index 958e083b..00000000 Binary files a/public/textures/chipped/gray_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/gray_concrete_panel.png b/public/textures/chipped/gray_concrete_panel.png deleted file mode 100644 index b6809cd7..00000000 Binary files a/public/textures/chipped/gray_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/gray_concrete_pillar.png b/public/textures/chipped/gray_concrete_pillar.png deleted file mode 100644 index 8b162eac..00000000 Binary files a/public/textures/chipped/gray_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/gray_concrete_tiles.png b/public/textures/chipped/gray_concrete_tiles.png deleted file mode 100644 index 436d2324..00000000 Binary files a/public/textures/chipped/gray_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/gray_glazed_terracotta_pillar_sides.png b/public/textures/chipped/gray_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 2589fb9b..00000000 Binary files a/public/textures/chipped/gray_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/gray_glazed_terracotta_pillar_top.png b/public/textures/chipped/gray_glazed_terracotta_pillar_top.png deleted file mode 100644 index 5abeda4c..00000000 Binary files a/public/textures/chipped/gray_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/gray_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/gray_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index 55c266ac..00000000 Binary files a/public/textures/chipped/gray_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/gray_glazed_terracotta_tiles.png b/public/textures/chipped/gray_glazed_terracotta_tiles.png deleted file mode 100644 index 251b768f..00000000 Binary files a/public/textures/chipped/gray_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/gray_paper_soul_lantern.png b/public/textures/chipped/gray_paper_soul_lantern.png deleted file mode 100644 index 102d48f7..00000000 Binary files a/public/textures/chipped/gray_paper_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/gray_terracotta_bricks.png b/public/textures/chipped/gray_terracotta_bricks.png deleted file mode 100644 index a60146ff..00000000 Binary files a/public/textures/chipped/gray_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/gray_terracotta_column.png b/public/textures/chipped/gray_terracotta_column.png deleted file mode 100644 index eed8d7bd..00000000 Binary files a/public/textures/chipped/gray_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/gray_terracotta_pillar.png b/public/textures/chipped/gray_terracotta_pillar.png deleted file mode 100644 index e700a0a7..00000000 Binary files a/public/textures/chipped/gray_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/gray_terracotta_tile.png b/public/textures/chipped/gray_terracotta_tile.png deleted file mode 100644 index 8c9013ec..00000000 Binary files a/public/textures/chipped/gray_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/gray_terracotta_tiles.png b/public/textures/chipped/gray_terracotta_tiles.png deleted file mode 100644 index 416860c0..00000000 Binary files a/public/textures/chipped/gray_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/green_concrete_bricks.png b/public/textures/chipped/green_concrete_bricks.png deleted file mode 100644 index 17737c78..00000000 Binary files a/public/textures/chipped/green_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/green_concrete_panel.png b/public/textures/chipped/green_concrete_panel.png deleted file mode 100644 index 02a986fa..00000000 Binary files a/public/textures/chipped/green_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/green_concrete_pillar.png b/public/textures/chipped/green_concrete_pillar.png deleted file mode 100644 index e26b9967..00000000 Binary files a/public/textures/chipped/green_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/green_concrete_tiles.png b/public/textures/chipped/green_concrete_tiles.png deleted file mode 100644 index 3e82d7e2..00000000 Binary files a/public/textures/chipped/green_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/green_glazed_terracotta_pillar_sides.png b/public/textures/chipped/green_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 66960f08..00000000 Binary files a/public/textures/chipped/green_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/green_glazed_terracotta_pillar_top.png b/public/textures/chipped/green_glazed_terracotta_pillar_top.png deleted file mode 100644 index e5fd8f5a..00000000 Binary files a/public/textures/chipped/green_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/green_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/green_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index 3822274e..00000000 Binary files a/public/textures/chipped/green_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/green_glazed_terracotta_tiles.png b/public/textures/chipped/green_glazed_terracotta_tiles.png deleted file mode 100644 index a12bf979..00000000 Binary files a/public/textures/chipped/green_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/green_paper_lantern.png b/public/textures/chipped/green_paper_lantern.png deleted file mode 100644 index 075fad4e..00000000 Binary files a/public/textures/chipped/green_paper_lantern.png and /dev/null differ diff --git a/public/textures/chipped/green_redstone_torch.png b/public/textures/chipped/green_redstone_torch.png deleted file mode 100644 index f8d57e44..00000000 Binary files a/public/textures/chipped/green_redstone_torch.png and /dev/null differ diff --git a/public/textures/chipped/green_terracotta_bricks.png b/public/textures/chipped/green_terracotta_bricks.png deleted file mode 100644 index d1090b99..00000000 Binary files a/public/textures/chipped/green_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/green_terracotta_column.png b/public/textures/chipped/green_terracotta_column.png deleted file mode 100644 index 7d577821..00000000 Binary files a/public/textures/chipped/green_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/green_terracotta_pillar.png b/public/textures/chipped/green_terracotta_pillar.png deleted file mode 100644 index 7f94bf21..00000000 Binary files a/public/textures/chipped/green_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/green_terracotta_tile.png b/public/textures/chipped/green_terracotta_tile.png deleted file mode 100644 index d1b9f677..00000000 Binary files a/public/textures/chipped/green_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/green_terracotta_tiles.png b/public/textures/chipped/green_terracotta_tiles.png deleted file mode 100644 index dbbf185d..00000000 Binary files a/public/textures/chipped/green_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/grid_black_concrete.png b/public/textures/chipped/grid_black_concrete.png deleted file mode 100644 index 8aa51a89..00000000 Binary files a/public/textures/chipped/grid_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_blue_concrete.png b/public/textures/chipped/grid_blue_concrete.png deleted file mode 100644 index 76c7dd1e..00000000 Binary files a/public/textures/chipped/grid_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_brown_concrete.png b/public/textures/chipped/grid_brown_concrete.png deleted file mode 100644 index 44bd399d..00000000 Binary files a/public/textures/chipped/grid_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_cyan_concrete.png b/public/textures/chipped/grid_cyan_concrete.png deleted file mode 100644 index eff1661f..00000000 Binary files a/public/textures/chipped/grid_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_gray_concrete.png b/public/textures/chipped/grid_gray_concrete.png deleted file mode 100644 index fa7f12f9..00000000 Binary files a/public/textures/chipped/grid_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_green_concrete.png b/public/textures/chipped/grid_green_concrete.png deleted file mode 100644 index 991ba697..00000000 Binary files a/public/textures/chipped/grid_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_light_blue_concrete.png b/public/textures/chipped/grid_light_blue_concrete.png deleted file mode 100644 index f1edec18..00000000 Binary files a/public/textures/chipped/grid_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_light_gray_concrete.png b/public/textures/chipped/grid_light_gray_concrete.png deleted file mode 100644 index 4e0f2b6d..00000000 Binary files a/public/textures/chipped/grid_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_lime_concrete.png b/public/textures/chipped/grid_lime_concrete.png deleted file mode 100644 index e030b139..00000000 Binary files a/public/textures/chipped/grid_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_magenta_concrete.png b/public/textures/chipped/grid_magenta_concrete.png deleted file mode 100644 index 7881ebce..00000000 Binary files a/public/textures/chipped/grid_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_orange_concrete.png b/public/textures/chipped/grid_orange_concrete.png deleted file mode 100644 index 4d09b818..00000000 Binary files a/public/textures/chipped/grid_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_pink_concrete.png b/public/textures/chipped/grid_pink_concrete.png deleted file mode 100644 index 10c17f78..00000000 Binary files a/public/textures/chipped/grid_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_purple_concrete.png b/public/textures/chipped/grid_purple_concrete.png deleted file mode 100644 index 96a75e0a..00000000 Binary files a/public/textures/chipped/grid_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_red_concrete.png b/public/textures/chipped/grid_red_concrete.png deleted file mode 100644 index d21ccc0e..00000000 Binary files a/public/textures/chipped/grid_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_white_concrete.png b/public/textures/chipped/grid_white_concrete.png deleted file mode 100644 index 7c31d6c5..00000000 Binary files a/public/textures/chipped/grid_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grid_yellow_concrete.png b/public/textures/chipped/grid_yellow_concrete.png deleted file mode 100644 index d05ae6cc..00000000 Binary files a/public/textures/chipped/grid_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_black_concrete.png b/public/textures/chipped/grill_black_concrete.png deleted file mode 100644 index 8f49cb79..00000000 Binary files a/public/textures/chipped/grill_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_blue_concrete.png b/public/textures/chipped/grill_blue_concrete.png deleted file mode 100644 index eb7db9ff..00000000 Binary files a/public/textures/chipped/grill_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_brown_concrete.png b/public/textures/chipped/grill_brown_concrete.png deleted file mode 100644 index b9079c28..00000000 Binary files a/public/textures/chipped/grill_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_cyan_concrete.png b/public/textures/chipped/grill_cyan_concrete.png deleted file mode 100644 index 065d0fe2..00000000 Binary files a/public/textures/chipped/grill_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_gray_concrete.png b/public/textures/chipped/grill_gray_concrete.png deleted file mode 100644 index 18867d1b..00000000 Binary files a/public/textures/chipped/grill_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_green_concrete.png b/public/textures/chipped/grill_green_concrete.png deleted file mode 100644 index aa5a4a26..00000000 Binary files a/public/textures/chipped/grill_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_light_blue_concrete.png b/public/textures/chipped/grill_light_blue_concrete.png deleted file mode 100644 index 4d41007f..00000000 Binary files a/public/textures/chipped/grill_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_light_gray_concrete.png b/public/textures/chipped/grill_light_gray_concrete.png deleted file mode 100644 index 4609a3d5..00000000 Binary files a/public/textures/chipped/grill_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_lime_concrete.png b/public/textures/chipped/grill_lime_concrete.png deleted file mode 100644 index 63432fa6..00000000 Binary files a/public/textures/chipped/grill_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_magenta_concrete.png b/public/textures/chipped/grill_magenta_concrete.png deleted file mode 100644 index a49ef32d..00000000 Binary files a/public/textures/chipped/grill_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_orange_concrete.png b/public/textures/chipped/grill_orange_concrete.png deleted file mode 100644 index 662c4fc8..00000000 Binary files a/public/textures/chipped/grill_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_pink_concrete.png b/public/textures/chipped/grill_pink_concrete.png deleted file mode 100644 index 67cbbc55..00000000 Binary files a/public/textures/chipped/grill_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_purple_concrete.png b/public/textures/chipped/grill_purple_concrete.png deleted file mode 100644 index 8e24bc1f..00000000 Binary files a/public/textures/chipped/grill_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_red_concrete.png b/public/textures/chipped/grill_red_concrete.png deleted file mode 100644 index c9806daa..00000000 Binary files a/public/textures/chipped/grill_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_white_concrete.png b/public/textures/chipped/grill_white_concrete.png deleted file mode 100644 index 1fea323a..00000000 Binary files a/public/textures/chipped/grill_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grill_yellow_concrete.png b/public/textures/chipped/grill_yellow_concrete.png deleted file mode 100644 index 5e573515..00000000 Binary files a/public/textures/chipped/grill_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/grimy_mushroom_stem.png b/public/textures/chipped/grimy_mushroom_stem.png deleted file mode 100644 index ec410f7f..00000000 Binary files a/public/textures/chipped/grimy_mushroom_stem.png and /dev/null differ diff --git a/public/textures/chipped/grizly_nether_sprouts.png b/public/textures/chipped/grizly_nether_sprouts.png deleted file mode 100644 index 8b27868d..00000000 Binary files a/public/textures/chipped/grizly_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/half_grown_warped_roots.png b/public/textures/chipped/half_grown_warped_roots.png deleted file mode 100644 index 70589588..00000000 Binary files a/public/textures/chipped/half_grown_warped_roots.png and /dev/null differ diff --git a/public/textures/chipped/hanging_broken_cobweb.png b/public/textures/chipped/hanging_broken_cobweb.png deleted file mode 100644 index e1c4d4d6..00000000 Binary files a/public/textures/chipped/hanging_broken_cobweb.png and /dev/null differ diff --git a/public/textures/chipped/hanging_cobweb.png b/public/textures/chipped/hanging_cobweb.png deleted file mode 100644 index 04e23705..00000000 Binary files a/public/textures/chipped/hanging_cobweb.png and /dev/null differ diff --git a/public/textures/chipped/happy_soul_sand.png b/public/textures/chipped/happy_soul_sand.png deleted file mode 100644 index d526e978..00000000 Binary files a/public/textures/chipped/happy_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/hard_mud.png b/public/textures/chipped/hard_mud.png deleted file mode 100644 index 00040700..00000000 Binary files a/public/textures/chipped/hard_mud.png and /dev/null differ diff --git a/public/textures/chipped/hard_mud_bricks.png b/public/textures/chipped/hard_mud_bricks.png deleted file mode 100644 index e37bc026..00000000 Binary files a/public/textures/chipped/hard_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/hard_packed_mud.png b/public/textures/chipped/hard_packed_mud.png deleted file mode 100644 index f9ae1cd5..00000000 Binary files a/public/textures/chipped/hard_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/hardened_soul_sand.png b/public/textures/chipped/hardened_soul_sand.png deleted file mode 100644 index 25449942..00000000 Binary files a/public/textures/chipped/hardened_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/harp_iron_bars.png b/public/textures/chipped/harp_iron_bars.png deleted file mode 100644 index a7d50907..00000000 Binary files a/public/textures/chipped/harp_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_black_carpet.png b/public/textures/chipped/harsh_quilted_black_carpet.png deleted file mode 100644 index 342b4610..00000000 Binary files a/public/textures/chipped/harsh_quilted_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_black_wool.png b/public/textures/chipped/harsh_quilted_black_wool.png deleted file mode 100644 index 6dc23345..00000000 Binary files a/public/textures/chipped/harsh_quilted_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_blue_carpet.png b/public/textures/chipped/harsh_quilted_blue_carpet.png deleted file mode 100644 index 8e33ccb1..00000000 Binary files a/public/textures/chipped/harsh_quilted_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_blue_wool.png b/public/textures/chipped/harsh_quilted_blue_wool.png deleted file mode 100644 index 01685746..00000000 Binary files a/public/textures/chipped/harsh_quilted_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_brown_carpet.png b/public/textures/chipped/harsh_quilted_brown_carpet.png deleted file mode 100644 index 498e8b13..00000000 Binary files a/public/textures/chipped/harsh_quilted_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_brown_wool.png b/public/textures/chipped/harsh_quilted_brown_wool.png deleted file mode 100644 index bff3a1bf..00000000 Binary files a/public/textures/chipped/harsh_quilted_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_cyan_carpet.png b/public/textures/chipped/harsh_quilted_cyan_carpet.png deleted file mode 100644 index 88877652..00000000 Binary files a/public/textures/chipped/harsh_quilted_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_cyan_wool.png b/public/textures/chipped/harsh_quilted_cyan_wool.png deleted file mode 100644 index 08ff697a..00000000 Binary files a/public/textures/chipped/harsh_quilted_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_gray_carpet.png b/public/textures/chipped/harsh_quilted_gray_carpet.png deleted file mode 100644 index c62fe95d..00000000 Binary files a/public/textures/chipped/harsh_quilted_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_gray_wool.png b/public/textures/chipped/harsh_quilted_gray_wool.png deleted file mode 100644 index 2c121593..00000000 Binary files a/public/textures/chipped/harsh_quilted_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_green_carpet.png b/public/textures/chipped/harsh_quilted_green_carpet.png deleted file mode 100644 index ccf29a59..00000000 Binary files a/public/textures/chipped/harsh_quilted_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_green_wool.png b/public/textures/chipped/harsh_quilted_green_wool.png deleted file mode 100644 index c4d7e135..00000000 Binary files a/public/textures/chipped/harsh_quilted_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_light_blue_carpet.png b/public/textures/chipped/harsh_quilted_light_blue_carpet.png deleted file mode 100644 index ff073f9c..00000000 Binary files a/public/textures/chipped/harsh_quilted_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_light_blue_wool.png b/public/textures/chipped/harsh_quilted_light_blue_wool.png deleted file mode 100644 index 121b088b..00000000 Binary files a/public/textures/chipped/harsh_quilted_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_light_gray_carpet.png b/public/textures/chipped/harsh_quilted_light_gray_carpet.png deleted file mode 100644 index f6615b98..00000000 Binary files a/public/textures/chipped/harsh_quilted_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_light_gray_wool.png b/public/textures/chipped/harsh_quilted_light_gray_wool.png deleted file mode 100644 index 884f5360..00000000 Binary files a/public/textures/chipped/harsh_quilted_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_lime_carpet.png b/public/textures/chipped/harsh_quilted_lime_carpet.png deleted file mode 100644 index fecf8548..00000000 Binary files a/public/textures/chipped/harsh_quilted_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_lime_wool.png b/public/textures/chipped/harsh_quilted_lime_wool.png deleted file mode 100644 index ad4d2e8f..00000000 Binary files a/public/textures/chipped/harsh_quilted_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_magenta_carpet.png b/public/textures/chipped/harsh_quilted_magenta_carpet.png deleted file mode 100644 index 882add3f..00000000 Binary files a/public/textures/chipped/harsh_quilted_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_magenta_wool.png b/public/textures/chipped/harsh_quilted_magenta_wool.png deleted file mode 100644 index ac1c573c..00000000 Binary files a/public/textures/chipped/harsh_quilted_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_orange_carpet.png b/public/textures/chipped/harsh_quilted_orange_carpet.png deleted file mode 100644 index bee816e3..00000000 Binary files a/public/textures/chipped/harsh_quilted_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_orange_wool.png b/public/textures/chipped/harsh_quilted_orange_wool.png deleted file mode 100644 index 6194e011..00000000 Binary files a/public/textures/chipped/harsh_quilted_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_pink_carpet.png b/public/textures/chipped/harsh_quilted_pink_carpet.png deleted file mode 100644 index 9a366635..00000000 Binary files a/public/textures/chipped/harsh_quilted_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_pink_wool.png b/public/textures/chipped/harsh_quilted_pink_wool.png deleted file mode 100644 index 2d285e88..00000000 Binary files a/public/textures/chipped/harsh_quilted_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_purple_carpet.png b/public/textures/chipped/harsh_quilted_purple_carpet.png deleted file mode 100644 index bbd3c419..00000000 Binary files a/public/textures/chipped/harsh_quilted_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_purple_wool.png b/public/textures/chipped/harsh_quilted_purple_wool.png deleted file mode 100644 index 19d73c06..00000000 Binary files a/public/textures/chipped/harsh_quilted_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_red_carpet.png b/public/textures/chipped/harsh_quilted_red_carpet.png deleted file mode 100644 index 9612c55c..00000000 Binary files a/public/textures/chipped/harsh_quilted_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_red_wool.png b/public/textures/chipped/harsh_quilted_red_wool.png deleted file mode 100644 index d0fdd18d..00000000 Binary files a/public/textures/chipped/harsh_quilted_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_white_carpet.png b/public/textures/chipped/harsh_quilted_white_carpet.png deleted file mode 100644 index c4a228fd..00000000 Binary files a/public/textures/chipped/harsh_quilted_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_white_wool.png b/public/textures/chipped/harsh_quilted_white_wool.png deleted file mode 100644 index b9387750..00000000 Binary files a/public/textures/chipped/harsh_quilted_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_yellow_carpet.png b/public/textures/chipped/harsh_quilted_yellow_carpet.png deleted file mode 100644 index b0876b8e..00000000 Binary files a/public/textures/chipped/harsh_quilted_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/harsh_quilted_yellow_wool.png b/public/textures/chipped/harsh_quilted_yellow_wool.png deleted file mode 100644 index f0b98f38..00000000 Binary files a/public/textures/chipped/harsh_quilted_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/hazard_black_concrete.png b/public/textures/chipped/hazard_black_concrete.png deleted file mode 100644 index 7f02d489..00000000 Binary files a/public/textures/chipped/hazard_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_blue_concrete.png b/public/textures/chipped/hazard_blue_concrete.png deleted file mode 100644 index 4b8e39c9..00000000 Binary files a/public/textures/chipped/hazard_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_brown_concrete.png b/public/textures/chipped/hazard_brown_concrete.png deleted file mode 100644 index 946553a4..00000000 Binary files a/public/textures/chipped/hazard_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_cyan_concrete.png b/public/textures/chipped/hazard_cyan_concrete.png deleted file mode 100644 index 17784f42..00000000 Binary files a/public/textures/chipped/hazard_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_gray_concrete.png b/public/textures/chipped/hazard_gray_concrete.png deleted file mode 100644 index 57914f10..00000000 Binary files a/public/textures/chipped/hazard_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_green_concrete.png b/public/textures/chipped/hazard_green_concrete.png deleted file mode 100644 index 5d8e138b..00000000 Binary files a/public/textures/chipped/hazard_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_light_blue_concrete.png b/public/textures/chipped/hazard_light_blue_concrete.png deleted file mode 100644 index ae5d02dd..00000000 Binary files a/public/textures/chipped/hazard_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_light_gray_concrete.png b/public/textures/chipped/hazard_light_gray_concrete.png deleted file mode 100644 index 1f9b6ffd..00000000 Binary files a/public/textures/chipped/hazard_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_lime_concrete.png b/public/textures/chipped/hazard_lime_concrete.png deleted file mode 100644 index d28c39cc..00000000 Binary files a/public/textures/chipped/hazard_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_magenta_concrete.png b/public/textures/chipped/hazard_magenta_concrete.png deleted file mode 100644 index 30885ef6..00000000 Binary files a/public/textures/chipped/hazard_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_orange_concrete.png b/public/textures/chipped/hazard_orange_concrete.png deleted file mode 100644 index 32c5d52d..00000000 Binary files a/public/textures/chipped/hazard_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_pink_concrete.png b/public/textures/chipped/hazard_pink_concrete.png deleted file mode 100644 index 5ca4be08..00000000 Binary files a/public/textures/chipped/hazard_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_purple_concrete.png b/public/textures/chipped/hazard_purple_concrete.png deleted file mode 100644 index 1aab97b3..00000000 Binary files a/public/textures/chipped/hazard_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_red_concrete.png b/public/textures/chipped/hazard_red_concrete.png deleted file mode 100644 index 31048feb..00000000 Binary files a/public/textures/chipped/hazard_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_white_concrete.png b/public/textures/chipped/hazard_white_concrete.png deleted file mode 100644 index c85d0ad4..00000000 Binary files a/public/textures/chipped/hazard_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/hazard_yellow_concrete.png b/public/textures/chipped/hazard_yellow_concrete.png deleted file mode 100644 index 011cba70..00000000 Binary files a/public/textures/chipped/hazard_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/heart_mud.png b/public/textures/chipped/heart_mud.png deleted file mode 100644 index 7be09579..00000000 Binary files a/public/textures/chipped/heart_mud.png and /dev/null differ diff --git a/public/textures/chipped/heart_mud_bricks.png b/public/textures/chipped/heart_mud_bricks.png deleted file mode 100644 index 9a18bfc9..00000000 Binary files a/public/textures/chipped/heart_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/heart_packed_mud.png b/public/textures/chipped/heart_packed_mud.png deleted file mode 100644 index 6719bab2..00000000 Binary files a/public/textures/chipped/heart_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/heavy_acacia_door.png b/public/textures/chipped/heavy_acacia_door.png deleted file mode 100644 index 9fbf5f22..00000000 Binary files a/public/textures/chipped/heavy_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/heavy_acacia_trapdoor.png b/public/textures/chipped/heavy_acacia_trapdoor.png deleted file mode 100644 index 4d232f87..00000000 Binary files a/public/textures/chipped/heavy_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/heavy_bamboo_door.png b/public/textures/chipped/heavy_bamboo_door.png deleted file mode 100644 index 6a089297..00000000 Binary files a/public/textures/chipped/heavy_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/heavy_bamboo_trapdoor.png b/public/textures/chipped/heavy_bamboo_trapdoor.png deleted file mode 100644 index 57334c97..00000000 Binary files a/public/textures/chipped/heavy_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/heavy_birch_door.png b/public/textures/chipped/heavy_birch_door.png deleted file mode 100644 index 87e946ca..00000000 Binary files a/public/textures/chipped/heavy_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/heavy_birch_trapdoor.png b/public/textures/chipped/heavy_birch_trapdoor.png deleted file mode 100644 index b845baf7..00000000 Binary files a/public/textures/chipped/heavy_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/heavy_cherry_door.png b/public/textures/chipped/heavy_cherry_door.png deleted file mode 100644 index 3ee10dee..00000000 Binary files a/public/textures/chipped/heavy_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/heavy_cherry_trapdoor.png b/public/textures/chipped/heavy_cherry_trapdoor.png deleted file mode 100644 index c7330448..00000000 Binary files a/public/textures/chipped/heavy_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/heavy_crimson_door.png b/public/textures/chipped/heavy_crimson_door.png deleted file mode 100644 index dd195e5d..00000000 Binary files a/public/textures/chipped/heavy_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/heavy_crimson_trapdoor.png b/public/textures/chipped/heavy_crimson_trapdoor.png deleted file mode 100644 index 853fcb64..00000000 Binary files a/public/textures/chipped/heavy_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/heavy_dark_oak_door.png b/public/textures/chipped/heavy_dark_oak_door.png deleted file mode 100644 index 3d505dcc..00000000 Binary files a/public/textures/chipped/heavy_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/heavy_dark_oak_trapdoor.png b/public/textures/chipped/heavy_dark_oak_trapdoor.png deleted file mode 100644 index b2270d3e..00000000 Binary files a/public/textures/chipped/heavy_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/heavy_jungle_door.png b/public/textures/chipped/heavy_jungle_door.png deleted file mode 100644 index 42e0d6ee..00000000 Binary files a/public/textures/chipped/heavy_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/heavy_jungle_trapdoor.png b/public/textures/chipped/heavy_jungle_trapdoor.png deleted file mode 100644 index 0a02a55e..00000000 Binary files a/public/textures/chipped/heavy_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/heavy_mangrove_door.png b/public/textures/chipped/heavy_mangrove_door.png deleted file mode 100644 index 2dd189e2..00000000 Binary files a/public/textures/chipped/heavy_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/heavy_mangrove_trapdoor.png b/public/textures/chipped/heavy_mangrove_trapdoor.png deleted file mode 100644 index e3248915..00000000 Binary files a/public/textures/chipped/heavy_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/heavy_oak_door.png b/public/textures/chipped/heavy_oak_door.png deleted file mode 100644 index c5d34552..00000000 Binary files a/public/textures/chipped/heavy_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/heavy_oak_trapdoor.png b/public/textures/chipped/heavy_oak_trapdoor.png deleted file mode 100644 index d04b6000..00000000 Binary files a/public/textures/chipped/heavy_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/heavy_spruce_door.png b/public/textures/chipped/heavy_spruce_door.png deleted file mode 100644 index 5f6ca0e7..00000000 Binary files a/public/textures/chipped/heavy_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/heavy_warped_door.png b/public/textures/chipped/heavy_warped_door.png deleted file mode 100644 index c41ee48d..00000000 Binary files a/public/textures/chipped/heavy_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/heavy_warped_trapdoor.png b/public/textures/chipped/heavy_warped_trapdoor.png deleted file mode 100644 index 5f5e93b0..00000000 Binary files a/public/textures/chipped/heavy_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/herringbone_acacia_planks.png b/public/textures/chipped/herringbone_acacia_planks.png deleted file mode 100644 index b4891199..00000000 Binary files a/public/textures/chipped/herringbone_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/herringbone_bamboo_planks.png b/public/textures/chipped/herringbone_bamboo_planks.png deleted file mode 100644 index 015f26c3..00000000 Binary files a/public/textures/chipped/herringbone_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/herringbone_birch_planks.png b/public/textures/chipped/herringbone_birch_planks.png deleted file mode 100644 index 5b6b2ac2..00000000 Binary files a/public/textures/chipped/herringbone_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/herringbone_cherry_planks.png b/public/textures/chipped/herringbone_cherry_planks.png deleted file mode 100644 index f0df92e8..00000000 Binary files a/public/textures/chipped/herringbone_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/herringbone_crimson_planks.png b/public/textures/chipped/herringbone_crimson_planks.png deleted file mode 100644 index ffd23fa2..00000000 Binary files a/public/textures/chipped/herringbone_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/herringbone_dark_oak_planks.png b/public/textures/chipped/herringbone_dark_oak_planks.png deleted file mode 100644 index 2a53a49c..00000000 Binary files a/public/textures/chipped/herringbone_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/herringbone_jungle_planks.png b/public/textures/chipped/herringbone_jungle_planks.png deleted file mode 100644 index 1e9a33bd..00000000 Binary files a/public/textures/chipped/herringbone_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/herringbone_mangrove_planks.png b/public/textures/chipped/herringbone_mangrove_planks.png deleted file mode 100644 index 0ce18a71..00000000 Binary files a/public/textures/chipped/herringbone_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/herringbone_oak_planks.png b/public/textures/chipped/herringbone_oak_planks.png deleted file mode 100644 index ea1bcd6b..00000000 Binary files a/public/textures/chipped/herringbone_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/herringbone_spruce_planks.png b/public/textures/chipped/herringbone_spruce_planks.png deleted file mode 100644 index 8aad3da0..00000000 Binary files a/public/textures/chipped/herringbone_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/herringbone_warped_planks.png b/public/textures/chipped/herringbone_warped_planks.png deleted file mode 100644 index 18f579c6..00000000 Binary files a/public/textures/chipped/herringbone_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/hewn_acacia_planks.png b/public/textures/chipped/hewn_acacia_planks.png deleted file mode 100644 index f38cda6d..00000000 Binary files a/public/textures/chipped/hewn_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/hewn_bamboo_planks.png b/public/textures/chipped/hewn_bamboo_planks.png deleted file mode 100644 index 799b1747..00000000 Binary files a/public/textures/chipped/hewn_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/hewn_birch_planks.png b/public/textures/chipped/hewn_birch_planks.png deleted file mode 100644 index f0f42d2f..00000000 Binary files a/public/textures/chipped/hewn_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/hewn_cherry_planks.png b/public/textures/chipped/hewn_cherry_planks.png deleted file mode 100644 index 568d21e1..00000000 Binary files a/public/textures/chipped/hewn_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/hewn_crimson_planks.png b/public/textures/chipped/hewn_crimson_planks.png deleted file mode 100644 index e7131929..00000000 Binary files a/public/textures/chipped/hewn_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/hewn_dark_oak_planks.png b/public/textures/chipped/hewn_dark_oak_planks.png deleted file mode 100644 index 4241e9b9..00000000 Binary files a/public/textures/chipped/hewn_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/hewn_jungle_planks.png b/public/textures/chipped/hewn_jungle_planks.png deleted file mode 100644 index c8fbe78e..00000000 Binary files a/public/textures/chipped/hewn_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/hewn_mangrove_planks.png b/public/textures/chipped/hewn_mangrove_planks.png deleted file mode 100644 index 03deb200..00000000 Binary files a/public/textures/chipped/hewn_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/hewn_oak_planks.png b/public/textures/chipped/hewn_oak_planks.png deleted file mode 100644 index 10f4087a..00000000 Binary files a/public/textures/chipped/hewn_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/hewn_spruce_planks.png b/public/textures/chipped/hewn_spruce_planks.png deleted file mode 100644 index 45de6c25..00000000 Binary files a/public/textures/chipped/hewn_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/hewn_warped_planks.png b/public/textures/chipped/hewn_warped_planks.png deleted file mode 100644 index 044c460b..00000000 Binary files a/public/textures/chipped/hewn_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_black_glazed_terracotta.png b/public/textures/chipped/hexagonical_black_glazed_terracotta.png deleted file mode 100644 index e5d4988c..00000000 Binary files a/public/textures/chipped/hexagonical_black_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_black_terracotta.png b/public/textures/chipped/hexagonical_black_terracotta.png deleted file mode 100644 index 2a04de18..00000000 Binary files a/public/textures/chipped/hexagonical_black_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_blue_glazed_terracotta.png b/public/textures/chipped/hexagonical_blue_glazed_terracotta.png deleted file mode 100644 index 98e18a7d..00000000 Binary files a/public/textures/chipped/hexagonical_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_blue_terracotta.png b/public/textures/chipped/hexagonical_blue_terracotta.png deleted file mode 100644 index 601df394..00000000 Binary files a/public/textures/chipped/hexagonical_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_brown_glazed_terracotta.png b/public/textures/chipped/hexagonical_brown_glazed_terracotta.png deleted file mode 100644 index 54afaeae..00000000 Binary files a/public/textures/chipped/hexagonical_brown_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_brown_terracotta.png b/public/textures/chipped/hexagonical_brown_terracotta.png deleted file mode 100644 index c4ef790d..00000000 Binary files a/public/textures/chipped/hexagonical_brown_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_cyan_glazed_terracotta.png b/public/textures/chipped/hexagonical_cyan_glazed_terracotta.png deleted file mode 100644 index 4cdceb71..00000000 Binary files a/public/textures/chipped/hexagonical_cyan_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_cyan_terracotta.png b/public/textures/chipped/hexagonical_cyan_terracotta.png deleted file mode 100644 index dc77010b..00000000 Binary files a/public/textures/chipped/hexagonical_cyan_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_gray_glazed_terracotta.png b/public/textures/chipped/hexagonical_gray_glazed_terracotta.png deleted file mode 100644 index 8accfb3d..00000000 Binary files a/public/textures/chipped/hexagonical_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_gray_terracotta.png b/public/textures/chipped/hexagonical_gray_terracotta.png deleted file mode 100644 index 0c562fc9..00000000 Binary files a/public/textures/chipped/hexagonical_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_green_glazed_terracotta.png b/public/textures/chipped/hexagonical_green_glazed_terracotta.png deleted file mode 100644 index 98ad2c77..00000000 Binary files a/public/textures/chipped/hexagonical_green_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_green_terracotta.png b/public/textures/chipped/hexagonical_green_terracotta.png deleted file mode 100644 index 0f701fe7..00000000 Binary files a/public/textures/chipped/hexagonical_green_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_light_blue_glazed_terracotta.png b/public/textures/chipped/hexagonical_light_blue_glazed_terracotta.png deleted file mode 100644 index 07134638..00000000 Binary files a/public/textures/chipped/hexagonical_light_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_light_blue_terracotta.png b/public/textures/chipped/hexagonical_light_blue_terracotta.png deleted file mode 100644 index b7f2cef0..00000000 Binary files a/public/textures/chipped/hexagonical_light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_light_gray_glazed_terracotta.png b/public/textures/chipped/hexagonical_light_gray_glazed_terracotta.png deleted file mode 100644 index c3f2183e..00000000 Binary files a/public/textures/chipped/hexagonical_light_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_light_gray_terracotta.png b/public/textures/chipped/hexagonical_light_gray_terracotta.png deleted file mode 100644 index 292bc44c..00000000 Binary files a/public/textures/chipped/hexagonical_light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_lime_glazed_terracotta.png b/public/textures/chipped/hexagonical_lime_glazed_terracotta.png deleted file mode 100644 index 9f813606..00000000 Binary files a/public/textures/chipped/hexagonical_lime_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_lime_terracotta.png b/public/textures/chipped/hexagonical_lime_terracotta.png deleted file mode 100644 index 81cd1574..00000000 Binary files a/public/textures/chipped/hexagonical_lime_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_magenta_glazed_terracotta.png b/public/textures/chipped/hexagonical_magenta_glazed_terracotta.png deleted file mode 100644 index 2afd834e..00000000 Binary files a/public/textures/chipped/hexagonical_magenta_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_magenta_terracotta.png b/public/textures/chipped/hexagonical_magenta_terracotta.png deleted file mode 100644 index e515ba8e..00000000 Binary files a/public/textures/chipped/hexagonical_magenta_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_orange_glazed_terracotta.png b/public/textures/chipped/hexagonical_orange_glazed_terracotta.png deleted file mode 100644 index 3c24bee8..00000000 Binary files a/public/textures/chipped/hexagonical_orange_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_orange_terracotta.png b/public/textures/chipped/hexagonical_orange_terracotta.png deleted file mode 100644 index a38e22c4..00000000 Binary files a/public/textures/chipped/hexagonical_orange_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_pink_glazed_terracotta.png b/public/textures/chipped/hexagonical_pink_glazed_terracotta.png deleted file mode 100644 index 75143080..00000000 Binary files a/public/textures/chipped/hexagonical_pink_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_pink_terracotta.png b/public/textures/chipped/hexagonical_pink_terracotta.png deleted file mode 100644 index 1965ce28..00000000 Binary files a/public/textures/chipped/hexagonical_pink_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_purple_glazed_terracotta.png b/public/textures/chipped/hexagonical_purple_glazed_terracotta.png deleted file mode 100644 index 9a3ffcfe..00000000 Binary files a/public/textures/chipped/hexagonical_purple_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_purple_terracotta.png b/public/textures/chipped/hexagonical_purple_terracotta.png deleted file mode 100644 index 1968ce2c..00000000 Binary files a/public/textures/chipped/hexagonical_purple_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_red_glazed_terracotta.png b/public/textures/chipped/hexagonical_red_glazed_terracotta.png deleted file mode 100644 index b84fa575..00000000 Binary files a/public/textures/chipped/hexagonical_red_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_red_terracotta.png b/public/textures/chipped/hexagonical_red_terracotta.png deleted file mode 100644 index ceee0fda..00000000 Binary files a/public/textures/chipped/hexagonical_red_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_terracotta.png b/public/textures/chipped/hexagonical_terracotta.png deleted file mode 100644 index 393c84d7..00000000 Binary files a/public/textures/chipped/hexagonical_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_white_glazed_terracotta.png b/public/textures/chipped/hexagonical_white_glazed_terracotta.png deleted file mode 100644 index bf598764..00000000 Binary files a/public/textures/chipped/hexagonical_white_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_white_terracotta.png b/public/textures/chipped/hexagonical_white_terracotta.png deleted file mode 100644 index 67eae633..00000000 Binary files a/public/textures/chipped/hexagonical_white_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_yellow_glazed_terracotta.png b/public/textures/chipped/hexagonical_yellow_glazed_terracotta.png deleted file mode 100644 index 2fb45038..00000000 Binary files a/public/textures/chipped/hexagonical_yellow_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/hexagonical_yellow_terracotta.png b/public/textures/chipped/hexagonical_yellow_terracotta.png deleted file mode 100644 index 2328eae6..00000000 Binary files a/public/textures/chipped/hexagonical_yellow_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/high_nether_sprouts.png b/public/textures/chipped/high_nether_sprouts.png deleted file mode 100644 index da49fbfe..00000000 Binary files a/public/textures/chipped/high_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/historical_oak_bookshelf.png b/public/textures/chipped/historical_oak_bookshelf.png deleted file mode 100644 index 1a5665e1..00000000 Binary files a/public/textures/chipped/historical_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/historical_oak_large_bookshelf.png b/public/textures/chipped/historical_oak_large_bookshelf.png deleted file mode 100644 index f6092c51..00000000 Binary files a/public/textures/chipped/historical_oak_large_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/hived_glowstone.png b/public/textures/chipped/hived_glowstone.png deleted file mode 100644 index 8b63b82b..00000000 Binary files a/public/textures/chipped/hived_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/hived_redstone_lamp.png b/public/textures/chipped/hived_redstone_lamp.png deleted file mode 100644 index c91cc022..00000000 Binary files a/public/textures/chipped/hived_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/hived_sea_lantern.png b/public/textures/chipped/hived_sea_lantern.png deleted file mode 100644 index 23e94f93..00000000 Binary files a/public/textures/chipped/hived_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/hived_shroomlight.png b/public/textures/chipped/hived_shroomlight.png deleted file mode 100644 index 9caaa851..00000000 Binary files a/public/textures/chipped/hived_shroomlight.png and /dev/null differ diff --git a/public/textures/chipped/hived_white_redstone_lamp.png b/public/textures/chipped/hived_white_redstone_lamp.png deleted file mode 100644 index a61f8c84..00000000 Binary files a/public/textures/chipped/hived_white_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/hooded_brown_mushroom.png b/public/textures/chipped/hooded_brown_mushroom.png deleted file mode 100644 index 06164444..00000000 Binary files a/public/textures/chipped/hooded_brown_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/hooded_crimson_fungus.png b/public/textures/chipped/hooded_crimson_fungus.png deleted file mode 100644 index 4fab34c5..00000000 Binary files a/public/textures/chipped/hooded_crimson_fungus.png and /dev/null differ diff --git a/public/textures/chipped/hooded_red_mushroom.png b/public/textures/chipped/hooded_red_mushroom.png deleted file mode 100644 index ad25a371..00000000 Binary files a/public/textures/chipped/hooded_red_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/hooded_warped_fungus.png b/public/textures/chipped/hooded_warped_fungus.png deleted file mode 100644 index 81121194..00000000 Binary files a/public/textures/chipped/hooded_warped_fungus.png and /dev/null differ diff --git a/public/textures/chipped/horned_mud.png b/public/textures/chipped/horned_mud.png deleted file mode 100644 index f50850ab..00000000 Binary files a/public/textures/chipped/horned_mud.png and /dev/null differ diff --git a/public/textures/chipped/horned_mud_bricks.png b/public/textures/chipped/horned_mud_bricks.png deleted file mode 100644 index 6402b47e..00000000 Binary files a/public/textures/chipped/horned_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/horned_packed_mud.png b/public/textures/chipped/horned_packed_mud.png deleted file mode 100644 index 38622820..00000000 Binary files a/public/textures/chipped/horned_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/horrified_carved_pumpkin.png b/public/textures/chipped/horrified_carved_pumpkin.png deleted file mode 100644 index f985d33f..00000000 Binary files a/public/textures/chipped/horrified_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/horrified_jack_o_lantern.png b/public/textures/chipped/horrified_jack_o_lantern.png deleted file mode 100644 index 167695c7..00000000 Binary files a/public/textures/chipped/horrified_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/i_sign_stripped_acacia_log.png b/public/textures/chipped/i_sign_stripped_acacia_log.png deleted file mode 100644 index 0425d19b..00000000 Binary files a/public/textures/chipped/i_sign_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/i_sign_stripped_birch_log.png b/public/textures/chipped/i_sign_stripped_birch_log.png deleted file mode 100644 index d86bc298..00000000 Binary files a/public/textures/chipped/i_sign_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/i_sign_stripped_cherry_log.png b/public/textures/chipped/i_sign_stripped_cherry_log.png deleted file mode 100644 index 6c00fef7..00000000 Binary files a/public/textures/chipped/i_sign_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/i_sign_stripped_crimson_stem.png b/public/textures/chipped/i_sign_stripped_crimson_stem.png deleted file mode 100644 index 1d20c6fd..00000000 Binary files a/public/textures/chipped/i_sign_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/i_sign_stripped_dark_oak_log.png b/public/textures/chipped/i_sign_stripped_dark_oak_log.png deleted file mode 100644 index 27ba2c96..00000000 Binary files a/public/textures/chipped/i_sign_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/i_sign_stripped_jungle_log.png b/public/textures/chipped/i_sign_stripped_jungle_log.png deleted file mode 100644 index cea8f134..00000000 Binary files a/public/textures/chipped/i_sign_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/i_sign_stripped_mangrove_log.png b/public/textures/chipped/i_sign_stripped_mangrove_log.png deleted file mode 100644 index 78dcc1e9..00000000 Binary files a/public/textures/chipped/i_sign_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/i_sign_stripped_oak_log.png b/public/textures/chipped/i_sign_stripped_oak_log.png deleted file mode 100644 index 79afe5c3..00000000 Binary files a/public/textures/chipped/i_sign_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/i_sign_stripped_spruce_log.png b/public/textures/chipped/i_sign_stripped_spruce_log.png deleted file mode 100644 index 58193dad..00000000 Binary files a/public/textures/chipped/i_sign_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/i_sign_stripped_warped_stem.png b/public/textures/chipped/i_sign_stripped_warped_stem.png deleted file mode 100644 index 65e9a529..00000000 Binary files a/public/textures/chipped/i_sign_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/ice_bricks.png b/public/textures/chipped/ice_bricks.png deleted file mode 100644 index 8be97d67..00000000 Binary files a/public/textures/chipped/ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/ice_mini_tiles.png b/public/textures/chipped/ice_mini_tiles.png deleted file mode 100644 index 9e52984b..00000000 Binary files a/public/textures/chipped/ice_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/ice_pillar.png b/public/textures/chipped/ice_pillar.png deleted file mode 100644 index 6b00b654..00000000 Binary files a/public/textures/chipped/ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ice_pillar_top.png b/public/textures/chipped/ice_pillar_top.png deleted file mode 100644 index e71cd2a5..00000000 Binary files a/public/textures/chipped/ice_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/ice_scales.png b/public/textures/chipped/ice_scales.png deleted file mode 100644 index 9414bbd6..00000000 Binary files a/public/textures/chipped/ice_scales.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_amethyst_block.png b/public/textures/chipped/inlayed_amethyst_block.png deleted file mode 100644 index ecd8c9f9..00000000 Binary files a/public/textures/chipped/inlayed_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_ancient_debris.png b/public/textures/chipped/inlayed_ancient_debris.png deleted file mode 100644 index 787fbe1a..00000000 Binary files a/public/textures/chipped/inlayed_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_andesite.png b/public/textures/chipped/inlayed_andesite.png deleted file mode 100644 index 09267eec..00000000 Binary files a/public/textures/chipped/inlayed_andesite.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_basalt.png b/public/textures/chipped/inlayed_basalt.png deleted file mode 100644 index 93c2215d..00000000 Binary files a/public/textures/chipped/inlayed_basalt.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_blackstone.png b/public/textures/chipped/inlayed_blackstone.png deleted file mode 100644 index d3da8b38..00000000 Binary files a/public/textures/chipped/inlayed_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_blue_ice.png b/public/textures/chipped/inlayed_blue_ice.png deleted file mode 100644 index 146c6aa2..00000000 Binary files a/public/textures/chipped/inlayed_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_borderless_bricks.png b/public/textures/chipped/inlayed_borderless_bricks.png deleted file mode 100644 index 82e26d89..00000000 Binary files a/public/textures/chipped/inlayed_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_bricks.png b/public/textures/chipped/inlayed_bricks.png deleted file mode 100644 index 69c21ee8..00000000 Binary files a/public/textures/chipped/inlayed_bricks.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_calcite.png b/public/textures/chipped/inlayed_calcite.png deleted file mode 100644 index 806a4c9f..00000000 Binary files a/public/textures/chipped/inlayed_calcite.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_clay.png b/public/textures/chipped/inlayed_clay.png deleted file mode 100644 index 2d999f1c..00000000 Binary files a/public/textures/chipped/inlayed_clay.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_coal_block.png b/public/textures/chipped/inlayed_coal_block.png deleted file mode 100644 index f078f193..00000000 Binary files a/public/textures/chipped/inlayed_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_cobblestone.png b/public/textures/chipped/inlayed_cobblestone.png deleted file mode 100644 index 67945eb5..00000000 Binary files a/public/textures/chipped/inlayed_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_crying_obsidian.png b/public/textures/chipped/inlayed_crying_obsidian.png deleted file mode 100644 index 2a5e19ef..00000000 Binary files a/public/textures/chipped/inlayed_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_dark_prismarine.png b/public/textures/chipped/inlayed_dark_prismarine.png deleted file mode 100644 index f9b11edf..00000000 Binary files a/public/textures/chipped/inlayed_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_deepslate.png b/public/textures/chipped/inlayed_deepslate.png deleted file mode 100644 index 8c7a6877..00000000 Binary files a/public/textures/chipped/inlayed_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_diorite.png b/public/textures/chipped/inlayed_diorite.png deleted file mode 100644 index 549c987c..00000000 Binary files a/public/textures/chipped/inlayed_diorite.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_dirt.png b/public/textures/chipped/inlayed_dirt.png deleted file mode 100644 index aa6fcc41..00000000 Binary files a/public/textures/chipped/inlayed_dirt.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_dripstone_block.png b/public/textures/chipped/inlayed_dripstone_block.png deleted file mode 100644 index f0ca9462..00000000 Binary files a/public/textures/chipped/inlayed_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_end_stone.png b/public/textures/chipped/inlayed_end_stone.png deleted file mode 100644 index 2bce7305..00000000 Binary files a/public/textures/chipped/inlayed_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_gilded_blackstone.png b/public/textures/chipped/inlayed_gilded_blackstone.png deleted file mode 100644 index 1a20269a..00000000 Binary files a/public/textures/chipped/inlayed_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_glowstone.png b/public/textures/chipped/inlayed_glowstone.png deleted file mode 100644 index 65016c0a..00000000 Binary files a/public/textures/chipped/inlayed_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_granite.png b/public/textures/chipped/inlayed_granite.png deleted file mode 100644 index aa7133d3..00000000 Binary files a/public/textures/chipped/inlayed_granite.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_ice.png b/public/textures/chipped/inlayed_ice.png deleted file mode 100644 index ab8298e9..00000000 Binary files a/public/textures/chipped/inlayed_ice.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_lapis_block.png b/public/textures/chipped/inlayed_lapis_block.png deleted file mode 100644 index ad53f68f..00000000 Binary files a/public/textures/chipped/inlayed_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_lodestone.png b/public/textures/chipped/inlayed_lodestone.png deleted file mode 100644 index b027b341..00000000 Binary files a/public/textures/chipped/inlayed_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_magma_block.png b/public/textures/chipped/inlayed_magma_block.png deleted file mode 100644 index ca8c40dd..00000000 Binary files a/public/textures/chipped/inlayed_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_mossy_cobblestone.png b/public/textures/chipped/inlayed_mossy_cobblestone.png deleted file mode 100644 index 938e820b..00000000 Binary files a/public/textures/chipped/inlayed_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_mossy_stone_bricks.png b/public/textures/chipped/inlayed_mossy_stone_bricks.png deleted file mode 100644 index 413627dc..00000000 Binary files a/public/textures/chipped/inlayed_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_mud.png b/public/textures/chipped/inlayed_mud.png deleted file mode 100644 index c5453c12..00000000 Binary files a/public/textures/chipped/inlayed_mud.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_mud_bricks.png b/public/textures/chipped/inlayed_mud_bricks.png deleted file mode 100644 index d01453d5..00000000 Binary files a/public/textures/chipped/inlayed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_nether_bricks.png b/public/textures/chipped/inlayed_nether_bricks.png deleted file mode 100644 index 89cacc75..00000000 Binary files a/public/textures/chipped/inlayed_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_netherrack.png b/public/textures/chipped/inlayed_netherrack.png deleted file mode 100644 index 0e59d9f2..00000000 Binary files a/public/textures/chipped/inlayed_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_obsidian.png b/public/textures/chipped/inlayed_obsidian.png deleted file mode 100644 index 4ec54831..00000000 Binary files a/public/textures/chipped/inlayed_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_packed_ice.png b/public/textures/chipped/inlayed_packed_ice.png deleted file mode 100644 index 06ba7729..00000000 Binary files a/public/textures/chipped/inlayed_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_packed_mud.png b/public/textures/chipped/inlayed_packed_mud.png deleted file mode 100644 index 04534def..00000000 Binary files a/public/textures/chipped/inlayed_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_prismarine.png b/public/textures/chipped/inlayed_prismarine.png deleted file mode 100644 index 066eba02..00000000 Binary files a/public/textures/chipped/inlayed_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_purpur_block.png b/public/textures/chipped/inlayed_purpur_block.png deleted file mode 100644 index 4f5380b5..00000000 Binary files a/public/textures/chipped/inlayed_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_quartz_block.png b/public/textures/chipped/inlayed_quartz_block.png deleted file mode 100644 index c82568d5..00000000 Binary files a/public/textures/chipped/inlayed_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_raw_copper_block.png b/public/textures/chipped/inlayed_raw_copper_block.png deleted file mode 100644 index 424ce79b..00000000 Binary files a/public/textures/chipped/inlayed_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_raw_gold_block.png b/public/textures/chipped/inlayed_raw_gold_block.png deleted file mode 100644 index e0414a25..00000000 Binary files a/public/textures/chipped/inlayed_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_raw_iron_block.png b/public/textures/chipped/inlayed_raw_iron_block.png deleted file mode 100644 index 321ac424..00000000 Binary files a/public/textures/chipped/inlayed_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_red_nether_bricks.png b/public/textures/chipped/inlayed_red_nether_bricks.png deleted file mode 100644 index dcb2eace..00000000 Binary files a/public/textures/chipped/inlayed_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_red_sandstone.png b/public/textures/chipped/inlayed_red_sandstone.png deleted file mode 100644 index a22c1277..00000000 Binary files a/public/textures/chipped/inlayed_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_redstone_block.png b/public/textures/chipped/inlayed_redstone_block.png deleted file mode 100644 index 0d91025e..00000000 Binary files a/public/textures/chipped/inlayed_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_redstone_lamp.png b/public/textures/chipped/inlayed_redstone_lamp.png deleted file mode 100644 index 8162bb4c..00000000 Binary files a/public/textures/chipped/inlayed_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_sandstone.png b/public/textures/chipped/inlayed_sandstone.png deleted file mode 100644 index d939feab..00000000 Binary files a/public/textures/chipped/inlayed_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_sea_lantern.png b/public/textures/chipped/inlayed_sea_lantern.png deleted file mode 100644 index 36d3574b..00000000 Binary files a/public/textures/chipped/inlayed_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_shroomlight.png b/public/textures/chipped/inlayed_shroomlight.png deleted file mode 100644 index e1d4d38e..00000000 Binary files a/public/textures/chipped/inlayed_shroomlight.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_smooth_stone.png b/public/textures/chipped/inlayed_smooth_stone.png deleted file mode 100644 index 4822279c..00000000 Binary files a/public/textures/chipped/inlayed_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_snow_block.png b/public/textures/chipped/inlayed_snow_block.png deleted file mode 100644 index a95e5d05..00000000 Binary files a/public/textures/chipped/inlayed_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_stone.png b/public/textures/chipped/inlayed_stone.png deleted file mode 100644 index 63caaedc..00000000 Binary files a/public/textures/chipped/inlayed_stone.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_tuff.png b/public/textures/chipped/inlayed_tuff.png deleted file mode 100644 index 8139ccfa..00000000 Binary files a/public/textures/chipped/inlayed_tuff.png and /dev/null differ diff --git a/public/textures/chipped/inlayed_white_redstone_lamp.png b/public/textures/chipped/inlayed_white_redstone_lamp.png deleted file mode 100644 index ec2d2587..00000000 Binary files a/public/textures/chipped/inlayed_white_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_amethyst_block.png b/public/textures/chipped/inscribed_amethyst_block.png deleted file mode 100644 index 076811bb..00000000 Binary files a/public/textures/chipped/inscribed_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_ancient_debris.png b/public/textures/chipped/inscribed_ancient_debris.png deleted file mode 100644 index 2e94ced8..00000000 Binary files a/public/textures/chipped/inscribed_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_andesite.png b/public/textures/chipped/inscribed_andesite.png deleted file mode 100644 index 9b19f614..00000000 Binary files a/public/textures/chipped/inscribed_andesite.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_basalt.png b/public/textures/chipped/inscribed_basalt.png deleted file mode 100644 index e350b923..00000000 Binary files a/public/textures/chipped/inscribed_basalt.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_black_terracotta.png b/public/textures/chipped/inscribed_black_terracotta.png deleted file mode 100644 index c90b373e..00000000 Binary files a/public/textures/chipped/inscribed_black_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_blackstone.png b/public/textures/chipped/inscribed_blackstone.png deleted file mode 100644 index c8016592..00000000 Binary files a/public/textures/chipped/inscribed_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_blue_ice.png b/public/textures/chipped/inscribed_blue_ice.png deleted file mode 100644 index d1a7ffce..00000000 Binary files a/public/textures/chipped/inscribed_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_blue_terracotta.png b/public/textures/chipped/inscribed_blue_terracotta.png deleted file mode 100644 index a9bded12..00000000 Binary files a/public/textures/chipped/inscribed_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_bone_block.png b/public/textures/chipped/inscribed_bone_block.png deleted file mode 100644 index fc86a05b..00000000 Binary files a/public/textures/chipped/inscribed_bone_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_borderless_bricks.png b/public/textures/chipped/inscribed_borderless_bricks.png deleted file mode 100644 index ba9ba86c..00000000 Binary files a/public/textures/chipped/inscribed_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_bricks.png b/public/textures/chipped/inscribed_bricks.png deleted file mode 100644 index 9cdfbd27..00000000 Binary files a/public/textures/chipped/inscribed_bricks.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_brown_terracotta.png b/public/textures/chipped/inscribed_brown_terracotta.png deleted file mode 100644 index 63ae9d2e..00000000 Binary files a/public/textures/chipped/inscribed_brown_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_calcite.png b/public/textures/chipped/inscribed_calcite.png deleted file mode 100644 index 332a96e8..00000000 Binary files a/public/textures/chipped/inscribed_calcite.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_clay.png b/public/textures/chipped/inscribed_clay.png deleted file mode 100644 index d58934c7..00000000 Binary files a/public/textures/chipped/inscribed_clay.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_coal_block.png b/public/textures/chipped/inscribed_coal_block.png deleted file mode 100644 index ebdafe79..00000000 Binary files a/public/textures/chipped/inscribed_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_cobblestone.png b/public/textures/chipped/inscribed_cobblestone.png deleted file mode 100644 index 7eaf034d..00000000 Binary files a/public/textures/chipped/inscribed_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_crying_obsidian.png b/public/textures/chipped/inscribed_crying_obsidian.png deleted file mode 100644 index f79cabef..00000000 Binary files a/public/textures/chipped/inscribed_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_cyan_terracotta.png b/public/textures/chipped/inscribed_cyan_terracotta.png deleted file mode 100644 index c29347df..00000000 Binary files a/public/textures/chipped/inscribed_cyan_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_dark_prismarine.png b/public/textures/chipped/inscribed_dark_prismarine.png deleted file mode 100644 index 43c7aade..00000000 Binary files a/public/textures/chipped/inscribed_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_deepslate.png b/public/textures/chipped/inscribed_deepslate.png deleted file mode 100644 index 164a2601..00000000 Binary files a/public/textures/chipped/inscribed_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_diorite.png b/public/textures/chipped/inscribed_diorite.png deleted file mode 100644 index 7e46f053..00000000 Binary files a/public/textures/chipped/inscribed_diorite.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_dirt.png b/public/textures/chipped/inscribed_dirt.png deleted file mode 100644 index 2e1346a2..00000000 Binary files a/public/textures/chipped/inscribed_dirt.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_dripstone_block.png b/public/textures/chipped/inscribed_dripstone_block.png deleted file mode 100644 index 95ec7696..00000000 Binary files a/public/textures/chipped/inscribed_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_end_stone.png b/public/textures/chipped/inscribed_end_stone.png deleted file mode 100644 index 20a58057..00000000 Binary files a/public/textures/chipped/inscribed_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_gilded_blackstone.png b/public/textures/chipped/inscribed_gilded_blackstone.png deleted file mode 100644 index aacc2614..00000000 Binary files a/public/textures/chipped/inscribed_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_granite.png b/public/textures/chipped/inscribed_granite.png deleted file mode 100644 index 736c6ac9..00000000 Binary files a/public/textures/chipped/inscribed_granite.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_gray_terracotta.png b/public/textures/chipped/inscribed_gray_terracotta.png deleted file mode 100644 index edce1972..00000000 Binary files a/public/textures/chipped/inscribed_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_green_terracotta.png b/public/textures/chipped/inscribed_green_terracotta.png deleted file mode 100644 index de9fd7c3..00000000 Binary files a/public/textures/chipped/inscribed_green_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_ice.png b/public/textures/chipped/inscribed_ice.png deleted file mode 100644 index 1e7ffdec..00000000 Binary files a/public/textures/chipped/inscribed_ice.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_lapis_block.png b/public/textures/chipped/inscribed_lapis_block.png deleted file mode 100644 index 2b4fc07b..00000000 Binary files a/public/textures/chipped/inscribed_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_light_blue_terracotta.png b/public/textures/chipped/inscribed_light_blue_terracotta.png deleted file mode 100644 index c4754159..00000000 Binary files a/public/textures/chipped/inscribed_light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_light_gray_terracotta.png b/public/textures/chipped/inscribed_light_gray_terracotta.png deleted file mode 100644 index 4d202a40..00000000 Binary files a/public/textures/chipped/inscribed_light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_lime_terracotta.png b/public/textures/chipped/inscribed_lime_terracotta.png deleted file mode 100644 index 6f26b2bf..00000000 Binary files a/public/textures/chipped/inscribed_lime_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_lodestone.png b/public/textures/chipped/inscribed_lodestone.png deleted file mode 100644 index 121bdd1f..00000000 Binary files a/public/textures/chipped/inscribed_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_magenta_terracotta.png b/public/textures/chipped/inscribed_magenta_terracotta.png deleted file mode 100644 index 9800363a..00000000 Binary files a/public/textures/chipped/inscribed_magenta_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_magma_block.png b/public/textures/chipped/inscribed_magma_block.png deleted file mode 100644 index 332e5554..00000000 Binary files a/public/textures/chipped/inscribed_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_mossy_cobblestone.png b/public/textures/chipped/inscribed_mossy_cobblestone.png deleted file mode 100644 index 573f0561..00000000 Binary files a/public/textures/chipped/inscribed_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_mossy_stone_bricks.png b/public/textures/chipped/inscribed_mossy_stone_bricks.png deleted file mode 100644 index 32baf31a..00000000 Binary files a/public/textures/chipped/inscribed_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_nether_bricks.png b/public/textures/chipped/inscribed_nether_bricks.png deleted file mode 100644 index d2abe87f..00000000 Binary files a/public/textures/chipped/inscribed_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_netherrack.png b/public/textures/chipped/inscribed_netherrack.png deleted file mode 100644 index 83a94dae..00000000 Binary files a/public/textures/chipped/inscribed_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_obsidian.png b/public/textures/chipped/inscribed_obsidian.png deleted file mode 100644 index 321b16c7..00000000 Binary files a/public/textures/chipped/inscribed_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_orange_terracotta.png b/public/textures/chipped/inscribed_orange_terracotta.png deleted file mode 100644 index 162ac2e7..00000000 Binary files a/public/textures/chipped/inscribed_orange_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_packed_ice.png b/public/textures/chipped/inscribed_packed_ice.png deleted file mode 100644 index aa89c6e0..00000000 Binary files a/public/textures/chipped/inscribed_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_pink_terracotta.png b/public/textures/chipped/inscribed_pink_terracotta.png deleted file mode 100644 index fc066ad0..00000000 Binary files a/public/textures/chipped/inscribed_pink_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_prismarine.png b/public/textures/chipped/inscribed_prismarine.png deleted file mode 100644 index 103359e0..00000000 Binary files a/public/textures/chipped/inscribed_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_purple_terracotta.png b/public/textures/chipped/inscribed_purple_terracotta.png deleted file mode 100644 index 785d818e..00000000 Binary files a/public/textures/chipped/inscribed_purple_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_purpur_block.png b/public/textures/chipped/inscribed_purpur_block.png deleted file mode 100644 index 799d5eee..00000000 Binary files a/public/textures/chipped/inscribed_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_quartz_block.png b/public/textures/chipped/inscribed_quartz_block.png deleted file mode 100644 index a702c5fe..00000000 Binary files a/public/textures/chipped/inscribed_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_raw_copper_block.png b/public/textures/chipped/inscribed_raw_copper_block.png deleted file mode 100644 index 2ea7941f..00000000 Binary files a/public/textures/chipped/inscribed_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_raw_gold_block.png b/public/textures/chipped/inscribed_raw_gold_block.png deleted file mode 100644 index d52bd07c..00000000 Binary files a/public/textures/chipped/inscribed_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_raw_iron_block.png b/public/textures/chipped/inscribed_raw_iron_block.png deleted file mode 100644 index 5230a47a..00000000 Binary files a/public/textures/chipped/inscribed_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_red_nether_bricks.png b/public/textures/chipped/inscribed_red_nether_bricks.png deleted file mode 100644 index f3a077da..00000000 Binary files a/public/textures/chipped/inscribed_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_red_sandstone.png b/public/textures/chipped/inscribed_red_sandstone.png deleted file mode 100644 index 5f020083..00000000 Binary files a/public/textures/chipped/inscribed_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_red_terracotta.png b/public/textures/chipped/inscribed_red_terracotta.png deleted file mode 100644 index 0224c192..00000000 Binary files a/public/textures/chipped/inscribed_red_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_redstone_block.png b/public/textures/chipped/inscribed_redstone_block.png deleted file mode 100644 index 3b3b89e7..00000000 Binary files a/public/textures/chipped/inscribed_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_sandstone.png b/public/textures/chipped/inscribed_sandstone.png deleted file mode 100644 index e8173c89..00000000 Binary files a/public/textures/chipped/inscribed_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_smooth_stone.png b/public/textures/chipped/inscribed_smooth_stone.png deleted file mode 100644 index 5f3c7182..00000000 Binary files a/public/textures/chipped/inscribed_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_snow_block.png b/public/textures/chipped/inscribed_snow_block.png deleted file mode 100644 index acb2c090..00000000 Binary files a/public/textures/chipped/inscribed_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_stone.png b/public/textures/chipped/inscribed_stone.png deleted file mode 100644 index 1e9b8ef5..00000000 Binary files a/public/textures/chipped/inscribed_stone.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_terracotta.png b/public/textures/chipped/inscribed_terracotta.png deleted file mode 100644 index e5c779a5..00000000 Binary files a/public/textures/chipped/inscribed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_tuff.png b/public/textures/chipped/inscribed_tuff.png deleted file mode 100644 index 33b4ecc8..00000000 Binary files a/public/textures/chipped/inscribed_tuff.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_white_terracotta.png b/public/textures/chipped/inscribed_white_terracotta.png deleted file mode 100644 index 50eda93e..00000000 Binary files a/public/textures/chipped/inscribed_white_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/inscribed_yellow_terracotta.png b/public/textures/chipped/inscribed_yellow_terracotta.png deleted file mode 100644 index e8485a81..00000000 Binary files a/public/textures/chipped/inscribed_yellow_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/iron_barred_acacia_trapdoor.png b/public/textures/chipped/iron_barred_acacia_trapdoor.png deleted file mode 100644 index 83a65fe4..00000000 Binary files a/public/textures/chipped/iron_barred_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/iron_barred_bamboo_trapdoor.png b/public/textures/chipped/iron_barred_bamboo_trapdoor.png deleted file mode 100644 index 7640c29e..00000000 Binary files a/public/textures/chipped/iron_barred_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/iron_barred_birch_trapdoor.png b/public/textures/chipped/iron_barred_birch_trapdoor.png deleted file mode 100644 index bb4c9c79..00000000 Binary files a/public/textures/chipped/iron_barred_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/iron_barred_cherry_trapdoor.png b/public/textures/chipped/iron_barred_cherry_trapdoor.png deleted file mode 100644 index aafdbb66..00000000 Binary files a/public/textures/chipped/iron_barred_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/iron_barred_crimson_trapdoor.png b/public/textures/chipped/iron_barred_crimson_trapdoor.png deleted file mode 100644 index 6faf96bc..00000000 Binary files a/public/textures/chipped/iron_barred_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/iron_barred_dark_oak_trapdoor.png b/public/textures/chipped/iron_barred_dark_oak_trapdoor.png deleted file mode 100644 index 6804878e..00000000 Binary files a/public/textures/chipped/iron_barred_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/iron_barred_jungle_trapdoor.png b/public/textures/chipped/iron_barred_jungle_trapdoor.png deleted file mode 100644 index 190f182a..00000000 Binary files a/public/textures/chipped/iron_barred_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/iron_barred_mangrove_trapdoor.png b/public/textures/chipped/iron_barred_mangrove_trapdoor.png deleted file mode 100644 index 209e38c9..00000000 Binary files a/public/textures/chipped/iron_barred_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/iron_barred_oak_trapdoor.png b/public/textures/chipped/iron_barred_oak_trapdoor.png deleted file mode 100644 index 8dd73612..00000000 Binary files a/public/textures/chipped/iron_barred_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/iron_barred_spruce_trapdoor.png b/public/textures/chipped/iron_barred_spruce_trapdoor.png deleted file mode 100644 index ed89b654..00000000 Binary files a/public/textures/chipped/iron_barred_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/iron_barred_warped_trapdoor.png b/public/textures/chipped/iron_barred_warped_trapdoor.png deleted file mode 100644 index 539d3a34..00000000 Binary files a/public/textures/chipped/iron_barred_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/iron_barrel.png b/public/textures/chipped/iron_barrel.png deleted file mode 100644 index 02996b7d..00000000 Binary files a/public/textures/chipped/iron_barrel.png and /dev/null differ diff --git a/public/textures/chipped/iron_bars_top.png b/public/textures/chipped/iron_bars_top.png deleted file mode 100644 index 72a2062d..00000000 Binary files a/public/textures/chipped/iron_bars_top.png and /dev/null differ diff --git a/public/textures/chipped/iron_block_panels.png b/public/textures/chipped/iron_block_panels.png deleted file mode 100644 index fc715b34..00000000 Binary files a/public/textures/chipped/iron_block_panels.png and /dev/null differ diff --git a/public/textures/chipped/iron_bowl_lantern.png b/public/textures/chipped/iron_bowl_lantern.png deleted file mode 100644 index 07a63906..00000000 Binary files a/public/textures/chipped/iron_bowl_lantern.png and /dev/null differ diff --git a/public/textures/chipped/iron_bowl_soul_lantern.png b/public/textures/chipped/iron_bowl_soul_lantern.png deleted file mode 100644 index 28fe0f7b..00000000 Binary files a/public/textures/chipped/iron_bowl_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/iron_torch.png b/public/textures/chipped/iron_torch.png deleted file mode 100644 index 5f3bd27d..00000000 Binary files a/public/textures/chipped/iron_torch.png and /dev/null differ diff --git a/public/textures/chipped/ivy_vine.png b/public/textures/chipped/ivy_vine.png deleted file mode 100644 index 05f6b91d..00000000 Binary files a/public/textures/chipped/ivy_vine.png and /dev/null differ diff --git a/public/textures/chipped/jungle_crate.png b/public/textures/chipped/jungle_crate.png deleted file mode 100644 index 7bef5275..00000000 Binary files a/public/textures/chipped/jungle_crate.png and /dev/null differ diff --git a/public/textures/chipped/jungle_hay_block.png b/public/textures/chipped/jungle_hay_block.png deleted file mode 100644 index 37d2f88e..00000000 Binary files a/public/textures/chipped/jungle_hay_block.png and /dev/null differ diff --git a/public/textures/chipped/jungle_planks_mosaic.png b/public/textures/chipped/jungle_planks_mosaic.png deleted file mode 100644 index bbe61725..00000000 Binary files a/public/textures/chipped/jungle_planks_mosaic.png and /dev/null differ diff --git a/public/textures/chipped/jungle_planks_panel.png b/public/textures/chipped/jungle_planks_panel.png deleted file mode 100644 index 1cb1dc8b..00000000 Binary files a/public/textures/chipped/jungle_planks_panel.png and /dev/null differ diff --git a/public/textures/chipped/jungle_planks_shavings.png b/public/textures/chipped/jungle_planks_shavings.png deleted file mode 100644 index 96b0bb82..00000000 Binary files a/public/textures/chipped/jungle_planks_shavings.png and /dev/null differ diff --git a/public/textures/chipped/jungle_torch.png b/public/textures/chipped/jungle_torch.png deleted file mode 100644 index bc90a0db..00000000 Binary files a/public/textures/chipped/jungle_torch.png and /dev/null differ diff --git a/public/textures/chipped/k_sign_stripped_acacia_log.png b/public/textures/chipped/k_sign_stripped_acacia_log.png deleted file mode 100644 index 2e8e13c0..00000000 Binary files a/public/textures/chipped/k_sign_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/k_sign_stripped_birch_log.png b/public/textures/chipped/k_sign_stripped_birch_log.png deleted file mode 100644 index 6aba5261..00000000 Binary files a/public/textures/chipped/k_sign_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/k_sign_stripped_cherry_log.png b/public/textures/chipped/k_sign_stripped_cherry_log.png deleted file mode 100644 index 42c1917c..00000000 Binary files a/public/textures/chipped/k_sign_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/k_sign_stripped_crimson_stem.png b/public/textures/chipped/k_sign_stripped_crimson_stem.png deleted file mode 100644 index efc374a8..00000000 Binary files a/public/textures/chipped/k_sign_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/k_sign_stripped_dark_oak_log.png b/public/textures/chipped/k_sign_stripped_dark_oak_log.png deleted file mode 100644 index 1227aba9..00000000 Binary files a/public/textures/chipped/k_sign_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/k_sign_stripped_jungle_log.png b/public/textures/chipped/k_sign_stripped_jungle_log.png deleted file mode 100644 index 1f9c233d..00000000 Binary files a/public/textures/chipped/k_sign_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/k_sign_stripped_mangrove_log.png b/public/textures/chipped/k_sign_stripped_mangrove_log.png deleted file mode 100644 index e65154cb..00000000 Binary files a/public/textures/chipped/k_sign_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/k_sign_stripped_oak_log.png b/public/textures/chipped/k_sign_stripped_oak_log.png deleted file mode 100644 index 084cdac0..00000000 Binary files a/public/textures/chipped/k_sign_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/k_sign_stripped_spruce_log.png b/public/textures/chipped/k_sign_stripped_spruce_log.png deleted file mode 100644 index 43d69fc4..00000000 Binary files a/public/textures/chipped/k_sign_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/k_sign_stripped_warped_stem.png b/public/textures/chipped/k_sign_stripped_warped_stem.png deleted file mode 100644 index 288f471d..00000000 Binary files a/public/textures/chipped/k_sign_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/kabotchkin.png b/public/textures/chipped/kabotchkin.png deleted file mode 100644 index 785c0ee0..00000000 Binary files a/public/textures/chipped/kabotchkin.png and /dev/null differ diff --git a/public/textures/chipped/kelp_sand.png b/public/textures/chipped/kelp_sand.png deleted file mode 100644 index d92cb0df..00000000 Binary files a/public/textures/chipped/kelp_sand.png and /dev/null differ diff --git a/public/textures/chipped/keyhole_mud.png b/public/textures/chipped/keyhole_mud.png deleted file mode 100644 index 75f8eb27..00000000 Binary files a/public/textures/chipped/keyhole_mud.png and /dev/null differ diff --git a/public/textures/chipped/keyhole_mud_bricks.png b/public/textures/chipped/keyhole_mud_bricks.png deleted file mode 100644 index 719a3460..00000000 Binary files a/public/textures/chipped/keyhole_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/keyhole_packed_mud.png b/public/textures/chipped/keyhole_packed_mud.png deleted file mode 100644 index ff230512..00000000 Binary files a/public/textures/chipped/keyhole_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/kitty_faced_carved_pumpkin.png b/public/textures/chipped/kitty_faced_carved_pumpkin.png deleted file mode 100644 index 6ee809c2..00000000 Binary files a/public/textures/chipped/kitty_faced_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/kitty_faced_jack_o_lantern.png b/public/textures/chipped/kitty_faced_jack_o_lantern.png deleted file mode 100644 index c5e6fa01..00000000 Binary files a/public/textures/chipped/kitty_faced_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/knitted_black_carpet.png b/public/textures/chipped/knitted_black_carpet.png deleted file mode 100644 index 65062918..00000000 Binary files a/public/textures/chipped/knitted_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_black_wool.png b/public/textures/chipped/knitted_black_wool.png deleted file mode 100644 index 7c068abe..00000000 Binary files a/public/textures/chipped/knitted_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_blue_carpet.png b/public/textures/chipped/knitted_blue_carpet.png deleted file mode 100644 index 8d78076c..00000000 Binary files a/public/textures/chipped/knitted_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_blue_wool.png b/public/textures/chipped/knitted_blue_wool.png deleted file mode 100644 index 604360c7..00000000 Binary files a/public/textures/chipped/knitted_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_brown_carpet.png b/public/textures/chipped/knitted_brown_carpet.png deleted file mode 100644 index 5f6d15d7..00000000 Binary files a/public/textures/chipped/knitted_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_brown_wool.png b/public/textures/chipped/knitted_brown_wool.png deleted file mode 100644 index 8843b492..00000000 Binary files a/public/textures/chipped/knitted_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_cyan_carpet.png b/public/textures/chipped/knitted_cyan_carpet.png deleted file mode 100644 index 4b92e9f0..00000000 Binary files a/public/textures/chipped/knitted_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_cyan_wool.png b/public/textures/chipped/knitted_cyan_wool.png deleted file mode 100644 index 1e3c7da2..00000000 Binary files a/public/textures/chipped/knitted_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_gray_carpet.png b/public/textures/chipped/knitted_gray_carpet.png deleted file mode 100644 index ad8e3083..00000000 Binary files a/public/textures/chipped/knitted_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_gray_wool.png b/public/textures/chipped/knitted_gray_wool.png deleted file mode 100644 index 7d25ad01..00000000 Binary files a/public/textures/chipped/knitted_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_green_carpet.png b/public/textures/chipped/knitted_green_carpet.png deleted file mode 100644 index 535f8ab6..00000000 Binary files a/public/textures/chipped/knitted_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_green_wool.png b/public/textures/chipped/knitted_green_wool.png deleted file mode 100644 index 0c82e9c8..00000000 Binary files a/public/textures/chipped/knitted_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_light_blue_carpet.png b/public/textures/chipped/knitted_light_blue_carpet.png deleted file mode 100644 index 5cfed0a7..00000000 Binary files a/public/textures/chipped/knitted_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_light_blue_wool.png b/public/textures/chipped/knitted_light_blue_wool.png deleted file mode 100644 index f62d94f3..00000000 Binary files a/public/textures/chipped/knitted_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_light_gray_carpet.png b/public/textures/chipped/knitted_light_gray_carpet.png deleted file mode 100644 index d16db0fe..00000000 Binary files a/public/textures/chipped/knitted_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_light_gray_wool.png b/public/textures/chipped/knitted_light_gray_wool.png deleted file mode 100644 index 7512dc9c..00000000 Binary files a/public/textures/chipped/knitted_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_lime_carpet.png b/public/textures/chipped/knitted_lime_carpet.png deleted file mode 100644 index 1efc3273..00000000 Binary files a/public/textures/chipped/knitted_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_lime_wool.png b/public/textures/chipped/knitted_lime_wool.png deleted file mode 100644 index 15542e6c..00000000 Binary files a/public/textures/chipped/knitted_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_magenta_carpet.png b/public/textures/chipped/knitted_magenta_carpet.png deleted file mode 100644 index db01d701..00000000 Binary files a/public/textures/chipped/knitted_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_magenta_wool.png b/public/textures/chipped/knitted_magenta_wool.png deleted file mode 100644 index 7b950925..00000000 Binary files a/public/textures/chipped/knitted_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_orange_carpet.png b/public/textures/chipped/knitted_orange_carpet.png deleted file mode 100644 index c4d11e83..00000000 Binary files a/public/textures/chipped/knitted_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_orange_wool.png b/public/textures/chipped/knitted_orange_wool.png deleted file mode 100644 index 983712d9..00000000 Binary files a/public/textures/chipped/knitted_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_pink_carpet.png b/public/textures/chipped/knitted_pink_carpet.png deleted file mode 100644 index e7267f91..00000000 Binary files a/public/textures/chipped/knitted_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_pink_wool.png b/public/textures/chipped/knitted_pink_wool.png deleted file mode 100644 index 02643dee..00000000 Binary files a/public/textures/chipped/knitted_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_purple_carpet.png b/public/textures/chipped/knitted_purple_carpet.png deleted file mode 100644 index ed89b789..00000000 Binary files a/public/textures/chipped/knitted_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_purple_wool.png b/public/textures/chipped/knitted_purple_wool.png deleted file mode 100644 index 20896da6..00000000 Binary files a/public/textures/chipped/knitted_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_red_carpet.png b/public/textures/chipped/knitted_red_carpet.png deleted file mode 100644 index 565ca3f8..00000000 Binary files a/public/textures/chipped/knitted_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_red_wool.png b/public/textures/chipped/knitted_red_wool.png deleted file mode 100644 index 80565b25..00000000 Binary files a/public/textures/chipped/knitted_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_white_carpet.png b/public/textures/chipped/knitted_white_carpet.png deleted file mode 100644 index fa98fc67..00000000 Binary files a/public/textures/chipped/knitted_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_white_wool.png b/public/textures/chipped/knitted_white_wool.png deleted file mode 100644 index b373257b..00000000 Binary files a/public/textures/chipped/knitted_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/knitted_yellow_carpet.png b/public/textures/chipped/knitted_yellow_carpet.png deleted file mode 100644 index fe2a8924..00000000 Binary files a/public/textures/chipped/knitted_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/knitted_yellow_wool.png b/public/textures/chipped/knitted_yellow_wool.png deleted file mode 100644 index 51fee7ee..00000000 Binary files a/public/textures/chipped/knitted_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/knotted_stripped_acacia_log.png b/public/textures/chipped/knotted_stripped_acacia_log.png deleted file mode 100644 index 806e17e1..00000000 Binary files a/public/textures/chipped/knotted_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/knotted_stripped_birch_log.png b/public/textures/chipped/knotted_stripped_birch_log.png deleted file mode 100644 index 9150b537..00000000 Binary files a/public/textures/chipped/knotted_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/knotted_stripped_cherry_log.png b/public/textures/chipped/knotted_stripped_cherry_log.png deleted file mode 100644 index cbd4c200..00000000 Binary files a/public/textures/chipped/knotted_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/knotted_stripped_crimson_stem.png b/public/textures/chipped/knotted_stripped_crimson_stem.png deleted file mode 100644 index 7197a7c3..00000000 Binary files a/public/textures/chipped/knotted_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/knotted_stripped_dark_oak_log.png b/public/textures/chipped/knotted_stripped_dark_oak_log.png deleted file mode 100644 index 55450765..00000000 Binary files a/public/textures/chipped/knotted_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/knotted_stripped_jungle_log.png b/public/textures/chipped/knotted_stripped_jungle_log.png deleted file mode 100644 index c106ee3b..00000000 Binary files a/public/textures/chipped/knotted_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/knotted_stripped_mangrove_log.png b/public/textures/chipped/knotted_stripped_mangrove_log.png deleted file mode 100644 index 0aefbf0a..00000000 Binary files a/public/textures/chipped/knotted_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/knotted_stripped_oak_log.png b/public/textures/chipped/knotted_stripped_oak_log.png deleted file mode 100644 index 64f0327f..00000000 Binary files a/public/textures/chipped/knotted_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/knotted_stripped_spruce_log.png b/public/textures/chipped/knotted_stripped_spruce_log.png deleted file mode 100644 index 0afc2070..00000000 Binary files a/public/textures/chipped/knotted_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/knotted_stripped_warped_stem.png b/public/textures/chipped/knotted_stripped_warped_stem.png deleted file mode 100644 index 838c75ac..00000000 Binary files a/public/textures/chipped/knotted_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/l_sign_stripped_acacia_log.png b/public/textures/chipped/l_sign_stripped_acacia_log.png deleted file mode 100644 index 033e34b8..00000000 Binary files a/public/textures/chipped/l_sign_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/l_sign_stripped_birch_log.png b/public/textures/chipped/l_sign_stripped_birch_log.png deleted file mode 100644 index 9cfe8ee3..00000000 Binary files a/public/textures/chipped/l_sign_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/l_sign_stripped_cherry_log.png b/public/textures/chipped/l_sign_stripped_cherry_log.png deleted file mode 100644 index e4e429bf..00000000 Binary files a/public/textures/chipped/l_sign_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/l_sign_stripped_crimson_stem.png b/public/textures/chipped/l_sign_stripped_crimson_stem.png deleted file mode 100644 index 45f00abd..00000000 Binary files a/public/textures/chipped/l_sign_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/l_sign_stripped_dark_oak_log.png b/public/textures/chipped/l_sign_stripped_dark_oak_log.png deleted file mode 100644 index 0b8a2030..00000000 Binary files a/public/textures/chipped/l_sign_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/l_sign_stripped_jungle_log.png b/public/textures/chipped/l_sign_stripped_jungle_log.png deleted file mode 100644 index 7f01ce8c..00000000 Binary files a/public/textures/chipped/l_sign_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/l_sign_stripped_mangrove_log.png b/public/textures/chipped/l_sign_stripped_mangrove_log.png deleted file mode 100644 index 5075b397..00000000 Binary files a/public/textures/chipped/l_sign_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/l_sign_stripped_oak_log.png b/public/textures/chipped/l_sign_stripped_oak_log.png deleted file mode 100644 index c971a7a1..00000000 Binary files a/public/textures/chipped/l_sign_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/l_sign_stripped_spruce_log.png b/public/textures/chipped/l_sign_stripped_spruce_log.png deleted file mode 100644 index 307bb4ac..00000000 Binary files a/public/textures/chipped/l_sign_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/l_sign_stripped_warped_stem.png b/public/textures/chipped/l_sign_stripped_warped_stem.png deleted file mode 100644 index 7bb2deb1..00000000 Binary files a/public/textures/chipped/l_sign_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/laced_acacia_planks.png b/public/textures/chipped/laced_acacia_planks.png deleted file mode 100644 index 92ed11cb..00000000 Binary files a/public/textures/chipped/laced_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/laced_bamboo_planks.png b/public/textures/chipped/laced_bamboo_planks.png deleted file mode 100644 index fed0da96..00000000 Binary files a/public/textures/chipped/laced_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/laced_birch_planks.png b/public/textures/chipped/laced_birch_planks.png deleted file mode 100644 index 9f9b2622..00000000 Binary files a/public/textures/chipped/laced_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/laced_cherry_planks.png b/public/textures/chipped/laced_cherry_planks.png deleted file mode 100644 index 092f7ac6..00000000 Binary files a/public/textures/chipped/laced_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/laced_crimson_planks.png b/public/textures/chipped/laced_crimson_planks.png deleted file mode 100644 index 95249d62..00000000 Binary files a/public/textures/chipped/laced_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/laced_dark_oak_planks.png b/public/textures/chipped/laced_dark_oak_planks.png deleted file mode 100644 index 97292b8b..00000000 Binary files a/public/textures/chipped/laced_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/laced_jungle_planks.png b/public/textures/chipped/laced_jungle_planks.png deleted file mode 100644 index 27b388d1..00000000 Binary files a/public/textures/chipped/laced_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/laced_mangrove_planks.png b/public/textures/chipped/laced_mangrove_planks.png deleted file mode 100644 index 7d73e977..00000000 Binary files a/public/textures/chipped/laced_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/laced_oak_planks.png b/public/textures/chipped/laced_oak_planks.png deleted file mode 100644 index f8dfd140..00000000 Binary files a/public/textures/chipped/laced_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/laced_spruce_planks.png b/public/textures/chipped/laced_spruce_planks.png deleted file mode 100644 index 180e43af..00000000 Binary files a/public/textures/chipped/laced_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/laced_warped_planks.png b/public/textures/chipped/laced_warped_planks.png deleted file mode 100644 index e562aa50..00000000 Binary files a/public/textures/chipped/laced_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/lapis_block_bricks.png b/public/textures/chipped/lapis_block_bricks.png deleted file mode 100644 index 20f781ab..00000000 Binary files a/public/textures/chipped/lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/lapis_block_mini_tiles.png b/public/textures/chipped/lapis_block_mini_tiles.png deleted file mode 100644 index b6983406..00000000 Binary files a/public/textures/chipped/lapis_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/lapis_block_pillar.png b/public/textures/chipped/lapis_block_pillar.png deleted file mode 100644 index 947b8325..00000000 Binary files a/public/textures/chipped/lapis_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/lapis_block_pillar_top.png b/public/textures/chipped/lapis_block_pillar_top.png deleted file mode 100644 index dc01fb56..00000000 Binary files a/public/textures/chipped/lapis_block_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/lapis_block_scales.png b/public/textures/chipped/lapis_block_scales.png deleted file mode 100644 index eb4f7a85..00000000 Binary files a/public/textures/chipped/lapis_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_black_stained_glass.png b/public/textures/chipped/large_diamond_black_stained_glass.png deleted file mode 100644 index 5afdc9bd..00000000 Binary files a/public/textures/chipped/large_diamond_black_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_black_stained_glass_pane.png b/public/textures/chipped/large_diamond_black_stained_glass_pane.png deleted file mode 100644 index 5b979a03..00000000 Binary files a/public/textures/chipped/large_diamond_black_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_blue_stained_glass.png b/public/textures/chipped/large_diamond_blue_stained_glass.png deleted file mode 100644 index 21bacbf4..00000000 Binary files a/public/textures/chipped/large_diamond_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_blue_stained_glass_pane.png b/public/textures/chipped/large_diamond_blue_stained_glass_pane.png deleted file mode 100644 index 0a573915..00000000 Binary files a/public/textures/chipped/large_diamond_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_brown_stained_glass.png b/public/textures/chipped/large_diamond_brown_stained_glass.png deleted file mode 100644 index 9874ae8d..00000000 Binary files a/public/textures/chipped/large_diamond_brown_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_brown_stained_glass_pane.png b/public/textures/chipped/large_diamond_brown_stained_glass_pane.png deleted file mode 100644 index 77f75108..00000000 Binary files a/public/textures/chipped/large_diamond_brown_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_cyan_stained_glass.png b/public/textures/chipped/large_diamond_cyan_stained_glass.png deleted file mode 100644 index 986c1a3a..00000000 Binary files a/public/textures/chipped/large_diamond_cyan_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_cyan_stained_glass_pane.png b/public/textures/chipped/large_diamond_cyan_stained_glass_pane.png deleted file mode 100644 index 4388299d..00000000 Binary files a/public/textures/chipped/large_diamond_cyan_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_gray_stained_glass.png b/public/textures/chipped/large_diamond_gray_stained_glass.png deleted file mode 100644 index b5e7d4ea..00000000 Binary files a/public/textures/chipped/large_diamond_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_gray_stained_glass_pane.png b/public/textures/chipped/large_diamond_gray_stained_glass_pane.png deleted file mode 100644 index eed0c273..00000000 Binary files a/public/textures/chipped/large_diamond_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_green_stained_glass.png b/public/textures/chipped/large_diamond_green_stained_glass.png deleted file mode 100644 index 13f1f659..00000000 Binary files a/public/textures/chipped/large_diamond_green_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_green_stained_glass_pane.png b/public/textures/chipped/large_diamond_green_stained_glass_pane.png deleted file mode 100644 index 3be50f18..00000000 Binary files a/public/textures/chipped/large_diamond_green_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_leaded_glass.png b/public/textures/chipped/large_diamond_leaded_glass.png deleted file mode 100644 index 5b626110..00000000 Binary files a/public/textures/chipped/large_diamond_leaded_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_leaded_glass_pane.png b/public/textures/chipped/large_diamond_leaded_glass_pane.png deleted file mode 100644 index 8fa7a822..00000000 Binary files a/public/textures/chipped/large_diamond_leaded_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_light_blue_stained_glass.png b/public/textures/chipped/large_diamond_light_blue_stained_glass.png deleted file mode 100644 index ed0d5d91..00000000 Binary files a/public/textures/chipped/large_diamond_light_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_light_blue_stained_glass_pane.png b/public/textures/chipped/large_diamond_light_blue_stained_glass_pane.png deleted file mode 100644 index 99b9b53a..00000000 Binary files a/public/textures/chipped/large_diamond_light_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_light_gray_stained_glass.png b/public/textures/chipped/large_diamond_light_gray_stained_glass.png deleted file mode 100644 index e1dbb0fd..00000000 Binary files a/public/textures/chipped/large_diamond_light_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_light_gray_stained_glass_pane.png b/public/textures/chipped/large_diamond_light_gray_stained_glass_pane.png deleted file mode 100644 index 668e307a..00000000 Binary files a/public/textures/chipped/large_diamond_light_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_lime_stained_glass.png b/public/textures/chipped/large_diamond_lime_stained_glass.png deleted file mode 100644 index 4b1bae83..00000000 Binary files a/public/textures/chipped/large_diamond_lime_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_lime_stained_glass_pane.png b/public/textures/chipped/large_diamond_lime_stained_glass_pane.png deleted file mode 100644 index 43b3d949..00000000 Binary files a/public/textures/chipped/large_diamond_lime_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_magenta_stained_glass.png b/public/textures/chipped/large_diamond_magenta_stained_glass.png deleted file mode 100644 index 5d516c25..00000000 Binary files a/public/textures/chipped/large_diamond_magenta_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_magenta_stained_glass_pane.png b/public/textures/chipped/large_diamond_magenta_stained_glass_pane.png deleted file mode 100644 index da3b0f94..00000000 Binary files a/public/textures/chipped/large_diamond_magenta_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_orange_stained_glass.png b/public/textures/chipped/large_diamond_orange_stained_glass.png deleted file mode 100644 index c994bcbe..00000000 Binary files a/public/textures/chipped/large_diamond_orange_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_orange_stained_glass_pane.png b/public/textures/chipped/large_diamond_orange_stained_glass_pane.png deleted file mode 100644 index ae79ce6c..00000000 Binary files a/public/textures/chipped/large_diamond_orange_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_pink_stained_glass.png b/public/textures/chipped/large_diamond_pink_stained_glass.png deleted file mode 100644 index 54d90d63..00000000 Binary files a/public/textures/chipped/large_diamond_pink_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_pink_stained_glass_pane.png b/public/textures/chipped/large_diamond_pink_stained_glass_pane.png deleted file mode 100644 index 243512e8..00000000 Binary files a/public/textures/chipped/large_diamond_pink_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_purple_stained_glass.png b/public/textures/chipped/large_diamond_purple_stained_glass.png deleted file mode 100644 index e6195959..00000000 Binary files a/public/textures/chipped/large_diamond_purple_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_purple_stained_glass_pane.png b/public/textures/chipped/large_diamond_purple_stained_glass_pane.png deleted file mode 100644 index 721669c9..00000000 Binary files a/public/textures/chipped/large_diamond_purple_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_red_stained_glass.png b/public/textures/chipped/large_diamond_red_stained_glass.png deleted file mode 100644 index cc04788c..00000000 Binary files a/public/textures/chipped/large_diamond_red_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_red_stained_glass_pane.png b/public/textures/chipped/large_diamond_red_stained_glass_pane.png deleted file mode 100644 index afd3289f..00000000 Binary files a/public/textures/chipped/large_diamond_red_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_white_stained_glass.png b/public/textures/chipped/large_diamond_white_stained_glass.png deleted file mode 100644 index 07cd24bb..00000000 Binary files a/public/textures/chipped/large_diamond_white_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_white_stained_glass_pane.png b/public/textures/chipped/large_diamond_white_stained_glass_pane.png deleted file mode 100644 index 8d5ce91f..00000000 Binary files a/public/textures/chipped/large_diamond_white_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_yellow_stained_glass.png b/public/textures/chipped/large_diamond_yellow_stained_glass.png deleted file mode 100644 index dee88d41..00000000 Binary files a/public/textures/chipped/large_diamond_yellow_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/large_diamond_yellow_stained_glass_pane.png b/public/textures/chipped/large_diamond_yellow_stained_glass_pane.png deleted file mode 100644 index 57f010d0..00000000 Binary files a/public/textures/chipped/large_diamond_yellow_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/large_lily_pad.png b/public/textures/chipped/large_lily_pad.png deleted file mode 100644 index c2306872..00000000 Binary files a/public/textures/chipped/large_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/large_mud_bricks_sigil.png b/public/textures/chipped/large_mud_bricks_sigil.png deleted file mode 100644 index e1c7569f..00000000 Binary files a/public/textures/chipped/large_mud_bricks_sigil.png and /dev/null differ diff --git a/public/textures/chipped/large_mud_sigil.png b/public/textures/chipped/large_mud_sigil.png deleted file mode 100644 index 21030226..00000000 Binary files a/public/textures/chipped/large_mud_sigil.png and /dev/null differ diff --git a/public/textures/chipped/large_nether_sprouts.png b/public/textures/chipped/large_nether_sprouts.png deleted file mode 100644 index 1e3d2b37..00000000 Binary files a/public/textures/chipped/large_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/large_packed_mud_sigil.png b/public/textures/chipped/large_packed_mud_sigil.png deleted file mode 100644 index c47839fb..00000000 Binary files a/public/textures/chipped/large_packed_mud_sigil.png and /dev/null differ diff --git a/public/textures/chipped/large_tiled_mud.png b/public/textures/chipped/large_tiled_mud.png deleted file mode 100644 index 034bf6c3..00000000 Binary files a/public/textures/chipped/large_tiled_mud.png and /dev/null differ diff --git a/public/textures/chipped/large_tiled_mud_bricks.png b/public/textures/chipped/large_tiled_mud_bricks.png deleted file mode 100644 index 719fb524..00000000 Binary files a/public/textures/chipped/large_tiled_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/large_tiled_packed_mud.png b/public/textures/chipped/large_tiled_packed_mud.png deleted file mode 100644 index 29fa991c..00000000 Binary files a/public/textures/chipped/large_tiled_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/lauching_soul_sand.png b/public/textures/chipped/lauching_soul_sand.png deleted file mode 100644 index fe542842..00000000 Binary files a/public/textures/chipped/lauching_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/layed_amethyst_block_bricks.png b/public/textures/chipped/layed_amethyst_block_bricks.png deleted file mode 100644 index c17bc47d..00000000 Binary files a/public/textures/chipped/layed_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_ancient_debris_bricks.png b/public/textures/chipped/layed_ancient_debris_bricks.png deleted file mode 100644 index 4aec9fc7..00000000 Binary files a/public/textures/chipped/layed_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_andesite_bricks.png b/public/textures/chipped/layed_andesite_bricks.png deleted file mode 100644 index 6d0031f3..00000000 Binary files a/public/textures/chipped/layed_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_basalt_bricks.png b/public/textures/chipped/layed_basalt_bricks.png deleted file mode 100644 index 57c4e44f..00000000 Binary files a/public/textures/chipped/layed_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_blackstone_bricks.png b/public/textures/chipped/layed_blackstone_bricks.png deleted file mode 100644 index c2772fc3..00000000 Binary files a/public/textures/chipped/layed_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_blue_ice_bricks.png b/public/textures/chipped/layed_blue_ice_bricks.png deleted file mode 100644 index a6ae855e..00000000 Binary files a/public/textures/chipped/layed_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_calcite_bricks.png b/public/textures/chipped/layed_calcite_bricks.png deleted file mode 100644 index b1fe8043..00000000 Binary files a/public/textures/chipped/layed_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_clay_bricks.png b/public/textures/chipped/layed_clay_bricks.png deleted file mode 100644 index 3ee0f778..00000000 Binary files a/public/textures/chipped/layed_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_coal_block_bricks.png b/public/textures/chipped/layed_coal_block_bricks.png deleted file mode 100644 index 907e52f2..00000000 Binary files a/public/textures/chipped/layed_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_cobblestone_bricks.png b/public/textures/chipped/layed_cobblestone_bricks.png deleted file mode 100644 index 434f2798..00000000 Binary files a/public/textures/chipped/layed_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_crying_obsidian_bricks.png b/public/textures/chipped/layed_crying_obsidian_bricks.png deleted file mode 100644 index 9892e652..00000000 Binary files a/public/textures/chipped/layed_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_dark_prismarine_bricks.png b/public/textures/chipped/layed_dark_prismarine_bricks.png deleted file mode 100644 index 9b9662a5..00000000 Binary files a/public/textures/chipped/layed_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_diorite_bricks.png b/public/textures/chipped/layed_diorite_bricks.png deleted file mode 100644 index a95ad301..00000000 Binary files a/public/textures/chipped/layed_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_dirt_bricks.png b/public/textures/chipped/layed_dirt_bricks.png deleted file mode 100644 index 83fe6109..00000000 Binary files a/public/textures/chipped/layed_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_dripstone_block_bricks.png b/public/textures/chipped/layed_dripstone_block_bricks.png deleted file mode 100644 index 31e576f8..00000000 Binary files a/public/textures/chipped/layed_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_end_stone_bricks.png b/public/textures/chipped/layed_end_stone_bricks.png deleted file mode 100644 index ccc64b1f..00000000 Binary files a/public/textures/chipped/layed_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_gilded_blackstone_bricks.png b/public/textures/chipped/layed_gilded_blackstone_bricks.png deleted file mode 100644 index d1a09be0..00000000 Binary files a/public/textures/chipped/layed_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_granite_bricks.png b/public/textures/chipped/layed_granite_bricks.png deleted file mode 100644 index fcfff308..00000000 Binary files a/public/textures/chipped/layed_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_ice_bricks.png b/public/textures/chipped/layed_ice_bricks.png deleted file mode 100644 index 3bb2c5b8..00000000 Binary files a/public/textures/chipped/layed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_lapis_block_bricks.png b/public/textures/chipped/layed_lapis_block_bricks.png deleted file mode 100644 index eb6b4142..00000000 Binary files a/public/textures/chipped/layed_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_lodestone_bricks.png b/public/textures/chipped/layed_lodestone_bricks.png deleted file mode 100644 index 94078f1f..00000000 Binary files a/public/textures/chipped/layed_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_magma_block_bricks.png b/public/textures/chipped/layed_magma_block_bricks.png deleted file mode 100644 index 06c3402f..00000000 Binary files a/public/textures/chipped/layed_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_mossy_cobblestone_bricks.png b/public/textures/chipped/layed_mossy_cobblestone_bricks.png deleted file mode 100644 index 7a0aab29..00000000 Binary files a/public/textures/chipped/layed_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_mossy_stone_bricks_bricks.png b/public/textures/chipped/layed_mossy_stone_bricks_bricks.png deleted file mode 100644 index 652af71b..00000000 Binary files a/public/textures/chipped/layed_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_nether_bricks_bricks.png b/public/textures/chipped/layed_nether_bricks_bricks.png deleted file mode 100644 index 04bf3e42..00000000 Binary files a/public/textures/chipped/layed_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_netherrack_bricks.png b/public/textures/chipped/layed_netherrack_bricks.png deleted file mode 100644 index d166628a..00000000 Binary files a/public/textures/chipped/layed_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_obsidian_bricks.png b/public/textures/chipped/layed_obsidian_bricks.png deleted file mode 100644 index 60c5c009..00000000 Binary files a/public/textures/chipped/layed_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_packed_ice_bricks.png b/public/textures/chipped/layed_packed_ice_bricks.png deleted file mode 100644 index b63bb0ce..00000000 Binary files a/public/textures/chipped/layed_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_prismarine_bricks.png b/public/textures/chipped/layed_prismarine_bricks.png deleted file mode 100644 index 5d1fead1..00000000 Binary files a/public/textures/chipped/layed_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_purpur_block_bricks.png b/public/textures/chipped/layed_purpur_block_bricks.png deleted file mode 100644 index 4c9cd887..00000000 Binary files a/public/textures/chipped/layed_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_quartz_block_bricks.png b/public/textures/chipped/layed_quartz_block_bricks.png deleted file mode 100644 index 72594ca1..00000000 Binary files a/public/textures/chipped/layed_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_raw_copper_block_bricks.png b/public/textures/chipped/layed_raw_copper_block_bricks.png deleted file mode 100644 index 0c491381..00000000 Binary files a/public/textures/chipped/layed_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_raw_gold_block_bricks.png b/public/textures/chipped/layed_raw_gold_block_bricks.png deleted file mode 100644 index 292f1cbe..00000000 Binary files a/public/textures/chipped/layed_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_raw_iron_block_bricks.png b/public/textures/chipped/layed_raw_iron_block_bricks.png deleted file mode 100644 index 3bff943b..00000000 Binary files a/public/textures/chipped/layed_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_red_nether_bricks_bricks.png b/public/textures/chipped/layed_red_nether_bricks_bricks.png deleted file mode 100644 index a18c2403..00000000 Binary files a/public/textures/chipped/layed_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_red_sandstone_bricks.png b/public/textures/chipped/layed_red_sandstone_bricks.png deleted file mode 100644 index b18821ab..00000000 Binary files a/public/textures/chipped/layed_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_redstone_block_bricks.png b/public/textures/chipped/layed_redstone_block_bricks.png deleted file mode 100644 index 65352604..00000000 Binary files a/public/textures/chipped/layed_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_sandstone_bricks.png b/public/textures/chipped/layed_sandstone_bricks.png deleted file mode 100644 index c8fc240a..00000000 Binary files a/public/textures/chipped/layed_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_smooth_stone_bricks.png b/public/textures/chipped/layed_smooth_stone_bricks.png deleted file mode 100644 index bbb3526b..00000000 Binary files a/public/textures/chipped/layed_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_snow_block_bricks.png b/public/textures/chipped/layed_snow_block_bricks.png deleted file mode 100644 index 4ec226bb..00000000 Binary files a/public/textures/chipped/layed_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_stone_bricks.png b/public/textures/chipped/layed_stone_bricks.png deleted file mode 100644 index b9ee0e49..00000000 Binary files a/public/textures/chipped/layed_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layed_tuff_bricks.png b/public/textures/chipped/layed_tuff_bricks.png deleted file mode 100644 index 6346d48b..00000000 Binary files a/public/textures/chipped/layed_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/layered_black_terracotta.png b/public/textures/chipped/layered_black_terracotta.png deleted file mode 100644 index 4808b3dc..00000000 Binary files a/public/textures/chipped/layered_black_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_blue_terracotta.png b/public/textures/chipped/layered_blue_terracotta.png deleted file mode 100644 index de325138..00000000 Binary files a/public/textures/chipped/layered_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_brown_terracotta.png b/public/textures/chipped/layered_brown_terracotta.png deleted file mode 100644 index cc6caec6..00000000 Binary files a/public/textures/chipped/layered_brown_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_cyan_terracotta.png b/public/textures/chipped/layered_cyan_terracotta.png deleted file mode 100644 index edfd3c3d..00000000 Binary files a/public/textures/chipped/layered_cyan_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_diamond_block.png b/public/textures/chipped/layered_diamond_block.png deleted file mode 100644 index 9012e47e..00000000 Binary files a/public/textures/chipped/layered_diamond_block.png and /dev/null differ diff --git a/public/textures/chipped/layered_emerald_block.png b/public/textures/chipped/layered_emerald_block.png deleted file mode 100644 index 0f8530a0..00000000 Binary files a/public/textures/chipped/layered_emerald_block.png and /dev/null differ diff --git a/public/textures/chipped/layered_gold_block.png b/public/textures/chipped/layered_gold_block.png deleted file mode 100644 index 387f5c22..00000000 Binary files a/public/textures/chipped/layered_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/layered_gray_terracotta.png b/public/textures/chipped/layered_gray_terracotta.png deleted file mode 100644 index 8aee13b4..00000000 Binary files a/public/textures/chipped/layered_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_green_terracotta.png b/public/textures/chipped/layered_green_terracotta.png deleted file mode 100644 index 9a8897ed..00000000 Binary files a/public/textures/chipped/layered_green_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_iron_block.png b/public/textures/chipped/layered_iron_block.png deleted file mode 100644 index 8c474613..00000000 Binary files a/public/textures/chipped/layered_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/layered_light_blue_terracotta.png b/public/textures/chipped/layered_light_blue_terracotta.png deleted file mode 100644 index 5a54de85..00000000 Binary files a/public/textures/chipped/layered_light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_light_gray_terracotta.png b/public/textures/chipped/layered_light_gray_terracotta.png deleted file mode 100644 index 2ae1d6ef..00000000 Binary files a/public/textures/chipped/layered_light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_lime_terracotta.png b/public/textures/chipped/layered_lime_terracotta.png deleted file mode 100644 index 6741fb26..00000000 Binary files a/public/textures/chipped/layered_lime_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_magenta_terracotta.png b/public/textures/chipped/layered_magenta_terracotta.png deleted file mode 100644 index 7a4a4552..00000000 Binary files a/public/textures/chipped/layered_magenta_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_netherite_block.png b/public/textures/chipped/layered_netherite_block.png deleted file mode 100644 index c250c4a1..00000000 Binary files a/public/textures/chipped/layered_netherite_block.png and /dev/null differ diff --git a/public/textures/chipped/layered_orange_terracotta.png b/public/textures/chipped/layered_orange_terracotta.png deleted file mode 100644 index 0025440d..00000000 Binary files a/public/textures/chipped/layered_orange_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_pink_terracotta.png b/public/textures/chipped/layered_pink_terracotta.png deleted file mode 100644 index 95d5aa69..00000000 Binary files a/public/textures/chipped/layered_pink_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_purple_terracotta.png b/public/textures/chipped/layered_purple_terracotta.png deleted file mode 100644 index 35f101c8..00000000 Binary files a/public/textures/chipped/layered_purple_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_red_terracotta.png b/public/textures/chipped/layered_red_terracotta.png deleted file mode 100644 index d145c5ab..00000000 Binary files a/public/textures/chipped/layered_red_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_stripped_acacia_log.png b/public/textures/chipped/layered_stripped_acacia_log.png deleted file mode 100644 index d1e52d8b..00000000 Binary files a/public/textures/chipped/layered_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/layered_stripped_birch_log.png b/public/textures/chipped/layered_stripped_birch_log.png deleted file mode 100644 index 526e38c5..00000000 Binary files a/public/textures/chipped/layered_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/layered_stripped_cherry_log.png b/public/textures/chipped/layered_stripped_cherry_log.png deleted file mode 100644 index 06506c79..00000000 Binary files a/public/textures/chipped/layered_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/layered_stripped_crimson_stem.png b/public/textures/chipped/layered_stripped_crimson_stem.png deleted file mode 100644 index b480a751..00000000 Binary files a/public/textures/chipped/layered_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/layered_stripped_dark_oak_log.png b/public/textures/chipped/layered_stripped_dark_oak_log.png deleted file mode 100644 index c1d516ae..00000000 Binary files a/public/textures/chipped/layered_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/layered_stripped_jungle_log.png b/public/textures/chipped/layered_stripped_jungle_log.png deleted file mode 100644 index 1d6a9562..00000000 Binary files a/public/textures/chipped/layered_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/layered_stripped_oak_log.png b/public/textures/chipped/layered_stripped_oak_log.png deleted file mode 100644 index b83e2bc7..00000000 Binary files a/public/textures/chipped/layered_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/layered_stripped_spruce_log.png b/public/textures/chipped/layered_stripped_spruce_log.png deleted file mode 100644 index c08c1975..00000000 Binary files a/public/textures/chipped/layered_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/layered_stripped_warped_stem.png b/public/textures/chipped/layered_stripped_warped_stem.png deleted file mode 100644 index 1f96f91a..00000000 Binary files a/public/textures/chipped/layered_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/layered_terracotta.png b/public/textures/chipped/layered_terracotta.png deleted file mode 100644 index 23262bf2..00000000 Binary files a/public/textures/chipped/layered_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_waxed_copper_block.png b/public/textures/chipped/layered_waxed_copper_block.png deleted file mode 100644 index 117bc053..00000000 Binary files a/public/textures/chipped/layered_waxed_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/layered_waxed_exposed_copper.png b/public/textures/chipped/layered_waxed_exposed_copper.png deleted file mode 100644 index 09c09246..00000000 Binary files a/public/textures/chipped/layered_waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/chipped/layered_waxed_oxidized_copper.png b/public/textures/chipped/layered_waxed_oxidized_copper.png deleted file mode 100644 index 3ddfa135..00000000 Binary files a/public/textures/chipped/layered_waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/chipped/layered_waxed_weathered_copper.png b/public/textures/chipped/layered_waxed_weathered_copper.png deleted file mode 100644 index 4706a29b..00000000 Binary files a/public/textures/chipped/layered_waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/chipped/layered_white_terracotta.png b/public/textures/chipped/layered_white_terracotta.png deleted file mode 100644 index 68972298..00000000 Binary files a/public/textures/chipped/layered_white_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/layered_yellow_terracotta.png b/public/textures/chipped/layered_yellow_terracotta.png deleted file mode 100644 index 30c82382..00000000 Binary files a/public/textures/chipped/layered_yellow_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/lead_woven_glass.png b/public/textures/chipped/lead_woven_glass.png deleted file mode 100644 index cc490ff9..00000000 Binary files a/public/textures/chipped/lead_woven_glass.png and /dev/null differ diff --git a/public/textures/chipped/lead_woven_glass_pane.png b/public/textures/chipped/lead_woven_glass_pane.png deleted file mode 100644 index f7877e9f..00000000 Binary files a/public/textures/chipped/lead_woven_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/leaf_lily_pad.png b/public/textures/chipped/leaf_lily_pad.png deleted file mode 100644 index 8177ef71..00000000 Binary files a/public/textures/chipped/leaf_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/leafy_acacia_trapdoor.png b/public/textures/chipped/leafy_acacia_trapdoor.png deleted file mode 100644 index 65c3270f..00000000 Binary files a/public/textures/chipped/leafy_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/leafy_bamboo_trapdoor.png b/public/textures/chipped/leafy_bamboo_trapdoor.png deleted file mode 100644 index 89efd75c..00000000 Binary files a/public/textures/chipped/leafy_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/leafy_birch_trapdoor.png b/public/textures/chipped/leafy_birch_trapdoor.png deleted file mode 100644 index e5d0eea0..00000000 Binary files a/public/textures/chipped/leafy_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/leafy_cherry_trapdoor.png b/public/textures/chipped/leafy_cherry_trapdoor.png deleted file mode 100644 index a6c01485..00000000 Binary files a/public/textures/chipped/leafy_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/leafy_crimson_trapdoor.png b/public/textures/chipped/leafy_crimson_trapdoor.png deleted file mode 100644 index ead46c1b..00000000 Binary files a/public/textures/chipped/leafy_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/leafy_dark_oak_trapdoor.png b/public/textures/chipped/leafy_dark_oak_trapdoor.png deleted file mode 100644 index 099eafe0..00000000 Binary files a/public/textures/chipped/leafy_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/leafy_dried_kelp_block.png b/public/textures/chipped/leafy_dried_kelp_block.png deleted file mode 100644 index 3fb5133c..00000000 Binary files a/public/textures/chipped/leafy_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/leafy_jungle_trapdoor.png b/public/textures/chipped/leafy_jungle_trapdoor.png deleted file mode 100644 index 03819db9..00000000 Binary files a/public/textures/chipped/leafy_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/leafy_mangrove_roots.png b/public/textures/chipped/leafy_mangrove_roots.png deleted file mode 100644 index c6bed55d..00000000 Binary files a/public/textures/chipped/leafy_mangrove_roots.png and /dev/null differ diff --git a/public/textures/chipped/leafy_mangrove_trapdoor.png b/public/textures/chipped/leafy_mangrove_trapdoor.png deleted file mode 100644 index cf6a641a..00000000 Binary files a/public/textures/chipped/leafy_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/leafy_oak_trapdoor.png b/public/textures/chipped/leafy_oak_trapdoor.png deleted file mode 100644 index 28f5bcc4..00000000 Binary files a/public/textures/chipped/leafy_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/leafy_spruce_trapdoor.png b/public/textures/chipped/leafy_spruce_trapdoor.png deleted file mode 100644 index 9811d906..00000000 Binary files a/public/textures/chipped/leafy_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/leafy_vine.png b/public/textures/chipped/leafy_vine.png deleted file mode 100644 index 3036805f..00000000 Binary files a/public/textures/chipped/leafy_vine.png and /dev/null differ diff --git a/public/textures/chipped/leafy_warped_trapdoor.png b/public/textures/chipped/leafy_warped_trapdoor.png deleted file mode 100644 index d162bce4..00000000 Binary files a/public/textures/chipped/leafy_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/leaning_mud.png b/public/textures/chipped/leaning_mud.png deleted file mode 100644 index e4571d81..00000000 Binary files a/public/textures/chipped/leaning_mud.png and /dev/null differ diff --git a/public/textures/chipped/leaning_mud_bricks.png b/public/textures/chipped/leaning_mud_bricks.png deleted file mode 100644 index 7ca7d5bc..00000000 Binary files a/public/textures/chipped/leaning_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/leaning_packed_mud.png b/public/textures/chipped/leaning_packed_mud.png deleted file mode 100644 index 762c935e..00000000 Binary files a/public/textures/chipped/leaning_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_concrete_bricks.png b/public/textures/chipped/light_blue_concrete_bricks.png deleted file mode 100644 index ce9d6d1e..00000000 Binary files a/public/textures/chipped/light_blue_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_concrete_panel.png b/public/textures/chipped/light_blue_concrete_panel.png deleted file mode 100644 index 215e14f0..00000000 Binary files a/public/textures/chipped/light_blue_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_concrete_pillar.png b/public/textures/chipped/light_blue_concrete_pillar.png deleted file mode 100644 index 75b636ba..00000000 Binary files a/public/textures/chipped/light_blue_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_concrete_tiles.png b/public/textures/chipped/light_blue_concrete_tiles.png deleted file mode 100644 index 2fefbab9..00000000 Binary files a/public/textures/chipped/light_blue_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_glazed_terracotta_pillar_sides.png b/public/textures/chipped/light_blue_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 44bbb18f..00000000 Binary files a/public/textures/chipped/light_blue_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_glazed_terracotta_pillar_top.png b/public/textures/chipped/light_blue_glazed_terracotta_pillar_top.png deleted file mode 100644 index 3ce2d8f9..00000000 Binary files a/public/textures/chipped/light_blue_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/light_blue_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index c5082cdf..00000000 Binary files a/public/textures/chipped/light_blue_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_glazed_terracotta_tiles.png b/public/textures/chipped/light_blue_glazed_terracotta_tiles.png deleted file mode 100644 index 6e829913..00000000 Binary files a/public/textures/chipped/light_blue_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_terracotta_bricks.png b/public/textures/chipped/light_blue_terracotta_bricks.png deleted file mode 100644 index c7767dee..00000000 Binary files a/public/textures/chipped/light_blue_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_terracotta_column.png b/public/textures/chipped/light_blue_terracotta_column.png deleted file mode 100644 index 98ca3abc..00000000 Binary files a/public/textures/chipped/light_blue_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_terracotta_pillar.png b/public/textures/chipped/light_blue_terracotta_pillar.png deleted file mode 100644 index 551831ef..00000000 Binary files a/public/textures/chipped/light_blue_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_terracotta_tile.png b/public/textures/chipped/light_blue_terracotta_tile.png deleted file mode 100644 index cc6d7ad3..00000000 Binary files a/public/textures/chipped/light_blue_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/light_blue_terracotta_tiles.png b/public/textures/chipped/light_blue_terracotta_tiles.png deleted file mode 100644 index de4c8658..00000000 Binary files a/public/textures/chipped/light_blue_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/light_dotted_red_mushroom_block.png b/public/textures/chipped/light_dotted_red_mushroom_block.png deleted file mode 100644 index 7e110778..00000000 Binary files a/public/textures/chipped/light_dotted_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/light_dusted_brown_mushroom_block.png b/public/textures/chipped/light_dusted_brown_mushroom_block.png deleted file mode 100644 index 05b7ff54..00000000 Binary files a/public/textures/chipped/light_dusted_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/light_dusted_red_mushroom_block.png b/public/textures/chipped/light_dusted_red_mushroom_block.png deleted file mode 100644 index 4efa5c00..00000000 Binary files a/public/textures/chipped/light_dusted_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/light_freckled_brown_mushroom_block.png b/public/textures/chipped/light_freckled_brown_mushroom_block.png deleted file mode 100644 index d78dddf2..00000000 Binary files a/public/textures/chipped/light_freckled_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/light_freckled_red_mushroom_block.png b/public/textures/chipped/light_freckled_red_mushroom_block.png deleted file mode 100644 index b686c723..00000000 Binary files a/public/textures/chipped/light_freckled_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_concrete_bricks.png b/public/textures/chipped/light_gray_concrete_bricks.png deleted file mode 100644 index b2805dc6..00000000 Binary files a/public/textures/chipped/light_gray_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_concrete_panel.png b/public/textures/chipped/light_gray_concrete_panel.png deleted file mode 100644 index ed783ffe..00000000 Binary files a/public/textures/chipped/light_gray_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_concrete_pillar.png b/public/textures/chipped/light_gray_concrete_pillar.png deleted file mode 100644 index c94c172e..00000000 Binary files a/public/textures/chipped/light_gray_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_concrete_tiles.png b/public/textures/chipped/light_gray_concrete_tiles.png deleted file mode 100644 index 8675b1f3..00000000 Binary files a/public/textures/chipped/light_gray_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_glazed_terracotta_pillar_sides.png b/public/textures/chipped/light_gray_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 4497db8b..00000000 Binary files a/public/textures/chipped/light_gray_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_glazed_terracotta_pillar_top.png b/public/textures/chipped/light_gray_glazed_terracotta_pillar_top.png deleted file mode 100644 index ec112a33..00000000 Binary files a/public/textures/chipped/light_gray_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/light_gray_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index c402b17d..00000000 Binary files a/public/textures/chipped/light_gray_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_glazed_terracotta_tiles.png b/public/textures/chipped/light_gray_glazed_terracotta_tiles.png deleted file mode 100644 index 007fa895..00000000 Binary files a/public/textures/chipped/light_gray_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_terracotta_bricks.png b/public/textures/chipped/light_gray_terracotta_bricks.png deleted file mode 100644 index 10014649..00000000 Binary files a/public/textures/chipped/light_gray_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_terracotta_column.png b/public/textures/chipped/light_gray_terracotta_column.png deleted file mode 100644 index 1a900874..00000000 Binary files a/public/textures/chipped/light_gray_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_terracotta_pillar.png b/public/textures/chipped/light_gray_terracotta_pillar.png deleted file mode 100644 index fc61534e..00000000 Binary files a/public/textures/chipped/light_gray_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_terracotta_tile.png b/public/textures/chipped/light_gray_terracotta_tile.png deleted file mode 100644 index 8a8bdf94..00000000 Binary files a/public/textures/chipped/light_gray_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/light_gray_terracotta_tiles.png b/public/textures/chipped/light_gray_terracotta_tiles.png deleted file mode 100644 index 10708a2b..00000000 Binary files a/public/textures/chipped/light_gray_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/light_leaf_lily_pad.png b/public/textures/chipped/light_leaf_lily_pad.png deleted file mode 100644 index 2697ba47..00000000 Binary files a/public/textures/chipped/light_leaf_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/light_rough_lily_pad.png b/public/textures/chipped/light_rough_lily_pad.png deleted file mode 100644 index bc577808..00000000 Binary files a/public/textures/chipped/light_rough_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/light_scaled_brown_mushroom_block.png b/public/textures/chipped/light_scaled_brown_mushroom_block.png deleted file mode 100644 index e5c3ca6b..00000000 Binary files a/public/textures/chipped/light_scaled_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/light_smooth_brown_mushroom_block.png b/public/textures/chipped/light_smooth_brown_mushroom_block.png deleted file mode 100644 index 7ca41d30..00000000 Binary files a/public/textures/chipped/light_smooth_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/light_smooth_red_mushroom_block.png b/public/textures/chipped/light_smooth_red_mushroom_block.png deleted file mode 100644 index f8611e31..00000000 Binary files a/public/textures/chipped/light_smooth_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/light_spotted_brown_mushroom_block.png b/public/textures/chipped/light_spotted_brown_mushroom_block.png deleted file mode 100644 index ec6802b4..00000000 Binary files a/public/textures/chipped/light_spotted_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/light_spotted_red_mushroom_block.png b/public/textures/chipped/light_spotted_red_mushroom_block.png deleted file mode 100644 index 4dfafc37..00000000 Binary files a/public/textures/chipped/light_spotted_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/light_sprinkled_brown_mushroom_block.png b/public/textures/chipped/light_sprinkled_brown_mushroom_block.png deleted file mode 100644 index d5cbdc80..00000000 Binary files a/public/textures/chipped/light_sprinkled_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/lightstick_redstone_torch.png b/public/textures/chipped/lightstick_redstone_torch.png deleted file mode 100644 index 97550e56..00000000 Binary files a/public/textures/chipped/lightstick_redstone_torch.png and /dev/null differ diff --git a/public/textures/chipped/lily_warped_roots.png b/public/textures/chipped/lily_warped_roots.png deleted file mode 100644 index 9d9c475f..00000000 Binary files a/public/textures/chipped/lily_warped_roots.png and /dev/null differ diff --git a/public/textures/chipped/lime_concrete_bricks.png b/public/textures/chipped/lime_concrete_bricks.png deleted file mode 100644 index f9e7e13c..00000000 Binary files a/public/textures/chipped/lime_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/lime_concrete_panel.png b/public/textures/chipped/lime_concrete_panel.png deleted file mode 100644 index ff1e1d76..00000000 Binary files a/public/textures/chipped/lime_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/lime_concrete_pillar.png b/public/textures/chipped/lime_concrete_pillar.png deleted file mode 100644 index e48ff31c..00000000 Binary files a/public/textures/chipped/lime_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/lime_concrete_tiles.png b/public/textures/chipped/lime_concrete_tiles.png deleted file mode 100644 index 21913738..00000000 Binary files a/public/textures/chipped/lime_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/lime_glazed_terracotta_pillar_sides.png b/public/textures/chipped/lime_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 31dc8604..00000000 Binary files a/public/textures/chipped/lime_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/lime_glazed_terracotta_pillar_top.png b/public/textures/chipped/lime_glazed_terracotta_pillar_top.png deleted file mode 100644 index 1c0cb9f8..00000000 Binary files a/public/textures/chipped/lime_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/lime_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/lime_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index 3dd8b7d8..00000000 Binary files a/public/textures/chipped/lime_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/lime_glazed_terracotta_tiles.png b/public/textures/chipped/lime_glazed_terracotta_tiles.png deleted file mode 100644 index c4dd966f..00000000 Binary files a/public/textures/chipped/lime_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/lime_moss_block.png b/public/textures/chipped/lime_moss_block.png deleted file mode 100644 index 55b414e2..00000000 Binary files a/public/textures/chipped/lime_moss_block.png and /dev/null differ diff --git a/public/textures/chipped/lime_paper_soul_lantern.png b/public/textures/chipped/lime_paper_soul_lantern.png deleted file mode 100644 index f6d99c44..00000000 Binary files a/public/textures/chipped/lime_paper_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/lime_terracotta_bricks.png b/public/textures/chipped/lime_terracotta_bricks.png deleted file mode 100644 index 3df9d631..00000000 Binary files a/public/textures/chipped/lime_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/lime_terracotta_column.png b/public/textures/chipped/lime_terracotta_column.png deleted file mode 100644 index bcf2d462..00000000 Binary files a/public/textures/chipped/lime_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/lime_terracotta_pillar.png b/public/textures/chipped/lime_terracotta_pillar.png deleted file mode 100644 index 99350a49..00000000 Binary files a/public/textures/chipped/lime_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/lime_terracotta_tile.png b/public/textures/chipped/lime_terracotta_tile.png deleted file mode 100644 index 561e5699..00000000 Binary files a/public/textures/chipped/lime_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/lime_terracotta_tiles.png b/public/textures/chipped/lime_terracotta_tiles.png deleted file mode 100644 index 01d6db92..00000000 Binary files a/public/textures/chipped/lime_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/linked_iron_bars.png b/public/textures/chipped/linked_iron_bars.png deleted file mode 100644 index e12e19da..00000000 Binary files a/public/textures/chipped/linked_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/loded_amethyst_block.png b/public/textures/chipped/loded_amethyst_block.png deleted file mode 100644 index 1bc2d8de..00000000 Binary files a/public/textures/chipped/loded_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_ancient_debris.png b/public/textures/chipped/loded_ancient_debris.png deleted file mode 100644 index aa0b8f23..00000000 Binary files a/public/textures/chipped/loded_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/loded_andesite.png b/public/textures/chipped/loded_andesite.png deleted file mode 100644 index 7cbbfbad..00000000 Binary files a/public/textures/chipped/loded_andesite.png and /dev/null differ diff --git a/public/textures/chipped/loded_basalt.png b/public/textures/chipped/loded_basalt.png deleted file mode 100644 index bcbf7a42..00000000 Binary files a/public/textures/chipped/loded_basalt.png and /dev/null differ diff --git a/public/textures/chipped/loded_blackstone.png b/public/textures/chipped/loded_blackstone.png deleted file mode 100644 index 9afbdf55..00000000 Binary files a/public/textures/chipped/loded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/loded_blue_ice.png b/public/textures/chipped/loded_blue_ice.png deleted file mode 100644 index 3e8814b3..00000000 Binary files a/public/textures/chipped/loded_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/loded_borderless_bricks.png b/public/textures/chipped/loded_borderless_bricks.png deleted file mode 100644 index b1922d1b..00000000 Binary files a/public/textures/chipped/loded_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/loded_bricks.png b/public/textures/chipped/loded_bricks.png deleted file mode 100644 index 7ca3146b..00000000 Binary files a/public/textures/chipped/loded_bricks.png and /dev/null differ diff --git a/public/textures/chipped/loded_calcite.png b/public/textures/chipped/loded_calcite.png deleted file mode 100644 index 0505a091..00000000 Binary files a/public/textures/chipped/loded_calcite.png and /dev/null differ diff --git a/public/textures/chipped/loded_clay.png b/public/textures/chipped/loded_clay.png deleted file mode 100644 index b44851b8..00000000 Binary files a/public/textures/chipped/loded_clay.png and /dev/null differ diff --git a/public/textures/chipped/loded_coal_block.png b/public/textures/chipped/loded_coal_block.png deleted file mode 100644 index f9e30804..00000000 Binary files a/public/textures/chipped/loded_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_cobblestone.png b/public/textures/chipped/loded_cobblestone.png deleted file mode 100644 index f4f12a0a..00000000 Binary files a/public/textures/chipped/loded_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/loded_crying_obsidian.png b/public/textures/chipped/loded_crying_obsidian.png deleted file mode 100644 index 2dbb89a3..00000000 Binary files a/public/textures/chipped/loded_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/loded_dark_prismarine.png b/public/textures/chipped/loded_dark_prismarine.png deleted file mode 100644 index 8d5c93fd..00000000 Binary files a/public/textures/chipped/loded_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/loded_deepslate.png b/public/textures/chipped/loded_deepslate.png deleted file mode 100644 index 003c013d..00000000 Binary files a/public/textures/chipped/loded_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/loded_diorite.png b/public/textures/chipped/loded_diorite.png deleted file mode 100644 index e1c382a3..00000000 Binary files a/public/textures/chipped/loded_diorite.png and /dev/null differ diff --git a/public/textures/chipped/loded_dirt.png b/public/textures/chipped/loded_dirt.png deleted file mode 100644 index 7f0b37a1..00000000 Binary files a/public/textures/chipped/loded_dirt.png and /dev/null differ diff --git a/public/textures/chipped/loded_dripstone_block.png b/public/textures/chipped/loded_dripstone_block.png deleted file mode 100644 index 7f6486fd..00000000 Binary files a/public/textures/chipped/loded_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_end_stone.png b/public/textures/chipped/loded_end_stone.png deleted file mode 100644 index ff224466..00000000 Binary files a/public/textures/chipped/loded_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/loded_gilded_blackstone.png b/public/textures/chipped/loded_gilded_blackstone.png deleted file mode 100644 index 7a5c89cd..00000000 Binary files a/public/textures/chipped/loded_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/loded_granite.png b/public/textures/chipped/loded_granite.png deleted file mode 100644 index 40763a2c..00000000 Binary files a/public/textures/chipped/loded_granite.png and /dev/null differ diff --git a/public/textures/chipped/loded_ice.png b/public/textures/chipped/loded_ice.png deleted file mode 100644 index e258c41e..00000000 Binary files a/public/textures/chipped/loded_ice.png and /dev/null differ diff --git a/public/textures/chipped/loded_lapis_block.png b/public/textures/chipped/loded_lapis_block.png deleted file mode 100644 index d4fed66f..00000000 Binary files a/public/textures/chipped/loded_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_magma_block.png b/public/textures/chipped/loded_magma_block.png deleted file mode 100644 index 1f9db4d3..00000000 Binary files a/public/textures/chipped/loded_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_mossy_cobblestone.png b/public/textures/chipped/loded_mossy_cobblestone.png deleted file mode 100644 index 9dff544a..00000000 Binary files a/public/textures/chipped/loded_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/loded_mossy_stone_bricks.png b/public/textures/chipped/loded_mossy_stone_bricks.png deleted file mode 100644 index efdc26e9..00000000 Binary files a/public/textures/chipped/loded_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/loded_nether_bricks.png b/public/textures/chipped/loded_nether_bricks.png deleted file mode 100644 index 303f8e58..00000000 Binary files a/public/textures/chipped/loded_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/loded_netherrack.png b/public/textures/chipped/loded_netherrack.png deleted file mode 100644 index 251b5377..00000000 Binary files a/public/textures/chipped/loded_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/loded_obsidian.png b/public/textures/chipped/loded_obsidian.png deleted file mode 100644 index ff2fc9ca..00000000 Binary files a/public/textures/chipped/loded_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/loded_packed_ice.png b/public/textures/chipped/loded_packed_ice.png deleted file mode 100644 index 5a9979cd..00000000 Binary files a/public/textures/chipped/loded_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/loded_prismarine.png b/public/textures/chipped/loded_prismarine.png deleted file mode 100644 index 108f0373..00000000 Binary files a/public/textures/chipped/loded_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/loded_purpur_block.png b/public/textures/chipped/loded_purpur_block.png deleted file mode 100644 index 22e14aea..00000000 Binary files a/public/textures/chipped/loded_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_quartz_block.png b/public/textures/chipped/loded_quartz_block.png deleted file mode 100644 index 4fdb6201..00000000 Binary files a/public/textures/chipped/loded_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_raw_copper_block.png b/public/textures/chipped/loded_raw_copper_block.png deleted file mode 100644 index 9aa72af7..00000000 Binary files a/public/textures/chipped/loded_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_raw_gold_block.png b/public/textures/chipped/loded_raw_gold_block.png deleted file mode 100644 index 0ca4748f..00000000 Binary files a/public/textures/chipped/loded_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_raw_iron_block.png b/public/textures/chipped/loded_raw_iron_block.png deleted file mode 100644 index 806e33db..00000000 Binary files a/public/textures/chipped/loded_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_red_nether_bricks.png b/public/textures/chipped/loded_red_nether_bricks.png deleted file mode 100644 index 357e4c27..00000000 Binary files a/public/textures/chipped/loded_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/loded_red_sandstone.png b/public/textures/chipped/loded_red_sandstone.png deleted file mode 100644 index 17ae7331..00000000 Binary files a/public/textures/chipped/loded_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/loded_redstone_block.png b/public/textures/chipped/loded_redstone_block.png deleted file mode 100644 index 5355a370..00000000 Binary files a/public/textures/chipped/loded_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_sandstone.png b/public/textures/chipped/loded_sandstone.png deleted file mode 100644 index 553bd81f..00000000 Binary files a/public/textures/chipped/loded_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/loded_smooth_stone.png b/public/textures/chipped/loded_smooth_stone.png deleted file mode 100644 index 30c893f0..00000000 Binary files a/public/textures/chipped/loded_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/loded_snow_block.png b/public/textures/chipped/loded_snow_block.png deleted file mode 100644 index 28654923..00000000 Binary files a/public/textures/chipped/loded_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/loded_stone.png b/public/textures/chipped/loded_stone.png deleted file mode 100644 index 9978e63c..00000000 Binary files a/public/textures/chipped/loded_stone.png and /dev/null differ diff --git a/public/textures/chipped/loded_tuff.png b/public/textures/chipped/loded_tuff.png deleted file mode 100644 index 6188ca84..00000000 Binary files a/public/textures/chipped/loded_tuff.png and /dev/null differ diff --git a/public/textures/chipped/lodestone_bricks.png b/public/textures/chipped/lodestone_bricks.png deleted file mode 100644 index d34a5020..00000000 Binary files a/public/textures/chipped/lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/lodestone_mini_tiles.png b/public/textures/chipped/lodestone_mini_tiles.png deleted file mode 100644 index 9af39878..00000000 Binary files a/public/textures/chipped/lodestone_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/lodestone_pillar.png b/public/textures/chipped/lodestone_pillar.png deleted file mode 100644 index a28fb596..00000000 Binary files a/public/textures/chipped/lodestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/lodestone_pillar_top.png b/public/textures/chipped/lodestone_pillar_top.png deleted file mode 100644 index 5c29cdd2..00000000 Binary files a/public/textures/chipped/lodestone_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/lodestone_scales.png b/public/textures/chipped/lodestone_scales.png deleted file mode 100644 index b66f9fe6..00000000 Binary files a/public/textures/chipped/lodestone_scales.png and /dev/null differ diff --git a/public/textures/chipped/long_vine.png b/public/textures/chipped/long_vine.png deleted file mode 100644 index 7d406f7e..00000000 Binary files a/public/textures/chipped/long_vine.png and /dev/null differ diff --git a/public/textures/chipped/loom_table.png b/public/textures/chipped/loom_table.png deleted file mode 100644 index 3764ba5a..00000000 Binary files a/public/textures/chipped/loom_table.png and /dev/null differ diff --git a/public/textures/chipped/loose_iron_bars.png b/public/textures/chipped/loose_iron_bars.png deleted file mode 100644 index 8df3e40d..00000000 Binary files a/public/textures/chipped/loose_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/loreful_mud.png b/public/textures/chipped/loreful_mud.png deleted file mode 100644 index 0e8af929..00000000 Binary files a/public/textures/chipped/loreful_mud.png and /dev/null differ diff --git a/public/textures/chipped/loreful_mud_bricks.png b/public/textures/chipped/loreful_mud_bricks.png deleted file mode 100644 index 970347b1..00000000 Binary files a/public/textures/chipped/loreful_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/loreful_packed_mud.png b/public/textures/chipped/loreful_packed_mud.png deleted file mode 100644 index 7bb7a64e..00000000 Binary files a/public/textures/chipped/loreful_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/lumpy_stripped_acacia_log.png b/public/textures/chipped/lumpy_stripped_acacia_log.png deleted file mode 100644 index 02cb5a1a..00000000 Binary files a/public/textures/chipped/lumpy_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/lumpy_stripped_birch_log.png b/public/textures/chipped/lumpy_stripped_birch_log.png deleted file mode 100644 index e553c8a4..00000000 Binary files a/public/textures/chipped/lumpy_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/lumpy_stripped_cherry_log.png b/public/textures/chipped/lumpy_stripped_cherry_log.png deleted file mode 100644 index d27dff85..00000000 Binary files a/public/textures/chipped/lumpy_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/lumpy_stripped_crimson_stem.png b/public/textures/chipped/lumpy_stripped_crimson_stem.png deleted file mode 100644 index 0931560e..00000000 Binary files a/public/textures/chipped/lumpy_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/lumpy_stripped_dark_oak_log.png b/public/textures/chipped/lumpy_stripped_dark_oak_log.png deleted file mode 100644 index ced065de..00000000 Binary files a/public/textures/chipped/lumpy_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/lumpy_stripped_jungle_log.png b/public/textures/chipped/lumpy_stripped_jungle_log.png deleted file mode 100644 index c3101e9b..00000000 Binary files a/public/textures/chipped/lumpy_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/lumpy_stripped_mangrove_log.png b/public/textures/chipped/lumpy_stripped_mangrove_log.png deleted file mode 100644 index fb99b539..00000000 Binary files a/public/textures/chipped/lumpy_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/lumpy_stripped_oak_log.png b/public/textures/chipped/lumpy_stripped_oak_log.png deleted file mode 100644 index ad6524de..00000000 Binary files a/public/textures/chipped/lumpy_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/lumpy_stripped_spruce_log.png b/public/textures/chipped/lumpy_stripped_spruce_log.png deleted file mode 100644 index 04b6e476..00000000 Binary files a/public/textures/chipped/lumpy_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/lumpy_stripped_warped_stem.png b/public/textures/chipped/lumpy_stripped_warped_stem.png deleted file mode 100644 index 72ee5925..00000000 Binary files a/public/textures/chipped/lumpy_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/lush_mangrove_roots.png b/public/textures/chipped/lush_mangrove_roots.png deleted file mode 100644 index 8b2a7d7b..00000000 Binary files a/public/textures/chipped/lush_mangrove_roots.png and /dev/null differ diff --git a/public/textures/chipped/lush_red_sand.png b/public/textures/chipped/lush_red_sand.png deleted file mode 100644 index 6d015cb0..00000000 Binary files a/public/textures/chipped/lush_red_sand.png and /dev/null differ diff --git a/public/textures/chipped/lush_sponge.png b/public/textures/chipped/lush_sponge.png deleted file mode 100644 index 42ae6358..00000000 Binary files a/public/textures/chipped/lush_sponge.png and /dev/null differ diff --git a/public/textures/chipped/lush_vine.png b/public/textures/chipped/lush_vine.png deleted file mode 100644 index 366408e3..00000000 Binary files a/public/textures/chipped/lush_vine.png and /dev/null differ diff --git a/public/textures/chipped/m_sign_stripped_acacia_log.png b/public/textures/chipped/m_sign_stripped_acacia_log.png deleted file mode 100644 index 90772eef..00000000 Binary files a/public/textures/chipped/m_sign_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/m_sign_stripped_birch_log.png b/public/textures/chipped/m_sign_stripped_birch_log.png deleted file mode 100644 index 9523825f..00000000 Binary files a/public/textures/chipped/m_sign_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/m_sign_stripped_cherry_log.png b/public/textures/chipped/m_sign_stripped_cherry_log.png deleted file mode 100644 index 9f41bae2..00000000 Binary files a/public/textures/chipped/m_sign_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/m_sign_stripped_crimson_stem.png b/public/textures/chipped/m_sign_stripped_crimson_stem.png deleted file mode 100644 index 958154cb..00000000 Binary files a/public/textures/chipped/m_sign_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/m_sign_stripped_dark_oak_log.png b/public/textures/chipped/m_sign_stripped_dark_oak_log.png deleted file mode 100644 index 7263f664..00000000 Binary files a/public/textures/chipped/m_sign_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/m_sign_stripped_jungle_log.png b/public/textures/chipped/m_sign_stripped_jungle_log.png deleted file mode 100644 index a9a8a1e3..00000000 Binary files a/public/textures/chipped/m_sign_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/m_sign_stripped_mangrove_log.png b/public/textures/chipped/m_sign_stripped_mangrove_log.png deleted file mode 100644 index 0ab686db..00000000 Binary files a/public/textures/chipped/m_sign_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/m_sign_stripped_oak_log.png b/public/textures/chipped/m_sign_stripped_oak_log.png deleted file mode 100644 index 6e67a7e2..00000000 Binary files a/public/textures/chipped/m_sign_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/m_sign_stripped_spruce_log.png b/public/textures/chipped/m_sign_stripped_spruce_log.png deleted file mode 100644 index f501ec30..00000000 Binary files a/public/textures/chipped/m_sign_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/m_sign_stripped_warped_stem.png b/public/textures/chipped/m_sign_stripped_warped_stem.png deleted file mode 100644 index 54f1b2c3..00000000 Binary files a/public/textures/chipped/m_sign_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/magenta_concrete_bricks.png b/public/textures/chipped/magenta_concrete_bricks.png deleted file mode 100644 index ba8e29d6..00000000 Binary files a/public/textures/chipped/magenta_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/magenta_concrete_panel.png b/public/textures/chipped/magenta_concrete_panel.png deleted file mode 100644 index bf4dac80..00000000 Binary files a/public/textures/chipped/magenta_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/magenta_concrete_pillar.png b/public/textures/chipped/magenta_concrete_pillar.png deleted file mode 100644 index e39a1c0c..00000000 Binary files a/public/textures/chipped/magenta_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/magenta_concrete_tiles.png b/public/textures/chipped/magenta_concrete_tiles.png deleted file mode 100644 index 465aac31..00000000 Binary files a/public/textures/chipped/magenta_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/magenta_flower_acacia_leaves.png b/public/textures/chipped/magenta_flower_acacia_leaves.png deleted file mode 100644 index 29737f84..00000000 Binary files a/public/textures/chipped/magenta_flower_acacia_leaves.png and /dev/null differ diff --git a/public/textures/chipped/magenta_flower_birch_leaves.png b/public/textures/chipped/magenta_flower_birch_leaves.png deleted file mode 100644 index a1dac2d9..00000000 Binary files a/public/textures/chipped/magenta_flower_birch_leaves.png and /dev/null differ diff --git a/public/textures/chipped/magenta_flower_dark_oak_leaves.png b/public/textures/chipped/magenta_flower_dark_oak_leaves.png deleted file mode 100644 index d65211fe..00000000 Binary files a/public/textures/chipped/magenta_flower_dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/magenta_flower_jungle_leaves.png b/public/textures/chipped/magenta_flower_jungle_leaves.png deleted file mode 100644 index 64d7d8d5..00000000 Binary files a/public/textures/chipped/magenta_flower_jungle_leaves.png and /dev/null differ diff --git a/public/textures/chipped/magenta_flower_oak_leaves.png b/public/textures/chipped/magenta_flower_oak_leaves.png deleted file mode 100644 index ba6b0d87..00000000 Binary files a/public/textures/chipped/magenta_flower_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/magenta_flower_spruce_leaves.png b/public/textures/chipped/magenta_flower_spruce_leaves.png deleted file mode 100644 index 21ba750c..00000000 Binary files a/public/textures/chipped/magenta_flower_spruce_leaves.png and /dev/null differ diff --git a/public/textures/chipped/magenta_glazed_terracotta_pillar_sides.png b/public/textures/chipped/magenta_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 26a45c9a..00000000 Binary files a/public/textures/chipped/magenta_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/magenta_glazed_terracotta_pillar_top.png b/public/textures/chipped/magenta_glazed_terracotta_pillar_top.png deleted file mode 100644 index d2895b35..00000000 Binary files a/public/textures/chipped/magenta_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/magenta_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/magenta_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index 9ad710e5..00000000 Binary files a/public/textures/chipped/magenta_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/magenta_glazed_terracotta_tiles.png b/public/textures/chipped/magenta_glazed_terracotta_tiles.png deleted file mode 100644 index b24e2df5..00000000 Binary files a/public/textures/chipped/magenta_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/magenta_terracotta_bricks.png b/public/textures/chipped/magenta_terracotta_bricks.png deleted file mode 100644 index f58bec1c..00000000 Binary files a/public/textures/chipped/magenta_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/magenta_terracotta_column.png b/public/textures/chipped/magenta_terracotta_column.png deleted file mode 100644 index 9de84902..00000000 Binary files a/public/textures/chipped/magenta_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/magenta_terracotta_pillar.png b/public/textures/chipped/magenta_terracotta_pillar.png deleted file mode 100644 index b92c6c64..00000000 Binary files a/public/textures/chipped/magenta_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/magenta_terracotta_tile.png b/public/textures/chipped/magenta_terracotta_tile.png deleted file mode 100644 index cda7ccc0..00000000 Binary files a/public/textures/chipped/magenta_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/magenta_terracotta_tiles.png b/public/textures/chipped/magenta_terracotta_tiles.png deleted file mode 100644 index f7ebb7cf..00000000 Binary files a/public/textures/chipped/magenta_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/magma_block_bricks.png b/public/textures/chipped/magma_block_bricks.png deleted file mode 100644 index b27c1ba8..00000000 Binary files a/public/textures/chipped/magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/magma_block_mini_tiles.png b/public/textures/chipped/magma_block_mini_tiles.png deleted file mode 100644 index 714721d4..00000000 Binary files a/public/textures/chipped/magma_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/magma_block_pillar.png b/public/textures/chipped/magma_block_pillar.png deleted file mode 100644 index 0c3653e6..00000000 Binary files a/public/textures/chipped/magma_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/magma_block_pillar_top.png b/public/textures/chipped/magma_block_pillar_top.png deleted file mode 100644 index 92d4781d..00000000 Binary files a/public/textures/chipped/magma_block_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/magma_block_scales.png b/public/textures/chipped/magma_block_scales.png deleted file mode 100644 index 2c9cf69f..00000000 Binary files a/public/textures/chipped/magma_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/mangled_warped_roots.png b/public/textures/chipped/mangled_warped_roots.png deleted file mode 100644 index c6867715..00000000 Binary files a/public/textures/chipped/mangled_warped_roots.png and /dev/null differ diff --git a/public/textures/chipped/mangrove_brick_barrel.png b/public/textures/chipped/mangrove_brick_barrel.png deleted file mode 100644 index 2dcb1e67..00000000 Binary files a/public/textures/chipped/mangrove_brick_barrel.png and /dev/null differ diff --git a/public/textures/chipped/mangrove_crate.png b/public/textures/chipped/mangrove_crate.png deleted file mode 100644 index b7d61e99..00000000 Binary files a/public/textures/chipped/mangrove_crate.png and /dev/null differ diff --git a/public/textures/chipped/mangrove_planks_mosaic.png b/public/textures/chipped/mangrove_planks_mosaic.png deleted file mode 100644 index 11016e54..00000000 Binary files a/public/textures/chipped/mangrove_planks_mosaic.png and /dev/null differ diff --git a/public/textures/chipped/mangrove_planks_panel.png b/public/textures/chipped/mangrove_planks_panel.png deleted file mode 100644 index 477ba666..00000000 Binary files a/public/textures/chipped/mangrove_planks_panel.png and /dev/null differ diff --git a/public/textures/chipped/mangrove_planks_shavings.png b/public/textures/chipped/mangrove_planks_shavings.png deleted file mode 100644 index c33c8cac..00000000 Binary files a/public/textures/chipped/mangrove_planks_shavings.png and /dev/null differ diff --git a/public/textures/chipped/mangrove_tile_barrel.png b/public/textures/chipped/mangrove_tile_barrel.png deleted file mode 100644 index c94c2268..00000000 Binary files a/public/textures/chipped/mangrove_tile_barrel.png and /dev/null differ diff --git a/public/textures/chipped/mason_table.png b/public/textures/chipped/mason_table.png deleted file mode 100644 index 85324f49..00000000 Binary files a/public/textures/chipped/mason_table.png and /dev/null differ diff --git a/public/textures/chipped/massive_amethyst_block_bricks.png b/public/textures/chipped/massive_amethyst_block_bricks.png deleted file mode 100644 index 5011d297..00000000 Binary files a/public/textures/chipped/massive_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_ancient_debris_bricks.png b/public/textures/chipped/massive_ancient_debris_bricks.png deleted file mode 100644 index 278d193c..00000000 Binary files a/public/textures/chipped/massive_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_andesite_bricks.png b/public/textures/chipped/massive_andesite_bricks.png deleted file mode 100644 index bbd87668..00000000 Binary files a/public/textures/chipped/massive_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_basalt_bricks.png b/public/textures/chipped/massive_basalt_bricks.png deleted file mode 100644 index af2726dd..00000000 Binary files a/public/textures/chipped/massive_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_blackstone_bricks.png b/public/textures/chipped/massive_blackstone_bricks.png deleted file mode 100644 index 9e72a38f..00000000 Binary files a/public/textures/chipped/massive_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_blue_ice_bricks.png b/public/textures/chipped/massive_blue_ice_bricks.png deleted file mode 100644 index 4c3c3fc7..00000000 Binary files a/public/textures/chipped/massive_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_borderless_bricks_bricks.png b/public/textures/chipped/massive_borderless_bricks_bricks.png deleted file mode 100644 index 95e9ce54..00000000 Binary files a/public/textures/chipped/massive_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_bricks_bricks.png b/public/textures/chipped/massive_bricks_bricks.png deleted file mode 100644 index b72f64c2..00000000 Binary files a/public/textures/chipped/massive_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_calcite_bricks.png b/public/textures/chipped/massive_calcite_bricks.png deleted file mode 100644 index 2b4fa4a9..00000000 Binary files a/public/textures/chipped/massive_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_clay_bricks.png b/public/textures/chipped/massive_clay_bricks.png deleted file mode 100644 index ec02219c..00000000 Binary files a/public/textures/chipped/massive_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_coal_block_bricks.png b/public/textures/chipped/massive_coal_block_bricks.png deleted file mode 100644 index b511ec34..00000000 Binary files a/public/textures/chipped/massive_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_cobblestone_bricks.png b/public/textures/chipped/massive_cobblestone_bricks.png deleted file mode 100644 index ed8dbb40..00000000 Binary files a/public/textures/chipped/massive_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_crying_obsidian_bricks.png b/public/textures/chipped/massive_crying_obsidian_bricks.png deleted file mode 100644 index e0a3d81c..00000000 Binary files a/public/textures/chipped/massive_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_dark_prismarine_bricks.png b/public/textures/chipped/massive_dark_prismarine_bricks.png deleted file mode 100644 index 8795dcfa..00000000 Binary files a/public/textures/chipped/massive_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_deepslate_bricks.png b/public/textures/chipped/massive_deepslate_bricks.png deleted file mode 100644 index e41dce9e..00000000 Binary files a/public/textures/chipped/massive_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_diorite_bricks.png b/public/textures/chipped/massive_diorite_bricks.png deleted file mode 100644 index e0f27ecd..00000000 Binary files a/public/textures/chipped/massive_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_dirt_bricks.png b/public/textures/chipped/massive_dirt_bricks.png deleted file mode 100644 index cd1a3e5b..00000000 Binary files a/public/textures/chipped/massive_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_dripstone_block_bricks.png b/public/textures/chipped/massive_dripstone_block_bricks.png deleted file mode 100644 index d37744cf..00000000 Binary files a/public/textures/chipped/massive_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_end_stone_bricks.png b/public/textures/chipped/massive_end_stone_bricks.png deleted file mode 100644 index 9857e973..00000000 Binary files a/public/textures/chipped/massive_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_gilded_blackstone_bricks.png b/public/textures/chipped/massive_gilded_blackstone_bricks.png deleted file mode 100644 index 913e4dd7..00000000 Binary files a/public/textures/chipped/massive_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_granite_bricks.png b/public/textures/chipped/massive_granite_bricks.png deleted file mode 100644 index ea43888e..00000000 Binary files a/public/textures/chipped/massive_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_ice_bricks.png b/public/textures/chipped/massive_ice_bricks.png deleted file mode 100644 index fdaed73d..00000000 Binary files a/public/textures/chipped/massive_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_lapis_block_bricks.png b/public/textures/chipped/massive_lapis_block_bricks.png deleted file mode 100644 index 1ff66bcb..00000000 Binary files a/public/textures/chipped/massive_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_lodestone_bricks.png b/public/textures/chipped/massive_lodestone_bricks.png deleted file mode 100644 index 99891875..00000000 Binary files a/public/textures/chipped/massive_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_magma_block_bricks.png b/public/textures/chipped/massive_magma_block_bricks.png deleted file mode 100644 index fbf1bb45..00000000 Binary files a/public/textures/chipped/massive_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_mossy_cobblestone_bricks.png b/public/textures/chipped/massive_mossy_cobblestone_bricks.png deleted file mode 100644 index 4374eb2b..00000000 Binary files a/public/textures/chipped/massive_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_mossy_stone_bricks_bricks.png b/public/textures/chipped/massive_mossy_stone_bricks_bricks.png deleted file mode 100644 index ae6069e1..00000000 Binary files a/public/textures/chipped/massive_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_mud_bricks.png b/public/textures/chipped/massive_mud_bricks.png deleted file mode 100644 index 8f0f29f5..00000000 Binary files a/public/textures/chipped/massive_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_mud_bricks_bricks.png b/public/textures/chipped/massive_mud_bricks_bricks.png deleted file mode 100644 index 83146b8e..00000000 Binary files a/public/textures/chipped/massive_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_nether_bricks_bricks.png b/public/textures/chipped/massive_nether_bricks_bricks.png deleted file mode 100644 index fca4f583..00000000 Binary files a/public/textures/chipped/massive_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_netherrack_bricks.png b/public/textures/chipped/massive_netherrack_bricks.png deleted file mode 100644 index 1064d78e..00000000 Binary files a/public/textures/chipped/massive_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_obsidian_bricks.png b/public/textures/chipped/massive_obsidian_bricks.png deleted file mode 100644 index e8e2b71b..00000000 Binary files a/public/textures/chipped/massive_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_packed_ice_bricks.png b/public/textures/chipped/massive_packed_ice_bricks.png deleted file mode 100644 index 506447bb..00000000 Binary files a/public/textures/chipped/massive_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_packed_mud_bricks.png b/public/textures/chipped/massive_packed_mud_bricks.png deleted file mode 100644 index 5ba17114..00000000 Binary files a/public/textures/chipped/massive_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_prismarine_bricks.png b/public/textures/chipped/massive_prismarine_bricks.png deleted file mode 100644 index 08f27f02..00000000 Binary files a/public/textures/chipped/massive_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_purpur_block_bricks.png b/public/textures/chipped/massive_purpur_block_bricks.png deleted file mode 100644 index 676d74a5..00000000 Binary files a/public/textures/chipped/massive_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_quartz_block_bricks.png b/public/textures/chipped/massive_quartz_block_bricks.png deleted file mode 100644 index a0d66009..00000000 Binary files a/public/textures/chipped/massive_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_raw_copper_block_bricks.png b/public/textures/chipped/massive_raw_copper_block_bricks.png deleted file mode 100644 index 443acc39..00000000 Binary files a/public/textures/chipped/massive_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_raw_gold_block_bricks.png b/public/textures/chipped/massive_raw_gold_block_bricks.png deleted file mode 100644 index 95914250..00000000 Binary files a/public/textures/chipped/massive_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_raw_iron_block_bricks.png b/public/textures/chipped/massive_raw_iron_block_bricks.png deleted file mode 100644 index b6a7b7d7..00000000 Binary files a/public/textures/chipped/massive_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_red_nether_bricks_bricks.png b/public/textures/chipped/massive_red_nether_bricks_bricks.png deleted file mode 100644 index 24a3db2e..00000000 Binary files a/public/textures/chipped/massive_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_red_sandstone_bricks.png b/public/textures/chipped/massive_red_sandstone_bricks.png deleted file mode 100644 index c1998e41..00000000 Binary files a/public/textures/chipped/massive_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_redstone_block_bricks.png b/public/textures/chipped/massive_redstone_block_bricks.png deleted file mode 100644 index 85af119f..00000000 Binary files a/public/textures/chipped/massive_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_sandstone_bricks.png b/public/textures/chipped/massive_sandstone_bricks.png deleted file mode 100644 index 88c02f2b..00000000 Binary files a/public/textures/chipped/massive_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_smooth_stone_bricks.png b/public/textures/chipped/massive_smooth_stone_bricks.png deleted file mode 100644 index bcc3a151..00000000 Binary files a/public/textures/chipped/massive_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_snow_block_bricks.png b/public/textures/chipped/massive_snow_block_bricks.png deleted file mode 100644 index 1bda6c17..00000000 Binary files a/public/textures/chipped/massive_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_stone_bricks.png b/public/textures/chipped/massive_stone_bricks.png deleted file mode 100644 index 5f174f10..00000000 Binary files a/public/textures/chipped/massive_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/massive_tuff_bricks.png b/public/textures/chipped/massive_tuff_bricks.png deleted file mode 100644 index 39c527f5..00000000 Binary files a/public/textures/chipped/massive_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/meming_soul_sand.png b/public/textures/chipped/meming_soul_sand.png deleted file mode 100644 index 7d111557..00000000 Binary files a/public/textures/chipped/meming_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/meshed_acacia_trapdoor.png b/public/textures/chipped/meshed_acacia_trapdoor.png deleted file mode 100644 index 448cb979..00000000 Binary files a/public/textures/chipped/meshed_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/meshed_bamboo_trapdoor.png b/public/textures/chipped/meshed_bamboo_trapdoor.png deleted file mode 100644 index a52d9fdc..00000000 Binary files a/public/textures/chipped/meshed_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/meshed_birch_trapdoor.png b/public/textures/chipped/meshed_birch_trapdoor.png deleted file mode 100644 index 5b79a358..00000000 Binary files a/public/textures/chipped/meshed_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/meshed_cherry_trapdoor.png b/public/textures/chipped/meshed_cherry_trapdoor.png deleted file mode 100644 index 509cb0b0..00000000 Binary files a/public/textures/chipped/meshed_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/meshed_crimson_trapdoor.png b/public/textures/chipped/meshed_crimson_trapdoor.png deleted file mode 100644 index 0733a772..00000000 Binary files a/public/textures/chipped/meshed_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/meshed_dark_oak_trapdoor.png b/public/textures/chipped/meshed_dark_oak_trapdoor.png deleted file mode 100644 index c3f2246c..00000000 Binary files a/public/textures/chipped/meshed_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/meshed_jungle_trapdoor.png b/public/textures/chipped/meshed_jungle_trapdoor.png deleted file mode 100644 index 4b38ec90..00000000 Binary files a/public/textures/chipped/meshed_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/meshed_mangrove_trapdoor.png b/public/textures/chipped/meshed_mangrove_trapdoor.png deleted file mode 100644 index 6f9f8d2e..00000000 Binary files a/public/textures/chipped/meshed_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/meshed_oak_trapdoor.png b/public/textures/chipped/meshed_oak_trapdoor.png deleted file mode 100644 index 85867df6..00000000 Binary files a/public/textures/chipped/meshed_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/meshed_spruce_trapdoor.png b/public/textures/chipped/meshed_spruce_trapdoor.png deleted file mode 100644 index f093ee44..00000000 Binary files a/public/textures/chipped/meshed_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/meshed_warped_trapdoor.png b/public/textures/chipped/meshed_warped_trapdoor.png deleted file mode 100644 index e3fe35d8..00000000 Binary files a/public/textures/chipped/meshed_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/metal_barrel.png b/public/textures/chipped/metal_barrel.png deleted file mode 100644 index 15da6a04..00000000 Binary files a/public/textures/chipped/metal_barrel.png and /dev/null differ diff --git a/public/textures/chipped/metal_ladder.png b/public/textures/chipped/metal_ladder.png deleted file mode 100644 index 332363be..00000000 Binary files a/public/textures/chipped/metal_ladder.png and /dev/null differ diff --git a/public/textures/chipped/micro_brown_mushroom.png b/public/textures/chipped/micro_brown_mushroom.png deleted file mode 100644 index 10848367..00000000 Binary files a/public/textures/chipped/micro_brown_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/micro_crimson_fungus.png b/public/textures/chipped/micro_crimson_fungus.png deleted file mode 100644 index 4a1b5d3d..00000000 Binary files a/public/textures/chipped/micro_crimson_fungus.png and /dev/null differ diff --git a/public/textures/chipped/micro_lily_pads.png b/public/textures/chipped/micro_lily_pads.png deleted file mode 100644 index ba666176..00000000 Binary files a/public/textures/chipped/micro_lily_pads.png and /dev/null differ diff --git a/public/textures/chipped/micro_red_mushroom.png b/public/textures/chipped/micro_red_mushroom.png deleted file mode 100644 index a14d3211..00000000 Binary files a/public/textures/chipped/micro_red_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/micro_warped_fungus.png b/public/textures/chipped/micro_warped_fungus.png deleted file mode 100644 index dd51b99f..00000000 Binary files a/public/textures/chipped/micro_warped_fungus.png and /dev/null differ diff --git a/public/textures/chipped/mini_brown_mushroom.png b/public/textures/chipped/mini_brown_mushroom.png deleted file mode 100644 index 11e2fe65..00000000 Binary files a/public/textures/chipped/mini_brown_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/mini_crimson_fungus.png b/public/textures/chipped/mini_crimson_fungus.png deleted file mode 100644 index 723ab20a..00000000 Binary files a/public/textures/chipped/mini_crimson_fungus.png and /dev/null differ diff --git a/public/textures/chipped/mini_red_mushroom.png b/public/textures/chipped/mini_red_mushroom.png deleted file mode 100644 index d791b0e6..00000000 Binary files a/public/textures/chipped/mini_red_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/mini_tiled_mud.png b/public/textures/chipped/mini_tiled_mud.png deleted file mode 100644 index af1adecf..00000000 Binary files a/public/textures/chipped/mini_tiled_mud.png and /dev/null differ diff --git a/public/textures/chipped/mini_tiled_mud_bricks.png b/public/textures/chipped/mini_tiled_mud_bricks.png deleted file mode 100644 index b1228cb9..00000000 Binary files a/public/textures/chipped/mini_tiled_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/mini_tiled_packed_mud.png b/public/textures/chipped/mini_tiled_packed_mud.png deleted file mode 100644 index 690201c7..00000000 Binary files a/public/textures/chipped/mini_tiled_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/mini_warped_fungus.png b/public/textures/chipped/mini_warped_fungus.png deleted file mode 100644 index 7510123b..00000000 Binary files a/public/textures/chipped/mini_warped_fungus.png and /dev/null differ diff --git a/public/textures/chipped/minimized_black_glazed_terracotta.png b/public/textures/chipped/minimized_black_glazed_terracotta.png deleted file mode 100644 index 4a8d9544..00000000 Binary files a/public/textures/chipped/minimized_black_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_blue_glazed_terracotta.png b/public/textures/chipped/minimized_blue_glazed_terracotta.png deleted file mode 100644 index 013c2697..00000000 Binary files a/public/textures/chipped/minimized_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_brown_glazed_terracotta.png b/public/textures/chipped/minimized_brown_glazed_terracotta.png deleted file mode 100644 index 97e5727f..00000000 Binary files a/public/textures/chipped/minimized_brown_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_cyan_glazed_terracotta.png b/public/textures/chipped/minimized_cyan_glazed_terracotta.png deleted file mode 100644 index fb29ac9f..00000000 Binary files a/public/textures/chipped/minimized_cyan_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_gray_glazed_terracotta.png b/public/textures/chipped/minimized_gray_glazed_terracotta.png deleted file mode 100644 index b4827a09..00000000 Binary files a/public/textures/chipped/minimized_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_green_glazed_terracotta.png b/public/textures/chipped/minimized_green_glazed_terracotta.png deleted file mode 100644 index 3e67349d..00000000 Binary files a/public/textures/chipped/minimized_green_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_light_blue_glazed_terracotta.png b/public/textures/chipped/minimized_light_blue_glazed_terracotta.png deleted file mode 100644 index 6b967df5..00000000 Binary files a/public/textures/chipped/minimized_light_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_light_gray_glazed_terracotta.png b/public/textures/chipped/minimized_light_gray_glazed_terracotta.png deleted file mode 100644 index f5b11cfe..00000000 Binary files a/public/textures/chipped/minimized_light_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_lime_glazed_terracotta.png b/public/textures/chipped/minimized_lime_glazed_terracotta.png deleted file mode 100644 index 211efc16..00000000 Binary files a/public/textures/chipped/minimized_lime_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_magenta_glazed_terracotta.png b/public/textures/chipped/minimized_magenta_glazed_terracotta.png deleted file mode 100644 index 82632e57..00000000 Binary files a/public/textures/chipped/minimized_magenta_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_orange_glazed_terracotta.png b/public/textures/chipped/minimized_orange_glazed_terracotta.png deleted file mode 100644 index ae717fea..00000000 Binary files a/public/textures/chipped/minimized_orange_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_pink_glazed_terracotta.png b/public/textures/chipped/minimized_pink_glazed_terracotta.png deleted file mode 100644 index a0e430c0..00000000 Binary files a/public/textures/chipped/minimized_pink_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_purple_glazed_terracotta.png b/public/textures/chipped/minimized_purple_glazed_terracotta.png deleted file mode 100644 index 134166f9..00000000 Binary files a/public/textures/chipped/minimized_purple_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_red_glazed_terracotta.png b/public/textures/chipped/minimized_red_glazed_terracotta.png deleted file mode 100644 index 33be65c8..00000000 Binary files a/public/textures/chipped/minimized_red_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_white_glazed_terracotta.png b/public/textures/chipped/minimized_white_glazed_terracotta.png deleted file mode 100644 index 42bd8de2..00000000 Binary files a/public/textures/chipped/minimized_white_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/minimized_yellow_glazed_terracotta.png b/public/textures/chipped/minimized_yellow_glazed_terracotta.png deleted file mode 100644 index 7ab088bb..00000000 Binary files a/public/textures/chipped/minimized_yellow_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/mixed_acacia_log.png b/public/textures/chipped/mixed_acacia_log.png deleted file mode 100644 index 481db036..00000000 Binary files a/public/textures/chipped/mixed_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/mixed_birch_log.png b/public/textures/chipped/mixed_birch_log.png deleted file mode 100644 index b79b1e89..00000000 Binary files a/public/textures/chipped/mixed_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/mixed_cherry_log.png b/public/textures/chipped/mixed_cherry_log.png deleted file mode 100644 index 52ba4e57..00000000 Binary files a/public/textures/chipped/mixed_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/mixed_crimson_stem.png b/public/textures/chipped/mixed_crimson_stem.png deleted file mode 100644 index d3b5d737..00000000 Binary files a/public/textures/chipped/mixed_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/mixed_cubed_oak_bookshelf.png b/public/textures/chipped/mixed_cubed_oak_bookshelf.png deleted file mode 100644 index 11d29e4b..00000000 Binary files a/public/textures/chipped/mixed_cubed_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/mixed_dark_oak_log.png b/public/textures/chipped/mixed_dark_oak_log.png deleted file mode 100644 index ea500fe2..00000000 Binary files a/public/textures/chipped/mixed_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/mixed_jungle_log.png b/public/textures/chipped/mixed_jungle_log.png deleted file mode 100644 index 2ab8a915..00000000 Binary files a/public/textures/chipped/mixed_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/mixed_mangrove_log.png b/public/textures/chipped/mixed_mangrove_log.png deleted file mode 100644 index 3b0831db..00000000 Binary files a/public/textures/chipped/mixed_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/mixed_oak_bookshelf.png b/public/textures/chipped/mixed_oak_bookshelf.png deleted file mode 100644 index 83924843..00000000 Binary files a/public/textures/chipped/mixed_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/mixed_oak_large_bookshelf.png b/public/textures/chipped/mixed_oak_large_bookshelf.png deleted file mode 100644 index 9285a1ac..00000000 Binary files a/public/textures/chipped/mixed_oak_large_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/mixed_oak_log.png b/public/textures/chipped/mixed_oak_log.png deleted file mode 100644 index a0461acc..00000000 Binary files a/public/textures/chipped/mixed_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/mixed_spruce_log.png b/public/textures/chipped/mixed_spruce_log.png deleted file mode 100644 index 7a005224..00000000 Binary files a/public/textures/chipped/mixed_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_black_concrete.png b/public/textures/chipped/mosaic_black_concrete.png deleted file mode 100644 index 0ee5c99e..00000000 Binary files a/public/textures/chipped/mosaic_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_blue_concrete.png b/public/textures/chipped/mosaic_blue_concrete.png deleted file mode 100644 index 388c9e4e..00000000 Binary files a/public/textures/chipped/mosaic_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_brown_concrete.png b/public/textures/chipped/mosaic_brown_concrete.png deleted file mode 100644 index 75a27ad9..00000000 Binary files a/public/textures/chipped/mosaic_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_cyan_concrete.png b/public/textures/chipped/mosaic_cyan_concrete.png deleted file mode 100644 index 412dd72b..00000000 Binary files a/public/textures/chipped/mosaic_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_gray_concrete.png b/public/textures/chipped/mosaic_gray_concrete.png deleted file mode 100644 index eaf994d8..00000000 Binary files a/public/textures/chipped/mosaic_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_green_concrete.png b/public/textures/chipped/mosaic_green_concrete.png deleted file mode 100644 index 6212b3a2..00000000 Binary files a/public/textures/chipped/mosaic_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_light_blue_concrete.png b/public/textures/chipped/mosaic_light_blue_concrete.png deleted file mode 100644 index 678e8b60..00000000 Binary files a/public/textures/chipped/mosaic_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_light_gray_concrete.png b/public/textures/chipped/mosaic_light_gray_concrete.png deleted file mode 100644 index b9b7549f..00000000 Binary files a/public/textures/chipped/mosaic_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_lime_concrete.png b/public/textures/chipped/mosaic_lime_concrete.png deleted file mode 100644 index c2faed19..00000000 Binary files a/public/textures/chipped/mosaic_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_magenta_concrete.png b/public/textures/chipped/mosaic_magenta_concrete.png deleted file mode 100644 index 9ff7ff42..00000000 Binary files a/public/textures/chipped/mosaic_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_orange_concrete.png b/public/textures/chipped/mosaic_orange_concrete.png deleted file mode 100644 index aa50524b..00000000 Binary files a/public/textures/chipped/mosaic_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_pink_concrete.png b/public/textures/chipped/mosaic_pink_concrete.png deleted file mode 100644 index 21d15399..00000000 Binary files a/public/textures/chipped/mosaic_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_purple_concrete.png b/public/textures/chipped/mosaic_purple_concrete.png deleted file mode 100644 index f71f7b8e..00000000 Binary files a/public/textures/chipped/mosaic_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_red_concrete.png b/public/textures/chipped/mosaic_red_concrete.png deleted file mode 100644 index 8745b733..00000000 Binary files a/public/textures/chipped/mosaic_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_white_concrete.png b/public/textures/chipped/mosaic_white_concrete.png deleted file mode 100644 index 398b5ce6..00000000 Binary files a/public/textures/chipped/mosaic_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mosaic_yellow_concrete.png b/public/textures/chipped/mosaic_yellow_concrete.png deleted file mode 100644 index 81757a8b..00000000 Binary files a/public/textures/chipped/mosaic_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/mossy_cobblestone_bricks.png b/public/textures/chipped/mossy_cobblestone_bricks.png deleted file mode 100644 index e55a7eee..00000000 Binary files a/public/textures/chipped/mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/mossy_cobblestone_mini_tiles.png b/public/textures/chipped/mossy_cobblestone_mini_tiles.png deleted file mode 100644 index 60c7c1e0..00000000 Binary files a/public/textures/chipped/mossy_cobblestone_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/mossy_cobblestone_pillar.png b/public/textures/chipped/mossy_cobblestone_pillar.png deleted file mode 100644 index 7cd571e6..00000000 Binary files a/public/textures/chipped/mossy_cobblestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/mossy_cobblestone_pillar_top.png b/public/textures/chipped/mossy_cobblestone_pillar_top.png deleted file mode 100644 index ecdb59b9..00000000 Binary files a/public/textures/chipped/mossy_cobblestone_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/mossy_cobblestone_scales.png b/public/textures/chipped/mossy_cobblestone_scales.png deleted file mode 100644 index f61d966f..00000000 Binary files a/public/textures/chipped/mossy_cobblestone_scales.png and /dev/null differ diff --git a/public/textures/chipped/mossy_dried_kelp_block.png b/public/textures/chipped/mossy_dried_kelp_block.png deleted file mode 100644 index 1e7c2efc..00000000 Binary files a/public/textures/chipped/mossy_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/mossy_ladder.png b/public/textures/chipped/mossy_ladder.png deleted file mode 100644 index 7ef963d9..00000000 Binary files a/public/textures/chipped/mossy_ladder.png and /dev/null differ diff --git a/public/textures/chipped/mossy_stone_bricks_mini_tiles.png b/public/textures/chipped/mossy_stone_bricks_mini_tiles.png deleted file mode 100644 index 403ee7fa..00000000 Binary files a/public/textures/chipped/mossy_stone_bricks_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/mossy_stone_bricks_pillar.png b/public/textures/chipped/mossy_stone_bricks_pillar.png deleted file mode 100644 index 1ef6a92d..00000000 Binary files a/public/textures/chipped/mossy_stone_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/mossy_stone_bricks_pillar_top.png b/public/textures/chipped/mossy_stone_bricks_pillar_top.png deleted file mode 100644 index 7341ddd7..00000000 Binary files a/public/textures/chipped/mossy_stone_bricks_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/mossy_stone_bricks_scales.png b/public/textures/chipped/mossy_stone_bricks_scales.png deleted file mode 100644 index f0be178f..00000000 Binary files a/public/textures/chipped/mossy_stone_bricks_scales.png and /dev/null differ diff --git a/public/textures/chipped/mud_bricks.png b/public/textures/chipped/mud_bricks.png deleted file mode 100644 index bbeccc90..00000000 Binary files a/public/textures/chipped/mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/mud_bricks_bricks.png b/public/textures/chipped/mud_bricks_bricks.png deleted file mode 100644 index e3c5ab3b..00000000 Binary files a/public/textures/chipped/mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/mud_bricks_pillar.png b/public/textures/chipped/mud_bricks_pillar.png deleted file mode 100644 index e34ac6de..00000000 Binary files a/public/textures/chipped/mud_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/mud_bricks_pillar_top.png b/public/textures/chipped/mud_bricks_pillar_top.png deleted file mode 100644 index 8c0ad092..00000000 Binary files a/public/textures/chipped/mud_bricks_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/mud_bricks_scales.png b/public/textures/chipped/mud_bricks_scales.png deleted file mode 100644 index 47d5a72b..00000000 Binary files a/public/textures/chipped/mud_bricks_scales.png and /dev/null differ diff --git a/public/textures/chipped/mud_pillar.png b/public/textures/chipped/mud_pillar.png deleted file mode 100644 index 1126f221..00000000 Binary files a/public/textures/chipped/mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/mud_pillar_top.png b/public/textures/chipped/mud_pillar_top.png deleted file mode 100644 index 07b7a6fe..00000000 Binary files a/public/textures/chipped/mud_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/mud_scales.png b/public/textures/chipped/mud_scales.png deleted file mode 100644 index 944b891d..00000000 Binary files a/public/textures/chipped/mud_scales.png and /dev/null differ diff --git a/public/textures/chipped/muddy_mangrove_roots.png b/public/textures/chipped/muddy_mangrove_roots.png deleted file mode 100644 index 157c80ea..00000000 Binary files a/public/textures/chipped/muddy_mangrove_roots.png and /dev/null differ diff --git a/public/textures/chipped/multimeter.png b/public/textures/chipped/multimeter.png deleted file mode 100644 index a506d1b4..00000000 Binary files a/public/textures/chipped/multimeter.png and /dev/null differ diff --git a/public/textures/chipped/mushroom_barrel.png b/public/textures/chipped/mushroom_barrel.png deleted file mode 100644 index 31cc0422..00000000 Binary files a/public/textures/chipped/mushroom_barrel.png and /dev/null differ diff --git a/public/textures/chipped/nailed_acacia_log.png b/public/textures/chipped/nailed_acacia_log.png deleted file mode 100644 index 94c8160a..00000000 Binary files a/public/textures/chipped/nailed_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/nailed_acacia_planks.png b/public/textures/chipped/nailed_acacia_planks.png deleted file mode 100644 index bc31a91a..00000000 Binary files a/public/textures/chipped/nailed_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/nailed_birch_log.png b/public/textures/chipped/nailed_birch_log.png deleted file mode 100644 index afba9e48..00000000 Binary files a/public/textures/chipped/nailed_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/nailed_birch_planks.png b/public/textures/chipped/nailed_birch_planks.png deleted file mode 100644 index bec54d42..00000000 Binary files a/public/textures/chipped/nailed_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/nailed_cherry_log.png b/public/textures/chipped/nailed_cherry_log.png deleted file mode 100644 index 5cb56a20..00000000 Binary files a/public/textures/chipped/nailed_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/nailed_cherry_planks.png b/public/textures/chipped/nailed_cherry_planks.png deleted file mode 100644 index 69718d9a..00000000 Binary files a/public/textures/chipped/nailed_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/nailed_crimson_planks.png b/public/textures/chipped/nailed_crimson_planks.png deleted file mode 100644 index 99a899cc..00000000 Binary files a/public/textures/chipped/nailed_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/nailed_crimson_stem.png b/public/textures/chipped/nailed_crimson_stem.png deleted file mode 100644 index 8e75a86e..00000000 Binary files a/public/textures/chipped/nailed_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/nailed_dark_oak_log.png b/public/textures/chipped/nailed_dark_oak_log.png deleted file mode 100644 index 817d6a5f..00000000 Binary files a/public/textures/chipped/nailed_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/nailed_dark_oak_planks.png b/public/textures/chipped/nailed_dark_oak_planks.png deleted file mode 100644 index 5fff4791..00000000 Binary files a/public/textures/chipped/nailed_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/nailed_jungle_log.png b/public/textures/chipped/nailed_jungle_log.png deleted file mode 100644 index 8db8e00e..00000000 Binary files a/public/textures/chipped/nailed_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/nailed_jungle_planks.png b/public/textures/chipped/nailed_jungle_planks.png deleted file mode 100644 index 935bc1d3..00000000 Binary files a/public/textures/chipped/nailed_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/nailed_mangrove_log.png b/public/textures/chipped/nailed_mangrove_log.png deleted file mode 100644 index 2da807f3..00000000 Binary files a/public/textures/chipped/nailed_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/nailed_mangrove_planks.png b/public/textures/chipped/nailed_mangrove_planks.png deleted file mode 100644 index be1b4148..00000000 Binary files a/public/textures/chipped/nailed_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/nailed_oak_log.png b/public/textures/chipped/nailed_oak_log.png deleted file mode 100644 index 79822bb9..00000000 Binary files a/public/textures/chipped/nailed_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/nailed_oak_planks.png b/public/textures/chipped/nailed_oak_planks.png deleted file mode 100644 index 1afb5985..00000000 Binary files a/public/textures/chipped/nailed_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/nailed_spruce_log.png b/public/textures/chipped/nailed_spruce_log.png deleted file mode 100644 index 85521056..00000000 Binary files a/public/textures/chipped/nailed_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/nailed_spruce_planks.png b/public/textures/chipped/nailed_spruce_planks.png deleted file mode 100644 index 8dd5e4bd..00000000 Binary files a/public/textures/chipped/nailed_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/nailed_warped_planks.png b/public/textures/chipped/nailed_warped_planks.png deleted file mode 100644 index 2f92b319..00000000 Binary files a/public/textures/chipped/nailed_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/nailed_warped_stem.png b/public/textures/chipped/nailed_warped_stem.png deleted file mode 100644 index f4612e51..00000000 Binary files a/public/textures/chipped/nailed_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/natural_acacia_planks.png b/public/textures/chipped/natural_acacia_planks.png deleted file mode 100644 index 2063d5ec..00000000 Binary files a/public/textures/chipped/natural_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/natural_bamboo_planks.png b/public/textures/chipped/natural_bamboo_planks.png deleted file mode 100644 index 9d41d8e6..00000000 Binary files a/public/textures/chipped/natural_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/natural_birch_planks.png b/public/textures/chipped/natural_birch_planks.png deleted file mode 100644 index f19d710a..00000000 Binary files a/public/textures/chipped/natural_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/natural_cherry_planks.png b/public/textures/chipped/natural_cherry_planks.png deleted file mode 100644 index be2c54e9..00000000 Binary files a/public/textures/chipped/natural_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/natural_crimson_planks.png b/public/textures/chipped/natural_crimson_planks.png deleted file mode 100644 index 9679d7ba..00000000 Binary files a/public/textures/chipped/natural_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/natural_dark_oak_planks.png b/public/textures/chipped/natural_dark_oak_planks.png deleted file mode 100644 index 56122f1c..00000000 Binary files a/public/textures/chipped/natural_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/natural_jungle_planks.png b/public/textures/chipped/natural_jungle_planks.png deleted file mode 100644 index 3b07b089..00000000 Binary files a/public/textures/chipped/natural_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/natural_mangrove_planks.png b/public/textures/chipped/natural_mangrove_planks.png deleted file mode 100644 index 6c72b042..00000000 Binary files a/public/textures/chipped/natural_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/natural_oak_planks.png b/public/textures/chipped/natural_oak_planks.png deleted file mode 100644 index 2db0e471..00000000 Binary files a/public/textures/chipped/natural_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/natural_spruce_planks.png b/public/textures/chipped/natural_spruce_planks.png deleted file mode 100644 index 79495316..00000000 Binary files a/public/textures/chipped/natural_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/natural_warped_planks.png b/public/textures/chipped/natural_warped_planks.png deleted file mode 100644 index e9e81199..00000000 Binary files a/public/textures/chipped/natural_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/needles.png b/public/textures/chipped/needles.png deleted file mode 100644 index 9449adc8..00000000 Binary files a/public/textures/chipped/needles.png and /dev/null differ diff --git a/public/textures/chipped/nether_bricks_bricks.png b/public/textures/chipped/nether_bricks_bricks.png deleted file mode 100644 index eadc7fb2..00000000 Binary files a/public/textures/chipped/nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/nether_bricks_mini_tiles.png b/public/textures/chipped/nether_bricks_mini_tiles.png deleted file mode 100644 index 812de080..00000000 Binary files a/public/textures/chipped/nether_bricks_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/nether_bricks_pillar.png b/public/textures/chipped/nether_bricks_pillar.png deleted file mode 100644 index bf3bfc3c..00000000 Binary files a/public/textures/chipped/nether_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/nether_bricks_pillar_top.png b/public/textures/chipped/nether_bricks_pillar_top.png deleted file mode 100644 index e67cfa1a..00000000 Binary files a/public/textures/chipped/nether_bricks_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/nether_bricks_scales.png b/public/textures/chipped/nether_bricks_scales.png deleted file mode 100644 index 7ad66e17..00000000 Binary files a/public/textures/chipped/nether_bricks_scales.png and /dev/null differ diff --git a/public/textures/chipped/nether_carved_pumpkin.png b/public/textures/chipped/nether_carved_pumpkin.png deleted file mode 100644 index 964b6c39..00000000 Binary files a/public/textures/chipped/nether_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/nether_engraved_glowstone.png b/public/textures/chipped/nether_engraved_glowstone.png deleted file mode 100644 index ade56e3b..00000000 Binary files a/public/textures/chipped/nether_engraved_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/nether_jack_o_lantern.png b/public/textures/chipped/nether_jack_o_lantern.png deleted file mode 100644 index bcd91fb1..00000000 Binary files a/public/textures/chipped/nether_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/nether_pumpkin.png b/public/textures/chipped/nether_pumpkin.png deleted file mode 100644 index 120d9731..00000000 Binary files a/public/textures/chipped/nether_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/nether_sprouts_weeds.png b/public/textures/chipped/nether_sprouts_weeds.png deleted file mode 100644 index 6b878345..00000000 Binary files a/public/textures/chipped/nether_sprouts_weeds.png and /dev/null differ diff --git a/public/textures/chipped/nether_vine.png b/public/textures/chipped/nether_vine.png deleted file mode 100644 index 6068cfcb..00000000 Binary files a/public/textures/chipped/nether_vine.png and /dev/null differ diff --git a/public/textures/chipped/netherite_block_panels.png b/public/textures/chipped/netherite_block_panels.png deleted file mode 100644 index 37a6505b..00000000 Binary files a/public/textures/chipped/netherite_block_panels.png and /dev/null differ diff --git a/public/textures/chipped/netherite_safe.png b/public/textures/chipped/netherite_safe.png deleted file mode 100644 index e04c4916..00000000 Binary files a/public/textures/chipped/netherite_safe.png and /dev/null differ diff --git a/public/textures/chipped/netherrack_bricks.png b/public/textures/chipped/netherrack_bricks.png deleted file mode 100644 index 47d07f87..00000000 Binary files a/public/textures/chipped/netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/netherrack_mini_tiles.png b/public/textures/chipped/netherrack_mini_tiles.png deleted file mode 100644 index a95cb324..00000000 Binary files a/public/textures/chipped/netherrack_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/netherrack_pillar.png b/public/textures/chipped/netherrack_pillar.png deleted file mode 100644 index 1ee91ffa..00000000 Binary files a/public/textures/chipped/netherrack_pillar.png and /dev/null differ diff --git a/public/textures/chipped/netherrack_pillar_top.png b/public/textures/chipped/netherrack_pillar_top.png deleted file mode 100644 index 478a12b1..00000000 Binary files a/public/textures/chipped/netherrack_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/netherrack_pointed_dripstone.png b/public/textures/chipped/netherrack_pointed_dripstone.png deleted file mode 100644 index 00caf817..00000000 Binary files a/public/textures/chipped/netherrack_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/netherrack_scales.png b/public/textures/chipped/netherrack_scales.png deleted file mode 100644 index 08dc512f..00000000 Binary files a/public/textures/chipped/netherrack_scales.png and /dev/null differ diff --git a/public/textures/chipped/netherwart_dried_kelp_block.png b/public/textures/chipped/netherwart_dried_kelp_block.png deleted file mode 100644 index a6f1c987..00000000 Binary files a/public/textures/chipped/netherwart_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/nice_redstone_lamp.png b/public/textures/chipped/nice_redstone_lamp.png deleted file mode 100644 index dbe5ec6d..00000000 Binary files a/public/textures/chipped/nice_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/nice_white_redstone_lamp.png b/public/textures/chipped/nice_white_redstone_lamp.png deleted file mode 100644 index b5a8f299..00000000 Binary files a/public/textures/chipped/nice_white_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/oak_bared_glass.png b/public/textures/chipped/oak_bared_glass.png deleted file mode 100644 index 563652ec..00000000 Binary files a/public/textures/chipped/oak_bared_glass.png and /dev/null differ diff --git a/public/textures/chipped/oak_bared_glass_pane.png b/public/textures/chipped/oak_bared_glass_pane.png deleted file mode 100644 index 5d56cca3..00000000 Binary files a/public/textures/chipped/oak_bared_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/oak_barrel.png b/public/textures/chipped/oak_barrel.png deleted file mode 100644 index 0ef79439..00000000 Binary files a/public/textures/chipped/oak_barrel.png and /dev/null differ diff --git a/public/textures/chipped/oak_bookshelf.png b/public/textures/chipped/oak_bookshelf.png deleted file mode 100644 index 7f7ffc1b..00000000 Binary files a/public/textures/chipped/oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/oak_bordered_glass.png b/public/textures/chipped/oak_bordered_glass.png deleted file mode 100644 index 4d5ac788..00000000 Binary files a/public/textures/chipped/oak_bordered_glass.png and /dev/null differ diff --git a/public/textures/chipped/oak_bordered_glass_pane.png b/public/textures/chipped/oak_bordered_glass_pane.png deleted file mode 100644 index e01226e7..00000000 Binary files a/public/textures/chipped/oak_bordered_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/oak_crate.png b/public/textures/chipped/oak_crate.png deleted file mode 100644 index bb40ed59..00000000 Binary files a/public/textures/chipped/oak_crate.png and /dev/null differ diff --git a/public/textures/chipped/oak_diamond_bordered_glass.png b/public/textures/chipped/oak_diamond_bordered_glass.png deleted file mode 100644 index c2bc4533..00000000 Binary files a/public/textures/chipped/oak_diamond_bordered_glass.png and /dev/null differ diff --git a/public/textures/chipped/oak_diamond_bordered_glass_pane.png b/public/textures/chipped/oak_diamond_bordered_glass_pane.png deleted file mode 100644 index 664b9301..00000000 Binary files a/public/textures/chipped/oak_diamond_bordered_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/oak_empty_bookshelf.png b/public/textures/chipped/oak_empty_bookshelf.png deleted file mode 100644 index c671887b..00000000 Binary files a/public/textures/chipped/oak_empty_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/oak_horizontal_lined_glass.png b/public/textures/chipped/oak_horizontal_lined_glass.png deleted file mode 100644 index 3b650f5e..00000000 Binary files a/public/textures/chipped/oak_horizontal_lined_glass.png and /dev/null differ diff --git a/public/textures/chipped/oak_horizontal_lined_glass_pane.png b/public/textures/chipped/oak_horizontal_lined_glass_pane.png deleted file mode 100644 index 7b3ce35a..00000000 Binary files a/public/textures/chipped/oak_horizontal_lined_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/oak_large_bookshelf.png b/public/textures/chipped/oak_large_bookshelf.png deleted file mode 100644 index 71ba6b5e..00000000 Binary files a/public/textures/chipped/oak_large_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/oak_large_diamond_glass.png b/public/textures/chipped/oak_large_diamond_glass.png deleted file mode 100644 index 2e922560..00000000 Binary files a/public/textures/chipped/oak_large_diamond_glass.png and /dev/null differ diff --git a/public/textures/chipped/oak_large_diamond_glass_pane.png b/public/textures/chipped/oak_large_diamond_glass_pane.png deleted file mode 100644 index 2b536cfa..00000000 Binary files a/public/textures/chipped/oak_large_diamond_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/oak_lighted_bookshelf.png b/public/textures/chipped/oak_lighted_bookshelf.png deleted file mode 100644 index 05be8304..00000000 Binary files a/public/textures/chipped/oak_lighted_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/oak_lighted_large_bookshelf.png b/public/textures/chipped/oak_lighted_large_bookshelf.png deleted file mode 100644 index 371003e9..00000000 Binary files a/public/textures/chipped/oak_lighted_large_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/oak_line_bared_glass.png b/public/textures/chipped/oak_line_bared_glass.png deleted file mode 100644 index d9950224..00000000 Binary files a/public/textures/chipped/oak_line_bared_glass.png and /dev/null differ diff --git a/public/textures/chipped/oak_line_bared_glass_pane.png b/public/textures/chipped/oak_line_bared_glass_pane.png deleted file mode 100644 index 67dcfd63..00000000 Binary files a/public/textures/chipped/oak_line_bared_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/oak_ornate_bared_glass.png b/public/textures/chipped/oak_ornate_bared_glass.png deleted file mode 100644 index 51a67077..00000000 Binary files a/public/textures/chipped/oak_ornate_bared_glass.png and /dev/null differ diff --git a/public/textures/chipped/oak_ornate_bared_glass_pane.png b/public/textures/chipped/oak_ornate_bared_glass_pane.png deleted file mode 100644 index c7d1363b..00000000 Binary files a/public/textures/chipped/oak_ornate_bared_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/oak_planks_mosaic.png b/public/textures/chipped/oak_planks_mosaic.png deleted file mode 100644 index 51fc6473..00000000 Binary files a/public/textures/chipped/oak_planks_mosaic.png and /dev/null differ diff --git a/public/textures/chipped/oak_planks_panel.png b/public/textures/chipped/oak_planks_panel.png deleted file mode 100644 index 6b72ad30..00000000 Binary files a/public/textures/chipped/oak_planks_panel.png and /dev/null differ diff --git a/public/textures/chipped/oak_planks_shavings.png b/public/textures/chipped/oak_planks_shavings.png deleted file mode 100644 index d5f58370..00000000 Binary files a/public/textures/chipped/oak_planks_shavings.png and /dev/null differ diff --git a/public/textures/chipped/oak_snowflake_glass.png b/public/textures/chipped/oak_snowflake_glass.png deleted file mode 100644 index 318c48d8..00000000 Binary files a/public/textures/chipped/oak_snowflake_glass.png and /dev/null differ diff --git a/public/textures/chipped/oak_snowflake_glass_pane.png b/public/textures/chipped/oak_snowflake_glass_pane.png deleted file mode 100644 index 4b44be1a..00000000 Binary files a/public/textures/chipped/oak_snowflake_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/oak_spaced_bookshelf.png b/public/textures/chipped/oak_spaced_bookshelf.png deleted file mode 100644 index cf71530c..00000000 Binary files a/public/textures/chipped/oak_spaced_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/oak_spaced_large_bookshelf.png b/public/textures/chipped/oak_spaced_large_bookshelf.png deleted file mode 100644 index f0044b11..00000000 Binary files a/public/textures/chipped/oak_spaced_large_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/oak_webbed_bookshelf.png b/public/textures/chipped/oak_webbed_bookshelf.png deleted file mode 100644 index 39158126..00000000 Binary files a/public/textures/chipped/oak_webbed_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/oak_webbed_large_bookshelf.png b/public/textures/chipped/oak_webbed_large_bookshelf.png deleted file mode 100644 index 942d16e2..00000000 Binary files a/public/textures/chipped/oak_webbed_large_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/oak_woven_glass.png b/public/textures/chipped/oak_woven_glass.png deleted file mode 100644 index 63095561..00000000 Binary files a/public/textures/chipped/oak_woven_glass.png and /dev/null differ diff --git a/public/textures/chipped/oak_woven_glass_pane.png b/public/textures/chipped/oak_woven_glass_pane.png deleted file mode 100644 index 597b07f8..00000000 Binary files a/public/textures/chipped/oak_woven_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/obsidian_bricks.png b/public/textures/chipped/obsidian_bricks.png deleted file mode 100644 index bec801b3..00000000 Binary files a/public/textures/chipped/obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/obsidian_mini_tiles.png b/public/textures/chipped/obsidian_mini_tiles.png deleted file mode 100644 index 60085ffe..00000000 Binary files a/public/textures/chipped/obsidian_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/obsidian_pillar.png b/public/textures/chipped/obsidian_pillar.png deleted file mode 100644 index c18d634a..00000000 Binary files a/public/textures/chipped/obsidian_pillar.png and /dev/null differ diff --git a/public/textures/chipped/obsidian_pillar_top.png b/public/textures/chipped/obsidian_pillar_top.png deleted file mode 100644 index 74279408..00000000 Binary files a/public/textures/chipped/obsidian_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/obsidian_scales.png b/public/textures/chipped/obsidian_scales.png deleted file mode 100644 index 9c525409..00000000 Binary files a/public/textures/chipped/obsidian_scales.png and /dev/null differ diff --git a/public/textures/chipped/offset_amethyst_block_bricks.png b/public/textures/chipped/offset_amethyst_block_bricks.png deleted file mode 100644 index 5b58388e..00000000 Binary files a/public/textures/chipped/offset_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_ancient_debris_bricks.png b/public/textures/chipped/offset_ancient_debris_bricks.png deleted file mode 100644 index 5b19b19f..00000000 Binary files a/public/textures/chipped/offset_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_andesite_bricks.png b/public/textures/chipped/offset_andesite_bricks.png deleted file mode 100644 index 110b6041..00000000 Binary files a/public/textures/chipped/offset_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_basalt_bricks.png b/public/textures/chipped/offset_basalt_bricks.png deleted file mode 100644 index ca2cbb05..00000000 Binary files a/public/textures/chipped/offset_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_blackstone_bricks.png b/public/textures/chipped/offset_blackstone_bricks.png deleted file mode 100644 index c1f3af84..00000000 Binary files a/public/textures/chipped/offset_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_blue_ice_bricks.png b/public/textures/chipped/offset_blue_ice_bricks.png deleted file mode 100644 index 8eeeeab2..00000000 Binary files a/public/textures/chipped/offset_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_borderless_bricks_bricks.png b/public/textures/chipped/offset_borderless_bricks_bricks.png deleted file mode 100644 index 0df8f2bd..00000000 Binary files a/public/textures/chipped/offset_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_bricks_bricks.png b/public/textures/chipped/offset_bricks_bricks.png deleted file mode 100644 index 2a0acfed..00000000 Binary files a/public/textures/chipped/offset_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_calcite_bricks.png b/public/textures/chipped/offset_calcite_bricks.png deleted file mode 100644 index fbb78e75..00000000 Binary files a/public/textures/chipped/offset_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_clay_bricks.png b/public/textures/chipped/offset_clay_bricks.png deleted file mode 100644 index 896e35bd..00000000 Binary files a/public/textures/chipped/offset_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_coal_block_bricks.png b/public/textures/chipped/offset_coal_block_bricks.png deleted file mode 100644 index 7cc7387e..00000000 Binary files a/public/textures/chipped/offset_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_cobblestone_bricks.png b/public/textures/chipped/offset_cobblestone_bricks.png deleted file mode 100644 index bc663dcb..00000000 Binary files a/public/textures/chipped/offset_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_crying_obsidian_bricks.png b/public/textures/chipped/offset_crying_obsidian_bricks.png deleted file mode 100644 index 440ad6be..00000000 Binary files a/public/textures/chipped/offset_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_dark_prismarine_bricks.png b/public/textures/chipped/offset_dark_prismarine_bricks.png deleted file mode 100644 index 541ba2cf..00000000 Binary files a/public/textures/chipped/offset_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_diorite_bricks.png b/public/textures/chipped/offset_diorite_bricks.png deleted file mode 100644 index 7d544c4f..00000000 Binary files a/public/textures/chipped/offset_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_dirt_bricks.png b/public/textures/chipped/offset_dirt_bricks.png deleted file mode 100644 index f8bd272e..00000000 Binary files a/public/textures/chipped/offset_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_dripstone_block_bricks.png b/public/textures/chipped/offset_dripstone_block_bricks.png deleted file mode 100644 index 5b99cb21..00000000 Binary files a/public/textures/chipped/offset_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_end_stone_bricks.png b/public/textures/chipped/offset_end_stone_bricks.png deleted file mode 100644 index f98d3afa..00000000 Binary files a/public/textures/chipped/offset_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_gilded_blackstone_bricks.png b/public/textures/chipped/offset_gilded_blackstone_bricks.png deleted file mode 100644 index 8a5ec43c..00000000 Binary files a/public/textures/chipped/offset_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_granite_bricks.png b/public/textures/chipped/offset_granite_bricks.png deleted file mode 100644 index 7ed72c67..00000000 Binary files a/public/textures/chipped/offset_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_ice_bricks.png b/public/textures/chipped/offset_ice_bricks.png deleted file mode 100644 index a8a63f38..00000000 Binary files a/public/textures/chipped/offset_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_lapis_block_bricks.png b/public/textures/chipped/offset_lapis_block_bricks.png deleted file mode 100644 index c1a3af43..00000000 Binary files a/public/textures/chipped/offset_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_lodestone_bricks.png b/public/textures/chipped/offset_lodestone_bricks.png deleted file mode 100644 index c510fdba..00000000 Binary files a/public/textures/chipped/offset_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_magma_block_bricks.png b/public/textures/chipped/offset_magma_block_bricks.png deleted file mode 100644 index ce07fb06..00000000 Binary files a/public/textures/chipped/offset_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_mossy_cobblestone_bricks.png b/public/textures/chipped/offset_mossy_cobblestone_bricks.png deleted file mode 100644 index 4e79c647..00000000 Binary files a/public/textures/chipped/offset_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_mossy_stone_bricks_bricks.png b/public/textures/chipped/offset_mossy_stone_bricks_bricks.png deleted file mode 100644 index 3997bf68..00000000 Binary files a/public/textures/chipped/offset_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_mud_bricks.png b/public/textures/chipped/offset_mud_bricks.png deleted file mode 100644 index da98be6c..00000000 Binary files a/public/textures/chipped/offset_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_mud_bricks_bricks.png b/public/textures/chipped/offset_mud_bricks_bricks.png deleted file mode 100644 index f5bd53a7..00000000 Binary files a/public/textures/chipped/offset_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_nether_bricks_bricks.png b/public/textures/chipped/offset_nether_bricks_bricks.png deleted file mode 100644 index bd0202e4..00000000 Binary files a/public/textures/chipped/offset_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_netherrack_bricks.png b/public/textures/chipped/offset_netherrack_bricks.png deleted file mode 100644 index 8c3c7477..00000000 Binary files a/public/textures/chipped/offset_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_obsidian_bricks.png b/public/textures/chipped/offset_obsidian_bricks.png deleted file mode 100644 index c7a749c8..00000000 Binary files a/public/textures/chipped/offset_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_packed_ice_bricks.png b/public/textures/chipped/offset_packed_ice_bricks.png deleted file mode 100644 index cfd010e5..00000000 Binary files a/public/textures/chipped/offset_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_packed_mud_bricks.png b/public/textures/chipped/offset_packed_mud_bricks.png deleted file mode 100644 index 2912901f..00000000 Binary files a/public/textures/chipped/offset_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_prismarine_bricks.png b/public/textures/chipped/offset_prismarine_bricks.png deleted file mode 100644 index b355e3dc..00000000 Binary files a/public/textures/chipped/offset_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_purpur_block_bricks.png b/public/textures/chipped/offset_purpur_block_bricks.png deleted file mode 100644 index 0c8ebc97..00000000 Binary files a/public/textures/chipped/offset_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_raw_copper_block_bricks.png b/public/textures/chipped/offset_raw_copper_block_bricks.png deleted file mode 100644 index dcbeeff8..00000000 Binary files a/public/textures/chipped/offset_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_raw_gold_block_bricks.png b/public/textures/chipped/offset_raw_gold_block_bricks.png deleted file mode 100644 index 04db8354..00000000 Binary files a/public/textures/chipped/offset_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_raw_iron_block_bricks.png b/public/textures/chipped/offset_raw_iron_block_bricks.png deleted file mode 100644 index 3022eec0..00000000 Binary files a/public/textures/chipped/offset_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_red_nether_bricks_bricks.png b/public/textures/chipped/offset_red_nether_bricks_bricks.png deleted file mode 100644 index b81f51ea..00000000 Binary files a/public/textures/chipped/offset_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_red_sandstone_bricks.png b/public/textures/chipped/offset_red_sandstone_bricks.png deleted file mode 100644 index d96bdeef..00000000 Binary files a/public/textures/chipped/offset_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_redstone_block_bricks.png b/public/textures/chipped/offset_redstone_block_bricks.png deleted file mode 100644 index fc0041f6..00000000 Binary files a/public/textures/chipped/offset_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_sandstone_bricks.png b/public/textures/chipped/offset_sandstone_bricks.png deleted file mode 100644 index fd8aaa48..00000000 Binary files a/public/textures/chipped/offset_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_smooth_stone_bricks.png b/public/textures/chipped/offset_smooth_stone_bricks.png deleted file mode 100644 index b489661e..00000000 Binary files a/public/textures/chipped/offset_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_snow_block_bricks.png b/public/textures/chipped/offset_snow_block_bricks.png deleted file mode 100644 index 5bc680ca..00000000 Binary files a/public/textures/chipped/offset_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_stone_bricks.png b/public/textures/chipped/offset_stone_bricks.png deleted file mode 100644 index 0b918a5e..00000000 Binary files a/public/textures/chipped/offset_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/offset_tuff_bricks.png b/public/textures/chipped/offset_tuff_bricks.png deleted file mode 100644 index efe64b73..00000000 Binary files a/public/textures/chipped/offset_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/old_moss_block.png b/public/textures/chipped/old_moss_block.png deleted file mode 100644 index 9db2401e..00000000 Binary files a/public/textures/chipped/old_moss_block.png and /dev/null differ diff --git a/public/textures/chipped/old_mushroom_stem.png b/public/textures/chipped/old_mushroom_stem.png deleted file mode 100644 index 6127e63a..00000000 Binary files a/public/textures/chipped/old_mushroom_stem.png and /dev/null differ diff --git a/public/textures/chipped/old_sponge.png b/public/textures/chipped/old_sponge.png deleted file mode 100644 index 43e6039b..00000000 Binary files a/public/textures/chipped/old_sponge.png and /dev/null differ diff --git a/public/textures/chipped/orange_acacia_leaves.png b/public/textures/chipped/orange_acacia_leaves.png deleted file mode 100644 index 1bbf2873..00000000 Binary files a/public/textures/chipped/orange_acacia_leaves.png and /dev/null differ diff --git a/public/textures/chipped/orange_birch_leaves.png b/public/textures/chipped/orange_birch_leaves.png deleted file mode 100644 index c1a8a9ec..00000000 Binary files a/public/textures/chipped/orange_birch_leaves.png and /dev/null differ diff --git a/public/textures/chipped/orange_concrete_bricks.png b/public/textures/chipped/orange_concrete_bricks.png deleted file mode 100644 index 358d346a..00000000 Binary files a/public/textures/chipped/orange_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/orange_concrete_panel.png b/public/textures/chipped/orange_concrete_panel.png deleted file mode 100644 index 14d6495d..00000000 Binary files a/public/textures/chipped/orange_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/orange_concrete_pillar.png b/public/textures/chipped/orange_concrete_pillar.png deleted file mode 100644 index 7e8bc414..00000000 Binary files a/public/textures/chipped/orange_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/orange_concrete_tiles.png b/public/textures/chipped/orange_concrete_tiles.png deleted file mode 100644 index 9ad77a40..00000000 Binary files a/public/textures/chipped/orange_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/orange_dark_oak_leaves.png b/public/textures/chipped/orange_dark_oak_leaves.png deleted file mode 100644 index 8c874a30..00000000 Binary files a/public/textures/chipped/orange_dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/orange_glazed_terracotta_pillar_sides.png b/public/textures/chipped/orange_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 8ced455a..00000000 Binary files a/public/textures/chipped/orange_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/orange_glazed_terracotta_pillar_top.png b/public/textures/chipped/orange_glazed_terracotta_pillar_top.png deleted file mode 100644 index e01e38e6..00000000 Binary files a/public/textures/chipped/orange_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/orange_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/orange_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index 753acd0b..00000000 Binary files a/public/textures/chipped/orange_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/orange_glazed_terracotta_tiles.png b/public/textures/chipped/orange_glazed_terracotta_tiles.png deleted file mode 100644 index 6b7f6ddb..00000000 Binary files a/public/textures/chipped/orange_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/orange_gravel.png b/public/textures/chipped/orange_gravel.png deleted file mode 100644 index cb41b76c..00000000 Binary files a/public/textures/chipped/orange_gravel.png and /dev/null differ diff --git a/public/textures/chipped/orange_jungle_leaves.png b/public/textures/chipped/orange_jungle_leaves.png deleted file mode 100644 index e0b9032d..00000000 Binary files a/public/textures/chipped/orange_jungle_leaves.png and /dev/null differ diff --git a/public/textures/chipped/orange_oak_leaves.png b/public/textures/chipped/orange_oak_leaves.png deleted file mode 100644 index 8c874a30..00000000 Binary files a/public/textures/chipped/orange_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/orange_paper_soul_lantern.png b/public/textures/chipped/orange_paper_soul_lantern.png deleted file mode 100644 index e442d182..00000000 Binary files a/public/textures/chipped/orange_paper_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/orange_spruce_leaves.png b/public/textures/chipped/orange_spruce_leaves.png deleted file mode 100644 index 6da122e8..00000000 Binary files a/public/textures/chipped/orange_spruce_leaves.png and /dev/null differ diff --git a/public/textures/chipped/orange_terracotta_bricks.png b/public/textures/chipped/orange_terracotta_bricks.png deleted file mode 100644 index 627014fa..00000000 Binary files a/public/textures/chipped/orange_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/orange_terracotta_column.png b/public/textures/chipped/orange_terracotta_column.png deleted file mode 100644 index a28e4498..00000000 Binary files a/public/textures/chipped/orange_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/orange_terracotta_pillar.png b/public/textures/chipped/orange_terracotta_pillar.png deleted file mode 100644 index 7fe7c80d..00000000 Binary files a/public/textures/chipped/orange_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/orange_terracotta_tile.png b/public/textures/chipped/orange_terracotta_tile.png deleted file mode 100644 index 1b58314e..00000000 Binary files a/public/textures/chipped/orange_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/orange_terracotta_tiles.png b/public/textures/chipped/orange_terracotta_tiles.png deleted file mode 100644 index fb23888f..00000000 Binary files a/public/textures/chipped/orange_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/ornate_amethyst_block_pillar.png b/public/textures/chipped/ornate_amethyst_block_pillar.png deleted file mode 100644 index 517cb863..00000000 Binary files a/public/textures/chipped/ornate_amethyst_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_ancient_debris_pillar.png b/public/textures/chipped/ornate_ancient_debris_pillar.png deleted file mode 100644 index d2ba6bcf..00000000 Binary files a/public/textures/chipped/ornate_ancient_debris_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_andesite_pillar.png b/public/textures/chipped/ornate_andesite_pillar.png deleted file mode 100644 index d70ef5cd..00000000 Binary files a/public/textures/chipped/ornate_andesite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_basalt_pillar.png b/public/textures/chipped/ornate_basalt_pillar.png deleted file mode 100644 index 679ff69b..00000000 Binary files a/public/textures/chipped/ornate_basalt_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_black_stained_glass.png b/public/textures/chipped/ornate_black_stained_glass.png deleted file mode 100644 index d7f27493..00000000 Binary files a/public/textures/chipped/ornate_black_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_black_stained_glass_pane.png b/public/textures/chipped/ornate_black_stained_glass_pane.png deleted file mode 100644 index cb12d888..00000000 Binary files a/public/textures/chipped/ornate_black_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_blackstone_pillar.png b/public/textures/chipped/ornate_blackstone_pillar.png deleted file mode 100644 index 334b3e6c..00000000 Binary files a/public/textures/chipped/ornate_blackstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_blue_ice_pillar.png b/public/textures/chipped/ornate_blue_ice_pillar.png deleted file mode 100644 index eeda0ed3..00000000 Binary files a/public/textures/chipped/ornate_blue_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_blue_stained_glass.png b/public/textures/chipped/ornate_blue_stained_glass.png deleted file mode 100644 index 5a1c85d9..00000000 Binary files a/public/textures/chipped/ornate_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_blue_stained_glass_pane.png b/public/textures/chipped/ornate_blue_stained_glass_pane.png deleted file mode 100644 index a24a2117..00000000 Binary files a/public/textures/chipped/ornate_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_borderless_bricks_pillar.png b/public/textures/chipped/ornate_borderless_bricks_pillar.png deleted file mode 100644 index b4d8b23c..00000000 Binary files a/public/textures/chipped/ornate_borderless_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_bricks_pillar.png b/public/textures/chipped/ornate_bricks_pillar.png deleted file mode 100644 index 2f175412..00000000 Binary files a/public/textures/chipped/ornate_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_brown_stained_glass.png b/public/textures/chipped/ornate_brown_stained_glass.png deleted file mode 100644 index 86fad39c..00000000 Binary files a/public/textures/chipped/ornate_brown_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_brown_stained_glass_pane.png b/public/textures/chipped/ornate_brown_stained_glass_pane.png deleted file mode 100644 index b4c5e5e9..00000000 Binary files a/public/textures/chipped/ornate_brown_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_calcite_pillar.png b/public/textures/chipped/ornate_calcite_pillar.png deleted file mode 100644 index a559e739..00000000 Binary files a/public/textures/chipped/ornate_calcite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_clay_pillar.png b/public/textures/chipped/ornate_clay_pillar.png deleted file mode 100644 index 90c6a484..00000000 Binary files a/public/textures/chipped/ornate_clay_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_coal_block_pillar.png b/public/textures/chipped/ornate_coal_block_pillar.png deleted file mode 100644 index 98acd553..00000000 Binary files a/public/textures/chipped/ornate_coal_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_cobblestone_pillar.png b/public/textures/chipped/ornate_cobblestone_pillar.png deleted file mode 100644 index 64b74ed0..00000000 Binary files a/public/textures/chipped/ornate_cobblestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_crying_obsidian_pillar.png b/public/textures/chipped/ornate_crying_obsidian_pillar.png deleted file mode 100644 index b9e2c8da..00000000 Binary files a/public/textures/chipped/ornate_crying_obsidian_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_cyan_stained_glass.png b/public/textures/chipped/ornate_cyan_stained_glass.png deleted file mode 100644 index 791d15dd..00000000 Binary files a/public/textures/chipped/ornate_cyan_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_cyan_stained_glass_pane.png b/public/textures/chipped/ornate_cyan_stained_glass_pane.png deleted file mode 100644 index b4c46da0..00000000 Binary files a/public/textures/chipped/ornate_cyan_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_dark_prismarine_pillar.png b/public/textures/chipped/ornate_dark_prismarine_pillar.png deleted file mode 100644 index 7c56ce02..00000000 Binary files a/public/textures/chipped/ornate_dark_prismarine_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_deepslate_pillar.png b/public/textures/chipped/ornate_deepslate_pillar.png deleted file mode 100644 index 04895d43..00000000 Binary files a/public/textures/chipped/ornate_deepslate_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_diorite_pillar.png b/public/textures/chipped/ornate_diorite_pillar.png deleted file mode 100644 index 0fead931..00000000 Binary files a/public/textures/chipped/ornate_diorite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_dirt_pillar.png b/public/textures/chipped/ornate_dirt_pillar.png deleted file mode 100644 index 06c0541b..00000000 Binary files a/public/textures/chipped/ornate_dirt_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_dripstone_block_pillar.png b/public/textures/chipped/ornate_dripstone_block_pillar.png deleted file mode 100644 index 73cf4e87..00000000 Binary files a/public/textures/chipped/ornate_dripstone_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_end_stone_pillar.png b/public/textures/chipped/ornate_end_stone_pillar.png deleted file mode 100644 index 3a48748e..00000000 Binary files a/public/textures/chipped/ornate_end_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_gilded_blackstone_pillar.png b/public/textures/chipped/ornate_gilded_blackstone_pillar.png deleted file mode 100644 index f0b60e30..00000000 Binary files a/public/textures/chipped/ornate_gilded_blackstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_glowstone_lantern.png b/public/textures/chipped/ornate_glowstone_lantern.png deleted file mode 100644 index 03ef21ab..00000000 Binary files a/public/textures/chipped/ornate_glowstone_lantern.png and /dev/null differ diff --git a/public/textures/chipped/ornate_granite_pillar.png b/public/textures/chipped/ornate_granite_pillar.png deleted file mode 100644 index 833eada5..00000000 Binary files a/public/textures/chipped/ornate_granite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_gray_stained_glass.png b/public/textures/chipped/ornate_gray_stained_glass.png deleted file mode 100644 index e5fcefc7..00000000 Binary files a/public/textures/chipped/ornate_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_gray_stained_glass_pane.png b/public/textures/chipped/ornate_gray_stained_glass_pane.png deleted file mode 100644 index 785db9e7..00000000 Binary files a/public/textures/chipped/ornate_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_green_stained_glass.png b/public/textures/chipped/ornate_green_stained_glass.png deleted file mode 100644 index 5a6599bf..00000000 Binary files a/public/textures/chipped/ornate_green_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_green_stained_glass_pane.png b/public/textures/chipped/ornate_green_stained_glass_pane.png deleted file mode 100644 index 0dfaf868..00000000 Binary files a/public/textures/chipped/ornate_green_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_ice_pillar.png b/public/textures/chipped/ornate_ice_pillar.png deleted file mode 100644 index 8a254a0c..00000000 Binary files a/public/textures/chipped/ornate_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_lapis_block_pillar.png b/public/textures/chipped/ornate_lapis_block_pillar.png deleted file mode 100644 index 71d8d8a4..00000000 Binary files a/public/textures/chipped/ornate_lapis_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_leaded_glass.png b/public/textures/chipped/ornate_leaded_glass.png deleted file mode 100644 index 670d1723..00000000 Binary files a/public/textures/chipped/ornate_leaded_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_leaded_glass_pane.png b/public/textures/chipped/ornate_leaded_glass_pane.png deleted file mode 100644 index 031df165..00000000 Binary files a/public/textures/chipped/ornate_leaded_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_light_blue_stained_glass.png b/public/textures/chipped/ornate_light_blue_stained_glass.png deleted file mode 100644 index db7178cb..00000000 Binary files a/public/textures/chipped/ornate_light_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_light_blue_stained_glass_pane.png b/public/textures/chipped/ornate_light_blue_stained_glass_pane.png deleted file mode 100644 index 1966f7ce..00000000 Binary files a/public/textures/chipped/ornate_light_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_light_gray_stained_glass.png b/public/textures/chipped/ornate_light_gray_stained_glass.png deleted file mode 100644 index cbf67522..00000000 Binary files a/public/textures/chipped/ornate_light_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_light_gray_stained_glass_pane.png b/public/textures/chipped/ornate_light_gray_stained_glass_pane.png deleted file mode 100644 index 29449503..00000000 Binary files a/public/textures/chipped/ornate_light_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_lime_stained_glass.png b/public/textures/chipped/ornate_lime_stained_glass.png deleted file mode 100644 index 026dae8d..00000000 Binary files a/public/textures/chipped/ornate_lime_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_lime_stained_glass_pane.png b/public/textures/chipped/ornate_lime_stained_glass_pane.png deleted file mode 100644 index 2d9d1134..00000000 Binary files a/public/textures/chipped/ornate_lime_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_lodestone_pillar.png b/public/textures/chipped/ornate_lodestone_pillar.png deleted file mode 100644 index de87698f..00000000 Binary files a/public/textures/chipped/ornate_lodestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_magenta_stained_glass.png b/public/textures/chipped/ornate_magenta_stained_glass.png deleted file mode 100644 index a12697f7..00000000 Binary files a/public/textures/chipped/ornate_magenta_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_magenta_stained_glass_pane.png b/public/textures/chipped/ornate_magenta_stained_glass_pane.png deleted file mode 100644 index 53d21a09..00000000 Binary files a/public/textures/chipped/ornate_magenta_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_magma_block_pillar.png b/public/textures/chipped/ornate_magma_block_pillar.png deleted file mode 100644 index 8ff13c82..00000000 Binary files a/public/textures/chipped/ornate_magma_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_mossy_cobblestone_pillar.png b/public/textures/chipped/ornate_mossy_cobblestone_pillar.png deleted file mode 100644 index ff20e8a6..00000000 Binary files a/public/textures/chipped/ornate_mossy_cobblestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_mossy_stone_bricks_pillar.png b/public/textures/chipped/ornate_mossy_stone_bricks_pillar.png deleted file mode 100644 index 605684a5..00000000 Binary files a/public/textures/chipped/ornate_mossy_stone_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_mud_bricks_pillar.png b/public/textures/chipped/ornate_mud_bricks_pillar.png deleted file mode 100644 index d771bf2a..00000000 Binary files a/public/textures/chipped/ornate_mud_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_mud_pillar.png b/public/textures/chipped/ornate_mud_pillar.png deleted file mode 100644 index 99e7de02..00000000 Binary files a/public/textures/chipped/ornate_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_nether_bricks_pillar.png b/public/textures/chipped/ornate_nether_bricks_pillar.png deleted file mode 100644 index e98a4133..00000000 Binary files a/public/textures/chipped/ornate_nether_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_netherrack_pillar.png b/public/textures/chipped/ornate_netherrack_pillar.png deleted file mode 100644 index 73ea9230..00000000 Binary files a/public/textures/chipped/ornate_netherrack_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_obsidian_pillar.png b/public/textures/chipped/ornate_obsidian_pillar.png deleted file mode 100644 index 57353391..00000000 Binary files a/public/textures/chipped/ornate_obsidian_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_orange_stained_glass.png b/public/textures/chipped/ornate_orange_stained_glass.png deleted file mode 100644 index 82108b0d..00000000 Binary files a/public/textures/chipped/ornate_orange_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_orange_stained_glass_pane.png b/public/textures/chipped/ornate_orange_stained_glass_pane.png deleted file mode 100644 index ef87ffc8..00000000 Binary files a/public/textures/chipped/ornate_orange_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_packed_ice_pillar.png b/public/textures/chipped/ornate_packed_ice_pillar.png deleted file mode 100644 index fb5b7a5c..00000000 Binary files a/public/textures/chipped/ornate_packed_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_packed_mud_pillar.png b/public/textures/chipped/ornate_packed_mud_pillar.png deleted file mode 100644 index 54a192dd..00000000 Binary files a/public/textures/chipped/ornate_packed_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_pink_stained_glass.png b/public/textures/chipped/ornate_pink_stained_glass.png deleted file mode 100644 index ccba3b98..00000000 Binary files a/public/textures/chipped/ornate_pink_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_pink_stained_glass_pane.png b/public/textures/chipped/ornate_pink_stained_glass_pane.png deleted file mode 100644 index a0c42e92..00000000 Binary files a/public/textures/chipped/ornate_pink_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_prismarine_pillar.png b/public/textures/chipped/ornate_prismarine_pillar.png deleted file mode 100644 index 7acc4b5b..00000000 Binary files a/public/textures/chipped/ornate_prismarine_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_purple_stained_glass.png b/public/textures/chipped/ornate_purple_stained_glass.png deleted file mode 100644 index 8cfc2e39..00000000 Binary files a/public/textures/chipped/ornate_purple_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_purple_stained_glass_pane.png b/public/textures/chipped/ornate_purple_stained_glass_pane.png deleted file mode 100644 index d2934e13..00000000 Binary files a/public/textures/chipped/ornate_purple_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_purpur_block_pillar.png b/public/textures/chipped/ornate_purpur_block_pillar.png deleted file mode 100644 index 1b16d4b6..00000000 Binary files a/public/textures/chipped/ornate_purpur_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_quartz_block_pillar.png b/public/textures/chipped/ornate_quartz_block_pillar.png deleted file mode 100644 index 76247f5b..00000000 Binary files a/public/textures/chipped/ornate_quartz_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_raw_copper_block_pillar.png b/public/textures/chipped/ornate_raw_copper_block_pillar.png deleted file mode 100644 index 4428d96b..00000000 Binary files a/public/textures/chipped/ornate_raw_copper_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_raw_gold_block_pillar.png b/public/textures/chipped/ornate_raw_gold_block_pillar.png deleted file mode 100644 index 704456c9..00000000 Binary files a/public/textures/chipped/ornate_raw_gold_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_raw_iron_block_pillar.png b/public/textures/chipped/ornate_raw_iron_block_pillar.png deleted file mode 100644 index d7d1a123..00000000 Binary files a/public/textures/chipped/ornate_raw_iron_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_red_nether_bricks_pillar.png b/public/textures/chipped/ornate_red_nether_bricks_pillar.png deleted file mode 100644 index c4b61b09..00000000 Binary files a/public/textures/chipped/ornate_red_nether_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_red_sandstone_pillar.png b/public/textures/chipped/ornate_red_sandstone_pillar.png deleted file mode 100644 index 6dc28d02..00000000 Binary files a/public/textures/chipped/ornate_red_sandstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_red_stained_glass.png b/public/textures/chipped/ornate_red_stained_glass.png deleted file mode 100644 index 7774e87a..00000000 Binary files a/public/textures/chipped/ornate_red_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_red_stained_glass_pane.png b/public/textures/chipped/ornate_red_stained_glass_pane.png deleted file mode 100644 index 66e50e3c..00000000 Binary files a/public/textures/chipped/ornate_red_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_redstone_block_pillar.png b/public/textures/chipped/ornate_redstone_block_pillar.png deleted file mode 100644 index 8e4bff02..00000000 Binary files a/public/textures/chipped/ornate_redstone_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_redstone_lamp.png b/public/textures/chipped/ornate_redstone_lamp.png deleted file mode 100644 index cffe9d10..00000000 Binary files a/public/textures/chipped/ornate_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/ornate_sandstone_pillar.png b/public/textures/chipped/ornate_sandstone_pillar.png deleted file mode 100644 index cd7ec6a2..00000000 Binary files a/public/textures/chipped/ornate_sandstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_sea_lantern.png b/public/textures/chipped/ornate_sea_lantern.png deleted file mode 100644 index 517a0c6c..00000000 Binary files a/public/textures/chipped/ornate_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/ornate_shroomlight_lantern.png b/public/textures/chipped/ornate_shroomlight_lantern.png deleted file mode 100644 index b972f490..00000000 Binary files a/public/textures/chipped/ornate_shroomlight_lantern.png and /dev/null differ diff --git a/public/textures/chipped/ornate_smooth_stone_pillar.png b/public/textures/chipped/ornate_smooth_stone_pillar.png deleted file mode 100644 index 7f00a3c6..00000000 Binary files a/public/textures/chipped/ornate_smooth_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_snow_block_pillar.png b/public/textures/chipped/ornate_snow_block_pillar.png deleted file mode 100644 index a8b57488..00000000 Binary files a/public/textures/chipped/ornate_snow_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_stone_pillar.png b/public/textures/chipped/ornate_stone_pillar.png deleted file mode 100644 index c101784f..00000000 Binary files a/public/textures/chipped/ornate_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_tuff_pillar.png b/public/textures/chipped/ornate_tuff_pillar.png deleted file mode 100644 index 198bfd09..00000000 Binary files a/public/textures/chipped/ornate_tuff_pillar.png and /dev/null differ diff --git a/public/textures/chipped/ornate_white_redstone_lamp.png b/public/textures/chipped/ornate_white_redstone_lamp.png deleted file mode 100644 index caf4772e..00000000 Binary files a/public/textures/chipped/ornate_white_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/ornate_white_stained_glass.png b/public/textures/chipped/ornate_white_stained_glass.png deleted file mode 100644 index 8c29b03a..00000000 Binary files a/public/textures/chipped/ornate_white_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_white_stained_glass_pane.png b/public/textures/chipped/ornate_white_stained_glass_pane.png deleted file mode 100644 index 47f77bd3..00000000 Binary files a/public/textures/chipped/ornate_white_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/ornate_yellow_stained_glass.png b/public/textures/chipped/ornate_yellow_stained_glass.png deleted file mode 100644 index aff71c8d..00000000 Binary files a/public/textures/chipped/ornate_yellow_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/ornate_yellow_stained_glass_pane.png b/public/textures/chipped/ornate_yellow_stained_glass_pane.png deleted file mode 100644 index a332b756..00000000 Binary files a/public/textures/chipped/ornate_yellow_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_acacia_door.png b/public/textures/chipped/overgrown_acacia_door.png deleted file mode 100644 index f9eeb5b4..00000000 Binary files a/public/textures/chipped/overgrown_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_acacia_log.png b/public/textures/chipped/overgrown_acacia_log.png deleted file mode 100644 index 20b5c34c..00000000 Binary files a/public/textures/chipped/overgrown_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_acacia_trapdoor.png b/public/textures/chipped/overgrown_acacia_trapdoor.png deleted file mode 100644 index f038362f..00000000 Binary files a/public/textures/chipped/overgrown_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_autumnkin.png b/public/textures/chipped/overgrown_autumnkin.png deleted file mode 100644 index eb8ab8f2..00000000 Binary files a/public/textures/chipped/overgrown_autumnkin.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_bamboo_door.png b/public/textures/chipped/overgrown_bamboo_door.png deleted file mode 100644 index f96b73ea..00000000 Binary files a/public/textures/chipped/overgrown_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_bamboo_trapdoor.png b/public/textures/chipped/overgrown_bamboo_trapdoor.png deleted file mode 100644 index 9d1c43f4..00000000 Binary files a/public/textures/chipped/overgrown_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_birch_door.png b/public/textures/chipped/overgrown_birch_door.png deleted file mode 100644 index 4a2d2cb2..00000000 Binary files a/public/textures/chipped/overgrown_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_birch_log.png b/public/textures/chipped/overgrown_birch_log.png deleted file mode 100644 index 1ced5acf..00000000 Binary files a/public/textures/chipped/overgrown_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_birch_trapdoor.png b/public/textures/chipped/overgrown_birch_trapdoor.png deleted file mode 100644 index c798c9e6..00000000 Binary files a/public/textures/chipped/overgrown_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_cherry_door.png b/public/textures/chipped/overgrown_cherry_door.png deleted file mode 100644 index 4e644061..00000000 Binary files a/public/textures/chipped/overgrown_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_cherry_log.png b/public/textures/chipped/overgrown_cherry_log.png deleted file mode 100644 index 92d8ff0b..00000000 Binary files a/public/textures/chipped/overgrown_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_cherry_trapdoor.png b/public/textures/chipped/overgrown_cherry_trapdoor.png deleted file mode 100644 index 35a8d4a5..00000000 Binary files a/public/textures/chipped/overgrown_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_crimson_door.png b/public/textures/chipped/overgrown_crimson_door.png deleted file mode 100644 index 54d04412..00000000 Binary files a/public/textures/chipped/overgrown_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_crimson_trapdoor.png b/public/textures/chipped/overgrown_crimson_trapdoor.png deleted file mode 100644 index 59157d80..00000000 Binary files a/public/textures/chipped/overgrown_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_dark_oak_door.png b/public/textures/chipped/overgrown_dark_oak_door.png deleted file mode 100644 index c4537421..00000000 Binary files a/public/textures/chipped/overgrown_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_dark_oak_log.png b/public/textures/chipped/overgrown_dark_oak_log.png deleted file mode 100644 index fc3b5a93..00000000 Binary files a/public/textures/chipped/overgrown_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_dark_oak_trapdoor.png b/public/textures/chipped/overgrown_dark_oak_trapdoor.png deleted file mode 100644 index 7afb6bbd..00000000 Binary files a/public/textures/chipped/overgrown_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_jungle_door.png b/public/textures/chipped/overgrown_jungle_door.png deleted file mode 100644 index 06d670bb..00000000 Binary files a/public/textures/chipped/overgrown_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_jungle_log.png b/public/textures/chipped/overgrown_jungle_log.png deleted file mode 100644 index 5d5fb5b8..00000000 Binary files a/public/textures/chipped/overgrown_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_jungle_trapdoor.png b/public/textures/chipped/overgrown_jungle_trapdoor.png deleted file mode 100644 index 8e8f940b..00000000 Binary files a/public/textures/chipped/overgrown_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_lumpkin.png b/public/textures/chipped/overgrown_lumpkin.png deleted file mode 100644 index 94e1a2e5..00000000 Binary files a/public/textures/chipped/overgrown_lumpkin.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_mangrove_door.png b/public/textures/chipped/overgrown_mangrove_door.png deleted file mode 100644 index 7be6df86..00000000 Binary files a/public/textures/chipped/overgrown_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_mangrove_log.png b/public/textures/chipped/overgrown_mangrove_log.png deleted file mode 100644 index 1ea7249d..00000000 Binary files a/public/textures/chipped/overgrown_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_mangrove_trapdoor.png b/public/textures/chipped/overgrown_mangrove_trapdoor.png deleted file mode 100644 index 66a4d0f8..00000000 Binary files a/public/textures/chipped/overgrown_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_oak_door.png b/public/textures/chipped/overgrown_oak_door.png deleted file mode 100644 index a76acce9..00000000 Binary files a/public/textures/chipped/overgrown_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_oak_log.png b/public/textures/chipped/overgrown_oak_log.png deleted file mode 100644 index 3c8a7664..00000000 Binary files a/public/textures/chipped/overgrown_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_oak_trapdoor.png b/public/textures/chipped/overgrown_oak_trapdoor.png deleted file mode 100644 index 4f22c888..00000000 Binary files a/public/textures/chipped/overgrown_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_pimpkin.png b/public/textures/chipped/overgrown_pimpkin.png deleted file mode 100644 index 2408e70c..00000000 Binary files a/public/textures/chipped/overgrown_pimpkin.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_pumpkin.png b/public/textures/chipped/overgrown_pumpkin.png deleted file mode 100644 index daabac0c..00000000 Binary files a/public/textures/chipped/overgrown_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_sand.png b/public/textures/chipped/overgrown_sand.png deleted file mode 100644 index a4f099e8..00000000 Binary files a/public/textures/chipped/overgrown_sand.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_spruce_door.png b/public/textures/chipped/overgrown_spruce_door.png deleted file mode 100644 index 87d5419e..00000000 Binary files a/public/textures/chipped/overgrown_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_spruce_log.png b/public/textures/chipped/overgrown_spruce_log.png deleted file mode 100644 index 19563deb..00000000 Binary files a/public/textures/chipped/overgrown_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_spruce_trapdoor.png b/public/textures/chipped/overgrown_spruce_trapdoor.png deleted file mode 100644 index 0da6b6e9..00000000 Binary files a/public/textures/chipped/overgrown_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_warped_roots.png b/public/textures/chipped/overgrown_warped_roots.png deleted file mode 100644 index 2161c467..00000000 Binary files a/public/textures/chipped/overgrown_warped_roots.png and /dev/null differ diff --git a/public/textures/chipped/overgrown_warped_trapdoor.png b/public/textures/chipped/overgrown_warped_trapdoor.png deleted file mode 100644 index 65f2e5b1..00000000 Binary files a/public/textures/chipped/overgrown_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/overjoyed_carved_pumpkin.png b/public/textures/chipped/overjoyed_carved_pumpkin.png deleted file mode 100644 index 2464fc44..00000000 Binary files a/public/textures/chipped/overjoyed_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/overjoyed_jack_o_lantern.png b/public/textures/chipped/overjoyed_jack_o_lantern.png deleted file mode 100644 index bcb49ace..00000000 Binary files a/public/textures/chipped/overjoyed_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_amethyst_block_tiles.png b/public/textures/chipped/overlapping_amethyst_block_tiles.png deleted file mode 100644 index 37628966..00000000 Binary files a/public/textures/chipped/overlapping_amethyst_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_ancient_debris_tiles.png b/public/textures/chipped/overlapping_ancient_debris_tiles.png deleted file mode 100644 index e06a6b9c..00000000 Binary files a/public/textures/chipped/overlapping_ancient_debris_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_andesite_tiles.png b/public/textures/chipped/overlapping_andesite_tiles.png deleted file mode 100644 index 4cb6b091..00000000 Binary files a/public/textures/chipped/overlapping_andesite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_basalt_tiles.png b/public/textures/chipped/overlapping_basalt_tiles.png deleted file mode 100644 index 78a0f376..00000000 Binary files a/public/textures/chipped/overlapping_basalt_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_blackstone_tiles.png b/public/textures/chipped/overlapping_blackstone_tiles.png deleted file mode 100644 index eeb8c925..00000000 Binary files a/public/textures/chipped/overlapping_blackstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_blue_ice_tiles.png b/public/textures/chipped/overlapping_blue_ice_tiles.png deleted file mode 100644 index 609895ea..00000000 Binary files a/public/textures/chipped/overlapping_blue_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_borderless_bricks_tiles.png b/public/textures/chipped/overlapping_borderless_bricks_tiles.png deleted file mode 100644 index eea6c8f4..00000000 Binary files a/public/textures/chipped/overlapping_borderless_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_bricks_tiles.png b/public/textures/chipped/overlapping_bricks_tiles.png deleted file mode 100644 index 79af9bd1..00000000 Binary files a/public/textures/chipped/overlapping_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_calcite_tiles.png b/public/textures/chipped/overlapping_calcite_tiles.png deleted file mode 100644 index 0de01992..00000000 Binary files a/public/textures/chipped/overlapping_calcite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_clay_tiles.png b/public/textures/chipped/overlapping_clay_tiles.png deleted file mode 100644 index 010c393f..00000000 Binary files a/public/textures/chipped/overlapping_clay_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_coal_block_tiles.png b/public/textures/chipped/overlapping_coal_block_tiles.png deleted file mode 100644 index 30ece1d2..00000000 Binary files a/public/textures/chipped/overlapping_coal_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_cobblestone_tiles.png b/public/textures/chipped/overlapping_cobblestone_tiles.png deleted file mode 100644 index 2006bb09..00000000 Binary files a/public/textures/chipped/overlapping_cobblestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_crying_obsidian_tiles.png b/public/textures/chipped/overlapping_crying_obsidian_tiles.png deleted file mode 100644 index 9a619dc7..00000000 Binary files a/public/textures/chipped/overlapping_crying_obsidian_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_dark_prismarine_tiles.png b/public/textures/chipped/overlapping_dark_prismarine_tiles.png deleted file mode 100644 index 71dda313..00000000 Binary files a/public/textures/chipped/overlapping_dark_prismarine_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_deepslate_tiles.png b/public/textures/chipped/overlapping_deepslate_tiles.png deleted file mode 100644 index ab8a1432..00000000 Binary files a/public/textures/chipped/overlapping_deepslate_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_diorite_tiles.png b/public/textures/chipped/overlapping_diorite_tiles.png deleted file mode 100644 index b185cc9a..00000000 Binary files a/public/textures/chipped/overlapping_diorite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_dirt_tiles.png b/public/textures/chipped/overlapping_dirt_tiles.png deleted file mode 100644 index 55eb9d29..00000000 Binary files a/public/textures/chipped/overlapping_dirt_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_dripstone_block_tiles.png b/public/textures/chipped/overlapping_dripstone_block_tiles.png deleted file mode 100644 index 4c9e173a..00000000 Binary files a/public/textures/chipped/overlapping_dripstone_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_end_stone_tiles.png b/public/textures/chipped/overlapping_end_stone_tiles.png deleted file mode 100644 index 03217d97..00000000 Binary files a/public/textures/chipped/overlapping_end_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_gilded_blackstone_tiles.png b/public/textures/chipped/overlapping_gilded_blackstone_tiles.png deleted file mode 100644 index fc24b4cb..00000000 Binary files a/public/textures/chipped/overlapping_gilded_blackstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_granite_tiles.png b/public/textures/chipped/overlapping_granite_tiles.png deleted file mode 100644 index 5949d9b0..00000000 Binary files a/public/textures/chipped/overlapping_granite_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_ice_tiles.png b/public/textures/chipped/overlapping_ice_tiles.png deleted file mode 100644 index 609fafd6..00000000 Binary files a/public/textures/chipped/overlapping_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_lapis_block_tiles.png b/public/textures/chipped/overlapping_lapis_block_tiles.png deleted file mode 100644 index 2f96dfb7..00000000 Binary files a/public/textures/chipped/overlapping_lapis_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_lodestone_tiles.png b/public/textures/chipped/overlapping_lodestone_tiles.png deleted file mode 100644 index d3891eae..00000000 Binary files a/public/textures/chipped/overlapping_lodestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_magma_block_tiles.png b/public/textures/chipped/overlapping_magma_block_tiles.png deleted file mode 100644 index 894c61fa..00000000 Binary files a/public/textures/chipped/overlapping_magma_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_mossy_cobblestone_tiles.png b/public/textures/chipped/overlapping_mossy_cobblestone_tiles.png deleted file mode 100644 index 68c6e521..00000000 Binary files a/public/textures/chipped/overlapping_mossy_cobblestone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_mossy_stone_bricks_tiles.png b/public/textures/chipped/overlapping_mossy_stone_bricks_tiles.png deleted file mode 100644 index 16e0d02d..00000000 Binary files a/public/textures/chipped/overlapping_mossy_stone_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_mud_bricks_tiles.png b/public/textures/chipped/overlapping_mud_bricks_tiles.png deleted file mode 100644 index bbe91133..00000000 Binary files a/public/textures/chipped/overlapping_mud_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_mud_tiles.png b/public/textures/chipped/overlapping_mud_tiles.png deleted file mode 100644 index 71f7ee90..00000000 Binary files a/public/textures/chipped/overlapping_mud_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_nether_bricks_tiles.png b/public/textures/chipped/overlapping_nether_bricks_tiles.png deleted file mode 100644 index a2c51722..00000000 Binary files a/public/textures/chipped/overlapping_nether_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_netherrack_tiles.png b/public/textures/chipped/overlapping_netherrack_tiles.png deleted file mode 100644 index 68fa3172..00000000 Binary files a/public/textures/chipped/overlapping_netherrack_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_obsidian_tiles.png b/public/textures/chipped/overlapping_obsidian_tiles.png deleted file mode 100644 index dca3049a..00000000 Binary files a/public/textures/chipped/overlapping_obsidian_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_packed_ice_tiles.png b/public/textures/chipped/overlapping_packed_ice_tiles.png deleted file mode 100644 index bd5f4a13..00000000 Binary files a/public/textures/chipped/overlapping_packed_ice_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_packed_mud_tiles.png b/public/textures/chipped/overlapping_packed_mud_tiles.png deleted file mode 100644 index 54d78835..00000000 Binary files a/public/textures/chipped/overlapping_packed_mud_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_prismarine_tiles.png b/public/textures/chipped/overlapping_prismarine_tiles.png deleted file mode 100644 index 24732fb2..00000000 Binary files a/public/textures/chipped/overlapping_prismarine_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_purpur_block_tiles.png b/public/textures/chipped/overlapping_purpur_block_tiles.png deleted file mode 100644 index 0b2ca31c..00000000 Binary files a/public/textures/chipped/overlapping_purpur_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_quartz_block_tiles.png b/public/textures/chipped/overlapping_quartz_block_tiles.png deleted file mode 100644 index 0be5deff..00000000 Binary files a/public/textures/chipped/overlapping_quartz_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_raw_copper_block_tiles.png b/public/textures/chipped/overlapping_raw_copper_block_tiles.png deleted file mode 100644 index 394c860f..00000000 Binary files a/public/textures/chipped/overlapping_raw_copper_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_raw_gold_block_tiles.png b/public/textures/chipped/overlapping_raw_gold_block_tiles.png deleted file mode 100644 index c11778f4..00000000 Binary files a/public/textures/chipped/overlapping_raw_gold_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_raw_iron_block_tiles.png b/public/textures/chipped/overlapping_raw_iron_block_tiles.png deleted file mode 100644 index fa9fa3c4..00000000 Binary files a/public/textures/chipped/overlapping_raw_iron_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_red_nether_bricks_tiles.png b/public/textures/chipped/overlapping_red_nether_bricks_tiles.png deleted file mode 100644 index 681a923e..00000000 Binary files a/public/textures/chipped/overlapping_red_nether_bricks_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_red_sandstone_tiles.png b/public/textures/chipped/overlapping_red_sandstone_tiles.png deleted file mode 100644 index 05f7a446..00000000 Binary files a/public/textures/chipped/overlapping_red_sandstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_redstone_block_tiles.png b/public/textures/chipped/overlapping_redstone_block_tiles.png deleted file mode 100644 index adafe997..00000000 Binary files a/public/textures/chipped/overlapping_redstone_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_sandstone_tiles.png b/public/textures/chipped/overlapping_sandstone_tiles.png deleted file mode 100644 index 61e02dad..00000000 Binary files a/public/textures/chipped/overlapping_sandstone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_smooth_stone_tiles.png b/public/textures/chipped/overlapping_smooth_stone_tiles.png deleted file mode 100644 index 5c0cd15b..00000000 Binary files a/public/textures/chipped/overlapping_smooth_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_snow_block_tiles.png b/public/textures/chipped/overlapping_snow_block_tiles.png deleted file mode 100644 index baf3ed27..00000000 Binary files a/public/textures/chipped/overlapping_snow_block_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_stone_tiles.png b/public/textures/chipped/overlapping_stone_tiles.png deleted file mode 100644 index 38fca2c1..00000000 Binary files a/public/textures/chipped/overlapping_stone_tiles.png and /dev/null differ diff --git a/public/textures/chipped/overlapping_tuff_tiles.png b/public/textures/chipped/overlapping_tuff_tiles.png deleted file mode 100644 index c92b93a7..00000000 Binary files a/public/textures/chipped/overlapping_tuff_tiles.png and /dev/null differ diff --git a/public/textures/chipped/owo_carved_pumpkin.png b/public/textures/chipped/owo_carved_pumpkin.png deleted file mode 100644 index 6325b519..00000000 Binary files a/public/textures/chipped/owo_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/owo_jack_o_lantern.png b/public/textures/chipped/owo_jack_o_lantern.png deleted file mode 100644 index 158aa626..00000000 Binary files a/public/textures/chipped/owo_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/packed_ice_bricks.png b/public/textures/chipped/packed_ice_bricks.png deleted file mode 100644 index 52d80415..00000000 Binary files a/public/textures/chipped/packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/packed_ice_mini_tiles.png b/public/textures/chipped/packed_ice_mini_tiles.png deleted file mode 100644 index 5f9422df..00000000 Binary files a/public/textures/chipped/packed_ice_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/packed_ice_pillar.png b/public/textures/chipped/packed_ice_pillar.png deleted file mode 100644 index 57e37a76..00000000 Binary files a/public/textures/chipped/packed_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/packed_ice_pillar_top.png b/public/textures/chipped/packed_ice_pillar_top.png deleted file mode 100644 index da95828c..00000000 Binary files a/public/textures/chipped/packed_ice_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/packed_ice_pointed_dripstone.png b/public/textures/chipped/packed_ice_pointed_dripstone.png deleted file mode 100644 index 2ef1b4d8..00000000 Binary files a/public/textures/chipped/packed_ice_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/packed_ice_scales.png b/public/textures/chipped/packed_ice_scales.png deleted file mode 100644 index 0d4cccce..00000000 Binary files a/public/textures/chipped/packed_ice_scales.png and /dev/null differ diff --git a/public/textures/chipped/packed_mud_bricks.png b/public/textures/chipped/packed_mud_bricks.png deleted file mode 100644 index c5ac214b..00000000 Binary files a/public/textures/chipped/packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/packed_mud_pillar.png b/public/textures/chipped/packed_mud_pillar.png deleted file mode 100644 index b257bb03..00000000 Binary files a/public/textures/chipped/packed_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/packed_mud_pillar_top.png b/public/textures/chipped/packed_mud_pillar_top.png deleted file mode 100644 index 11dfd6c7..00000000 Binary files a/public/textures/chipped/packed_mud_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/packed_mud_scales.png b/public/textures/chipped/packed_mud_scales.png deleted file mode 100644 index 5bedbd64..00000000 Binary files a/public/textures/chipped/packed_mud_scales.png and /dev/null differ diff --git a/public/textures/chipped/pacman_lily_pad.png b/public/textures/chipped/pacman_lily_pad.png deleted file mode 100644 index 824bde83..00000000 Binary files a/public/textures/chipped/pacman_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/paddle_lily_pad.png b/public/textures/chipped/paddle_lily_pad.png deleted file mode 100644 index f0b1a493..00000000 Binary files a/public/textures/chipped/paddle_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/pale_hay_block.png b/public/textures/chipped/pale_hay_block.png deleted file mode 100644 index dc01e21a..00000000 Binary files a/public/textures/chipped/pale_hay_block.png and /dev/null differ diff --git a/public/textures/chipped/pancake_mud.png b/public/textures/chipped/pancake_mud.png deleted file mode 100644 index 5108b8c4..00000000 Binary files a/public/textures/chipped/pancake_mud.png and /dev/null differ diff --git a/public/textures/chipped/pancake_mud_bricks.png b/public/textures/chipped/pancake_mud_bricks.png deleted file mode 100644 index 09be3b5c..00000000 Binary files a/public/textures/chipped/pancake_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pancake_packed_mud.png b/public/textures/chipped/pancake_packed_mud.png deleted file mode 100644 index 6aa4b9aa..00000000 Binary files a/public/textures/chipped/pancake_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/paneled_acacia_door.png b/public/textures/chipped/paneled_acacia_door.png deleted file mode 100644 index 3d296eb7..00000000 Binary files a/public/textures/chipped/paneled_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/paneled_bamboo_door.png b/public/textures/chipped/paneled_bamboo_door.png deleted file mode 100644 index aacb2760..00000000 Binary files a/public/textures/chipped/paneled_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/paneled_birch_door.png b/public/textures/chipped/paneled_birch_door.png deleted file mode 100644 index 7c6b87b9..00000000 Binary files a/public/textures/chipped/paneled_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/paneled_cherry_door.png b/public/textures/chipped/paneled_cherry_door.png deleted file mode 100644 index 24e26376..00000000 Binary files a/public/textures/chipped/paneled_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/paneled_crimson_door.png b/public/textures/chipped/paneled_crimson_door.png deleted file mode 100644 index 0dd85b8e..00000000 Binary files a/public/textures/chipped/paneled_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/paneled_jungle_door.png b/public/textures/chipped/paneled_jungle_door.png deleted file mode 100644 index 3179febe..00000000 Binary files a/public/textures/chipped/paneled_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/paneled_mangrove_door.png b/public/textures/chipped/paneled_mangrove_door.png deleted file mode 100644 index c0a335ef..00000000 Binary files a/public/textures/chipped/paneled_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/paneled_oak_door.png b/public/textures/chipped/paneled_oak_door.png deleted file mode 100644 index b2734b8d..00000000 Binary files a/public/textures/chipped/paneled_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/paneled_spruce_door.png b/public/textures/chipped/paneled_spruce_door.png deleted file mode 100644 index 23471a99..00000000 Binary files a/public/textures/chipped/paneled_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/paneled_warped_door.png b/public/textures/chipped/paneled_warped_door.png deleted file mode 100644 index 2c7d05e1..00000000 Binary files a/public/textures/chipped/paneled_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/panelled_mud.png b/public/textures/chipped/panelled_mud.png deleted file mode 100644 index 00040700..00000000 Binary files a/public/textures/chipped/panelled_mud.png and /dev/null differ diff --git a/public/textures/chipped/panelled_mud_bricks.png b/public/textures/chipped/panelled_mud_bricks.png deleted file mode 100644 index f4968c05..00000000 Binary files a/public/textures/chipped/panelled_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/panelled_packed_mud.png b/public/textures/chipped/panelled_packed_mud.png deleted file mode 100644 index a3253383..00000000 Binary files a/public/textures/chipped/panelled_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/paper_acacia_door.png b/public/textures/chipped/paper_acacia_door.png deleted file mode 100644 index 443654b9..00000000 Binary files a/public/textures/chipped/paper_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/paper_bamboo_door.png b/public/textures/chipped/paper_bamboo_door.png deleted file mode 100644 index 6f756482..00000000 Binary files a/public/textures/chipped/paper_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/paper_cherry_door.png b/public/textures/chipped/paper_cherry_door.png deleted file mode 100644 index f1251eef..00000000 Binary files a/public/textures/chipped/paper_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/paper_crimson_door.png b/public/textures/chipped/paper_crimson_door.png deleted file mode 100644 index 5abb7d47..00000000 Binary files a/public/textures/chipped/paper_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/paper_dark_oak_door.png b/public/textures/chipped/paper_dark_oak_door.png deleted file mode 100644 index 9f9e63fc..00000000 Binary files a/public/textures/chipped/paper_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/paper_jungle_door.png b/public/textures/chipped/paper_jungle_door.png deleted file mode 100644 index 8034b605..00000000 Binary files a/public/textures/chipped/paper_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/paper_mangrove_door.png b/public/textures/chipped/paper_mangrove_door.png deleted file mode 100644 index 65df1ba3..00000000 Binary files a/public/textures/chipped/paper_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/paper_oak_door.png b/public/textures/chipped/paper_oak_door.png deleted file mode 100644 index c1d06cc7..00000000 Binary files a/public/textures/chipped/paper_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/paper_spruce_door.png b/public/textures/chipped/paper_spruce_door.png deleted file mode 100644 index cdebf401..00000000 Binary files a/public/textures/chipped/paper_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/paper_warped_door.png b/public/textures/chipped/paper_warped_door.png deleted file mode 100644 index a19b4473..00000000 Binary files a/public/textures/chipped/paper_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/patched_black_carpet.png b/public/textures/chipped/patched_black_carpet.png deleted file mode 100644 index 672166af..00000000 Binary files a/public/textures/chipped/patched_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_black_wool.png b/public/textures/chipped/patched_black_wool.png deleted file mode 100644 index 6f5b62a4..00000000 Binary files a/public/textures/chipped/patched_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_blue_carpet.png b/public/textures/chipped/patched_blue_carpet.png deleted file mode 100644 index e42398af..00000000 Binary files a/public/textures/chipped/patched_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_blue_wool.png b/public/textures/chipped/patched_blue_wool.png deleted file mode 100644 index 1231ac3c..00000000 Binary files a/public/textures/chipped/patched_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_brown_carpet.png b/public/textures/chipped/patched_brown_carpet.png deleted file mode 100644 index 4be22b4f..00000000 Binary files a/public/textures/chipped/patched_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_brown_wool.png b/public/textures/chipped/patched_brown_wool.png deleted file mode 100644 index eb8fc4c3..00000000 Binary files a/public/textures/chipped/patched_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_cyan_carpet.png b/public/textures/chipped/patched_cyan_carpet.png deleted file mode 100644 index 9e522714..00000000 Binary files a/public/textures/chipped/patched_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_cyan_wool.png b/public/textures/chipped/patched_cyan_wool.png deleted file mode 100644 index 7299af27..00000000 Binary files a/public/textures/chipped/patched_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_gray_carpet.png b/public/textures/chipped/patched_gray_carpet.png deleted file mode 100644 index 65afc910..00000000 Binary files a/public/textures/chipped/patched_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_gray_wool.png b/public/textures/chipped/patched_gray_wool.png deleted file mode 100644 index 3aa40008..00000000 Binary files a/public/textures/chipped/patched_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_green_carpet.png b/public/textures/chipped/patched_green_carpet.png deleted file mode 100644 index 01202515..00000000 Binary files a/public/textures/chipped/patched_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_green_wool.png b/public/textures/chipped/patched_green_wool.png deleted file mode 100644 index eb3c6a5b..00000000 Binary files a/public/textures/chipped/patched_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_light_blue_carpet.png b/public/textures/chipped/patched_light_blue_carpet.png deleted file mode 100644 index 8177d215..00000000 Binary files a/public/textures/chipped/patched_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_light_blue_wool.png b/public/textures/chipped/patched_light_blue_wool.png deleted file mode 100644 index 7bc334ba..00000000 Binary files a/public/textures/chipped/patched_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_light_gray_carpet.png b/public/textures/chipped/patched_light_gray_carpet.png deleted file mode 100644 index f357ac82..00000000 Binary files a/public/textures/chipped/patched_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_light_gray_wool.png b/public/textures/chipped/patched_light_gray_wool.png deleted file mode 100644 index 877c48f6..00000000 Binary files a/public/textures/chipped/patched_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_lime_carpet.png b/public/textures/chipped/patched_lime_carpet.png deleted file mode 100644 index 0a5e34e3..00000000 Binary files a/public/textures/chipped/patched_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_lime_wool.png b/public/textures/chipped/patched_lime_wool.png deleted file mode 100644 index 1358dde3..00000000 Binary files a/public/textures/chipped/patched_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_magenta_carpet.png b/public/textures/chipped/patched_magenta_carpet.png deleted file mode 100644 index 299db766..00000000 Binary files a/public/textures/chipped/patched_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_magenta_wool.png b/public/textures/chipped/patched_magenta_wool.png deleted file mode 100644 index e840fc61..00000000 Binary files a/public/textures/chipped/patched_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_nether_wart_block.png b/public/textures/chipped/patched_nether_wart_block.png deleted file mode 100644 index 89d88c3e..00000000 Binary files a/public/textures/chipped/patched_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/patched_orange_carpet.png b/public/textures/chipped/patched_orange_carpet.png deleted file mode 100644 index d6d17627..00000000 Binary files a/public/textures/chipped/patched_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_orange_wool.png b/public/textures/chipped/patched_orange_wool.png deleted file mode 100644 index b45f23f0..00000000 Binary files a/public/textures/chipped/patched_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_pink_carpet.png b/public/textures/chipped/patched_pink_carpet.png deleted file mode 100644 index 5398a3bf..00000000 Binary files a/public/textures/chipped/patched_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_pink_wool.png b/public/textures/chipped/patched_pink_wool.png deleted file mode 100644 index 69aa11cd..00000000 Binary files a/public/textures/chipped/patched_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_purple_carpet.png b/public/textures/chipped/patched_purple_carpet.png deleted file mode 100644 index fd5e373b..00000000 Binary files a/public/textures/chipped/patched_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_purple_wool.png b/public/textures/chipped/patched_purple_wool.png deleted file mode 100644 index bceb3e10..00000000 Binary files a/public/textures/chipped/patched_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_red_carpet.png b/public/textures/chipped/patched_red_carpet.png deleted file mode 100644 index 9f946396..00000000 Binary files a/public/textures/chipped/patched_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_red_wool.png b/public/textures/chipped/patched_red_wool.png deleted file mode 100644 index d6c74364..00000000 Binary files a/public/textures/chipped/patched_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_warped_wart_block.png b/public/textures/chipped/patched_warped_wart_block.png deleted file mode 100644 index f4605964..00000000 Binary files a/public/textures/chipped/patched_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/patched_white_carpet.png b/public/textures/chipped/patched_white_carpet.png deleted file mode 100644 index 227b9fff..00000000 Binary files a/public/textures/chipped/patched_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_white_wool.png b/public/textures/chipped/patched_white_wool.png deleted file mode 100644 index 335ea7ee..00000000 Binary files a/public/textures/chipped/patched_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/patched_yellow_carpet.png b/public/textures/chipped/patched_yellow_carpet.png deleted file mode 100644 index 5bccc84a..00000000 Binary files a/public/textures/chipped/patched_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/patched_yellow_wool.png b/public/textures/chipped/patched_yellow_wool.png deleted file mode 100644 index e8c8fd34..00000000 Binary files a/public/textures/chipped/patched_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/patient_stripped_acacia_log.png b/public/textures/chipped/patient_stripped_acacia_log.png deleted file mode 100644 index 07b1c14b..00000000 Binary files a/public/textures/chipped/patient_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/patient_stripped_birch_log.png b/public/textures/chipped/patient_stripped_birch_log.png deleted file mode 100644 index 9cd323c9..00000000 Binary files a/public/textures/chipped/patient_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/patient_stripped_cherry_log.png b/public/textures/chipped/patient_stripped_cherry_log.png deleted file mode 100644 index 8908ed46..00000000 Binary files a/public/textures/chipped/patient_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/patient_stripped_crimson_stem.png b/public/textures/chipped/patient_stripped_crimson_stem.png deleted file mode 100644 index d8267939..00000000 Binary files a/public/textures/chipped/patient_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/patient_stripped_dark_oak_log.png b/public/textures/chipped/patient_stripped_dark_oak_log.png deleted file mode 100644 index c65b1e27..00000000 Binary files a/public/textures/chipped/patient_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/patient_stripped_jungle_log.png b/public/textures/chipped/patient_stripped_jungle_log.png deleted file mode 100644 index 0d72e4f7..00000000 Binary files a/public/textures/chipped/patient_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/patient_stripped_mangrove_log.png b/public/textures/chipped/patient_stripped_mangrove_log.png deleted file mode 100644 index 7fa8a173..00000000 Binary files a/public/textures/chipped/patient_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/patient_stripped_oak_log.png b/public/textures/chipped/patient_stripped_oak_log.png deleted file mode 100644 index e21b74d5..00000000 Binary files a/public/textures/chipped/patient_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/patient_stripped_spruce_log.png b/public/textures/chipped/patient_stripped_spruce_log.png deleted file mode 100644 index 44d6a813..00000000 Binary files a/public/textures/chipped/patient_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/patient_stripped_warped_stem.png b/public/textures/chipped/patient_stripped_warped_stem.png deleted file mode 100644 index 81b2f5dc..00000000 Binary files a/public/textures/chipped/patient_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/patterned_glowstone.png b/public/textures/chipped/patterned_glowstone.png deleted file mode 100644 index 773261a5..00000000 Binary files a/public/textures/chipped/patterned_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/paved_black_glazed_terracotta.png b/public/textures/chipped/paved_black_glazed_terracotta.png deleted file mode 100644 index db961802..00000000 Binary files a/public/textures/chipped/paved_black_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_blue_glazed_terracotta.png b/public/textures/chipped/paved_blue_glazed_terracotta.png deleted file mode 100644 index b9b2befb..00000000 Binary files a/public/textures/chipped/paved_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_brown_glazed_terracotta.png b/public/textures/chipped/paved_brown_glazed_terracotta.png deleted file mode 100644 index 8704e71f..00000000 Binary files a/public/textures/chipped/paved_brown_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_cyan_glazed_terracotta.png b/public/textures/chipped/paved_cyan_glazed_terracotta.png deleted file mode 100644 index 6fdbbc71..00000000 Binary files a/public/textures/chipped/paved_cyan_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_gray_glazed_terracotta.png b/public/textures/chipped/paved_gray_glazed_terracotta.png deleted file mode 100644 index bb0a6707..00000000 Binary files a/public/textures/chipped/paved_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_green_glazed_terracotta.png b/public/textures/chipped/paved_green_glazed_terracotta.png deleted file mode 100644 index 18de3f3d..00000000 Binary files a/public/textures/chipped/paved_green_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_light_blue_glazed_terracotta.png b/public/textures/chipped/paved_light_blue_glazed_terracotta.png deleted file mode 100644 index 301df3d7..00000000 Binary files a/public/textures/chipped/paved_light_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_light_gray_glazed_terracotta.png b/public/textures/chipped/paved_light_gray_glazed_terracotta.png deleted file mode 100644 index 611596f2..00000000 Binary files a/public/textures/chipped/paved_light_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_lime_glazed_terracotta.png b/public/textures/chipped/paved_lime_glazed_terracotta.png deleted file mode 100644 index bb244652..00000000 Binary files a/public/textures/chipped/paved_lime_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_magenta_glazed_terracotta.png b/public/textures/chipped/paved_magenta_glazed_terracotta.png deleted file mode 100644 index 0deb5ddc..00000000 Binary files a/public/textures/chipped/paved_magenta_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_orange_glazed_terracotta.png b/public/textures/chipped/paved_orange_glazed_terracotta.png deleted file mode 100644 index df7f494e..00000000 Binary files a/public/textures/chipped/paved_orange_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_pink_glazed_terracotta.png b/public/textures/chipped/paved_pink_glazed_terracotta.png deleted file mode 100644 index 8cfceb29..00000000 Binary files a/public/textures/chipped/paved_pink_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_purple_glazed_terracotta.png b/public/textures/chipped/paved_purple_glazed_terracotta.png deleted file mode 100644 index 91a373dc..00000000 Binary files a/public/textures/chipped/paved_purple_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_red_glazed_terracotta.png b/public/textures/chipped/paved_red_glazed_terracotta.png deleted file mode 100644 index 6ec6eea1..00000000 Binary files a/public/textures/chipped/paved_red_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_white_glazed_terracotta.png b/public/textures/chipped/paved_white_glazed_terracotta.png deleted file mode 100644 index 870f8b40..00000000 Binary files a/public/textures/chipped/paved_white_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/paved_yellow_glazed_terracotta.png b/public/textures/chipped/paved_yellow_glazed_terracotta.png deleted file mode 100644 index 97a0c489..00000000 Binary files a/public/textures/chipped/paved_yellow_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/pearl_sand.png b/public/textures/chipped/pearl_sand.png deleted file mode 100644 index 3bd17ab1..00000000 Binary files a/public/textures/chipped/pearl_sand.png and /dev/null differ diff --git a/public/textures/chipped/pegged_acacia_planks.png b/public/textures/chipped/pegged_acacia_planks.png deleted file mode 100644 index b84eb83b..00000000 Binary files a/public/textures/chipped/pegged_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/pegged_birch_planks.png b/public/textures/chipped/pegged_birch_planks.png deleted file mode 100644 index 8bc81d26..00000000 Binary files a/public/textures/chipped/pegged_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/pegged_black_concrete.png b/public/textures/chipped/pegged_black_concrete.png deleted file mode 100644 index ac6d05dd..00000000 Binary files a/public/textures/chipped/pegged_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_blue_concrete.png b/public/textures/chipped/pegged_blue_concrete.png deleted file mode 100644 index f93eee36..00000000 Binary files a/public/textures/chipped/pegged_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_brown_concrete.png b/public/textures/chipped/pegged_brown_concrete.png deleted file mode 100644 index c2bff2a1..00000000 Binary files a/public/textures/chipped/pegged_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_cherry_planks.png b/public/textures/chipped/pegged_cherry_planks.png deleted file mode 100644 index b440e2e5..00000000 Binary files a/public/textures/chipped/pegged_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/pegged_crimson_planks.png b/public/textures/chipped/pegged_crimson_planks.png deleted file mode 100644 index d919b119..00000000 Binary files a/public/textures/chipped/pegged_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/pegged_cyan_concrete.png b/public/textures/chipped/pegged_cyan_concrete.png deleted file mode 100644 index a79d3f70..00000000 Binary files a/public/textures/chipped/pegged_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_dark_oak_planks.png b/public/textures/chipped/pegged_dark_oak_planks.png deleted file mode 100644 index 961bb7c5..00000000 Binary files a/public/textures/chipped/pegged_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/pegged_gray_concrete.png b/public/textures/chipped/pegged_gray_concrete.png deleted file mode 100644 index be468400..00000000 Binary files a/public/textures/chipped/pegged_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_green_concrete.png b/public/textures/chipped/pegged_green_concrete.png deleted file mode 100644 index c406d048..00000000 Binary files a/public/textures/chipped/pegged_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_jungle_planks.png b/public/textures/chipped/pegged_jungle_planks.png deleted file mode 100644 index 4b2c4d22..00000000 Binary files a/public/textures/chipped/pegged_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/pegged_light_blue_concrete.png b/public/textures/chipped/pegged_light_blue_concrete.png deleted file mode 100644 index ead630f1..00000000 Binary files a/public/textures/chipped/pegged_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_light_gray_concrete.png b/public/textures/chipped/pegged_light_gray_concrete.png deleted file mode 100644 index cd33dc8e..00000000 Binary files a/public/textures/chipped/pegged_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_lime_concrete.png b/public/textures/chipped/pegged_lime_concrete.png deleted file mode 100644 index 2ac1fdcd..00000000 Binary files a/public/textures/chipped/pegged_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_magenta_concrete.png b/public/textures/chipped/pegged_magenta_concrete.png deleted file mode 100644 index 786a2461..00000000 Binary files a/public/textures/chipped/pegged_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_mangrove_planks.png b/public/textures/chipped/pegged_mangrove_planks.png deleted file mode 100644 index 12585aff..00000000 Binary files a/public/textures/chipped/pegged_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/pegged_oak_planks.png b/public/textures/chipped/pegged_oak_planks.png deleted file mode 100644 index 96ff5753..00000000 Binary files a/public/textures/chipped/pegged_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/pegged_orange_concrete.png b/public/textures/chipped/pegged_orange_concrete.png deleted file mode 100644 index 6336dee4..00000000 Binary files a/public/textures/chipped/pegged_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_pink_concrete.png b/public/textures/chipped/pegged_pink_concrete.png deleted file mode 100644 index f77a023c..00000000 Binary files a/public/textures/chipped/pegged_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_purple_concrete.png b/public/textures/chipped/pegged_purple_concrete.png deleted file mode 100644 index 73cfa1b9..00000000 Binary files a/public/textures/chipped/pegged_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_red_concrete.png b/public/textures/chipped/pegged_red_concrete.png deleted file mode 100644 index 0a71f63f..00000000 Binary files a/public/textures/chipped/pegged_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_spruce_planks.png b/public/textures/chipped/pegged_spruce_planks.png deleted file mode 100644 index 8831c6ba..00000000 Binary files a/public/textures/chipped/pegged_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/pegged_warped_planks.png b/public/textures/chipped/pegged_warped_planks.png deleted file mode 100644 index 9cb16792..00000000 Binary files a/public/textures/chipped/pegged_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/pegged_white_concrete.png b/public/textures/chipped/pegged_white_concrete.png deleted file mode 100644 index 9ce43e6d..00000000 Binary files a/public/textures/chipped/pegged_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/pegged_yellow_concrete.png b/public/textures/chipped/pegged_yellow_concrete.png deleted file mode 100644 index 47edc9a2..00000000 Binary files a/public/textures/chipped/pegged_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/piked_iron_bars.png b/public/textures/chipped/piked_iron_bars.png deleted file mode 100644 index 49be6b93..00000000 Binary files a/public/textures/chipped/piked_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/pillar_amethyst_block_bricks.png b/public/textures/chipped/pillar_amethyst_block_bricks.png deleted file mode 100644 index 8a7abc84..00000000 Binary files a/public/textures/chipped/pillar_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_ancient_debris_bricks.png b/public/textures/chipped/pillar_ancient_debris_bricks.png deleted file mode 100644 index 5b4fe774..00000000 Binary files a/public/textures/chipped/pillar_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_andesite_bricks.png b/public/textures/chipped/pillar_andesite_bricks.png deleted file mode 100644 index 3a882ccb..00000000 Binary files a/public/textures/chipped/pillar_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_basalt_bricks.png b/public/textures/chipped/pillar_basalt_bricks.png deleted file mode 100644 index cc9343a0..00000000 Binary files a/public/textures/chipped/pillar_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_blackstone_bricks.png b/public/textures/chipped/pillar_blackstone_bricks.png deleted file mode 100644 index 8b750397..00000000 Binary files a/public/textures/chipped/pillar_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_blue_ice_bricks.png b/public/textures/chipped/pillar_blue_ice_bricks.png deleted file mode 100644 index 07c5e43a..00000000 Binary files a/public/textures/chipped/pillar_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_borderless_bricks_bricks.png b/public/textures/chipped/pillar_borderless_bricks_bricks.png deleted file mode 100644 index 06fbb0f0..00000000 Binary files a/public/textures/chipped/pillar_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_bricks_bricks.png b/public/textures/chipped/pillar_bricks_bricks.png deleted file mode 100644 index e1d94d44..00000000 Binary files a/public/textures/chipped/pillar_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_calcite_bricks.png b/public/textures/chipped/pillar_calcite_bricks.png deleted file mode 100644 index 0e775476..00000000 Binary files a/public/textures/chipped/pillar_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_clay_bricks.png b/public/textures/chipped/pillar_clay_bricks.png deleted file mode 100644 index e50a052d..00000000 Binary files a/public/textures/chipped/pillar_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_coal_block_bricks.png b/public/textures/chipped/pillar_coal_block_bricks.png deleted file mode 100644 index fc83a5bd..00000000 Binary files a/public/textures/chipped/pillar_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_cobblestone_bricks.png b/public/textures/chipped/pillar_cobblestone_bricks.png deleted file mode 100644 index 31c81f54..00000000 Binary files a/public/textures/chipped/pillar_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_crying_obsidian_bricks.png b/public/textures/chipped/pillar_crying_obsidian_bricks.png deleted file mode 100644 index 1048ea38..00000000 Binary files a/public/textures/chipped/pillar_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_dark_prismarine_bricks.png b/public/textures/chipped/pillar_dark_prismarine_bricks.png deleted file mode 100644 index 7729459a..00000000 Binary files a/public/textures/chipped/pillar_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_deepslate_bricks.png b/public/textures/chipped/pillar_deepslate_bricks.png deleted file mode 100644 index c19c02cd..00000000 Binary files a/public/textures/chipped/pillar_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_diorite_bricks.png b/public/textures/chipped/pillar_diorite_bricks.png deleted file mode 100644 index 293b700d..00000000 Binary files a/public/textures/chipped/pillar_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_dirt_bricks.png b/public/textures/chipped/pillar_dirt_bricks.png deleted file mode 100644 index 7f11106d..00000000 Binary files a/public/textures/chipped/pillar_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_dripstone_block_bricks.png b/public/textures/chipped/pillar_dripstone_block_bricks.png deleted file mode 100644 index b23dc5b7..00000000 Binary files a/public/textures/chipped/pillar_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_end_stone_bricks.png b/public/textures/chipped/pillar_end_stone_bricks.png deleted file mode 100644 index e7459ac9..00000000 Binary files a/public/textures/chipped/pillar_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_gilded_blackstone_bricks.png b/public/textures/chipped/pillar_gilded_blackstone_bricks.png deleted file mode 100644 index 6474b55e..00000000 Binary files a/public/textures/chipped/pillar_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_granite_bricks.png b/public/textures/chipped/pillar_granite_bricks.png deleted file mode 100644 index 6a65347d..00000000 Binary files a/public/textures/chipped/pillar_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_ice_bricks.png b/public/textures/chipped/pillar_ice_bricks.png deleted file mode 100644 index 27431011..00000000 Binary files a/public/textures/chipped/pillar_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_lapis_block_bricks.png b/public/textures/chipped/pillar_lapis_block_bricks.png deleted file mode 100644 index 319fc399..00000000 Binary files a/public/textures/chipped/pillar_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_lodestone_bricks.png b/public/textures/chipped/pillar_lodestone_bricks.png deleted file mode 100644 index 3347e29e..00000000 Binary files a/public/textures/chipped/pillar_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_magma_block_bricks.png b/public/textures/chipped/pillar_magma_block_bricks.png deleted file mode 100644 index d957ca1c..00000000 Binary files a/public/textures/chipped/pillar_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_mossy_cobblestone_bricks.png b/public/textures/chipped/pillar_mossy_cobblestone_bricks.png deleted file mode 100644 index 9ac98453..00000000 Binary files a/public/textures/chipped/pillar_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_mossy_stone_bricks_bricks.png b/public/textures/chipped/pillar_mossy_stone_bricks_bricks.png deleted file mode 100644 index b01fe3a3..00000000 Binary files a/public/textures/chipped/pillar_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_nether_bricks_bricks.png b/public/textures/chipped/pillar_nether_bricks_bricks.png deleted file mode 100644 index 491ab6dd..00000000 Binary files a/public/textures/chipped/pillar_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_netherrack_bricks.png b/public/textures/chipped/pillar_netherrack_bricks.png deleted file mode 100644 index 83212c0e..00000000 Binary files a/public/textures/chipped/pillar_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_obsidian_bricks.png b/public/textures/chipped/pillar_obsidian_bricks.png deleted file mode 100644 index d31e3137..00000000 Binary files a/public/textures/chipped/pillar_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_packed_ice_bricks.png b/public/textures/chipped/pillar_packed_ice_bricks.png deleted file mode 100644 index 566fadce..00000000 Binary files a/public/textures/chipped/pillar_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_prismarine_bricks.png b/public/textures/chipped/pillar_prismarine_bricks.png deleted file mode 100644 index 1497ee72..00000000 Binary files a/public/textures/chipped/pillar_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_purpur_block_bricks.png b/public/textures/chipped/pillar_purpur_block_bricks.png deleted file mode 100644 index 2240a41e..00000000 Binary files a/public/textures/chipped/pillar_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_quartz_block_bricks.png b/public/textures/chipped/pillar_quartz_block_bricks.png deleted file mode 100644 index 8e43a419..00000000 Binary files a/public/textures/chipped/pillar_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_raw_copper_block_bricks.png b/public/textures/chipped/pillar_raw_copper_block_bricks.png deleted file mode 100644 index 548839dd..00000000 Binary files a/public/textures/chipped/pillar_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_raw_gold_block_bricks.png b/public/textures/chipped/pillar_raw_gold_block_bricks.png deleted file mode 100644 index 5feaa74b..00000000 Binary files a/public/textures/chipped/pillar_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_raw_iron_block_bricks.png b/public/textures/chipped/pillar_raw_iron_block_bricks.png deleted file mode 100644 index 18f8c069..00000000 Binary files a/public/textures/chipped/pillar_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_red_nether_bricks_bricks.png b/public/textures/chipped/pillar_red_nether_bricks_bricks.png deleted file mode 100644 index cd9c6f40..00000000 Binary files a/public/textures/chipped/pillar_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_red_sandstone_bricks.png b/public/textures/chipped/pillar_red_sandstone_bricks.png deleted file mode 100644 index 6aaad1b5..00000000 Binary files a/public/textures/chipped/pillar_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_redstone_block_bricks.png b/public/textures/chipped/pillar_redstone_block_bricks.png deleted file mode 100644 index f98b68d4..00000000 Binary files a/public/textures/chipped/pillar_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_sandstone_bricks.png b/public/textures/chipped/pillar_sandstone_bricks.png deleted file mode 100644 index 183a7cc6..00000000 Binary files a/public/textures/chipped/pillar_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_smooth_stone_bricks.png b/public/textures/chipped/pillar_smooth_stone_bricks.png deleted file mode 100644 index cdc54b8c..00000000 Binary files a/public/textures/chipped/pillar_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_snow_block_bricks.png b/public/textures/chipped/pillar_snow_block_bricks.png deleted file mode 100644 index 75b06e4c..00000000 Binary files a/public/textures/chipped/pillar_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_stone_bricks.png b/public/textures/chipped/pillar_stone_bricks.png deleted file mode 100644 index 40d73829..00000000 Binary files a/public/textures/chipped/pillar_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pillar_tuff_bricks.png b/public/textures/chipped/pillar_tuff_bricks.png deleted file mode 100644 index 23b61365..00000000 Binary files a/public/textures/chipped/pillar_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pimpkin.png b/public/textures/chipped/pimpkin.png deleted file mode 100644 index bae5d08d..00000000 Binary files a/public/textures/chipped/pimpkin.png and /dev/null differ diff --git a/public/textures/chipped/pink_concrete_bricks.png b/public/textures/chipped/pink_concrete_bricks.png deleted file mode 100644 index 4fffc4e1..00000000 Binary files a/public/textures/chipped/pink_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pink_concrete_panel.png b/public/textures/chipped/pink_concrete_panel.png deleted file mode 100644 index ddc0420b..00000000 Binary files a/public/textures/chipped/pink_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/pink_concrete_pillar.png b/public/textures/chipped/pink_concrete_pillar.png deleted file mode 100644 index 7d2e7bc5..00000000 Binary files a/public/textures/chipped/pink_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/pink_concrete_tiles.png b/public/textures/chipped/pink_concrete_tiles.png deleted file mode 100644 index 80578ee8..00000000 Binary files a/public/textures/chipped/pink_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/pink_glazed_terracotta_pillar_sides.png b/public/textures/chipped/pink_glazed_terracotta_pillar_sides.png deleted file mode 100644 index f5b404da..00000000 Binary files a/public/textures/chipped/pink_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/pink_glazed_terracotta_pillar_top.png b/public/textures/chipped/pink_glazed_terracotta_pillar_top.png deleted file mode 100644 index 06c1cb76..00000000 Binary files a/public/textures/chipped/pink_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/pink_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/pink_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index c7d8d7d9..00000000 Binary files a/public/textures/chipped/pink_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/pink_glazed_terracotta_tiles.png b/public/textures/chipped/pink_glazed_terracotta_tiles.png deleted file mode 100644 index fdd39f37..00000000 Binary files a/public/textures/chipped/pink_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/pink_terracotta_bricks.png b/public/textures/chipped/pink_terracotta_bricks.png deleted file mode 100644 index a27c2691..00000000 Binary files a/public/textures/chipped/pink_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/pink_terracotta_column.png b/public/textures/chipped/pink_terracotta_column.png deleted file mode 100644 index 3cd6b1bf..00000000 Binary files a/public/textures/chipped/pink_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/pink_terracotta_pillar.png b/public/textures/chipped/pink_terracotta_pillar.png deleted file mode 100644 index e5cba0a2..00000000 Binary files a/public/textures/chipped/pink_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/pink_terracotta_tile.png b/public/textures/chipped/pink_terracotta_tile.png deleted file mode 100644 index 19543281..00000000 Binary files a/public/textures/chipped/pink_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/pink_terracotta_tiles.png b/public/textures/chipped/pink_terracotta_tiles.png deleted file mode 100644 index 0849d90b..00000000 Binary files a/public/textures/chipped/pink_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/placed_mud.png b/public/textures/chipped/placed_mud.png deleted file mode 100644 index 352e17c2..00000000 Binary files a/public/textures/chipped/placed_mud.png and /dev/null differ diff --git a/public/textures/chipped/placed_mud_bricks.png b/public/textures/chipped/placed_mud_bricks.png deleted file mode 100644 index 87300df8..00000000 Binary files a/public/textures/chipped/placed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/placed_packed_mud.png b/public/textures/chipped/placed_packed_mud.png deleted file mode 100644 index 3d6e1bb2..00000000 Binary files a/public/textures/chipped/placed_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/plank_ladder.png b/public/textures/chipped/plank_ladder.png deleted file mode 100644 index 0e58ee28..00000000 Binary files a/public/textures/chipped/plank_ladder.png and /dev/null differ diff --git a/public/textures/chipped/planked_acacia_log.png b/public/textures/chipped/planked_acacia_log.png deleted file mode 100644 index 7dcbb4a8..00000000 Binary files a/public/textures/chipped/planked_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/planked_birch_log.png b/public/textures/chipped/planked_birch_log.png deleted file mode 100644 index 862b8340..00000000 Binary files a/public/textures/chipped/planked_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/planked_cherry_log.png b/public/textures/chipped/planked_cherry_log.png deleted file mode 100644 index fc78e4ca..00000000 Binary files a/public/textures/chipped/planked_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/planked_crimson_stem.png b/public/textures/chipped/planked_crimson_stem.png deleted file mode 100644 index 0e84b160..00000000 Binary files a/public/textures/chipped/planked_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/planked_dark_oak_log.png b/public/textures/chipped/planked_dark_oak_log.png deleted file mode 100644 index 15e94919..00000000 Binary files a/public/textures/chipped/planked_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/planked_jungle_log.png b/public/textures/chipped/planked_jungle_log.png deleted file mode 100644 index 7ff5e1d2..00000000 Binary files a/public/textures/chipped/planked_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/planked_mangrove_log.png b/public/textures/chipped/planked_mangrove_log.png deleted file mode 100644 index 85fbd8df..00000000 Binary files a/public/textures/chipped/planked_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/planked_oak_log.png b/public/textures/chipped/planked_oak_log.png deleted file mode 100644 index dadceafb..00000000 Binary files a/public/textures/chipped/planked_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/planked_spruce_log.png b/public/textures/chipped/planked_spruce_log.png deleted file mode 100644 index b7b91cf7..00000000 Binary files a/public/textures/chipped/planked_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/planked_warped_stem.png b/public/textures/chipped/planked_warped_stem.png deleted file mode 100644 index f5a1707f..00000000 Binary files a/public/textures/chipped/planked_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/plated_diamond_block.png b/public/textures/chipped/plated_diamond_block.png deleted file mode 100644 index 5752d7c9..00000000 Binary files a/public/textures/chipped/plated_diamond_block.png and /dev/null differ diff --git a/public/textures/chipped/plated_emerald_block.png b/public/textures/chipped/plated_emerald_block.png deleted file mode 100644 index 8683531d..00000000 Binary files a/public/textures/chipped/plated_emerald_block.png and /dev/null differ diff --git a/public/textures/chipped/plated_gold_block.png b/public/textures/chipped/plated_gold_block.png deleted file mode 100644 index dbc5f847..00000000 Binary files a/public/textures/chipped/plated_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/plated_iron_block.png b/public/textures/chipped/plated_iron_block.png deleted file mode 100644 index 41d9c793..00000000 Binary files a/public/textures/chipped/plated_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/plated_netherite_block.png b/public/textures/chipped/plated_netherite_block.png deleted file mode 100644 index bb4f3764..00000000 Binary files a/public/textures/chipped/plated_netherite_block.png and /dev/null differ diff --git a/public/textures/chipped/plated_waxed_copper_block.png b/public/textures/chipped/plated_waxed_copper_block.png deleted file mode 100644 index cd04fca3..00000000 Binary files a/public/textures/chipped/plated_waxed_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/plated_waxed_exposed_copper.png b/public/textures/chipped/plated_waxed_exposed_copper.png deleted file mode 100644 index d47279fc..00000000 Binary files a/public/textures/chipped/plated_waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/chipped/plated_waxed_oxidized_copper.png b/public/textures/chipped/plated_waxed_oxidized_copper.png deleted file mode 100644 index ae397230..00000000 Binary files a/public/textures/chipped/plated_waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/chipped/plated_waxed_weathered_copper.png b/public/textures/chipped/plated_waxed_weathered_copper.png deleted file mode 100644 index 3f0845f3..00000000 Binary files a/public/textures/chipped/plated_waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/chipped/pointless_acacia_trapdoor.png b/public/textures/chipped/pointless_acacia_trapdoor.png deleted file mode 100644 index 97b190ed..00000000 Binary files a/public/textures/chipped/pointless_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/pointless_bamboo_trapdoor.png b/public/textures/chipped/pointless_bamboo_trapdoor.png deleted file mode 100644 index f3b70e24..00000000 Binary files a/public/textures/chipped/pointless_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/pointless_birch_trapdoor.png b/public/textures/chipped/pointless_birch_trapdoor.png deleted file mode 100644 index 764e081c..00000000 Binary files a/public/textures/chipped/pointless_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/pointless_cherry_trapdoor.png b/public/textures/chipped/pointless_cherry_trapdoor.png deleted file mode 100644 index 240ed5e8..00000000 Binary files a/public/textures/chipped/pointless_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/pointless_crimson_trapdoor.png b/public/textures/chipped/pointless_crimson_trapdoor.png deleted file mode 100644 index 653ebdfd..00000000 Binary files a/public/textures/chipped/pointless_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/pointless_dark_oak_trapdoor.png b/public/textures/chipped/pointless_dark_oak_trapdoor.png deleted file mode 100644 index 0ede5a18..00000000 Binary files a/public/textures/chipped/pointless_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/pointless_jungle_trapdoor.png b/public/textures/chipped/pointless_jungle_trapdoor.png deleted file mode 100644 index 49f92607..00000000 Binary files a/public/textures/chipped/pointless_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/pointless_mangrove_trapdoor.png b/public/textures/chipped/pointless_mangrove_trapdoor.png deleted file mode 100644 index 7a722711..00000000 Binary files a/public/textures/chipped/pointless_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/pointless_oak_trapdoor.png b/public/textures/chipped/pointless_oak_trapdoor.png deleted file mode 100644 index e57fcc59..00000000 Binary files a/public/textures/chipped/pointless_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/pointless_spruce_trapdoor.png b/public/textures/chipped/pointless_spruce_trapdoor.png deleted file mode 100644 index 9ad17c20..00000000 Binary files a/public/textures/chipped/pointless_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/pointless_warped_trapdoor.png b/public/textures/chipped/pointless_warped_trapdoor.png deleted file mode 100644 index eba121fc..00000000 Binary files a/public/textures/chipped/pointless_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/poisonous_mushroom_stem.png b/public/textures/chipped/poisonous_mushroom_stem.png deleted file mode 100644 index fa7ccbf8..00000000 Binary files a/public/textures/chipped/poisonous_mushroom_stem.png and /dev/null differ diff --git a/public/textures/chipped/poisonous_vine.png b/public/textures/chipped/poisonous_vine.png deleted file mode 100644 index ada68b39..00000000 Binary files a/public/textures/chipped/poisonous_vine.png and /dev/null differ diff --git a/public/textures/chipped/polished_acacia_planks.png b/public/textures/chipped/polished_acacia_planks.png deleted file mode 100644 index 3e28b88a..00000000 Binary files a/public/textures/chipped/polished_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/polished_amethyst_block.png b/public/textures/chipped/polished_amethyst_block.png deleted file mode 100644 index dcaffac6..00000000 Binary files a/public/textures/chipped/polished_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_ancient_debris.png b/public/textures/chipped/polished_ancient_debris.png deleted file mode 100644 index a8eaaecc..00000000 Binary files a/public/textures/chipped/polished_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/polished_andesite.png b/public/textures/chipped/polished_andesite.png deleted file mode 100644 index d70ef5cd..00000000 Binary files a/public/textures/chipped/polished_andesite.png and /dev/null differ diff --git a/public/textures/chipped/polished_bamboo_planks.png b/public/textures/chipped/polished_bamboo_planks.png deleted file mode 100644 index a4c8821d..00000000 Binary files a/public/textures/chipped/polished_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/polished_basalt.png b/public/textures/chipped/polished_basalt.png deleted file mode 100644 index ebf3ca81..00000000 Binary files a/public/textures/chipped/polished_basalt.png and /dev/null differ diff --git a/public/textures/chipped/polished_birch_planks.png b/public/textures/chipped/polished_birch_planks.png deleted file mode 100644 index 160246de..00000000 Binary files a/public/textures/chipped/polished_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/polished_blackstone.png b/public/textures/chipped/polished_blackstone.png deleted file mode 100644 index 9cff6cc4..00000000 Binary files a/public/textures/chipped/polished_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/polished_blue_ice.png b/public/textures/chipped/polished_blue_ice.png deleted file mode 100644 index eeda0ed3..00000000 Binary files a/public/textures/chipped/polished_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/polished_borderless_bricks.png b/public/textures/chipped/polished_borderless_bricks.png deleted file mode 100644 index a5607779..00000000 Binary files a/public/textures/chipped/polished_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/polished_bricks.png b/public/textures/chipped/polished_bricks.png deleted file mode 100644 index 12288eb5..00000000 Binary files a/public/textures/chipped/polished_bricks.png and /dev/null differ diff --git a/public/textures/chipped/polished_calcite.png b/public/textures/chipped/polished_calcite.png deleted file mode 100644 index 32d03e46..00000000 Binary files a/public/textures/chipped/polished_calcite.png and /dev/null differ diff --git a/public/textures/chipped/polished_cherry_planks.png b/public/textures/chipped/polished_cherry_planks.png deleted file mode 100644 index b5120e9d..00000000 Binary files a/public/textures/chipped/polished_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/polished_clay.png b/public/textures/chipped/polished_clay.png deleted file mode 100644 index 4878c174..00000000 Binary files a/public/textures/chipped/polished_clay.png and /dev/null differ diff --git a/public/textures/chipped/polished_coal_block.png b/public/textures/chipped/polished_coal_block.png deleted file mode 100644 index 035de320..00000000 Binary files a/public/textures/chipped/polished_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_cobblestone.png b/public/textures/chipped/polished_cobblestone.png deleted file mode 100644 index a1a824fb..00000000 Binary files a/public/textures/chipped/polished_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/polished_crimson_planks.png b/public/textures/chipped/polished_crimson_planks.png deleted file mode 100644 index 9a68b3e7..00000000 Binary files a/public/textures/chipped/polished_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/polished_crying_obsidian.png b/public/textures/chipped/polished_crying_obsidian.png deleted file mode 100644 index 70e0be06..00000000 Binary files a/public/textures/chipped/polished_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/polished_dark_oak_planks.png b/public/textures/chipped/polished_dark_oak_planks.png deleted file mode 100644 index 359d3c1b..00000000 Binary files a/public/textures/chipped/polished_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/polished_dark_prismarine.png b/public/textures/chipped/polished_dark_prismarine.png deleted file mode 100644 index 2bca6b02..00000000 Binary files a/public/textures/chipped/polished_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/polished_deepslate.png b/public/textures/chipped/polished_deepslate.png deleted file mode 100644 index 051a11e8..00000000 Binary files a/public/textures/chipped/polished_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/polished_diorite.png b/public/textures/chipped/polished_diorite.png deleted file mode 100644 index cd127eca..00000000 Binary files a/public/textures/chipped/polished_diorite.png and /dev/null differ diff --git a/public/textures/chipped/polished_dirt.png b/public/textures/chipped/polished_dirt.png deleted file mode 100644 index 9d9c54c7..00000000 Binary files a/public/textures/chipped/polished_dirt.png and /dev/null differ diff --git a/public/textures/chipped/polished_dripstone_block.png b/public/textures/chipped/polished_dripstone_block.png deleted file mode 100644 index 31d6ed90..00000000 Binary files a/public/textures/chipped/polished_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_emerald_block.png b/public/textures/chipped/polished_emerald_block.png deleted file mode 100644 index a65d81ca..00000000 Binary files a/public/textures/chipped/polished_emerald_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_end_stone.png b/public/textures/chipped/polished_end_stone.png deleted file mode 100644 index 47d008f2..00000000 Binary files a/public/textures/chipped/polished_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/polished_gilded_blackstone.png b/public/textures/chipped/polished_gilded_blackstone.png deleted file mode 100644 index 461b869f..00000000 Binary files a/public/textures/chipped/polished_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/polished_glowstone.png b/public/textures/chipped/polished_glowstone.png deleted file mode 100644 index 8c5c9b1d..00000000 Binary files a/public/textures/chipped/polished_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/polished_granite.png b/public/textures/chipped/polished_granite.png deleted file mode 100644 index 41c99687..00000000 Binary files a/public/textures/chipped/polished_granite.png and /dev/null differ diff --git a/public/textures/chipped/polished_ice.png b/public/textures/chipped/polished_ice.png deleted file mode 100644 index 2ef01b18..00000000 Binary files a/public/textures/chipped/polished_ice.png and /dev/null differ diff --git a/public/textures/chipped/polished_iron_block.png b/public/textures/chipped/polished_iron_block.png deleted file mode 100644 index bfa860af..00000000 Binary files a/public/textures/chipped/polished_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_jungle_planks.png b/public/textures/chipped/polished_jungle_planks.png deleted file mode 100644 index 5df87a44..00000000 Binary files a/public/textures/chipped/polished_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/polished_lapis_block.png b/public/textures/chipped/polished_lapis_block.png deleted file mode 100644 index b104f99d..00000000 Binary files a/public/textures/chipped/polished_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_lodestone.png b/public/textures/chipped/polished_lodestone.png deleted file mode 100644 index 9f2383e0..00000000 Binary files a/public/textures/chipped/polished_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/polished_magma_block.png b/public/textures/chipped/polished_magma_block.png deleted file mode 100644 index c87ad0fb..00000000 Binary files a/public/textures/chipped/polished_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_mangrove_planks.png b/public/textures/chipped/polished_mangrove_planks.png deleted file mode 100644 index 25756e03..00000000 Binary files a/public/textures/chipped/polished_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/polished_mossy_cobblestone.png b/public/textures/chipped/polished_mossy_cobblestone.png deleted file mode 100644 index 8d309d7a..00000000 Binary files a/public/textures/chipped/polished_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/polished_mossy_stone_bricks.png b/public/textures/chipped/polished_mossy_stone_bricks.png deleted file mode 100644 index 491e6456..00000000 Binary files a/public/textures/chipped/polished_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/polished_mud.png b/public/textures/chipped/polished_mud.png deleted file mode 100644 index 57b8662c..00000000 Binary files a/public/textures/chipped/polished_mud.png and /dev/null differ diff --git a/public/textures/chipped/polished_mud_bricks.png b/public/textures/chipped/polished_mud_bricks.png deleted file mode 100644 index 35a58f7d..00000000 Binary files a/public/textures/chipped/polished_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/polished_nether_bricks.png b/public/textures/chipped/polished_nether_bricks.png deleted file mode 100644 index 6e33ec4a..00000000 Binary files a/public/textures/chipped/polished_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/polished_netherite_block.png b/public/textures/chipped/polished_netherite_block.png deleted file mode 100644 index 1e2c24a3..00000000 Binary files a/public/textures/chipped/polished_netherite_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_netherrack.png b/public/textures/chipped/polished_netherrack.png deleted file mode 100644 index a7496b16..00000000 Binary files a/public/textures/chipped/polished_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/polished_oak_planks.png b/public/textures/chipped/polished_oak_planks.png deleted file mode 100644 index 94fc7bb4..00000000 Binary files a/public/textures/chipped/polished_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/polished_obsidian.png b/public/textures/chipped/polished_obsidian.png deleted file mode 100644 index 672105b8..00000000 Binary files a/public/textures/chipped/polished_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/polished_packed_ice.png b/public/textures/chipped/polished_packed_ice.png deleted file mode 100644 index c5da8e70..00000000 Binary files a/public/textures/chipped/polished_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/polished_packed_mud.png b/public/textures/chipped/polished_packed_mud.png deleted file mode 100644 index d5630aab..00000000 Binary files a/public/textures/chipped/polished_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/polished_prismarine.png b/public/textures/chipped/polished_prismarine.png deleted file mode 100644 index 797a350f..00000000 Binary files a/public/textures/chipped/polished_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/polished_purpur_block.png b/public/textures/chipped/polished_purpur_block.png deleted file mode 100644 index 1b16d4b6..00000000 Binary files a/public/textures/chipped/polished_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_quartz_block.png b/public/textures/chipped/polished_quartz_block.png deleted file mode 100644 index 81f35876..00000000 Binary files a/public/textures/chipped/polished_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_raw_copper_block.png b/public/textures/chipped/polished_raw_copper_block.png deleted file mode 100644 index d12d6856..00000000 Binary files a/public/textures/chipped/polished_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_raw_gold_block.png b/public/textures/chipped/polished_raw_gold_block.png deleted file mode 100644 index 2d2b0fd1..00000000 Binary files a/public/textures/chipped/polished_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_raw_iron_block.png b/public/textures/chipped/polished_raw_iron_block.png deleted file mode 100644 index 6f6c6df8..00000000 Binary files a/public/textures/chipped/polished_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_red_nether_bricks.png b/public/textures/chipped/polished_red_nether_bricks.png deleted file mode 100644 index 6602fa0b..00000000 Binary files a/public/textures/chipped/polished_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/polished_red_sandstone.png b/public/textures/chipped/polished_red_sandstone.png deleted file mode 100644 index 60ab1a00..00000000 Binary files a/public/textures/chipped/polished_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/polished_redstone_block.png b/public/textures/chipped/polished_redstone_block.png deleted file mode 100644 index 7e98c58e..00000000 Binary files a/public/textures/chipped/polished_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_sandstone.png b/public/textures/chipped/polished_sandstone.png deleted file mode 100644 index a7ed1a80..00000000 Binary files a/public/textures/chipped/polished_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/polished_sea_lantern.png b/public/textures/chipped/polished_sea_lantern.png deleted file mode 100644 index 368e4f1b..00000000 Binary files a/public/textures/chipped/polished_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/polished_shroomlight.png b/public/textures/chipped/polished_shroomlight.png deleted file mode 100644 index 7eaf2ad2..00000000 Binary files a/public/textures/chipped/polished_shroomlight.png and /dev/null differ diff --git a/public/textures/chipped/polished_smooth_stone.png b/public/textures/chipped/polished_smooth_stone.png deleted file mode 100644 index ca149dea..00000000 Binary files a/public/textures/chipped/polished_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/polished_snow_block.png b/public/textures/chipped/polished_snow_block.png deleted file mode 100644 index a8b57488..00000000 Binary files a/public/textures/chipped/polished_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/polished_spruce_planks.png b/public/textures/chipped/polished_spruce_planks.png deleted file mode 100644 index a4f38919..00000000 Binary files a/public/textures/chipped/polished_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/polished_stone.png b/public/textures/chipped/polished_stone.png deleted file mode 100644 index 3aade05e..00000000 Binary files a/public/textures/chipped/polished_stone.png and /dev/null differ diff --git a/public/textures/chipped/polished_tuff.png b/public/textures/chipped/polished_tuff.png deleted file mode 100644 index 0654bdc6..00000000 Binary files a/public/textures/chipped/polished_tuff.png and /dev/null differ diff --git a/public/textures/chipped/polished_warped_planks.png b/public/textures/chipped/polished_warped_planks.png deleted file mode 100644 index b8fc5158..00000000 Binary files a/public/textures/chipped/polished_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/porous_nether_wart_block.png b/public/textures/chipped/porous_nether_wart_block.png deleted file mode 100644 index e777b6c9..00000000 Binary files a/public/textures/chipped/porous_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/porous_warped_wart_block.png b/public/textures/chipped/porous_warped_wart_block.png deleted file mode 100644 index 0b436f62..00000000 Binary files a/public/textures/chipped/porous_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/pressed_acacia_door.png b/public/textures/chipped/pressed_acacia_door.png deleted file mode 100644 index 7f2a231f..00000000 Binary files a/public/textures/chipped/pressed_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/pressed_bamboo_door.png b/public/textures/chipped/pressed_bamboo_door.png deleted file mode 100644 index fd4456ba..00000000 Binary files a/public/textures/chipped/pressed_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/pressed_birch_door.png b/public/textures/chipped/pressed_birch_door.png deleted file mode 100644 index 27ffe1b9..00000000 Binary files a/public/textures/chipped/pressed_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/pressed_cherry_door.png b/public/textures/chipped/pressed_cherry_door.png deleted file mode 100644 index b87e58dd..00000000 Binary files a/public/textures/chipped/pressed_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/pressed_crimson_door.png b/public/textures/chipped/pressed_crimson_door.png deleted file mode 100644 index b0a240cf..00000000 Binary files a/public/textures/chipped/pressed_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/pressed_dark_oak_door.png b/public/textures/chipped/pressed_dark_oak_door.png deleted file mode 100644 index 6d4b4e4d..00000000 Binary files a/public/textures/chipped/pressed_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/pressed_diamond_block.png b/public/textures/chipped/pressed_diamond_block.png deleted file mode 100644 index c9932f8e..00000000 Binary files a/public/textures/chipped/pressed_diamond_block.png and /dev/null differ diff --git a/public/textures/chipped/pressed_gold_block.png b/public/textures/chipped/pressed_gold_block.png deleted file mode 100644 index a869e8dc..00000000 Binary files a/public/textures/chipped/pressed_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/pressed_iron_block.png b/public/textures/chipped/pressed_iron_block.png deleted file mode 100644 index 59e16806..00000000 Binary files a/public/textures/chipped/pressed_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/pressed_jungle_door.png b/public/textures/chipped/pressed_jungle_door.png deleted file mode 100644 index 0dfc588f..00000000 Binary files a/public/textures/chipped/pressed_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/pressed_mangrove_door.png b/public/textures/chipped/pressed_mangrove_door.png deleted file mode 100644 index d589385a..00000000 Binary files a/public/textures/chipped/pressed_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/pressed_netherite_block.png b/public/textures/chipped/pressed_netherite_block.png deleted file mode 100644 index fe62e2f7..00000000 Binary files a/public/textures/chipped/pressed_netherite_block.png and /dev/null differ diff --git a/public/textures/chipped/pressed_oak_door.png b/public/textures/chipped/pressed_oak_door.png deleted file mode 100644 index 91baaf36..00000000 Binary files a/public/textures/chipped/pressed_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/pressed_spruce_door.png b/public/textures/chipped/pressed_spruce_door.png deleted file mode 100644 index 93e2254c..00000000 Binary files a/public/textures/chipped/pressed_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/pressed_warped_door.png b/public/textures/chipped/pressed_warped_door.png deleted file mode 100644 index f50601e2..00000000 Binary files a/public/textures/chipped/pressed_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/pressed_waxed_copper_block.png b/public/textures/chipped/pressed_waxed_copper_block.png deleted file mode 100644 index 249e7e2a..00000000 Binary files a/public/textures/chipped/pressed_waxed_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/pressed_waxed_exposed_copper.png b/public/textures/chipped/pressed_waxed_exposed_copper.png deleted file mode 100644 index a4310aa6..00000000 Binary files a/public/textures/chipped/pressed_waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/chipped/pressed_waxed_oxidized_copper.png b/public/textures/chipped/pressed_waxed_oxidized_copper.png deleted file mode 100644 index c8de868e..00000000 Binary files a/public/textures/chipped/pressed_waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/chipped/pressed_waxed_weathered_copper.png b/public/textures/chipped/pressed_waxed_weathered_copper.png deleted file mode 100644 index 01a1d02e..00000000 Binary files a/public/textures/chipped/pressed_waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/chipped/prismal_amethyst_block_remnants.png b/public/textures/chipped/prismal_amethyst_block_remnants.png deleted file mode 100644 index cc1e7635..00000000 Binary files a/public/textures/chipped/prismal_amethyst_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_ancient_debris_remnants.png b/public/textures/chipped/prismal_ancient_debris_remnants.png deleted file mode 100644 index 0f87a438..00000000 Binary files a/public/textures/chipped/prismal_ancient_debris_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_andesite_remnants.png b/public/textures/chipped/prismal_andesite_remnants.png deleted file mode 100644 index 512cddba..00000000 Binary files a/public/textures/chipped/prismal_andesite_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_basalt_remnants.png b/public/textures/chipped/prismal_basalt_remnants.png deleted file mode 100644 index 82551391..00000000 Binary files a/public/textures/chipped/prismal_basalt_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_blackstone_remnants.png b/public/textures/chipped/prismal_blackstone_remnants.png deleted file mode 100644 index 88853665..00000000 Binary files a/public/textures/chipped/prismal_blackstone_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_blue_ice_remnants.png b/public/textures/chipped/prismal_blue_ice_remnants.png deleted file mode 100644 index cf563eeb..00000000 Binary files a/public/textures/chipped/prismal_blue_ice_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_borderless_bricks_remnants.png b/public/textures/chipped/prismal_borderless_bricks_remnants.png deleted file mode 100644 index ca1034b4..00000000 Binary files a/public/textures/chipped/prismal_borderless_bricks_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_bricks_remnants.png b/public/textures/chipped/prismal_bricks_remnants.png deleted file mode 100644 index 34b80c22..00000000 Binary files a/public/textures/chipped/prismal_bricks_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_calcite_remnants.png b/public/textures/chipped/prismal_calcite_remnants.png deleted file mode 100644 index a4ef009b..00000000 Binary files a/public/textures/chipped/prismal_calcite_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_clay_remnants.png b/public/textures/chipped/prismal_clay_remnants.png deleted file mode 100644 index a286275c..00000000 Binary files a/public/textures/chipped/prismal_clay_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_coal_block_remnants.png b/public/textures/chipped/prismal_coal_block_remnants.png deleted file mode 100644 index 8edd3bbb..00000000 Binary files a/public/textures/chipped/prismal_coal_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_cobblestone_remnants.png b/public/textures/chipped/prismal_cobblestone_remnants.png deleted file mode 100644 index 3d45fa53..00000000 Binary files a/public/textures/chipped/prismal_cobblestone_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_crying_obsidian_remnants.png b/public/textures/chipped/prismal_crying_obsidian_remnants.png deleted file mode 100644 index 73b3d1b7..00000000 Binary files a/public/textures/chipped/prismal_crying_obsidian_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_dark_prismarine_remnants.png b/public/textures/chipped/prismal_dark_prismarine_remnants.png deleted file mode 100644 index 915509bd..00000000 Binary files a/public/textures/chipped/prismal_dark_prismarine_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_deepslate_remnants.png b/public/textures/chipped/prismal_deepslate_remnants.png deleted file mode 100644 index 02f3ea13..00000000 Binary files a/public/textures/chipped/prismal_deepslate_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_diorite_remnants.png b/public/textures/chipped/prismal_diorite_remnants.png deleted file mode 100644 index c7cdab3d..00000000 Binary files a/public/textures/chipped/prismal_diorite_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_dirt_remnants.png b/public/textures/chipped/prismal_dirt_remnants.png deleted file mode 100644 index 94c21997..00000000 Binary files a/public/textures/chipped/prismal_dirt_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_dripstone_block_remnants.png b/public/textures/chipped/prismal_dripstone_block_remnants.png deleted file mode 100644 index b1d7f0c0..00000000 Binary files a/public/textures/chipped/prismal_dripstone_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_end_stone_remnants.png b/public/textures/chipped/prismal_end_stone_remnants.png deleted file mode 100644 index 47f2a66d..00000000 Binary files a/public/textures/chipped/prismal_end_stone_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_gilded_blackstone_remnants.png b/public/textures/chipped/prismal_gilded_blackstone_remnants.png deleted file mode 100644 index 0f025669..00000000 Binary files a/public/textures/chipped/prismal_gilded_blackstone_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_granite_remnants.png b/public/textures/chipped/prismal_granite_remnants.png deleted file mode 100644 index f4e67c3c..00000000 Binary files a/public/textures/chipped/prismal_granite_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_ice_remnants.png b/public/textures/chipped/prismal_ice_remnants.png deleted file mode 100644 index 5cfed5db..00000000 Binary files a/public/textures/chipped/prismal_ice_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_lapis_block_remnants.png b/public/textures/chipped/prismal_lapis_block_remnants.png deleted file mode 100644 index 4c717090..00000000 Binary files a/public/textures/chipped/prismal_lapis_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_lodestone_remnants.png b/public/textures/chipped/prismal_lodestone_remnants.png deleted file mode 100644 index 30c00e54..00000000 Binary files a/public/textures/chipped/prismal_lodestone_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_magma_block_remnants.png b/public/textures/chipped/prismal_magma_block_remnants.png deleted file mode 100644 index 6d6d0554..00000000 Binary files a/public/textures/chipped/prismal_magma_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_mossy_cobblestone_remnants.png b/public/textures/chipped/prismal_mossy_cobblestone_remnants.png deleted file mode 100644 index f99f0f2e..00000000 Binary files a/public/textures/chipped/prismal_mossy_cobblestone_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_mossy_stone_bricks_remnants.png b/public/textures/chipped/prismal_mossy_stone_bricks_remnants.png deleted file mode 100644 index 5262a3fa..00000000 Binary files a/public/textures/chipped/prismal_mossy_stone_bricks_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_mud_bricks_remnants.png b/public/textures/chipped/prismal_mud_bricks_remnants.png deleted file mode 100644 index a5992895..00000000 Binary files a/public/textures/chipped/prismal_mud_bricks_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_mud_remnants.png b/public/textures/chipped/prismal_mud_remnants.png deleted file mode 100644 index 7c5dba48..00000000 Binary files a/public/textures/chipped/prismal_mud_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_nether_bricks_remnants.png b/public/textures/chipped/prismal_nether_bricks_remnants.png deleted file mode 100644 index abc16308..00000000 Binary files a/public/textures/chipped/prismal_nether_bricks_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_netherrack_remnants.png b/public/textures/chipped/prismal_netherrack_remnants.png deleted file mode 100644 index 3854c426..00000000 Binary files a/public/textures/chipped/prismal_netherrack_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_obsidian_remnants.png b/public/textures/chipped/prismal_obsidian_remnants.png deleted file mode 100644 index d6a3704c..00000000 Binary files a/public/textures/chipped/prismal_obsidian_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_packed_ice_remnants.png b/public/textures/chipped/prismal_packed_ice_remnants.png deleted file mode 100644 index c3a35cf7..00000000 Binary files a/public/textures/chipped/prismal_packed_ice_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_packed_mud_remnants.png b/public/textures/chipped/prismal_packed_mud_remnants.png deleted file mode 100644 index a194cba0..00000000 Binary files a/public/textures/chipped/prismal_packed_mud_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_purpur_block_remnants.png b/public/textures/chipped/prismal_purpur_block_remnants.png deleted file mode 100644 index 2448c86e..00000000 Binary files a/public/textures/chipped/prismal_purpur_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_quartz_block_remnants.png b/public/textures/chipped/prismal_quartz_block_remnants.png deleted file mode 100644 index f8a6a7e8..00000000 Binary files a/public/textures/chipped/prismal_quartz_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_raw_copper_block_remnants.png b/public/textures/chipped/prismal_raw_copper_block_remnants.png deleted file mode 100644 index 67d3a7e5..00000000 Binary files a/public/textures/chipped/prismal_raw_copper_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_raw_gold_block_remnants.png b/public/textures/chipped/prismal_raw_gold_block_remnants.png deleted file mode 100644 index 6e4adf54..00000000 Binary files a/public/textures/chipped/prismal_raw_gold_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_raw_iron_block_remnants.png b/public/textures/chipped/prismal_raw_iron_block_remnants.png deleted file mode 100644 index 89523180..00000000 Binary files a/public/textures/chipped/prismal_raw_iron_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_red_nether_bricks_remnants.png b/public/textures/chipped/prismal_red_nether_bricks_remnants.png deleted file mode 100644 index 3cce8b7c..00000000 Binary files a/public/textures/chipped/prismal_red_nether_bricks_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_red_sandstone_remnants.png b/public/textures/chipped/prismal_red_sandstone_remnants.png deleted file mode 100644 index 09e1c156..00000000 Binary files a/public/textures/chipped/prismal_red_sandstone_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_redstone_block_remnants.png b/public/textures/chipped/prismal_redstone_block_remnants.png deleted file mode 100644 index 7078f7df..00000000 Binary files a/public/textures/chipped/prismal_redstone_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_sandstone_remnants.png b/public/textures/chipped/prismal_sandstone_remnants.png deleted file mode 100644 index 355753ff..00000000 Binary files a/public/textures/chipped/prismal_sandstone_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_smooth_stone_remnants.png b/public/textures/chipped/prismal_smooth_stone_remnants.png deleted file mode 100644 index 773397de..00000000 Binary files a/public/textures/chipped/prismal_smooth_stone_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_snow_block_remnants.png b/public/textures/chipped/prismal_snow_block_remnants.png deleted file mode 100644 index 6934a966..00000000 Binary files a/public/textures/chipped/prismal_snow_block_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_stone_remnants.png b/public/textures/chipped/prismal_stone_remnants.png deleted file mode 100644 index 6b8fddd7..00000000 Binary files a/public/textures/chipped/prismal_stone_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismal_tuff_remnants.png b/public/textures/chipped/prismal_tuff_remnants.png deleted file mode 100644 index 8aacd138..00000000 Binary files a/public/textures/chipped/prismal_tuff_remnants.png and /dev/null differ diff --git a/public/textures/chipped/prismarine_bricks.png b/public/textures/chipped/prismarine_bricks.png deleted file mode 100644 index 46fe19dd..00000000 Binary files a/public/textures/chipped/prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/prismarine_mini_tiles.png b/public/textures/chipped/prismarine_mini_tiles.png deleted file mode 100644 index 58384351..00000000 Binary files a/public/textures/chipped/prismarine_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/prismarine_pillar.png b/public/textures/chipped/prismarine_pillar.png deleted file mode 100644 index 775cccbb..00000000 Binary files a/public/textures/chipped/prismarine_pillar.png and /dev/null differ diff --git a/public/textures/chipped/prismarine_pillar_top.png b/public/textures/chipped/prismarine_pillar_top.png deleted file mode 100644 index f1159f1f..00000000 Binary files a/public/textures/chipped/prismarine_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/prismarine_scales.png b/public/textures/chipped/prismarine_scales.png deleted file mode 100644 index 30848a3b..00000000 Binary files a/public/textures/chipped/prismarine_scales.png and /dev/null differ diff --git a/public/textures/chipped/purple_concrete_bricks.png b/public/textures/chipped/purple_concrete_bricks.png deleted file mode 100644 index 84fe003a..00000000 Binary files a/public/textures/chipped/purple_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/purple_concrete_panel.png b/public/textures/chipped/purple_concrete_panel.png deleted file mode 100644 index 44bbaba7..00000000 Binary files a/public/textures/chipped/purple_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/purple_concrete_pillar.png b/public/textures/chipped/purple_concrete_pillar.png deleted file mode 100644 index a19455d2..00000000 Binary files a/public/textures/chipped/purple_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/purple_concrete_tiles.png b/public/textures/chipped/purple_concrete_tiles.png deleted file mode 100644 index 2cb4a7b1..00000000 Binary files a/public/textures/chipped/purple_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/purple_glazed_terracotta_pillar_sides.png b/public/textures/chipped/purple_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 638cb083..00000000 Binary files a/public/textures/chipped/purple_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/purple_glazed_terracotta_pillar_top.png b/public/textures/chipped/purple_glazed_terracotta_pillar_top.png deleted file mode 100644 index 5916c287..00000000 Binary files a/public/textures/chipped/purple_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/purple_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/purple_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index d5128973..00000000 Binary files a/public/textures/chipped/purple_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/purple_glazed_terracotta_tiles.png b/public/textures/chipped/purple_glazed_terracotta_tiles.png deleted file mode 100644 index e59a09cf..00000000 Binary files a/public/textures/chipped/purple_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/purple_paper_lantern.png b/public/textures/chipped/purple_paper_lantern.png deleted file mode 100644 index dac84484..00000000 Binary files a/public/textures/chipped/purple_paper_lantern.png and /dev/null differ diff --git a/public/textures/chipped/purple_terracotta_bricks.png b/public/textures/chipped/purple_terracotta_bricks.png deleted file mode 100644 index fcd1537b..00000000 Binary files a/public/textures/chipped/purple_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/purple_terracotta_column.png b/public/textures/chipped/purple_terracotta_column.png deleted file mode 100644 index 35d0bca7..00000000 Binary files a/public/textures/chipped/purple_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/purple_terracotta_pillar.png b/public/textures/chipped/purple_terracotta_pillar.png deleted file mode 100644 index 73e79625..00000000 Binary files a/public/textures/chipped/purple_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/purple_terracotta_tile.png b/public/textures/chipped/purple_terracotta_tile.png deleted file mode 100644 index 1f2f3938..00000000 Binary files a/public/textures/chipped/purple_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/purple_terracotta_tiles.png b/public/textures/chipped/purple_terracotta_tiles.png deleted file mode 100644 index 546445ef..00000000 Binary files a/public/textures/chipped/purple_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/purpur_block_bricks.png b/public/textures/chipped/purpur_block_bricks.png deleted file mode 100644 index 0d7900a4..00000000 Binary files a/public/textures/chipped/purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/purpur_block_mini_tiles.png b/public/textures/chipped/purpur_block_mini_tiles.png deleted file mode 100644 index fad8f81e..00000000 Binary files a/public/textures/chipped/purpur_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/purpur_block_pillar.png b/public/textures/chipped/purpur_block_pillar.png deleted file mode 100644 index 8ab05ec5..00000000 Binary files a/public/textures/chipped/purpur_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/purpur_block_pillar_top.png b/public/textures/chipped/purpur_block_pillar_top.png deleted file mode 100644 index 82af486a..00000000 Binary files a/public/textures/chipped/purpur_block_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/purpur_block_scales.png b/public/textures/chipped/purpur_block_scales.png deleted file mode 100644 index 327a5600..00000000 Binary files a/public/textures/chipped/purpur_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/quad_mud.png b/public/textures/chipped/quad_mud.png deleted file mode 100644 index f8e82c9e..00000000 Binary files a/public/textures/chipped/quad_mud.png and /dev/null differ diff --git a/public/textures/chipped/quad_mud_bricks.png b/public/textures/chipped/quad_mud_bricks.png deleted file mode 100644 index 5cacbb18..00000000 Binary files a/public/textures/chipped/quad_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/quad_packed_mud.png b/public/textures/chipped/quad_packed_mud.png deleted file mode 100644 index d6c3b95c..00000000 Binary files a/public/textures/chipped/quad_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/quartz_block_bricks.png b/public/textures/chipped/quartz_block_bricks.png deleted file mode 100644 index dc6a2cdc..00000000 Binary files a/public/textures/chipped/quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/quartz_block_mini_tiles.png b/public/textures/chipped/quartz_block_mini_tiles.png deleted file mode 100644 index 91a78527..00000000 Binary files a/public/textures/chipped/quartz_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/quartz_block_pillar.png b/public/textures/chipped/quartz_block_pillar.png deleted file mode 100644 index 59725060..00000000 Binary files a/public/textures/chipped/quartz_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/quartz_block_scales.png b/public/textures/chipped/quartz_block_scales.png deleted file mode 100644 index 3e59aedc..00000000 Binary files a/public/textures/chipped/quartz_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/railed_acacia_planks.png b/public/textures/chipped/railed_acacia_planks.png deleted file mode 100644 index 9a49211a..00000000 Binary files a/public/textures/chipped/railed_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/railed_bamboo_planks.png b/public/textures/chipped/railed_bamboo_planks.png deleted file mode 100644 index 3392146c..00000000 Binary files a/public/textures/chipped/railed_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/railed_birch_planks.png b/public/textures/chipped/railed_birch_planks.png deleted file mode 100644 index 8290879d..00000000 Binary files a/public/textures/chipped/railed_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/railed_black_concrete.png b/public/textures/chipped/railed_black_concrete.png deleted file mode 100644 index 0d863898..00000000 Binary files a/public/textures/chipped/railed_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_blue_concrete.png b/public/textures/chipped/railed_blue_concrete.png deleted file mode 100644 index 9fac0a81..00000000 Binary files a/public/textures/chipped/railed_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_brown_concrete.png b/public/textures/chipped/railed_brown_concrete.png deleted file mode 100644 index 9e8d1e77..00000000 Binary files a/public/textures/chipped/railed_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_cherry_planks.png b/public/textures/chipped/railed_cherry_planks.png deleted file mode 100644 index f3f7b6cd..00000000 Binary files a/public/textures/chipped/railed_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/railed_crimson_planks.png b/public/textures/chipped/railed_crimson_planks.png deleted file mode 100644 index 89b690fd..00000000 Binary files a/public/textures/chipped/railed_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/railed_cyan_concrete.png b/public/textures/chipped/railed_cyan_concrete.png deleted file mode 100644 index 80e2e5a2..00000000 Binary files a/public/textures/chipped/railed_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_dark_oak_planks.png b/public/textures/chipped/railed_dark_oak_planks.png deleted file mode 100644 index 89934a5a..00000000 Binary files a/public/textures/chipped/railed_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/railed_gray_concrete.png b/public/textures/chipped/railed_gray_concrete.png deleted file mode 100644 index c833155d..00000000 Binary files a/public/textures/chipped/railed_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_green_concrete.png b/public/textures/chipped/railed_green_concrete.png deleted file mode 100644 index 94ef216d..00000000 Binary files a/public/textures/chipped/railed_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_iron_bars.png b/public/textures/chipped/railed_iron_bars.png deleted file mode 100644 index 70f53186..00000000 Binary files a/public/textures/chipped/railed_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/railed_jungle_planks.png b/public/textures/chipped/railed_jungle_planks.png deleted file mode 100644 index 1668bd1f..00000000 Binary files a/public/textures/chipped/railed_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/railed_ladder.png b/public/textures/chipped/railed_ladder.png deleted file mode 100644 index e26b6122..00000000 Binary files a/public/textures/chipped/railed_ladder.png and /dev/null differ diff --git a/public/textures/chipped/railed_light_blue_concrete.png b/public/textures/chipped/railed_light_blue_concrete.png deleted file mode 100644 index 6c273ddf..00000000 Binary files a/public/textures/chipped/railed_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_light_gray_concrete.png b/public/textures/chipped/railed_light_gray_concrete.png deleted file mode 100644 index 9bb07a77..00000000 Binary files a/public/textures/chipped/railed_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_lime_concrete.png b/public/textures/chipped/railed_lime_concrete.png deleted file mode 100644 index 31fb8dec..00000000 Binary files a/public/textures/chipped/railed_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_magenta_concrete.png b/public/textures/chipped/railed_magenta_concrete.png deleted file mode 100644 index 08bb96df..00000000 Binary files a/public/textures/chipped/railed_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_mangrove_planks.png b/public/textures/chipped/railed_mangrove_planks.png deleted file mode 100644 index dee0a15d..00000000 Binary files a/public/textures/chipped/railed_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/railed_oak_planks.png b/public/textures/chipped/railed_oak_planks.png deleted file mode 100644 index a3b83a60..00000000 Binary files a/public/textures/chipped/railed_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/railed_orange_concrete.png b/public/textures/chipped/railed_orange_concrete.png deleted file mode 100644 index 74db4d98..00000000 Binary files a/public/textures/chipped/railed_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_pink_concrete.png b/public/textures/chipped/railed_pink_concrete.png deleted file mode 100644 index 4959ad24..00000000 Binary files a/public/textures/chipped/railed_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_purple_concrete.png b/public/textures/chipped/railed_purple_concrete.png deleted file mode 100644 index d6a278c6..00000000 Binary files a/public/textures/chipped/railed_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_red_concrete.png b/public/textures/chipped/railed_red_concrete.png deleted file mode 100644 index b25e5a60..00000000 Binary files a/public/textures/chipped/railed_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_spruce_planks.png b/public/textures/chipped/railed_spruce_planks.png deleted file mode 100644 index 8e8b5cc1..00000000 Binary files a/public/textures/chipped/railed_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/railed_warped_planks.png b/public/textures/chipped/railed_warped_planks.png deleted file mode 100644 index 983d96ad..00000000 Binary files a/public/textures/chipped/railed_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/railed_white_concrete.png b/public/textures/chipped/railed_white_concrete.png deleted file mode 100644 index ac10a0c3..00000000 Binary files a/public/textures/chipped/railed_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/railed_yellow_concrete.png b/public/textures/chipped/railed_yellow_concrete.png deleted file mode 100644 index c60d36e3..00000000 Binary files a/public/textures/chipped/railed_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/raster_black_stained_glass.png b/public/textures/chipped/raster_black_stained_glass.png deleted file mode 100644 index 98477bab..00000000 Binary files a/public/textures/chipped/raster_black_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_black_stained_glass_pane.png b/public/textures/chipped/raster_black_stained_glass_pane.png deleted file mode 100644 index 906d866f..00000000 Binary files a/public/textures/chipped/raster_black_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_blue_stained_glass.png b/public/textures/chipped/raster_blue_stained_glass.png deleted file mode 100644 index 96339f82..00000000 Binary files a/public/textures/chipped/raster_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_blue_stained_glass_pane.png b/public/textures/chipped/raster_blue_stained_glass_pane.png deleted file mode 100644 index 1df55962..00000000 Binary files a/public/textures/chipped/raster_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_brown_stained_glass.png b/public/textures/chipped/raster_brown_stained_glass.png deleted file mode 100644 index b71de2c2..00000000 Binary files a/public/textures/chipped/raster_brown_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_brown_stained_glass_pane.png b/public/textures/chipped/raster_brown_stained_glass_pane.png deleted file mode 100644 index 2f8d1cd2..00000000 Binary files a/public/textures/chipped/raster_brown_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_cyan_stained_glass.png b/public/textures/chipped/raster_cyan_stained_glass.png deleted file mode 100644 index 5251cafb..00000000 Binary files a/public/textures/chipped/raster_cyan_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_cyan_stained_glass_pane.png b/public/textures/chipped/raster_cyan_stained_glass_pane.png deleted file mode 100644 index b647492d..00000000 Binary files a/public/textures/chipped/raster_cyan_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_gray_stained_glass.png b/public/textures/chipped/raster_gray_stained_glass.png deleted file mode 100644 index a7f157c6..00000000 Binary files a/public/textures/chipped/raster_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_gray_stained_glass_pane.png b/public/textures/chipped/raster_gray_stained_glass_pane.png deleted file mode 100644 index 5b1abe75..00000000 Binary files a/public/textures/chipped/raster_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_green_stained_glass.png b/public/textures/chipped/raster_green_stained_glass.png deleted file mode 100644 index 39b76779..00000000 Binary files a/public/textures/chipped/raster_green_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_green_stained_glass_pane.png b/public/textures/chipped/raster_green_stained_glass_pane.png deleted file mode 100644 index 3b7ad3b5..00000000 Binary files a/public/textures/chipped/raster_green_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_leaded_glass.png b/public/textures/chipped/raster_leaded_glass.png deleted file mode 100644 index d69b3d8a..00000000 Binary files a/public/textures/chipped/raster_leaded_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_leaded_glass_pane.png b/public/textures/chipped/raster_leaded_glass_pane.png deleted file mode 100644 index a696d1d1..00000000 Binary files a/public/textures/chipped/raster_leaded_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_light_blue_stained_glass.png b/public/textures/chipped/raster_light_blue_stained_glass.png deleted file mode 100644 index 62b422b5..00000000 Binary files a/public/textures/chipped/raster_light_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_light_blue_stained_glass_pane.png b/public/textures/chipped/raster_light_blue_stained_glass_pane.png deleted file mode 100644 index 2533ac4d..00000000 Binary files a/public/textures/chipped/raster_light_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_light_gray_stained_glass.png b/public/textures/chipped/raster_light_gray_stained_glass.png deleted file mode 100644 index ad2044bc..00000000 Binary files a/public/textures/chipped/raster_light_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_light_gray_stained_glass_pane.png b/public/textures/chipped/raster_light_gray_stained_glass_pane.png deleted file mode 100644 index 399fd039..00000000 Binary files a/public/textures/chipped/raster_light_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_lime_stained_glass.png b/public/textures/chipped/raster_lime_stained_glass.png deleted file mode 100644 index 2bde2895..00000000 Binary files a/public/textures/chipped/raster_lime_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_lime_stained_glass_pane.png b/public/textures/chipped/raster_lime_stained_glass_pane.png deleted file mode 100644 index aa5c3976..00000000 Binary files a/public/textures/chipped/raster_lime_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_magenta_stained_glass.png b/public/textures/chipped/raster_magenta_stained_glass.png deleted file mode 100644 index dfd79cc7..00000000 Binary files a/public/textures/chipped/raster_magenta_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_magenta_stained_glass_pane.png b/public/textures/chipped/raster_magenta_stained_glass_pane.png deleted file mode 100644 index 8524d214..00000000 Binary files a/public/textures/chipped/raster_magenta_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_orange_stained_glass.png b/public/textures/chipped/raster_orange_stained_glass.png deleted file mode 100644 index 556909e1..00000000 Binary files a/public/textures/chipped/raster_orange_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_orange_stained_glass_pane.png b/public/textures/chipped/raster_orange_stained_glass_pane.png deleted file mode 100644 index 76ccffa1..00000000 Binary files a/public/textures/chipped/raster_orange_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_pink_stained_glass.png b/public/textures/chipped/raster_pink_stained_glass.png deleted file mode 100644 index 89c39d65..00000000 Binary files a/public/textures/chipped/raster_pink_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_pink_stained_glass_pane.png b/public/textures/chipped/raster_pink_stained_glass_pane.png deleted file mode 100644 index 87708441..00000000 Binary files a/public/textures/chipped/raster_pink_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_purple_stained_glass.png b/public/textures/chipped/raster_purple_stained_glass.png deleted file mode 100644 index eb0a64e4..00000000 Binary files a/public/textures/chipped/raster_purple_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_purple_stained_glass_pane.png b/public/textures/chipped/raster_purple_stained_glass_pane.png deleted file mode 100644 index 6c6b9210..00000000 Binary files a/public/textures/chipped/raster_purple_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_red_stained_glass.png b/public/textures/chipped/raster_red_stained_glass.png deleted file mode 100644 index 3949da47..00000000 Binary files a/public/textures/chipped/raster_red_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_red_stained_glass_pane.png b/public/textures/chipped/raster_red_stained_glass_pane.png deleted file mode 100644 index d5c99a82..00000000 Binary files a/public/textures/chipped/raster_red_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_white_stained_glass.png b/public/textures/chipped/raster_white_stained_glass.png deleted file mode 100644 index 1c15612d..00000000 Binary files a/public/textures/chipped/raster_white_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_white_stained_glass_pane.png b/public/textures/chipped/raster_white_stained_glass_pane.png deleted file mode 100644 index ef13bb94..00000000 Binary files a/public/textures/chipped/raster_white_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raster_yellow_stained_glass.png b/public/textures/chipped/raster_yellow_stained_glass.png deleted file mode 100644 index 560cbe67..00000000 Binary files a/public/textures/chipped/raster_yellow_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/raster_yellow_stained_glass_pane.png b/public/textures/chipped/raster_yellow_stained_glass_pane.png deleted file mode 100644 index 6898967d..00000000 Binary files a/public/textures/chipped/raster_yellow_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/raw_copper_block_bricks.png b/public/textures/chipped/raw_copper_block_bricks.png deleted file mode 100644 index 6f16e3a2..00000000 Binary files a/public/textures/chipped/raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/raw_copper_block_mini_tiles.png b/public/textures/chipped/raw_copper_block_mini_tiles.png deleted file mode 100644 index cdef09b8..00000000 Binary files a/public/textures/chipped/raw_copper_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/raw_copper_block_pillar.png b/public/textures/chipped/raw_copper_block_pillar.png deleted file mode 100644 index 0db270f5..00000000 Binary files a/public/textures/chipped/raw_copper_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/raw_copper_block_pillar_top.png b/public/textures/chipped/raw_copper_block_pillar_top.png deleted file mode 100644 index 06656392..00000000 Binary files a/public/textures/chipped/raw_copper_block_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/raw_copper_block_scales.png b/public/textures/chipped/raw_copper_block_scales.png deleted file mode 100644 index 71086308..00000000 Binary files a/public/textures/chipped/raw_copper_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/raw_gold_block_bricks.png b/public/textures/chipped/raw_gold_block_bricks.png deleted file mode 100644 index 335d4bcd..00000000 Binary files a/public/textures/chipped/raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/raw_gold_block_mini_tiles.png b/public/textures/chipped/raw_gold_block_mini_tiles.png deleted file mode 100644 index bf8f88f0..00000000 Binary files a/public/textures/chipped/raw_gold_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/raw_gold_block_pillar.png b/public/textures/chipped/raw_gold_block_pillar.png deleted file mode 100644 index 84fe65a5..00000000 Binary files a/public/textures/chipped/raw_gold_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/raw_gold_block_pillar_top.png b/public/textures/chipped/raw_gold_block_pillar_top.png deleted file mode 100644 index b84b578d..00000000 Binary files a/public/textures/chipped/raw_gold_block_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/raw_gold_block_scales.png b/public/textures/chipped/raw_gold_block_scales.png deleted file mode 100644 index cd7cf7b6..00000000 Binary files a/public/textures/chipped/raw_gold_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/raw_iron_block_bricks.png b/public/textures/chipped/raw_iron_block_bricks.png deleted file mode 100644 index 3a1a41ec..00000000 Binary files a/public/textures/chipped/raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/raw_iron_block_mini_tiles.png b/public/textures/chipped/raw_iron_block_mini_tiles.png deleted file mode 100644 index 53778b78..00000000 Binary files a/public/textures/chipped/raw_iron_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/raw_iron_block_pillar.png b/public/textures/chipped/raw_iron_block_pillar.png deleted file mode 100644 index 54de2133..00000000 Binary files a/public/textures/chipped/raw_iron_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/raw_iron_block_pillar_top.png b/public/textures/chipped/raw_iron_block_pillar_top.png deleted file mode 100644 index 365c63e6..00000000 Binary files a/public/textures/chipped/raw_iron_block_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/raw_iron_block_scales.png b/public/textures/chipped/raw_iron_block_scales.png deleted file mode 100644 index d738fc90..00000000 Binary files a/public/textures/chipped/raw_iron_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/reanimated_soul_sand.png b/public/textures/chipped/reanimated_soul_sand.png deleted file mode 100644 index 88a1db53..00000000 Binary files a/public/textures/chipped/reanimated_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_black_carpet.png b/public/textures/chipped/rectangle_black_carpet.png deleted file mode 100644 index c898a3d3..00000000 Binary files a/public/textures/chipped/rectangle_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_black_wool.png b/public/textures/chipped/rectangle_black_wool.png deleted file mode 100644 index 853dca43..00000000 Binary files a/public/textures/chipped/rectangle_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_blue_carpet.png b/public/textures/chipped/rectangle_blue_carpet.png deleted file mode 100644 index ddc2ce9b..00000000 Binary files a/public/textures/chipped/rectangle_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_blue_wool.png b/public/textures/chipped/rectangle_blue_wool.png deleted file mode 100644 index 47216da2..00000000 Binary files a/public/textures/chipped/rectangle_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_brown_carpet.png b/public/textures/chipped/rectangle_brown_carpet.png deleted file mode 100644 index 265c3260..00000000 Binary files a/public/textures/chipped/rectangle_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_brown_wool.png b/public/textures/chipped/rectangle_brown_wool.png deleted file mode 100644 index 9c6a1805..00000000 Binary files a/public/textures/chipped/rectangle_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_cyan_carpet.png b/public/textures/chipped/rectangle_cyan_carpet.png deleted file mode 100644 index 3065d53e..00000000 Binary files a/public/textures/chipped/rectangle_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_cyan_wool.png b/public/textures/chipped/rectangle_cyan_wool.png deleted file mode 100644 index 42f3d474..00000000 Binary files a/public/textures/chipped/rectangle_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_gray_carpet.png b/public/textures/chipped/rectangle_gray_carpet.png deleted file mode 100644 index e4a447d2..00000000 Binary files a/public/textures/chipped/rectangle_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_gray_wool.png b/public/textures/chipped/rectangle_gray_wool.png deleted file mode 100644 index e591172d..00000000 Binary files a/public/textures/chipped/rectangle_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_green_carpet.png b/public/textures/chipped/rectangle_green_carpet.png deleted file mode 100644 index 2a98ccf4..00000000 Binary files a/public/textures/chipped/rectangle_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_green_wool.png b/public/textures/chipped/rectangle_green_wool.png deleted file mode 100644 index 2b9713df..00000000 Binary files a/public/textures/chipped/rectangle_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_light_blue_carpet.png b/public/textures/chipped/rectangle_light_blue_carpet.png deleted file mode 100644 index e0e08170..00000000 Binary files a/public/textures/chipped/rectangle_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_light_blue_wool.png b/public/textures/chipped/rectangle_light_blue_wool.png deleted file mode 100644 index 3fab3712..00000000 Binary files a/public/textures/chipped/rectangle_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_light_gray_carpet.png b/public/textures/chipped/rectangle_light_gray_carpet.png deleted file mode 100644 index bc8eb64b..00000000 Binary files a/public/textures/chipped/rectangle_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_light_gray_wool.png b/public/textures/chipped/rectangle_light_gray_wool.png deleted file mode 100644 index 2b831e94..00000000 Binary files a/public/textures/chipped/rectangle_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_lime_carpet.png b/public/textures/chipped/rectangle_lime_carpet.png deleted file mode 100644 index 89774f0c..00000000 Binary files a/public/textures/chipped/rectangle_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_lime_wool.png b/public/textures/chipped/rectangle_lime_wool.png deleted file mode 100644 index 2131b628..00000000 Binary files a/public/textures/chipped/rectangle_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_magenta_carpet.png b/public/textures/chipped/rectangle_magenta_carpet.png deleted file mode 100644 index 5a881af2..00000000 Binary files a/public/textures/chipped/rectangle_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_magenta_wool.png b/public/textures/chipped/rectangle_magenta_wool.png deleted file mode 100644 index 640078d8..00000000 Binary files a/public/textures/chipped/rectangle_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_orange_carpet.png b/public/textures/chipped/rectangle_orange_carpet.png deleted file mode 100644 index b77ed5b6..00000000 Binary files a/public/textures/chipped/rectangle_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_orange_wool.png b/public/textures/chipped/rectangle_orange_wool.png deleted file mode 100644 index dbadd416..00000000 Binary files a/public/textures/chipped/rectangle_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_pink_carpet.png b/public/textures/chipped/rectangle_pink_carpet.png deleted file mode 100644 index bef66bce..00000000 Binary files a/public/textures/chipped/rectangle_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_pink_wool.png b/public/textures/chipped/rectangle_pink_wool.png deleted file mode 100644 index 6c06d756..00000000 Binary files a/public/textures/chipped/rectangle_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_purple_carpet.png b/public/textures/chipped/rectangle_purple_carpet.png deleted file mode 100644 index 9f45f4c2..00000000 Binary files a/public/textures/chipped/rectangle_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_purple_wool.png b/public/textures/chipped/rectangle_purple_wool.png deleted file mode 100644 index 6cded97e..00000000 Binary files a/public/textures/chipped/rectangle_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_red_carpet.png b/public/textures/chipped/rectangle_red_carpet.png deleted file mode 100644 index 9865440d..00000000 Binary files a/public/textures/chipped/rectangle_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_red_wool.png b/public/textures/chipped/rectangle_red_wool.png deleted file mode 100644 index 64f5b500..00000000 Binary files a/public/textures/chipped/rectangle_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_white_carpet.png b/public/textures/chipped/rectangle_white_carpet.png deleted file mode 100644 index baa69cad..00000000 Binary files a/public/textures/chipped/rectangle_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_white_wool.png b/public/textures/chipped/rectangle_white_wool.png deleted file mode 100644 index 62885d2c..00000000 Binary files a/public/textures/chipped/rectangle_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_yellow_carpet.png b/public/textures/chipped/rectangle_yellow_carpet.png deleted file mode 100644 index 58ad6971..00000000 Binary files a/public/textures/chipped/rectangle_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/rectangle_yellow_wool.png b/public/textures/chipped/rectangle_yellow_wool.png deleted file mode 100644 index 8204c867..00000000 Binary files a/public/textures/chipped/rectangle_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/red_acacia_leaves.png b/public/textures/chipped/red_acacia_leaves.png deleted file mode 100644 index f3a23de7..00000000 Binary files a/public/textures/chipped/red_acacia_leaves.png and /dev/null differ diff --git a/public/textures/chipped/red_birch_leaves.png b/public/textures/chipped/red_birch_leaves.png deleted file mode 100644 index 26efaede..00000000 Binary files a/public/textures/chipped/red_birch_leaves.png and /dev/null differ diff --git a/public/textures/chipped/red_concrete_bricks.png b/public/textures/chipped/red_concrete_bricks.png deleted file mode 100644 index 4b55d5eb..00000000 Binary files a/public/textures/chipped/red_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/red_concrete_panel.png b/public/textures/chipped/red_concrete_panel.png deleted file mode 100644 index 84745316..00000000 Binary files a/public/textures/chipped/red_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/red_concrete_pillar.png b/public/textures/chipped/red_concrete_pillar.png deleted file mode 100644 index 3f290b94..00000000 Binary files a/public/textures/chipped/red_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/red_concrete_tiles.png b/public/textures/chipped/red_concrete_tiles.png deleted file mode 100644 index aa607e0d..00000000 Binary files a/public/textures/chipped/red_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/red_dark_oak_leaves.png b/public/textures/chipped/red_dark_oak_leaves.png deleted file mode 100644 index 69f38a2c..00000000 Binary files a/public/textures/chipped/red_dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/red_glazed_terracotta_pillar_sides.png b/public/textures/chipped/red_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 754d0318..00000000 Binary files a/public/textures/chipped/red_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/red_glazed_terracotta_pillar_top.png b/public/textures/chipped/red_glazed_terracotta_pillar_top.png deleted file mode 100644 index b7148f67..00000000 Binary files a/public/textures/chipped/red_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/red_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/red_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index 0016f4e5..00000000 Binary files a/public/textures/chipped/red_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/red_glazed_terracotta_tiles.png b/public/textures/chipped/red_glazed_terracotta_tiles.png deleted file mode 100644 index 44e6ccf7..00000000 Binary files a/public/textures/chipped/red_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/red_jungle_leaves.png b/public/textures/chipped/red_jungle_leaves.png deleted file mode 100644 index 627fcbe3..00000000 Binary files a/public/textures/chipped/red_jungle_leaves.png and /dev/null differ diff --git a/public/textures/chipped/red_moss_block.png b/public/textures/chipped/red_moss_block.png deleted file mode 100644 index 0eebe40d..00000000 Binary files a/public/textures/chipped/red_moss_block.png and /dev/null differ diff --git a/public/textures/chipped/red_mushroom_bulb.png b/public/textures/chipped/red_mushroom_bulb.png deleted file mode 100644 index 54126bb2..00000000 Binary files a/public/textures/chipped/red_mushroom_bulb.png and /dev/null differ diff --git a/public/textures/chipped/red_mushroom_bushel.png b/public/textures/chipped/red_mushroom_bushel.png deleted file mode 100644 index 295112bc..00000000 Binary files a/public/textures/chipped/red_mushroom_bushel.png and /dev/null differ diff --git a/public/textures/chipped/red_mushroom_cluster.png b/public/textures/chipped/red_mushroom_cluster.png deleted file mode 100644 index c20ca77c..00000000 Binary files a/public/textures/chipped/red_mushroom_cluster.png and /dev/null differ diff --git a/public/textures/chipped/red_mushroom_trio.png b/public/textures/chipped/red_mushroom_trio.png deleted file mode 100644 index 333307bc..00000000 Binary files a/public/textures/chipped/red_mushroom_trio.png and /dev/null differ diff --git a/public/textures/chipped/red_nether_bricks_bricks.png b/public/textures/chipped/red_nether_bricks_bricks.png deleted file mode 100644 index 4575a209..00000000 Binary files a/public/textures/chipped/red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/red_nether_bricks_mini_tiles.png b/public/textures/chipped/red_nether_bricks_mini_tiles.png deleted file mode 100644 index 34b61ffa..00000000 Binary files a/public/textures/chipped/red_nether_bricks_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/red_nether_bricks_pillar.png b/public/textures/chipped/red_nether_bricks_pillar.png deleted file mode 100644 index 1fb88922..00000000 Binary files a/public/textures/chipped/red_nether_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/red_nether_bricks_pillar_top.png b/public/textures/chipped/red_nether_bricks_pillar_top.png deleted file mode 100644 index 6db36567..00000000 Binary files a/public/textures/chipped/red_nether_bricks_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/red_nether_bricks_scales.png b/public/textures/chipped/red_nether_bricks_scales.png deleted file mode 100644 index c6895910..00000000 Binary files a/public/textures/chipped/red_nether_bricks_scales.png and /dev/null differ diff --git a/public/textures/chipped/red_oak_leaves.png b/public/textures/chipped/red_oak_leaves.png deleted file mode 100644 index 69f38a2c..00000000 Binary files a/public/textures/chipped/red_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/red_paper_lantern.png b/public/textures/chipped/red_paper_lantern.png deleted file mode 100644 index 90dd22db..00000000 Binary files a/public/textures/chipped/red_paper_lantern.png and /dev/null differ diff --git a/public/textures/chipped/red_sandstone_bricks.png b/public/textures/chipped/red_sandstone_bricks.png deleted file mode 100644 index d35cf2dc..00000000 Binary files a/public/textures/chipped/red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/red_sandstone_mini_tiles.png b/public/textures/chipped/red_sandstone_mini_tiles.png deleted file mode 100644 index c71f99d8..00000000 Binary files a/public/textures/chipped/red_sandstone_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/red_sandstone_pillar.png b/public/textures/chipped/red_sandstone_pillar.png deleted file mode 100644 index d432e03e..00000000 Binary files a/public/textures/chipped/red_sandstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/red_sandstone_pillar_top.png b/public/textures/chipped/red_sandstone_pillar_top.png deleted file mode 100644 index 1aa030c0..00000000 Binary files a/public/textures/chipped/red_sandstone_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/red_sandstone_scales.png b/public/textures/chipped/red_sandstone_scales.png deleted file mode 100644 index 1200d659..00000000 Binary files a/public/textures/chipped/red_sandstone_scales.png and /dev/null differ diff --git a/public/textures/chipped/red_spruce_leaves.png b/public/textures/chipped/red_spruce_leaves.png deleted file mode 100644 index 7db9f7b6..00000000 Binary files a/public/textures/chipped/red_spruce_leaves.png and /dev/null differ diff --git a/public/textures/chipped/red_terracotta_bricks.png b/public/textures/chipped/red_terracotta_bricks.png deleted file mode 100644 index e3108be9..00000000 Binary files a/public/textures/chipped/red_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/red_terracotta_column.png b/public/textures/chipped/red_terracotta_column.png deleted file mode 100644 index 44600f5e..00000000 Binary files a/public/textures/chipped/red_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/red_terracotta_pillar.png b/public/textures/chipped/red_terracotta_pillar.png deleted file mode 100644 index 0aa67a0e..00000000 Binary files a/public/textures/chipped/red_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/red_terracotta_tile.png b/public/textures/chipped/red_terracotta_tile.png deleted file mode 100644 index 8071f256..00000000 Binary files a/public/textures/chipped/red_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/red_terracotta_tiles.png b/public/textures/chipped/red_terracotta_tiles.png deleted file mode 100644 index 3fbd7690..00000000 Binary files a/public/textures/chipped/red_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/redstone_block_bricks.png b/public/textures/chipped/redstone_block_bricks.png deleted file mode 100644 index bbcd2557..00000000 Binary files a/public/textures/chipped/redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/redstone_block_mini_tiles.png b/public/textures/chipped/redstone_block_mini_tiles.png deleted file mode 100644 index 73a78386..00000000 Binary files a/public/textures/chipped/redstone_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/redstone_block_pillar.png b/public/textures/chipped/redstone_block_pillar.png deleted file mode 100644 index 19c3eb4c..00000000 Binary files a/public/textures/chipped/redstone_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/redstone_block_pillar_top.png b/public/textures/chipped/redstone_block_pillar_top.png deleted file mode 100644 index fc445bf4..00000000 Binary files a/public/textures/chipped/redstone_block_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/redstone_block_scales.png b/public/textures/chipped/redstone_block_scales.png deleted file mode 100644 index f43aa0f9..00000000 Binary files a/public/textures/chipped/redstone_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_acacia_crate.png b/public/textures/chipped/reinforced_acacia_crate.png deleted file mode 100644 index f5aa3b1e..00000000 Binary files a/public/textures/chipped/reinforced_acacia_crate.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_acacia_log.png b/public/textures/chipped/reinforced_acacia_log.png deleted file mode 100644 index dff18419..00000000 Binary files a/public/textures/chipped/reinforced_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_bamboo_planks.png b/public/textures/chipped/reinforced_bamboo_planks.png deleted file mode 100644 index aad5463d..00000000 Binary files a/public/textures/chipped/reinforced_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_birch_crate.png b/public/textures/chipped/reinforced_birch_crate.png deleted file mode 100644 index 4fbbc0b0..00000000 Binary files a/public/textures/chipped/reinforced_birch_crate.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_birch_log.png b/public/textures/chipped/reinforced_birch_log.png deleted file mode 100644 index 273ef788..00000000 Binary files a/public/textures/chipped/reinforced_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_black_concrete.png b/public/textures/chipped/reinforced_black_concrete.png deleted file mode 100644 index 82e54e78..00000000 Binary files a/public/textures/chipped/reinforced_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_blue_concrete.png b/public/textures/chipped/reinforced_blue_concrete.png deleted file mode 100644 index c4af240f..00000000 Binary files a/public/textures/chipped/reinforced_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_bone_block.png b/public/textures/chipped/reinforced_bone_block.png deleted file mode 100644 index b8a027ca..00000000 Binary files a/public/textures/chipped/reinforced_bone_block.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_brown_concrete.png b/public/textures/chipped/reinforced_brown_concrete.png deleted file mode 100644 index 9c3cb028..00000000 Binary files a/public/textures/chipped/reinforced_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_cherry_log.png b/public/textures/chipped/reinforced_cherry_log.png deleted file mode 100644 index e1452730..00000000 Binary files a/public/textures/chipped/reinforced_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_crimson_crate.png b/public/textures/chipped/reinforced_crimson_crate.png deleted file mode 100644 index bd887ac7..00000000 Binary files a/public/textures/chipped/reinforced_crimson_crate.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_cyan_concrete.png b/public/textures/chipped/reinforced_cyan_concrete.png deleted file mode 100644 index 1e437332..00000000 Binary files a/public/textures/chipped/reinforced_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_dark_oak_crate.png b/public/textures/chipped/reinforced_dark_oak_crate.png deleted file mode 100644 index 13eaa446..00000000 Binary files a/public/textures/chipped/reinforced_dark_oak_crate.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_dark_oak_log.png b/public/textures/chipped/reinforced_dark_oak_log.png deleted file mode 100644 index 104662e8..00000000 Binary files a/public/textures/chipped/reinforced_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_diamond_block.png b/public/textures/chipped/reinforced_diamond_block.png deleted file mode 100644 index 27b694d2..00000000 Binary files a/public/textures/chipped/reinforced_diamond_block.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_emerald_block.png b/public/textures/chipped/reinforced_emerald_block.png deleted file mode 100644 index 0a2e4c99..00000000 Binary files a/public/textures/chipped/reinforced_emerald_block.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_gilded_blackstone.png b/public/textures/chipped/reinforced_gilded_blackstone.png deleted file mode 100644 index 0791e77d..00000000 Binary files a/public/textures/chipped/reinforced_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_gold_block.png b/public/textures/chipped/reinforced_gold_block.png deleted file mode 100644 index 5f966d2a..00000000 Binary files a/public/textures/chipped/reinforced_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_gray_concrete.png b/public/textures/chipped/reinforced_gray_concrete.png deleted file mode 100644 index 28d4d77d..00000000 Binary files a/public/textures/chipped/reinforced_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_green_concrete.png b/public/textures/chipped/reinforced_green_concrete.png deleted file mode 100644 index 1baaf4ee..00000000 Binary files a/public/textures/chipped/reinforced_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_iron_block.png b/public/textures/chipped/reinforced_iron_block.png deleted file mode 100644 index b2e0ad20..00000000 Binary files a/public/textures/chipped/reinforced_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_jungle_crate.png b/public/textures/chipped/reinforced_jungle_crate.png deleted file mode 100644 index 7c10d6a0..00000000 Binary files a/public/textures/chipped/reinforced_jungle_crate.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_jungle_log.png b/public/textures/chipped/reinforced_jungle_log.png deleted file mode 100644 index 2043b22a..00000000 Binary files a/public/textures/chipped/reinforced_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_light_blue_concrete.png b/public/textures/chipped/reinforced_light_blue_concrete.png deleted file mode 100644 index 673f7145..00000000 Binary files a/public/textures/chipped/reinforced_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_light_gray_concrete.png b/public/textures/chipped/reinforced_light_gray_concrete.png deleted file mode 100644 index 67930843..00000000 Binary files a/public/textures/chipped/reinforced_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_lime_concrete.png b/public/textures/chipped/reinforced_lime_concrete.png deleted file mode 100644 index 633ecd27..00000000 Binary files a/public/textures/chipped/reinforced_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_magenta_concrete.png b/public/textures/chipped/reinforced_magenta_concrete.png deleted file mode 100644 index 349ad149..00000000 Binary files a/public/textures/chipped/reinforced_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_mangrove_crate.png b/public/textures/chipped/reinforced_mangrove_crate.png deleted file mode 100644 index 53cd936d..00000000 Binary files a/public/textures/chipped/reinforced_mangrove_crate.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_mangrove_log.png b/public/textures/chipped/reinforced_mangrove_log.png deleted file mode 100644 index dd9ed0d6..00000000 Binary files a/public/textures/chipped/reinforced_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_netherite_block.png b/public/textures/chipped/reinforced_netherite_block.png deleted file mode 100644 index e6bf131e..00000000 Binary files a/public/textures/chipped/reinforced_netherite_block.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_oak_crate.png b/public/textures/chipped/reinforced_oak_crate.png deleted file mode 100644 index 747eb62b..00000000 Binary files a/public/textures/chipped/reinforced_oak_crate.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_oak_log.png b/public/textures/chipped/reinforced_oak_log.png deleted file mode 100644 index 555c5c83..00000000 Binary files a/public/textures/chipped/reinforced_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_ochre_froglight.png b/public/textures/chipped/reinforced_ochre_froglight.png deleted file mode 100644 index 4b221d1e..00000000 Binary files a/public/textures/chipped/reinforced_ochre_froglight.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_orange_concrete.png b/public/textures/chipped/reinforced_orange_concrete.png deleted file mode 100644 index efc8071f..00000000 Binary files a/public/textures/chipped/reinforced_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_pearlescent_froglight.png b/public/textures/chipped/reinforced_pearlescent_froglight.png deleted file mode 100644 index 2709313a..00000000 Binary files a/public/textures/chipped/reinforced_pearlescent_froglight.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_pink_concrete.png b/public/textures/chipped/reinforced_pink_concrete.png deleted file mode 100644 index 45fde97b..00000000 Binary files a/public/textures/chipped/reinforced_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_purple_concrete.png b/public/textures/chipped/reinforced_purple_concrete.png deleted file mode 100644 index f7970008..00000000 Binary files a/public/textures/chipped/reinforced_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_red_concrete.png b/public/textures/chipped/reinforced_red_concrete.png deleted file mode 100644 index ae6b337f..00000000 Binary files a/public/textures/chipped/reinforced_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_redstone_lamp.png b/public/textures/chipped/reinforced_redstone_lamp.png deleted file mode 100644 index cadb1750..00000000 Binary files a/public/textures/chipped/reinforced_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_sea_lantern.png b/public/textures/chipped/reinforced_sea_lantern.png deleted file mode 100644 index d572c9fa..00000000 Binary files a/public/textures/chipped/reinforced_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_shroomlight.png b/public/textures/chipped/reinforced_shroomlight.png deleted file mode 100644 index 75e2245f..00000000 Binary files a/public/textures/chipped/reinforced_shroomlight.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_spruce_crate.png b/public/textures/chipped/reinforced_spruce_crate.png deleted file mode 100644 index 78b5093b..00000000 Binary files a/public/textures/chipped/reinforced_spruce_crate.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_spruce_log.png b/public/textures/chipped/reinforced_spruce_log.png deleted file mode 100644 index 399de334..00000000 Binary files a/public/textures/chipped/reinforced_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_stripped_acacia_log.png b/public/textures/chipped/reinforced_stripped_acacia_log.png deleted file mode 100644 index 0bb1d527..00000000 Binary files a/public/textures/chipped/reinforced_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_stripped_birch_log.png b/public/textures/chipped/reinforced_stripped_birch_log.png deleted file mode 100644 index 94e41ce0..00000000 Binary files a/public/textures/chipped/reinforced_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_stripped_cherry_log.png b/public/textures/chipped/reinforced_stripped_cherry_log.png deleted file mode 100644 index 5751ffe1..00000000 Binary files a/public/textures/chipped/reinforced_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_stripped_crimson_stem.png b/public/textures/chipped/reinforced_stripped_crimson_stem.png deleted file mode 100644 index fe468167..00000000 Binary files a/public/textures/chipped/reinforced_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_stripped_dark_oak_log.png b/public/textures/chipped/reinforced_stripped_dark_oak_log.png deleted file mode 100644 index 1c0335a0..00000000 Binary files a/public/textures/chipped/reinforced_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_stripped_jungle_log.png b/public/textures/chipped/reinforced_stripped_jungle_log.png deleted file mode 100644 index a9f2343f..00000000 Binary files a/public/textures/chipped/reinforced_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_stripped_mangrove_log.png b/public/textures/chipped/reinforced_stripped_mangrove_log.png deleted file mode 100644 index 217a9eaa..00000000 Binary files a/public/textures/chipped/reinforced_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_stripped_oak_log.png b/public/textures/chipped/reinforced_stripped_oak_log.png deleted file mode 100644 index 1551769b..00000000 Binary files a/public/textures/chipped/reinforced_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_stripped_spruce_log.png b/public/textures/chipped/reinforced_stripped_spruce_log.png deleted file mode 100644 index d99674b1..00000000 Binary files a/public/textures/chipped/reinforced_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_stripped_warped_stem.png b/public/textures/chipped/reinforced_stripped_warped_stem.png deleted file mode 100644 index 45b26c2f..00000000 Binary files a/public/textures/chipped/reinforced_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_verdant_froglight.png b/public/textures/chipped/reinforced_verdant_froglight.png deleted file mode 100644 index a56a3d0c..00000000 Binary files a/public/textures/chipped/reinforced_verdant_froglight.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_warped_crate.png b/public/textures/chipped/reinforced_warped_crate.png deleted file mode 100644 index b5bb20e5..00000000 Binary files a/public/textures/chipped/reinforced_warped_crate.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_waxed_copper_block.png b/public/textures/chipped/reinforced_waxed_copper_block.png deleted file mode 100644 index e81fd6fd..00000000 Binary files a/public/textures/chipped/reinforced_waxed_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_waxed_exposed_copper.png b/public/textures/chipped/reinforced_waxed_exposed_copper.png deleted file mode 100644 index 0cf1784b..00000000 Binary files a/public/textures/chipped/reinforced_waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_waxed_oxidized_copper.png b/public/textures/chipped/reinforced_waxed_oxidized_copper.png deleted file mode 100644 index 91dec915..00000000 Binary files a/public/textures/chipped/reinforced_waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_waxed_weathered_copper.png b/public/textures/chipped/reinforced_waxed_weathered_copper.png deleted file mode 100644 index cfa7dbe3..00000000 Binary files a/public/textures/chipped/reinforced_waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_white_concrete.png b/public/textures/chipped/reinforced_white_concrete.png deleted file mode 100644 index e07f6cc8..00000000 Binary files a/public/textures/chipped/reinforced_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_white_redstone_lamp.png b/public/textures/chipped/reinforced_white_redstone_lamp.png deleted file mode 100644 index b6927ad4..00000000 Binary files a/public/textures/chipped/reinforced_white_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/reinforced_yellow_concrete.png b/public/textures/chipped/reinforced_yellow_concrete.png deleted file mode 100644 index 76e2c77d..00000000 Binary files a/public/textures/chipped/reinforced_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_black_carpet.png b/public/textures/chipped/ribbled_black_carpet.png deleted file mode 100644 index 7533aed7..00000000 Binary files a/public/textures/chipped/ribbled_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_black_wool.png b/public/textures/chipped/ribbled_black_wool.png deleted file mode 100644 index ca57480b..00000000 Binary files a/public/textures/chipped/ribbled_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_blue_carpet.png b/public/textures/chipped/ribbled_blue_carpet.png deleted file mode 100644 index dd0c9b88..00000000 Binary files a/public/textures/chipped/ribbled_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_blue_wool.png b/public/textures/chipped/ribbled_blue_wool.png deleted file mode 100644 index 9df4ed19..00000000 Binary files a/public/textures/chipped/ribbled_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_brown_carpet.png b/public/textures/chipped/ribbled_brown_carpet.png deleted file mode 100644 index f6d17763..00000000 Binary files a/public/textures/chipped/ribbled_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_brown_wool.png b/public/textures/chipped/ribbled_brown_wool.png deleted file mode 100644 index cfa35b2d..00000000 Binary files a/public/textures/chipped/ribbled_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_cyan_carpet.png b/public/textures/chipped/ribbled_cyan_carpet.png deleted file mode 100644 index 12531ec6..00000000 Binary files a/public/textures/chipped/ribbled_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_cyan_wool.png b/public/textures/chipped/ribbled_cyan_wool.png deleted file mode 100644 index f654f2f9..00000000 Binary files a/public/textures/chipped/ribbled_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_gray_carpet.png b/public/textures/chipped/ribbled_gray_carpet.png deleted file mode 100644 index 47eee9cb..00000000 Binary files a/public/textures/chipped/ribbled_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_gray_wool.png b/public/textures/chipped/ribbled_gray_wool.png deleted file mode 100644 index 220bd3f2..00000000 Binary files a/public/textures/chipped/ribbled_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_green_carpet.png b/public/textures/chipped/ribbled_green_carpet.png deleted file mode 100644 index cac54e49..00000000 Binary files a/public/textures/chipped/ribbled_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_green_wool.png b/public/textures/chipped/ribbled_green_wool.png deleted file mode 100644 index dd34bf0a..00000000 Binary files a/public/textures/chipped/ribbled_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_light_blue_carpet.png b/public/textures/chipped/ribbled_light_blue_carpet.png deleted file mode 100644 index 83d5a149..00000000 Binary files a/public/textures/chipped/ribbled_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_light_blue_wool.png b/public/textures/chipped/ribbled_light_blue_wool.png deleted file mode 100644 index 986a67c4..00000000 Binary files a/public/textures/chipped/ribbled_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_light_gray_carpet.png b/public/textures/chipped/ribbled_light_gray_carpet.png deleted file mode 100644 index dd7c96a5..00000000 Binary files a/public/textures/chipped/ribbled_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_light_gray_wool.png b/public/textures/chipped/ribbled_light_gray_wool.png deleted file mode 100644 index 6af6010e..00000000 Binary files a/public/textures/chipped/ribbled_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_lime_carpet.png b/public/textures/chipped/ribbled_lime_carpet.png deleted file mode 100644 index 273dd021..00000000 Binary files a/public/textures/chipped/ribbled_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_lime_wool.png b/public/textures/chipped/ribbled_lime_wool.png deleted file mode 100644 index 1b7af67f..00000000 Binary files a/public/textures/chipped/ribbled_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_magenta_carpet.png b/public/textures/chipped/ribbled_magenta_carpet.png deleted file mode 100644 index 30642500..00000000 Binary files a/public/textures/chipped/ribbled_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_magenta_wool.png b/public/textures/chipped/ribbled_magenta_wool.png deleted file mode 100644 index de0c0ba2..00000000 Binary files a/public/textures/chipped/ribbled_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_orange_carpet.png b/public/textures/chipped/ribbled_orange_carpet.png deleted file mode 100644 index 509ae071..00000000 Binary files a/public/textures/chipped/ribbled_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_orange_wool.png b/public/textures/chipped/ribbled_orange_wool.png deleted file mode 100644 index b7867ed8..00000000 Binary files a/public/textures/chipped/ribbled_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_pink_carpet.png b/public/textures/chipped/ribbled_pink_carpet.png deleted file mode 100644 index b972ecbc..00000000 Binary files a/public/textures/chipped/ribbled_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_pink_wool.png b/public/textures/chipped/ribbled_pink_wool.png deleted file mode 100644 index a7ee83b9..00000000 Binary files a/public/textures/chipped/ribbled_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_purple_carpet.png b/public/textures/chipped/ribbled_purple_carpet.png deleted file mode 100644 index f91b8086..00000000 Binary files a/public/textures/chipped/ribbled_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_purple_wool.png b/public/textures/chipped/ribbled_purple_wool.png deleted file mode 100644 index c24101eb..00000000 Binary files a/public/textures/chipped/ribbled_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_red_carpet.png b/public/textures/chipped/ribbled_red_carpet.png deleted file mode 100644 index 9cf0bbec..00000000 Binary files a/public/textures/chipped/ribbled_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_red_wool.png b/public/textures/chipped/ribbled_red_wool.png deleted file mode 100644 index 5dbb1c43..00000000 Binary files a/public/textures/chipped/ribbled_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_white_carpet.png b/public/textures/chipped/ribbled_white_carpet.png deleted file mode 100644 index 83ba657f..00000000 Binary files a/public/textures/chipped/ribbled_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_white_wool.png b/public/textures/chipped/ribbled_white_wool.png deleted file mode 100644 index ec0a682d..00000000 Binary files a/public/textures/chipped/ribbled_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_yellow_carpet.png b/public/textures/chipped/ribbled_yellow_carpet.png deleted file mode 100644 index b8c9fcb8..00000000 Binary files a/public/textures/chipped/ribbled_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/ribbled_yellow_wool.png b/public/textures/chipped/ribbled_yellow_wool.png deleted file mode 100644 index 62437c9d..00000000 Binary files a/public/textures/chipped/ribbled_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/rich_hay_block.png b/public/textures/chipped/rich_hay_block.png deleted file mode 100644 index 87e66f02..00000000 Binary files a/public/textures/chipped/rich_hay_block.png and /dev/null differ diff --git a/public/textures/chipped/ring_lodestone.png b/public/textures/chipped/ring_lodestone.png deleted file mode 100644 index 866fba24..00000000 Binary files a/public/textures/chipped/ring_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/ring_lodestone_side.png b/public/textures/chipped/ring_lodestone_side.png deleted file mode 100644 index 866fba24..00000000 Binary files a/public/textures/chipped/ring_lodestone_side.png and /dev/null differ diff --git a/public/textures/chipped/ringed_mangrove_planks.png b/public/textures/chipped/ringed_mangrove_planks.png deleted file mode 100644 index 6c72b042..00000000 Binary files a/public/textures/chipped/ringed_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/ripe_melon.png b/public/textures/chipped/ripe_melon.png deleted file mode 100644 index 8e2a268e..00000000 Binary files a/public/textures/chipped/ripe_melon.png and /dev/null differ diff --git a/public/textures/chipped/rope_planked_ladder.png b/public/textures/chipped/rope_planked_ladder.png deleted file mode 100644 index 6f942f9e..00000000 Binary files a/public/textures/chipped/rope_planked_ladder.png and /dev/null differ diff --git a/public/textures/chipped/roped_bone_block.png b/public/textures/chipped/roped_bone_block.png deleted file mode 100644 index 9291e9c8..00000000 Binary files a/public/textures/chipped/roped_bone_block.png and /dev/null differ diff --git a/public/textures/chipped/roped_ladder.png b/public/textures/chipped/roped_ladder.png deleted file mode 100644 index 11e04566..00000000 Binary files a/public/textures/chipped/roped_ladder.png and /dev/null differ diff --git a/public/textures/chipped/rosekin.png b/public/textures/chipped/rosekin.png deleted file mode 100644 index 11f40b23..00000000 Binary files a/public/textures/chipped/rosekin.png and /dev/null differ diff --git a/public/textures/chipped/rotted_warped_stem.png b/public/textures/chipped/rotted_warped_stem.png deleted file mode 100644 index 0702e011..00000000 Binary files a/public/textures/chipped/rotted_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/rotten_crimson_stem.png b/public/textures/chipped/rotten_crimson_stem.png deleted file mode 100644 index 55e2c944..00000000 Binary files a/public/textures/chipped/rotten_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/rough_amethyst_block.png b/public/textures/chipped/rough_amethyst_block.png deleted file mode 100644 index e1d7b1cb..00000000 Binary files a/public/textures/chipped/rough_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_ancient_debris.png b/public/textures/chipped/rough_ancient_debris.png deleted file mode 100644 index 90067b06..00000000 Binary files a/public/textures/chipped/rough_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/rough_andesite.png b/public/textures/chipped/rough_andesite.png deleted file mode 100644 index 1ff8de2a..00000000 Binary files a/public/textures/chipped/rough_andesite.png and /dev/null differ diff --git a/public/textures/chipped/rough_blue_ice.png b/public/textures/chipped/rough_blue_ice.png deleted file mode 100644 index 16f6592b..00000000 Binary files a/public/textures/chipped/rough_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/rough_borderless_bricks.png b/public/textures/chipped/rough_borderless_bricks.png deleted file mode 100644 index 98a5a365..00000000 Binary files a/public/textures/chipped/rough_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rough_bricks.png b/public/textures/chipped/rough_bricks.png deleted file mode 100644 index 98a5a365..00000000 Binary files a/public/textures/chipped/rough_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rough_calcite.png b/public/textures/chipped/rough_calcite.png deleted file mode 100644 index becc7e62..00000000 Binary files a/public/textures/chipped/rough_calcite.png and /dev/null differ diff --git a/public/textures/chipped/rough_clay.png b/public/textures/chipped/rough_clay.png deleted file mode 100644 index 4d70adbd..00000000 Binary files a/public/textures/chipped/rough_clay.png and /dev/null differ diff --git a/public/textures/chipped/rough_coal_block.png b/public/textures/chipped/rough_coal_block.png deleted file mode 100644 index 9ebe1764..00000000 Binary files a/public/textures/chipped/rough_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_cobblestone.png b/public/textures/chipped/rough_cobblestone.png deleted file mode 100644 index ea3da453..00000000 Binary files a/public/textures/chipped/rough_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/rough_crimson_dried_kelp_block.png b/public/textures/chipped/rough_crimson_dried_kelp_block.png deleted file mode 100644 index 2465c46d..00000000 Binary files a/public/textures/chipped/rough_crimson_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_crying_obsidian.png b/public/textures/chipped/rough_crying_obsidian.png deleted file mode 100644 index 0f72fb42..00000000 Binary files a/public/textures/chipped/rough_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/rough_dark_prismarine.png b/public/textures/chipped/rough_dark_prismarine.png deleted file mode 100644 index 8c8cf221..00000000 Binary files a/public/textures/chipped/rough_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/rough_deepslate.png b/public/textures/chipped/rough_deepslate.png deleted file mode 100644 index 24612ba7..00000000 Binary files a/public/textures/chipped/rough_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/rough_diorite.png b/public/textures/chipped/rough_diorite.png deleted file mode 100644 index dc1101f0..00000000 Binary files a/public/textures/chipped/rough_diorite.png and /dev/null differ diff --git a/public/textures/chipped/rough_dirt.png b/public/textures/chipped/rough_dirt.png deleted file mode 100644 index a8b914fe..00000000 Binary files a/public/textures/chipped/rough_dirt.png and /dev/null differ diff --git a/public/textures/chipped/rough_dripstone_block.png b/public/textures/chipped/rough_dripstone_block.png deleted file mode 100644 index 08a688b3..00000000 Binary files a/public/textures/chipped/rough_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_end_stone.png b/public/textures/chipped/rough_end_stone.png deleted file mode 100644 index efabaa8a..00000000 Binary files a/public/textures/chipped/rough_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/rough_granite.png b/public/textures/chipped/rough_granite.png deleted file mode 100644 index 7da0fae4..00000000 Binary files a/public/textures/chipped/rough_granite.png and /dev/null differ diff --git a/public/textures/chipped/rough_ice.png b/public/textures/chipped/rough_ice.png deleted file mode 100644 index acbcf7f9..00000000 Binary files a/public/textures/chipped/rough_ice.png and /dev/null differ diff --git a/public/textures/chipped/rough_lapis_block.png b/public/textures/chipped/rough_lapis_block.png deleted file mode 100644 index 1c427de8..00000000 Binary files a/public/textures/chipped/rough_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_lily_pad.png b/public/textures/chipped/rough_lily_pad.png deleted file mode 100644 index ad04c06a..00000000 Binary files a/public/textures/chipped/rough_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/rough_lodestone.png b/public/textures/chipped/rough_lodestone.png deleted file mode 100644 index 37de2778..00000000 Binary files a/public/textures/chipped/rough_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/rough_magma_block.png b/public/textures/chipped/rough_magma_block.png deleted file mode 100644 index fa564f9b..00000000 Binary files a/public/textures/chipped/rough_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_mossy_cobblestone.png b/public/textures/chipped/rough_mossy_cobblestone.png deleted file mode 100644 index 41808c56..00000000 Binary files a/public/textures/chipped/rough_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/rough_mossy_stone_bricks.png b/public/textures/chipped/rough_mossy_stone_bricks.png deleted file mode 100644 index 272d1cd1..00000000 Binary files a/public/textures/chipped/rough_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rough_mud.png b/public/textures/chipped/rough_mud.png deleted file mode 100644 index 1ebeef73..00000000 Binary files a/public/textures/chipped/rough_mud.png and /dev/null differ diff --git a/public/textures/chipped/rough_mud_bricks.png b/public/textures/chipped/rough_mud_bricks.png deleted file mode 100644 index bd35e96f..00000000 Binary files a/public/textures/chipped/rough_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rough_nether_bricks.png b/public/textures/chipped/rough_nether_bricks.png deleted file mode 100644 index 06c27cad..00000000 Binary files a/public/textures/chipped/rough_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rough_nether_wart_block.png b/public/textures/chipped/rough_nether_wart_block.png deleted file mode 100644 index 61f20116..00000000 Binary files a/public/textures/chipped/rough_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_netherrack.png b/public/textures/chipped/rough_netherrack.png deleted file mode 100644 index 0efa5d6e..00000000 Binary files a/public/textures/chipped/rough_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/rough_obsidian.png b/public/textures/chipped/rough_obsidian.png deleted file mode 100644 index 23e0c829..00000000 Binary files a/public/textures/chipped/rough_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/rough_packed_ice.png b/public/textures/chipped/rough_packed_ice.png deleted file mode 100644 index 7a31c70c..00000000 Binary files a/public/textures/chipped/rough_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/rough_packed_mud.png b/public/textures/chipped/rough_packed_mud.png deleted file mode 100644 index 2bc5a856..00000000 Binary files a/public/textures/chipped/rough_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/rough_panelled_mud.png b/public/textures/chipped/rough_panelled_mud.png deleted file mode 100644 index 5864e305..00000000 Binary files a/public/textures/chipped/rough_panelled_mud.png and /dev/null differ diff --git a/public/textures/chipped/rough_panelled_mud_bricks.png b/public/textures/chipped/rough_panelled_mud_bricks.png deleted file mode 100644 index e37bc026..00000000 Binary files a/public/textures/chipped/rough_panelled_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rough_panelled_packed_mud.png b/public/textures/chipped/rough_panelled_packed_mud.png deleted file mode 100644 index f9ae1cd5..00000000 Binary files a/public/textures/chipped/rough_panelled_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/rough_prismarine.png b/public/textures/chipped/rough_prismarine.png deleted file mode 100644 index a8273712..00000000 Binary files a/public/textures/chipped/rough_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/rough_purpur_block.png b/public/textures/chipped/rough_purpur_block.png deleted file mode 100644 index afab8724..00000000 Binary files a/public/textures/chipped/rough_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_quartz_block.png b/public/textures/chipped/rough_quartz_block.png deleted file mode 100644 index ad4004eb..00000000 Binary files a/public/textures/chipped/rough_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_raw_copper_block.png b/public/textures/chipped/rough_raw_copper_block.png deleted file mode 100644 index 39a6c428..00000000 Binary files a/public/textures/chipped/rough_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_raw_gold_block.png b/public/textures/chipped/rough_raw_gold_block.png deleted file mode 100644 index bcf08216..00000000 Binary files a/public/textures/chipped/rough_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_raw_iron_block.png b/public/textures/chipped/rough_raw_iron_block.png deleted file mode 100644 index 660f3cb0..00000000 Binary files a/public/textures/chipped/rough_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_red_nether_bricks.png b/public/textures/chipped/rough_red_nether_bricks.png deleted file mode 100644 index 0f022ba1..00000000 Binary files a/public/textures/chipped/rough_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rough_red_sandstone.png b/public/textures/chipped/rough_red_sandstone.png deleted file mode 100644 index 70a7a6c4..00000000 Binary files a/public/textures/chipped/rough_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/rough_redstone_block.png b/public/textures/chipped/rough_redstone_block.png deleted file mode 100644 index 01b8ed49..00000000 Binary files a/public/textures/chipped/rough_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_sandstone.png b/public/textures/chipped/rough_sandstone.png deleted file mode 100644 index 48f47fb7..00000000 Binary files a/public/textures/chipped/rough_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/rough_smooth_stone.png b/public/textures/chipped/rough_smooth_stone.png deleted file mode 100644 index 839a71fd..00000000 Binary files a/public/textures/chipped/rough_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/rough_snow_block.png b/public/textures/chipped/rough_snow_block.png deleted file mode 100644 index f93b5fe5..00000000 Binary files a/public/textures/chipped/rough_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/rough_stone.png b/public/textures/chipped/rough_stone.png deleted file mode 100644 index e4309287..00000000 Binary files a/public/textures/chipped/rough_stone.png and /dev/null differ diff --git a/public/textures/chipped/rough_tuff.png b/public/textures/chipped/rough_tuff.png deleted file mode 100644 index 29a3db46..00000000 Binary files a/public/textures/chipped/rough_tuff.png and /dev/null differ diff --git a/public/textures/chipped/rough_warped_wart_block.png b/public/textures/chipped/rough_warped_wart_block.png deleted file mode 100644 index 96273034..00000000 Binary files a/public/textures/chipped/rough_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/rought_gravel.png b/public/textures/chipped/rought_gravel.png deleted file mode 100644 index 92d5a712..00000000 Binary files a/public/textures/chipped/rought_gravel.png and /dev/null differ diff --git a/public/textures/chipped/round_ochre_froglight.png b/public/textures/chipped/round_ochre_froglight.png deleted file mode 100644 index 200bfeaf..00000000 Binary files a/public/textures/chipped/round_ochre_froglight.png and /dev/null differ diff --git a/public/textures/chipped/round_pearlescent_froglight.png b/public/textures/chipped/round_pearlescent_froglight.png deleted file mode 100644 index 6078f4b5..00000000 Binary files a/public/textures/chipped/round_pearlescent_froglight.png and /dev/null differ diff --git a/public/textures/chipped/round_verdant_froglight.png b/public/textures/chipped/round_verdant_froglight.png deleted file mode 100644 index 89f518bf..00000000 Binary files a/public/textures/chipped/round_verdant_froglight.png and /dev/null differ diff --git a/public/textures/chipped/rounded_amethyst_block_bricks.png b/public/textures/chipped/rounded_amethyst_block_bricks.png deleted file mode 100644 index 7ea47bb3..00000000 Binary files a/public/textures/chipped/rounded_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_ancient_debris_bricks.png b/public/textures/chipped/rounded_ancient_debris_bricks.png deleted file mode 100644 index eec51cef..00000000 Binary files a/public/textures/chipped/rounded_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_andesite_bricks.png b/public/textures/chipped/rounded_andesite_bricks.png deleted file mode 100644 index 67cab472..00000000 Binary files a/public/textures/chipped/rounded_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_basalt_bricks.png b/public/textures/chipped/rounded_basalt_bricks.png deleted file mode 100644 index 49574103..00000000 Binary files a/public/textures/chipped/rounded_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_blackstone_bricks.png b/public/textures/chipped/rounded_blackstone_bricks.png deleted file mode 100644 index 995441e3..00000000 Binary files a/public/textures/chipped/rounded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_blue_ice_bricks.png b/public/textures/chipped/rounded_blue_ice_bricks.png deleted file mode 100644 index 7bfc99e3..00000000 Binary files a/public/textures/chipped/rounded_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_borderless_bricks_bricks.png b/public/textures/chipped/rounded_borderless_bricks_bricks.png deleted file mode 100644 index 2da1e931..00000000 Binary files a/public/textures/chipped/rounded_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_bricks_bricks.png b/public/textures/chipped/rounded_bricks_bricks.png deleted file mode 100644 index 84f41136..00000000 Binary files a/public/textures/chipped/rounded_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_calcite_bricks.png b/public/textures/chipped/rounded_calcite_bricks.png deleted file mode 100644 index cfc090dd..00000000 Binary files a/public/textures/chipped/rounded_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_clay_bricks.png b/public/textures/chipped/rounded_clay_bricks.png deleted file mode 100644 index 95aadf27..00000000 Binary files a/public/textures/chipped/rounded_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_coal_block_bricks.png b/public/textures/chipped/rounded_coal_block_bricks.png deleted file mode 100644 index 354ed907..00000000 Binary files a/public/textures/chipped/rounded_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_cobblestone_bricks.png b/public/textures/chipped/rounded_cobblestone_bricks.png deleted file mode 100644 index eabf0d1c..00000000 Binary files a/public/textures/chipped/rounded_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_crying_obsidian_bricks.png b/public/textures/chipped/rounded_crying_obsidian_bricks.png deleted file mode 100644 index af5c7e39..00000000 Binary files a/public/textures/chipped/rounded_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_dark_prismarine_bricks.png b/public/textures/chipped/rounded_dark_prismarine_bricks.png deleted file mode 100644 index 5506c250..00000000 Binary files a/public/textures/chipped/rounded_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_deepslate_bricks.png b/public/textures/chipped/rounded_deepslate_bricks.png deleted file mode 100644 index 30f2c153..00000000 Binary files a/public/textures/chipped/rounded_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_diorite_bricks.png b/public/textures/chipped/rounded_diorite_bricks.png deleted file mode 100644 index fc801314..00000000 Binary files a/public/textures/chipped/rounded_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_dirt_bricks.png b/public/textures/chipped/rounded_dirt_bricks.png deleted file mode 100644 index 7e7797e8..00000000 Binary files a/public/textures/chipped/rounded_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_dripstone_block_bricks.png b/public/textures/chipped/rounded_dripstone_block_bricks.png deleted file mode 100644 index 1b23967d..00000000 Binary files a/public/textures/chipped/rounded_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_end_stone_bricks.png b/public/textures/chipped/rounded_end_stone_bricks.png deleted file mode 100644 index 7c147f17..00000000 Binary files a/public/textures/chipped/rounded_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_gilded_blackstone_bricks.png b/public/textures/chipped/rounded_gilded_blackstone_bricks.png deleted file mode 100644 index 26f38615..00000000 Binary files a/public/textures/chipped/rounded_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_granite_bricks.png b/public/textures/chipped/rounded_granite_bricks.png deleted file mode 100644 index 8b946969..00000000 Binary files a/public/textures/chipped/rounded_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_ice_bricks.png b/public/textures/chipped/rounded_ice_bricks.png deleted file mode 100644 index e88a58a4..00000000 Binary files a/public/textures/chipped/rounded_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_lapis_block_bricks.png b/public/textures/chipped/rounded_lapis_block_bricks.png deleted file mode 100644 index 66b9f634..00000000 Binary files a/public/textures/chipped/rounded_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_lodestone_bricks.png b/public/textures/chipped/rounded_lodestone_bricks.png deleted file mode 100644 index 97e0ea83..00000000 Binary files a/public/textures/chipped/rounded_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_magma_block_bricks.png b/public/textures/chipped/rounded_magma_block_bricks.png deleted file mode 100644 index 0d97962a..00000000 Binary files a/public/textures/chipped/rounded_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_mossy_cobblestone_bricks.png b/public/textures/chipped/rounded_mossy_cobblestone_bricks.png deleted file mode 100644 index 4ae011a2..00000000 Binary files a/public/textures/chipped/rounded_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_mossy_stone_bricks_bricks.png b/public/textures/chipped/rounded_mossy_stone_bricks_bricks.png deleted file mode 100644 index 4c0e4c43..00000000 Binary files a/public/textures/chipped/rounded_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_nether_bricks_bricks.png b/public/textures/chipped/rounded_nether_bricks_bricks.png deleted file mode 100644 index d545a4a4..00000000 Binary files a/public/textures/chipped/rounded_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_netherrack_bricks.png b/public/textures/chipped/rounded_netherrack_bricks.png deleted file mode 100644 index a6899e59..00000000 Binary files a/public/textures/chipped/rounded_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_obsidian_bricks.png b/public/textures/chipped/rounded_obsidian_bricks.png deleted file mode 100644 index c01f8130..00000000 Binary files a/public/textures/chipped/rounded_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_packed_ice_bricks.png b/public/textures/chipped/rounded_packed_ice_bricks.png deleted file mode 100644 index 3aaf7608..00000000 Binary files a/public/textures/chipped/rounded_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_prismarine_bricks.png b/public/textures/chipped/rounded_prismarine_bricks.png deleted file mode 100644 index 019e7b82..00000000 Binary files a/public/textures/chipped/rounded_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_purpur_block_bricks.png b/public/textures/chipped/rounded_purpur_block_bricks.png deleted file mode 100644 index 37b4bd96..00000000 Binary files a/public/textures/chipped/rounded_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_quartz_block_bricks.png b/public/textures/chipped/rounded_quartz_block_bricks.png deleted file mode 100644 index b89e09fd..00000000 Binary files a/public/textures/chipped/rounded_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_raw_copper_block_bricks.png b/public/textures/chipped/rounded_raw_copper_block_bricks.png deleted file mode 100644 index 0338e5f1..00000000 Binary files a/public/textures/chipped/rounded_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_raw_gold_block_bricks.png b/public/textures/chipped/rounded_raw_gold_block_bricks.png deleted file mode 100644 index 7925cc5e..00000000 Binary files a/public/textures/chipped/rounded_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_raw_iron_block_bricks.png b/public/textures/chipped/rounded_raw_iron_block_bricks.png deleted file mode 100644 index 0d924bd3..00000000 Binary files a/public/textures/chipped/rounded_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_red_nether_bricks_bricks.png b/public/textures/chipped/rounded_red_nether_bricks_bricks.png deleted file mode 100644 index 94517685..00000000 Binary files a/public/textures/chipped/rounded_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_red_sandstone_bricks.png b/public/textures/chipped/rounded_red_sandstone_bricks.png deleted file mode 100644 index b3f8e781..00000000 Binary files a/public/textures/chipped/rounded_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_redstone_block_bricks.png b/public/textures/chipped/rounded_redstone_block_bricks.png deleted file mode 100644 index 58988b3f..00000000 Binary files a/public/textures/chipped/rounded_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_sandstone_bricks.png b/public/textures/chipped/rounded_sandstone_bricks.png deleted file mode 100644 index a39a74e5..00000000 Binary files a/public/textures/chipped/rounded_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_smooth_stone_bricks.png b/public/textures/chipped/rounded_smooth_stone_bricks.png deleted file mode 100644 index 1ba4cda0..00000000 Binary files a/public/textures/chipped/rounded_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_snow_block_bricks.png b/public/textures/chipped/rounded_snow_block_bricks.png deleted file mode 100644 index 5228625b..00000000 Binary files a/public/textures/chipped/rounded_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_stone_bricks.png b/public/textures/chipped/rounded_stone_bricks.png deleted file mode 100644 index 163122b7..00000000 Binary files a/public/textures/chipped/rounded_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rounded_tuff_bricks.png b/public/textures/chipped/rounded_tuff_bricks.png deleted file mode 100644 index 54a181a2..00000000 Binary files a/public/textures/chipped/rounded_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rune_mud.png b/public/textures/chipped/rune_mud.png deleted file mode 100644 index 081dda40..00000000 Binary files a/public/textures/chipped/rune_mud.png and /dev/null differ diff --git a/public/textures/chipped/rune_mud_bricks.png b/public/textures/chipped/rune_mud_bricks.png deleted file mode 100644 index ffbd2e82..00000000 Binary files a/public/textures/chipped/rune_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/rune_packed_mud.png b/public/textures/chipped/rune_packed_mud.png deleted file mode 100644 index 9d578d81..00000000 Binary files a/public/textures/chipped/rune_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_amethyst_block.png b/public/textures/chipped/runic_carved_amethyst_block.png deleted file mode 100644 index 80be3a30..00000000 Binary files a/public/textures/chipped/runic_carved_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_ancient_debris.png b/public/textures/chipped/runic_carved_ancient_debris.png deleted file mode 100644 index 74f01bb9..00000000 Binary files a/public/textures/chipped/runic_carved_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_andesite.png b/public/textures/chipped/runic_carved_andesite.png deleted file mode 100644 index 476477c3..00000000 Binary files a/public/textures/chipped/runic_carved_andesite.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_basalt.png b/public/textures/chipped/runic_carved_basalt.png deleted file mode 100644 index 56fbe47d..00000000 Binary files a/public/textures/chipped/runic_carved_basalt.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_blackstone.png b/public/textures/chipped/runic_carved_blackstone.png deleted file mode 100644 index a9aff8da..00000000 Binary files a/public/textures/chipped/runic_carved_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_blue_ice.png b/public/textures/chipped/runic_carved_blue_ice.png deleted file mode 100644 index 71dfb07f..00000000 Binary files a/public/textures/chipped/runic_carved_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_borderless_bricks.png b/public/textures/chipped/runic_carved_borderless_bricks.png deleted file mode 100644 index 011af24c..00000000 Binary files a/public/textures/chipped/runic_carved_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_bricks.png b/public/textures/chipped/runic_carved_bricks.png deleted file mode 100644 index 792a1a4d..00000000 Binary files a/public/textures/chipped/runic_carved_bricks.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_calcite.png b/public/textures/chipped/runic_carved_calcite.png deleted file mode 100644 index 3a9fd394..00000000 Binary files a/public/textures/chipped/runic_carved_calcite.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_clay.png b/public/textures/chipped/runic_carved_clay.png deleted file mode 100644 index e49fb726..00000000 Binary files a/public/textures/chipped/runic_carved_clay.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_coal_block.png b/public/textures/chipped/runic_carved_coal_block.png deleted file mode 100644 index da2dbcdf..00000000 Binary files a/public/textures/chipped/runic_carved_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_cobblestone.png b/public/textures/chipped/runic_carved_cobblestone.png deleted file mode 100644 index aa658b6f..00000000 Binary files a/public/textures/chipped/runic_carved_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_crying_obsidian.png b/public/textures/chipped/runic_carved_crying_obsidian.png deleted file mode 100644 index 5bef36fc..00000000 Binary files a/public/textures/chipped/runic_carved_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_dark_prismarine.png b/public/textures/chipped/runic_carved_dark_prismarine.png deleted file mode 100644 index b66f9f27..00000000 Binary files a/public/textures/chipped/runic_carved_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_deepslate.png b/public/textures/chipped/runic_carved_deepslate.png deleted file mode 100644 index f90ca531..00000000 Binary files a/public/textures/chipped/runic_carved_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_diorite.png b/public/textures/chipped/runic_carved_diorite.png deleted file mode 100644 index 3df3b692..00000000 Binary files a/public/textures/chipped/runic_carved_diorite.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_dirt.png b/public/textures/chipped/runic_carved_dirt.png deleted file mode 100644 index e140613b..00000000 Binary files a/public/textures/chipped/runic_carved_dirt.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_dripstone_block.png b/public/textures/chipped/runic_carved_dripstone_block.png deleted file mode 100644 index e206b29b..00000000 Binary files a/public/textures/chipped/runic_carved_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_end_stone.png b/public/textures/chipped/runic_carved_end_stone.png deleted file mode 100644 index 4fe45eb4..00000000 Binary files a/public/textures/chipped/runic_carved_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_gilded_blackstone.png b/public/textures/chipped/runic_carved_gilded_blackstone.png deleted file mode 100644 index 57f65f50..00000000 Binary files a/public/textures/chipped/runic_carved_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_granite.png b/public/textures/chipped/runic_carved_granite.png deleted file mode 100644 index 5711a9c1..00000000 Binary files a/public/textures/chipped/runic_carved_granite.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_ice.png b/public/textures/chipped/runic_carved_ice.png deleted file mode 100644 index 4eb76bed..00000000 Binary files a/public/textures/chipped/runic_carved_ice.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_lapis_block.png b/public/textures/chipped/runic_carved_lapis_block.png deleted file mode 100644 index a174e7ed..00000000 Binary files a/public/textures/chipped/runic_carved_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_lodestone.png b/public/textures/chipped/runic_carved_lodestone.png deleted file mode 100644 index b8eb0343..00000000 Binary files a/public/textures/chipped/runic_carved_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_magma_block.png b/public/textures/chipped/runic_carved_magma_block.png deleted file mode 100644 index c1429273..00000000 Binary files a/public/textures/chipped/runic_carved_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_mossy_cobblestone.png b/public/textures/chipped/runic_carved_mossy_cobblestone.png deleted file mode 100644 index c9de89af..00000000 Binary files a/public/textures/chipped/runic_carved_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_mossy_stone_bricks.png b/public/textures/chipped/runic_carved_mossy_stone_bricks.png deleted file mode 100644 index 16709ad7..00000000 Binary files a/public/textures/chipped/runic_carved_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_nether_bricks.png b/public/textures/chipped/runic_carved_nether_bricks.png deleted file mode 100644 index 9704b2cb..00000000 Binary files a/public/textures/chipped/runic_carved_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_netherrack.png b/public/textures/chipped/runic_carved_netherrack.png deleted file mode 100644 index fc4c7833..00000000 Binary files a/public/textures/chipped/runic_carved_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_obsidian.png b/public/textures/chipped/runic_carved_obsidian.png deleted file mode 100644 index cb78973d..00000000 Binary files a/public/textures/chipped/runic_carved_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_packed_ice.png b/public/textures/chipped/runic_carved_packed_ice.png deleted file mode 100644 index bea09c0f..00000000 Binary files a/public/textures/chipped/runic_carved_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_prismarine.png b/public/textures/chipped/runic_carved_prismarine.png deleted file mode 100644 index 753c3af2..00000000 Binary files a/public/textures/chipped/runic_carved_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_purpur_block.png b/public/textures/chipped/runic_carved_purpur_block.png deleted file mode 100644 index 8e6b9068..00000000 Binary files a/public/textures/chipped/runic_carved_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_quartz_block.png b/public/textures/chipped/runic_carved_quartz_block.png deleted file mode 100644 index 401e969f..00000000 Binary files a/public/textures/chipped/runic_carved_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_raw_copper_block.png b/public/textures/chipped/runic_carved_raw_copper_block.png deleted file mode 100644 index 5258a674..00000000 Binary files a/public/textures/chipped/runic_carved_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_raw_gold_block.png b/public/textures/chipped/runic_carved_raw_gold_block.png deleted file mode 100644 index d0b01823..00000000 Binary files a/public/textures/chipped/runic_carved_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_raw_iron_block.png b/public/textures/chipped/runic_carved_raw_iron_block.png deleted file mode 100644 index 7a39df37..00000000 Binary files a/public/textures/chipped/runic_carved_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_red_nether_bricks.png b/public/textures/chipped/runic_carved_red_nether_bricks.png deleted file mode 100644 index c1ea805c..00000000 Binary files a/public/textures/chipped/runic_carved_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_red_sandstone.png b/public/textures/chipped/runic_carved_red_sandstone.png deleted file mode 100644 index bbf133bc..00000000 Binary files a/public/textures/chipped/runic_carved_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_redstone_block.png b/public/textures/chipped/runic_carved_redstone_block.png deleted file mode 100644 index 897fa876..00000000 Binary files a/public/textures/chipped/runic_carved_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_sandstone.png b/public/textures/chipped/runic_carved_sandstone.png deleted file mode 100644 index 18054ef4..00000000 Binary files a/public/textures/chipped/runic_carved_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_smooth_stone.png b/public/textures/chipped/runic_carved_smooth_stone.png deleted file mode 100644 index 26ff7b94..00000000 Binary files a/public/textures/chipped/runic_carved_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_snow_block.png b/public/textures/chipped/runic_carved_snow_block.png deleted file mode 100644 index 282a1be6..00000000 Binary files a/public/textures/chipped/runic_carved_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_stone.png b/public/textures/chipped/runic_carved_stone.png deleted file mode 100644 index a0d90c5b..00000000 Binary files a/public/textures/chipped/runic_carved_stone.png and /dev/null differ diff --git a/public/textures/chipped/runic_carved_tuff.png b/public/textures/chipped/runic_carved_tuff.png deleted file mode 100644 index a4ae410a..00000000 Binary files a/public/textures/chipped/runic_carved_tuff.png and /dev/null differ diff --git a/public/textures/chipped/rusted_black_concrete.png b/public/textures/chipped/rusted_black_concrete.png deleted file mode 100644 index 2a294c47..00000000 Binary files a/public/textures/chipped/rusted_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_blue_concrete.png b/public/textures/chipped/rusted_blue_concrete.png deleted file mode 100644 index 56aa4023..00000000 Binary files a/public/textures/chipped/rusted_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_brown_concrete.png b/public/textures/chipped/rusted_brown_concrete.png deleted file mode 100644 index b9a40234..00000000 Binary files a/public/textures/chipped/rusted_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_cyan_concrete.png b/public/textures/chipped/rusted_cyan_concrete.png deleted file mode 100644 index 565b3c5b..00000000 Binary files a/public/textures/chipped/rusted_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_gray_concrete.png b/public/textures/chipped/rusted_gray_concrete.png deleted file mode 100644 index 77f5c99a..00000000 Binary files a/public/textures/chipped/rusted_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_green_concrete.png b/public/textures/chipped/rusted_green_concrete.png deleted file mode 100644 index ae4bce7b..00000000 Binary files a/public/textures/chipped/rusted_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_light_blue_concrete.png b/public/textures/chipped/rusted_light_blue_concrete.png deleted file mode 100644 index 785c30dc..00000000 Binary files a/public/textures/chipped/rusted_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_light_gray_concrete.png b/public/textures/chipped/rusted_light_gray_concrete.png deleted file mode 100644 index daca2e4c..00000000 Binary files a/public/textures/chipped/rusted_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_lime_concrete.png b/public/textures/chipped/rusted_lime_concrete.png deleted file mode 100644 index 27469631..00000000 Binary files a/public/textures/chipped/rusted_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_magenta_concrete.png b/public/textures/chipped/rusted_magenta_concrete.png deleted file mode 100644 index 75aa1f52..00000000 Binary files a/public/textures/chipped/rusted_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_orange_concrete.png b/public/textures/chipped/rusted_orange_concrete.png deleted file mode 100644 index b2665d10..00000000 Binary files a/public/textures/chipped/rusted_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_pink_concrete.png b/public/textures/chipped/rusted_pink_concrete.png deleted file mode 100644 index 1f5e066e..00000000 Binary files a/public/textures/chipped/rusted_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_purple_concrete.png b/public/textures/chipped/rusted_purple_concrete.png deleted file mode 100644 index 27d3423f..00000000 Binary files a/public/textures/chipped/rusted_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_red_concrete.png b/public/textures/chipped/rusted_red_concrete.png deleted file mode 100644 index f6e066ab..00000000 Binary files a/public/textures/chipped/rusted_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_white_concrete.png b/public/textures/chipped/rusted_white_concrete.png deleted file mode 100644 index b27917f4..00000000 Binary files a/public/textures/chipped/rusted_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rusted_yellow_concrete.png b/public/textures/chipped/rusted_yellow_concrete.png deleted file mode 100644 index 0356b8db..00000000 Binary files a/public/textures/chipped/rusted_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/rustic_melon.png b/public/textures/chipped/rustic_melon.png deleted file mode 100644 index 2b82d971..00000000 Binary files a/public/textures/chipped/rustic_melon.png and /dev/null differ diff --git a/public/textures/chipped/sad_amethyst_block.png b/public/textures/chipped/sad_amethyst_block.png deleted file mode 100644 index f3455879..00000000 Binary files a/public/textures/chipped/sad_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_ancient_debris.png b/public/textures/chipped/sad_ancient_debris.png deleted file mode 100644 index 27338f92..00000000 Binary files a/public/textures/chipped/sad_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/sad_andesite.png b/public/textures/chipped/sad_andesite.png deleted file mode 100644 index 81f2548b..00000000 Binary files a/public/textures/chipped/sad_andesite.png and /dev/null differ diff --git a/public/textures/chipped/sad_basalt.png b/public/textures/chipped/sad_basalt.png deleted file mode 100644 index de83a962..00000000 Binary files a/public/textures/chipped/sad_basalt.png and /dev/null differ diff --git a/public/textures/chipped/sad_blackstone.png b/public/textures/chipped/sad_blackstone.png deleted file mode 100644 index f183c44b..00000000 Binary files a/public/textures/chipped/sad_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/sad_blue_ice.png b/public/textures/chipped/sad_blue_ice.png deleted file mode 100644 index e5ab139f..00000000 Binary files a/public/textures/chipped/sad_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/sad_borderless_bricks.png b/public/textures/chipped/sad_borderless_bricks.png deleted file mode 100644 index b4925314..00000000 Binary files a/public/textures/chipped/sad_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sad_bricks.png b/public/textures/chipped/sad_bricks.png deleted file mode 100644 index 1172b840..00000000 Binary files a/public/textures/chipped/sad_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sad_calcite.png b/public/textures/chipped/sad_calcite.png deleted file mode 100644 index ca2118ae..00000000 Binary files a/public/textures/chipped/sad_calcite.png and /dev/null differ diff --git a/public/textures/chipped/sad_clay.png b/public/textures/chipped/sad_clay.png deleted file mode 100644 index 0f8c746f..00000000 Binary files a/public/textures/chipped/sad_clay.png and /dev/null differ diff --git a/public/textures/chipped/sad_coal_block.png b/public/textures/chipped/sad_coal_block.png deleted file mode 100644 index e0158a6e..00000000 Binary files a/public/textures/chipped/sad_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_cobblestone.png b/public/textures/chipped/sad_cobblestone.png deleted file mode 100644 index bf0d9e6c..00000000 Binary files a/public/textures/chipped/sad_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/sad_crying_obsidian.png b/public/textures/chipped/sad_crying_obsidian.png deleted file mode 100644 index 50dd5f4a..00000000 Binary files a/public/textures/chipped/sad_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/sad_dark_prismarine.png b/public/textures/chipped/sad_dark_prismarine.png deleted file mode 100644 index b455743b..00000000 Binary files a/public/textures/chipped/sad_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/sad_deepslate.png b/public/textures/chipped/sad_deepslate.png deleted file mode 100644 index e82710ca..00000000 Binary files a/public/textures/chipped/sad_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/sad_diorite.png b/public/textures/chipped/sad_diorite.png deleted file mode 100644 index 645e9430..00000000 Binary files a/public/textures/chipped/sad_diorite.png and /dev/null differ diff --git a/public/textures/chipped/sad_dirt.png b/public/textures/chipped/sad_dirt.png deleted file mode 100644 index d610d58e..00000000 Binary files a/public/textures/chipped/sad_dirt.png and /dev/null differ diff --git a/public/textures/chipped/sad_dripstone_block.png b/public/textures/chipped/sad_dripstone_block.png deleted file mode 100644 index 19786883..00000000 Binary files a/public/textures/chipped/sad_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_end_stone.png b/public/textures/chipped/sad_end_stone.png deleted file mode 100644 index 7ee58427..00000000 Binary files a/public/textures/chipped/sad_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/sad_gilded_blackstone.png b/public/textures/chipped/sad_gilded_blackstone.png deleted file mode 100644 index 93663a24..00000000 Binary files a/public/textures/chipped/sad_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/sad_granite.png b/public/textures/chipped/sad_granite.png deleted file mode 100644 index 1405fbc4..00000000 Binary files a/public/textures/chipped/sad_granite.png and /dev/null differ diff --git a/public/textures/chipped/sad_ice.png b/public/textures/chipped/sad_ice.png deleted file mode 100644 index 802c873f..00000000 Binary files a/public/textures/chipped/sad_ice.png and /dev/null differ diff --git a/public/textures/chipped/sad_lapis_block.png b/public/textures/chipped/sad_lapis_block.png deleted file mode 100644 index 6b54ca61..00000000 Binary files a/public/textures/chipped/sad_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_lodestone.png b/public/textures/chipped/sad_lodestone.png deleted file mode 100644 index edad75c8..00000000 Binary files a/public/textures/chipped/sad_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/sad_magma_block.png b/public/textures/chipped/sad_magma_block.png deleted file mode 100644 index e577609b..00000000 Binary files a/public/textures/chipped/sad_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_mossy_cobblestone.png b/public/textures/chipped/sad_mossy_cobblestone.png deleted file mode 100644 index 30a1436b..00000000 Binary files a/public/textures/chipped/sad_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/sad_mossy_stone_bricks.png b/public/textures/chipped/sad_mossy_stone_bricks.png deleted file mode 100644 index 307d8a6d..00000000 Binary files a/public/textures/chipped/sad_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sad_mud.png b/public/textures/chipped/sad_mud.png deleted file mode 100644 index 81a80a37..00000000 Binary files a/public/textures/chipped/sad_mud.png and /dev/null differ diff --git a/public/textures/chipped/sad_mud_bricks.png b/public/textures/chipped/sad_mud_bricks.png deleted file mode 100644 index 9e4af58f..00000000 Binary files a/public/textures/chipped/sad_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sad_nether_bricks.png b/public/textures/chipped/sad_nether_bricks.png deleted file mode 100644 index e1a1ffcb..00000000 Binary files a/public/textures/chipped/sad_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sad_netherrack.png b/public/textures/chipped/sad_netherrack.png deleted file mode 100644 index fd9d794e..00000000 Binary files a/public/textures/chipped/sad_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/sad_obsidian.png b/public/textures/chipped/sad_obsidian.png deleted file mode 100644 index 4690284e..00000000 Binary files a/public/textures/chipped/sad_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/sad_packed_ice.png b/public/textures/chipped/sad_packed_ice.png deleted file mode 100644 index 911c89dc..00000000 Binary files a/public/textures/chipped/sad_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/sad_packed_mud.png b/public/textures/chipped/sad_packed_mud.png deleted file mode 100644 index c22614a0..00000000 Binary files a/public/textures/chipped/sad_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/sad_prismarine.png b/public/textures/chipped/sad_prismarine.png deleted file mode 100644 index 1854108e..00000000 Binary files a/public/textures/chipped/sad_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/sad_purpur_block.png b/public/textures/chipped/sad_purpur_block.png deleted file mode 100644 index 71f224eb..00000000 Binary files a/public/textures/chipped/sad_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_quartz_block.png b/public/textures/chipped/sad_quartz_block.png deleted file mode 100644 index 9109e6bc..00000000 Binary files a/public/textures/chipped/sad_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_raw_copper_block.png b/public/textures/chipped/sad_raw_copper_block.png deleted file mode 100644 index b4393544..00000000 Binary files a/public/textures/chipped/sad_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_raw_gold_block.png b/public/textures/chipped/sad_raw_gold_block.png deleted file mode 100644 index 96a27d59..00000000 Binary files a/public/textures/chipped/sad_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_raw_iron_block.png b/public/textures/chipped/sad_raw_iron_block.png deleted file mode 100644 index dd566aec..00000000 Binary files a/public/textures/chipped/sad_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_red_nether_bricks.png b/public/textures/chipped/sad_red_nether_bricks.png deleted file mode 100644 index dede77af..00000000 Binary files a/public/textures/chipped/sad_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sad_red_sandstone.png b/public/textures/chipped/sad_red_sandstone.png deleted file mode 100644 index cb2afc2e..00000000 Binary files a/public/textures/chipped/sad_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/sad_redstone_block.png b/public/textures/chipped/sad_redstone_block.png deleted file mode 100644 index ca2670b7..00000000 Binary files a/public/textures/chipped/sad_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_sandstone.png b/public/textures/chipped/sad_sandstone.png deleted file mode 100644 index 37a34e58..00000000 Binary files a/public/textures/chipped/sad_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/sad_smooth_stone.png b/public/textures/chipped/sad_smooth_stone.png deleted file mode 100644 index ec009368..00000000 Binary files a/public/textures/chipped/sad_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/sad_snow_block.png b/public/textures/chipped/sad_snow_block.png deleted file mode 100644 index 79dc667f..00000000 Binary files a/public/textures/chipped/sad_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/sad_stone.png b/public/textures/chipped/sad_stone.png deleted file mode 100644 index 5bdc33f5..00000000 Binary files a/public/textures/chipped/sad_stone.png and /dev/null differ diff --git a/public/textures/chipped/sad_tuff.png b/public/textures/chipped/sad_tuff.png deleted file mode 100644 index 80dd7c8b..00000000 Binary files a/public/textures/chipped/sad_tuff.png and /dev/null differ diff --git a/public/textures/chipped/sanded_amethyst_block.png b/public/textures/chipped/sanded_amethyst_block.png deleted file mode 100644 index 0441eac3..00000000 Binary files a/public/textures/chipped/sanded_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_ancient_debris.png b/public/textures/chipped/sanded_ancient_debris.png deleted file mode 100644 index 77defd6f..00000000 Binary files a/public/textures/chipped/sanded_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/sanded_andesite.png b/public/textures/chipped/sanded_andesite.png deleted file mode 100644 index 7866c11c..00000000 Binary files a/public/textures/chipped/sanded_andesite.png and /dev/null differ diff --git a/public/textures/chipped/sanded_basalt.png b/public/textures/chipped/sanded_basalt.png deleted file mode 100644 index 1ad78f9c..00000000 Binary files a/public/textures/chipped/sanded_basalt.png and /dev/null differ diff --git a/public/textures/chipped/sanded_blackstone.png b/public/textures/chipped/sanded_blackstone.png deleted file mode 100644 index ae31cb23..00000000 Binary files a/public/textures/chipped/sanded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/sanded_blue_ice.png b/public/textures/chipped/sanded_blue_ice.png deleted file mode 100644 index 6980d83f..00000000 Binary files a/public/textures/chipped/sanded_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/sanded_borderless_bricks.png b/public/textures/chipped/sanded_borderless_bricks.png deleted file mode 100644 index 899f05c7..00000000 Binary files a/public/textures/chipped/sanded_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sanded_bricks.png b/public/textures/chipped/sanded_bricks.png deleted file mode 100644 index 899f05c7..00000000 Binary files a/public/textures/chipped/sanded_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sanded_calcite.png b/public/textures/chipped/sanded_calcite.png deleted file mode 100644 index 2c1a2012..00000000 Binary files a/public/textures/chipped/sanded_calcite.png and /dev/null differ diff --git a/public/textures/chipped/sanded_clay.png b/public/textures/chipped/sanded_clay.png deleted file mode 100644 index 3f371596..00000000 Binary files a/public/textures/chipped/sanded_clay.png and /dev/null differ diff --git a/public/textures/chipped/sanded_coal_block.png b/public/textures/chipped/sanded_coal_block.png deleted file mode 100644 index 758ef3e4..00000000 Binary files a/public/textures/chipped/sanded_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_cobblestone.png b/public/textures/chipped/sanded_cobblestone.png deleted file mode 100644 index 31330bf4..00000000 Binary files a/public/textures/chipped/sanded_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/sanded_crying_obsidian.png b/public/textures/chipped/sanded_crying_obsidian.png deleted file mode 100644 index 3f21fcf1..00000000 Binary files a/public/textures/chipped/sanded_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/sanded_dark_prismarine.png b/public/textures/chipped/sanded_dark_prismarine.png deleted file mode 100644 index 047d82b8..00000000 Binary files a/public/textures/chipped/sanded_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/sanded_deepslate.png b/public/textures/chipped/sanded_deepslate.png deleted file mode 100644 index 8e21887f..00000000 Binary files a/public/textures/chipped/sanded_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/sanded_diorite.png b/public/textures/chipped/sanded_diorite.png deleted file mode 100644 index f732bb1e..00000000 Binary files a/public/textures/chipped/sanded_diorite.png and /dev/null differ diff --git a/public/textures/chipped/sanded_dirt.png b/public/textures/chipped/sanded_dirt.png deleted file mode 100644 index 38c09763..00000000 Binary files a/public/textures/chipped/sanded_dirt.png and /dev/null differ diff --git a/public/textures/chipped/sanded_dripstone_block.png b/public/textures/chipped/sanded_dripstone_block.png deleted file mode 100644 index fbe4375c..00000000 Binary files a/public/textures/chipped/sanded_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_end_stone.png b/public/textures/chipped/sanded_end_stone.png deleted file mode 100644 index 38ff0b7b..00000000 Binary files a/public/textures/chipped/sanded_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/sanded_gilded_blackstone.png b/public/textures/chipped/sanded_gilded_blackstone.png deleted file mode 100644 index 19a21580..00000000 Binary files a/public/textures/chipped/sanded_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/sanded_granite.png b/public/textures/chipped/sanded_granite.png deleted file mode 100644 index 2e7b101d..00000000 Binary files a/public/textures/chipped/sanded_granite.png and /dev/null differ diff --git a/public/textures/chipped/sanded_ice.png b/public/textures/chipped/sanded_ice.png deleted file mode 100644 index 18f6ff21..00000000 Binary files a/public/textures/chipped/sanded_ice.png and /dev/null differ diff --git a/public/textures/chipped/sanded_lapis_block.png b/public/textures/chipped/sanded_lapis_block.png deleted file mode 100644 index bdf6cdec..00000000 Binary files a/public/textures/chipped/sanded_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_lodestone.png b/public/textures/chipped/sanded_lodestone.png deleted file mode 100644 index 99fa59df..00000000 Binary files a/public/textures/chipped/sanded_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/sanded_magma_block.png b/public/textures/chipped/sanded_magma_block.png deleted file mode 100644 index 582f0e36..00000000 Binary files a/public/textures/chipped/sanded_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_mossy_cobblestone.png b/public/textures/chipped/sanded_mossy_cobblestone.png deleted file mode 100644 index 2af63bac..00000000 Binary files a/public/textures/chipped/sanded_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/sanded_mossy_stone_bricks.png b/public/textures/chipped/sanded_mossy_stone_bricks.png deleted file mode 100644 index 4d5e4b4d..00000000 Binary files a/public/textures/chipped/sanded_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sanded_nether_bricks.png b/public/textures/chipped/sanded_nether_bricks.png deleted file mode 100644 index 4303d257..00000000 Binary files a/public/textures/chipped/sanded_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sanded_netherrack.png b/public/textures/chipped/sanded_netherrack.png deleted file mode 100644 index 6ecda774..00000000 Binary files a/public/textures/chipped/sanded_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/sanded_obsidian.png b/public/textures/chipped/sanded_obsidian.png deleted file mode 100644 index b778be1e..00000000 Binary files a/public/textures/chipped/sanded_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/sanded_packed_ice.png b/public/textures/chipped/sanded_packed_ice.png deleted file mode 100644 index 890c390f..00000000 Binary files a/public/textures/chipped/sanded_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/sanded_prismarine.png b/public/textures/chipped/sanded_prismarine.png deleted file mode 100644 index 427acfaa..00000000 Binary files a/public/textures/chipped/sanded_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/sanded_purpur_block.png b/public/textures/chipped/sanded_purpur_block.png deleted file mode 100644 index cbcc6873..00000000 Binary files a/public/textures/chipped/sanded_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_quartz_block.png b/public/textures/chipped/sanded_quartz_block.png deleted file mode 100644 index f759dc4f..00000000 Binary files a/public/textures/chipped/sanded_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_raw_copper_block.png b/public/textures/chipped/sanded_raw_copper_block.png deleted file mode 100644 index e9bd8c19..00000000 Binary files a/public/textures/chipped/sanded_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_raw_gold_block.png b/public/textures/chipped/sanded_raw_gold_block.png deleted file mode 100644 index 918414ac..00000000 Binary files a/public/textures/chipped/sanded_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_raw_iron_block.png b/public/textures/chipped/sanded_raw_iron_block.png deleted file mode 100644 index 9c750f6e..00000000 Binary files a/public/textures/chipped/sanded_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_red_nether_bricks.png b/public/textures/chipped/sanded_red_nether_bricks.png deleted file mode 100644 index 222efa48..00000000 Binary files a/public/textures/chipped/sanded_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sanded_red_sandstone.png b/public/textures/chipped/sanded_red_sandstone.png deleted file mode 100644 index 2b18faff..00000000 Binary files a/public/textures/chipped/sanded_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/sanded_redstone_block.png b/public/textures/chipped/sanded_redstone_block.png deleted file mode 100644 index 1deb79cb..00000000 Binary files a/public/textures/chipped/sanded_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_sandstone.png b/public/textures/chipped/sanded_sandstone.png deleted file mode 100644 index c8c3eef1..00000000 Binary files a/public/textures/chipped/sanded_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/sanded_smooth_stone.png b/public/textures/chipped/sanded_smooth_stone.png deleted file mode 100644 index a356c9f7..00000000 Binary files a/public/textures/chipped/sanded_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/sanded_snow_block.png b/public/textures/chipped/sanded_snow_block.png deleted file mode 100644 index 2e44ba6a..00000000 Binary files a/public/textures/chipped/sanded_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/sanded_stone.png b/public/textures/chipped/sanded_stone.png deleted file mode 100644 index 4349f0c9..00000000 Binary files a/public/textures/chipped/sanded_stone.png and /dev/null differ diff --git a/public/textures/chipped/sanded_tuff.png b/public/textures/chipped/sanded_tuff.png deleted file mode 100644 index 15b6e065..00000000 Binary files a/public/textures/chipped/sanded_tuff.png and /dev/null differ diff --git a/public/textures/chipped/sandstone_bricks.png b/public/textures/chipped/sandstone_bricks.png deleted file mode 100644 index 45eec761..00000000 Binary files a/public/textures/chipped/sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sandstone_mini_tiles.png b/public/textures/chipped/sandstone_mini_tiles.png deleted file mode 100644 index 28da2144..00000000 Binary files a/public/textures/chipped/sandstone_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/sandstone_pillar.png b/public/textures/chipped/sandstone_pillar.png deleted file mode 100644 index e34eb772..00000000 Binary files a/public/textures/chipped/sandstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/sandstone_pillar_top.png b/public/textures/chipped/sandstone_pillar_top.png deleted file mode 100644 index 2abb6fa0..00000000 Binary files a/public/textures/chipped/sandstone_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/sandstone_scales.png b/public/textures/chipped/sandstone_scales.png deleted file mode 100644 index 6661cf04..00000000 Binary files a/public/textures/chipped/sandstone_scales.png and /dev/null differ diff --git a/public/textures/chipped/sandy_gravel.png b/public/textures/chipped/sandy_gravel.png deleted file mode 100644 index a71d1f49..00000000 Binary files a/public/textures/chipped/sandy_gravel.png and /dev/null differ diff --git a/public/textures/chipped/saw.png b/public/textures/chipped/saw.png deleted file mode 100644 index a409d94a..00000000 Binary files a/public/textures/chipped/saw.png and /dev/null differ diff --git a/public/textures/chipped/scabbed_nether_wart_block.png b/public/textures/chipped/scabbed_nether_wart_block.png deleted file mode 100644 index b19e8759..00000000 Binary files a/public/textures/chipped/scabbed_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/scabbed_warped_wart_block.png b/public/textures/chipped/scabbed_warped_wart_block.png deleted file mode 100644 index 464c13f4..00000000 Binary files a/public/textures/chipped/scabbed_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/scaled_black_carpet.png b/public/textures/chipped/scaled_black_carpet.png deleted file mode 100644 index f566273d..00000000 Binary files a/public/textures/chipped/scaled_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_black_wool.png b/public/textures/chipped/scaled_black_wool.png deleted file mode 100644 index 29231a8a..00000000 Binary files a/public/textures/chipped/scaled_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_blue_carpet.png b/public/textures/chipped/scaled_blue_carpet.png deleted file mode 100644 index 7866ffa1..00000000 Binary files a/public/textures/chipped/scaled_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_blue_wool.png b/public/textures/chipped/scaled_blue_wool.png deleted file mode 100644 index dec2f271..00000000 Binary files a/public/textures/chipped/scaled_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_brown_carpet.png b/public/textures/chipped/scaled_brown_carpet.png deleted file mode 100644 index 58c9481b..00000000 Binary files a/public/textures/chipped/scaled_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_brown_mushroom_block.png b/public/textures/chipped/scaled_brown_mushroom_block.png deleted file mode 100644 index 78d8c2d2..00000000 Binary files a/public/textures/chipped/scaled_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/scaled_brown_wool.png b/public/textures/chipped/scaled_brown_wool.png deleted file mode 100644 index 92f95951..00000000 Binary files a/public/textures/chipped/scaled_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_cyan_carpet.png b/public/textures/chipped/scaled_cyan_carpet.png deleted file mode 100644 index dc146717..00000000 Binary files a/public/textures/chipped/scaled_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_cyan_wool.png b/public/textures/chipped/scaled_cyan_wool.png deleted file mode 100644 index a388d6d0..00000000 Binary files a/public/textures/chipped/scaled_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_gray_carpet.png b/public/textures/chipped/scaled_gray_carpet.png deleted file mode 100644 index bc80f5d8..00000000 Binary files a/public/textures/chipped/scaled_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_gray_wool.png b/public/textures/chipped/scaled_gray_wool.png deleted file mode 100644 index 88781648..00000000 Binary files a/public/textures/chipped/scaled_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_green_carpet.png b/public/textures/chipped/scaled_green_carpet.png deleted file mode 100644 index ae68497b..00000000 Binary files a/public/textures/chipped/scaled_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_green_wool.png b/public/textures/chipped/scaled_green_wool.png deleted file mode 100644 index 752c5f31..00000000 Binary files a/public/textures/chipped/scaled_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_light_blue_carpet.png b/public/textures/chipped/scaled_light_blue_carpet.png deleted file mode 100644 index 4de983aa..00000000 Binary files a/public/textures/chipped/scaled_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_light_blue_wool.png b/public/textures/chipped/scaled_light_blue_wool.png deleted file mode 100644 index babf1579..00000000 Binary files a/public/textures/chipped/scaled_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_light_gray_carpet.png b/public/textures/chipped/scaled_light_gray_carpet.png deleted file mode 100644 index 1fc9f782..00000000 Binary files a/public/textures/chipped/scaled_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_light_gray_wool.png b/public/textures/chipped/scaled_light_gray_wool.png deleted file mode 100644 index f8ea7572..00000000 Binary files a/public/textures/chipped/scaled_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_lime_carpet.png b/public/textures/chipped/scaled_lime_carpet.png deleted file mode 100644 index 77c0b00e..00000000 Binary files a/public/textures/chipped/scaled_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_lime_wool.png b/public/textures/chipped/scaled_lime_wool.png deleted file mode 100644 index 697c2676..00000000 Binary files a/public/textures/chipped/scaled_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_magenta_carpet.png b/public/textures/chipped/scaled_magenta_carpet.png deleted file mode 100644 index c5ca1d8d..00000000 Binary files a/public/textures/chipped/scaled_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_magenta_wool.png b/public/textures/chipped/scaled_magenta_wool.png deleted file mode 100644 index b6c80a9f..00000000 Binary files a/public/textures/chipped/scaled_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_nether_wart_block.png b/public/textures/chipped/scaled_nether_wart_block.png deleted file mode 100644 index 52e4bbf5..00000000 Binary files a/public/textures/chipped/scaled_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/scaled_orange_carpet.png b/public/textures/chipped/scaled_orange_carpet.png deleted file mode 100644 index e6f03e15..00000000 Binary files a/public/textures/chipped/scaled_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_orange_wool.png b/public/textures/chipped/scaled_orange_wool.png deleted file mode 100644 index 8cf0b311..00000000 Binary files a/public/textures/chipped/scaled_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_pink_carpet.png b/public/textures/chipped/scaled_pink_carpet.png deleted file mode 100644 index e1548538..00000000 Binary files a/public/textures/chipped/scaled_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_pink_wool.png b/public/textures/chipped/scaled_pink_wool.png deleted file mode 100644 index 6013835d..00000000 Binary files a/public/textures/chipped/scaled_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_purple_carpet.png b/public/textures/chipped/scaled_purple_carpet.png deleted file mode 100644 index cf36d0c1..00000000 Binary files a/public/textures/chipped/scaled_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_purple_wool.png b/public/textures/chipped/scaled_purple_wool.png deleted file mode 100644 index a961e002..00000000 Binary files a/public/textures/chipped/scaled_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_red_carpet.png b/public/textures/chipped/scaled_red_carpet.png deleted file mode 100644 index 07eb9fab..00000000 Binary files a/public/textures/chipped/scaled_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_red_wool.png b/public/textures/chipped/scaled_red_wool.png deleted file mode 100644 index 9c5c797d..00000000 Binary files a/public/textures/chipped/scaled_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_warped_wart_block.png b/public/textures/chipped/scaled_warped_wart_block.png deleted file mode 100644 index 621bee0d..00000000 Binary files a/public/textures/chipped/scaled_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/scaled_white_carpet.png b/public/textures/chipped/scaled_white_carpet.png deleted file mode 100644 index 41ec56f6..00000000 Binary files a/public/textures/chipped/scaled_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_white_wool.png b/public/textures/chipped/scaled_white_wool.png deleted file mode 100644 index 41311cd1..00000000 Binary files a/public/textures/chipped/scaled_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaled_yellow_carpet.png b/public/textures/chipped/scaled_yellow_carpet.png deleted file mode 100644 index 76cbbf2c..00000000 Binary files a/public/textures/chipped/scaled_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/scaled_yellow_wool.png b/public/textures/chipped/scaled_yellow_wool.png deleted file mode 100644 index 9d50573a..00000000 Binary files a/public/textures/chipped/scaled_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/scaly_mud.png b/public/textures/chipped/scaly_mud.png deleted file mode 100644 index 5864e305..00000000 Binary files a/public/textures/chipped/scaly_mud.png and /dev/null differ diff --git a/public/textures/chipped/scaly_mud_bricks.png b/public/textures/chipped/scaly_mud_bricks.png deleted file mode 100644 index f4968c05..00000000 Binary files a/public/textures/chipped/scaly_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/scaly_packed_mud.png b/public/textures/chipped/scaly_packed_mud.png deleted file mode 100644 index a3253383..00000000 Binary files a/public/textures/chipped/scaly_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/scared_soul_sand.png b/public/textures/chipped/scared_soul_sand.png deleted file mode 100644 index 30b2bd72..00000000 Binary files a/public/textures/chipped/scared_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/scattered_cobweb.png b/public/textures/chipped/scattered_cobweb.png deleted file mode 100644 index 64f9b609..00000000 Binary files a/public/textures/chipped/scattered_cobweb.png and /dev/null differ diff --git a/public/textures/chipped/screen_acacia_door.png b/public/textures/chipped/screen_acacia_door.png deleted file mode 100644 index e84e9927..00000000 Binary files a/public/textures/chipped/screen_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/screen_bamboo_door.png b/public/textures/chipped/screen_bamboo_door.png deleted file mode 100644 index 2a23dd00..00000000 Binary files a/public/textures/chipped/screen_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/screen_birch_door.png b/public/textures/chipped/screen_birch_door.png deleted file mode 100644 index d1a30ee8..00000000 Binary files a/public/textures/chipped/screen_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/screen_cherry_door.png b/public/textures/chipped/screen_cherry_door.png deleted file mode 100644 index 220bbbe2..00000000 Binary files a/public/textures/chipped/screen_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/screen_crimson_door.png b/public/textures/chipped/screen_crimson_door.png deleted file mode 100644 index 3b8714ed..00000000 Binary files a/public/textures/chipped/screen_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/screen_dark_oak_door.png b/public/textures/chipped/screen_dark_oak_door.png deleted file mode 100644 index 11154127..00000000 Binary files a/public/textures/chipped/screen_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/screen_jungle_door.png b/public/textures/chipped/screen_jungle_door.png deleted file mode 100644 index 5d11589d..00000000 Binary files a/public/textures/chipped/screen_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/screen_oak_door.png b/public/textures/chipped/screen_oak_door.png deleted file mode 100644 index badc4b3a..00000000 Binary files a/public/textures/chipped/screen_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/screen_spruce_door.png b/public/textures/chipped/screen_spruce_door.png deleted file mode 100644 index a06f396c..00000000 Binary files a/public/textures/chipped/screen_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/screen_warped_door.png b/public/textures/chipped/screen_warped_door.png deleted file mode 100644 index 2e78010b..00000000 Binary files a/public/textures/chipped/screen_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/sea_lantern_lodestone.png b/public/textures/chipped/sea_lantern_lodestone.png deleted file mode 100644 index 892296fe..00000000 Binary files a/public/textures/chipped/sea_lantern_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/sea_lodestone_side.png b/public/textures/chipped/sea_lodestone_side.png deleted file mode 100644 index 8c298651..00000000 Binary files a/public/textures/chipped/sea_lodestone_side.png and /dev/null differ diff --git a/public/textures/chipped/seared_nether_wart_block.png b/public/textures/chipped/seared_nether_wart_block.png deleted file mode 100644 index 930d0c23..00000000 Binary files a/public/textures/chipped/seared_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/seared_warped_wart_block.png b/public/textures/chipped/seared_warped_wart_block.png deleted file mode 100644 index f8b72901..00000000 Binary files a/public/textures/chipped/seared_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/secret_acacia_door.png b/public/textures/chipped/secret_acacia_door.png deleted file mode 100644 index 0a18aab3..00000000 Binary files a/public/textures/chipped/secret_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/secret_bamboo_door.png b/public/textures/chipped/secret_bamboo_door.png deleted file mode 100644 index e952a698..00000000 Binary files a/public/textures/chipped/secret_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/secret_birch_door.png b/public/textures/chipped/secret_birch_door.png deleted file mode 100644 index e2826268..00000000 Binary files a/public/textures/chipped/secret_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/secret_cherry_door.png b/public/textures/chipped/secret_cherry_door.png deleted file mode 100644 index 3c5ec44a..00000000 Binary files a/public/textures/chipped/secret_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/secret_crimson_door.png b/public/textures/chipped/secret_crimson_door.png deleted file mode 100644 index 8b66c504..00000000 Binary files a/public/textures/chipped/secret_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/secret_dark_oak_door.png b/public/textures/chipped/secret_dark_oak_door.png deleted file mode 100644 index 093b70d0..00000000 Binary files a/public/textures/chipped/secret_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/secret_jungle_door.png b/public/textures/chipped/secret_jungle_door.png deleted file mode 100644 index 00dcc70c..00000000 Binary files a/public/textures/chipped/secret_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/secret_mangrove_door.png b/public/textures/chipped/secret_mangrove_door.png deleted file mode 100644 index bd6116c8..00000000 Binary files a/public/textures/chipped/secret_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/secret_oak_door.png b/public/textures/chipped/secret_oak_door.png deleted file mode 100644 index 7d449c3c..00000000 Binary files a/public/textures/chipped/secret_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/secret_spruce_door.png b/public/textures/chipped/secret_spruce_door.png deleted file mode 100644 index b8b94573..00000000 Binary files a/public/textures/chipped/secret_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/secret_warped_door.png b/public/textures/chipped/secret_warped_door.png deleted file mode 100644 index d188a580..00000000 Binary files a/public/textures/chipped/secret_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/seeded_nether_sprouts.png b/public/textures/chipped/seeded_nether_sprouts.png deleted file mode 100644 index ace1d151..00000000 Binary files a/public/textures/chipped/seeded_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/semi_spongy_nether_wart_block.png b/public/textures/chipped/semi_spongy_nether_wart_block.png deleted file mode 100644 index 32a2f3b1..00000000 Binary files a/public/textures/chipped/semi_spongy_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/semi_spongy_warped_wart_block.png b/public/textures/chipped/semi_spongy_warped_wart_block.png deleted file mode 100644 index cf0381e2..00000000 Binary files a/public/textures/chipped/semi_spongy_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/shack_acacia_door.png b/public/textures/chipped/shack_acacia_door.png deleted file mode 100644 index cb43817d..00000000 Binary files a/public/textures/chipped/shack_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/shack_bamboo_door.png b/public/textures/chipped/shack_bamboo_door.png deleted file mode 100644 index beb4deb5..00000000 Binary files a/public/textures/chipped/shack_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/shack_birch_door.png b/public/textures/chipped/shack_birch_door.png deleted file mode 100644 index 74a7ad4a..00000000 Binary files a/public/textures/chipped/shack_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/shack_cherry_door.png b/public/textures/chipped/shack_cherry_door.png deleted file mode 100644 index 685256b4..00000000 Binary files a/public/textures/chipped/shack_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/shack_crimson_door.png b/public/textures/chipped/shack_crimson_door.png deleted file mode 100644 index a2abd9d0..00000000 Binary files a/public/textures/chipped/shack_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/shack_dark_oak_door.png b/public/textures/chipped/shack_dark_oak_door.png deleted file mode 100644 index 5d222052..00000000 Binary files a/public/textures/chipped/shack_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/shack_jungle_door.png b/public/textures/chipped/shack_jungle_door.png deleted file mode 100644 index 100a7a8e..00000000 Binary files a/public/textures/chipped/shack_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/shack_oak_door.png b/public/textures/chipped/shack_oak_door.png deleted file mode 100644 index 369aea8b..00000000 Binary files a/public/textures/chipped/shack_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/shack_spruce_door.png b/public/textures/chipped/shack_spruce_door.png deleted file mode 100644 index 291fa5f3..00000000 Binary files a/public/textures/chipped/shack_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/shack_warped_door.png b/public/textures/chipped/shack_warped_door.png deleted file mode 100644 index 557cb414..00000000 Binary files a/public/textures/chipped/shack_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/sheet_diamond_block.png b/public/textures/chipped/sheet_diamond_block.png deleted file mode 100644 index c94fa5fd..00000000 Binary files a/public/textures/chipped/sheet_diamond_block.png and /dev/null differ diff --git a/public/textures/chipped/sheet_emerald_block.png b/public/textures/chipped/sheet_emerald_block.png deleted file mode 100644 index b8d9675e..00000000 Binary files a/public/textures/chipped/sheet_emerald_block.png and /dev/null differ diff --git a/public/textures/chipped/sheet_gold_block.png b/public/textures/chipped/sheet_gold_block.png deleted file mode 100644 index 2560cac2..00000000 Binary files a/public/textures/chipped/sheet_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/sheet_iron_block.png b/public/textures/chipped/sheet_iron_block.png deleted file mode 100644 index d428b40f..00000000 Binary files a/public/textures/chipped/sheet_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/sheet_netherite_block.png b/public/textures/chipped/sheet_netherite_block.png deleted file mode 100644 index 1a052c5a..00000000 Binary files a/public/textures/chipped/sheet_netherite_block.png and /dev/null differ diff --git a/public/textures/chipped/sheet_waxed_copper_block.png b/public/textures/chipped/sheet_waxed_copper_block.png deleted file mode 100644 index 1945087f..00000000 Binary files a/public/textures/chipped/sheet_waxed_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/sheet_waxed_exposed_copper.png b/public/textures/chipped/sheet_waxed_exposed_copper.png deleted file mode 100644 index 2cbf46e4..00000000 Binary files a/public/textures/chipped/sheet_waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/chipped/sheet_waxed_oxidized_copper.png b/public/textures/chipped/sheet_waxed_oxidized_copper.png deleted file mode 100644 index 6c175441..00000000 Binary files a/public/textures/chipped/sheet_waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/chipped/sheet_waxed_weathered_copper.png b/public/textures/chipped/sheet_waxed_weathered_copper.png deleted file mode 100644 index caeb3ad1..00000000 Binary files a/public/textures/chipped/sheet_waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/chipped/shelved_mangrove_planks.png b/public/textures/chipped/shelved_mangrove_planks.png deleted file mode 100644 index e1ae2e88..00000000 Binary files a/public/textures/chipped/shelved_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/shifted_acacia_planks.png b/public/textures/chipped/shifted_acacia_planks.png deleted file mode 100644 index 9b904bdd..00000000 Binary files a/public/textures/chipped/shifted_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/shifted_bamboo_planks.png b/public/textures/chipped/shifted_bamboo_planks.png deleted file mode 100644 index 075eca17..00000000 Binary files a/public/textures/chipped/shifted_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/shifted_birch_planks.png b/public/textures/chipped/shifted_birch_planks.png deleted file mode 100644 index a2b682eb..00000000 Binary files a/public/textures/chipped/shifted_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/shifted_cherry_planks.png b/public/textures/chipped/shifted_cherry_planks.png deleted file mode 100644 index 99f20831..00000000 Binary files a/public/textures/chipped/shifted_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/shifted_crimson_planks.png b/public/textures/chipped/shifted_crimson_planks.png deleted file mode 100644 index 54b6fb44..00000000 Binary files a/public/textures/chipped/shifted_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/shifted_dark_oak_planks.png b/public/textures/chipped/shifted_dark_oak_planks.png deleted file mode 100644 index 92acfe59..00000000 Binary files a/public/textures/chipped/shifted_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/shifted_jungle_planks.png b/public/textures/chipped/shifted_jungle_planks.png deleted file mode 100644 index 2527d7ac..00000000 Binary files a/public/textures/chipped/shifted_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/shifted_mangrove_planks.png b/public/textures/chipped/shifted_mangrove_planks.png deleted file mode 100644 index 97e6c563..00000000 Binary files a/public/textures/chipped/shifted_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/shifted_oak_planks.png b/public/textures/chipped/shifted_oak_planks.png deleted file mode 100644 index 5280069a..00000000 Binary files a/public/textures/chipped/shifted_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/shifted_spruce_planks.png b/public/textures/chipped/shifted_spruce_planks.png deleted file mode 100644 index 5363897e..00000000 Binary files a/public/textures/chipped/shifted_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/shifted_warped_planks.png b/public/textures/chipped/shifted_warped_planks.png deleted file mode 100644 index 4d26d6b1..00000000 Binary files a/public/textures/chipped/shifted_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/shimmering_glowstone.png b/public/textures/chipped/shimmering_glowstone.png deleted file mode 100644 index 9f6a0ecc..00000000 Binary files a/public/textures/chipped/shimmering_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/shimmering_sea_lantern.png b/public/textures/chipped/shimmering_sea_lantern.png deleted file mode 100644 index f069a79c..00000000 Binary files a/public/textures/chipped/shimmering_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/shimmering_shroomlight.png b/public/textures/chipped/shimmering_shroomlight.png deleted file mode 100644 index 71e422cc..00000000 Binary files a/public/textures/chipped/shimmering_shroomlight.png and /dev/null differ diff --git a/public/textures/chipped/short_nether_sprouts.png b/public/textures/chipped/short_nether_sprouts.png deleted file mode 100644 index e1010ef9..00000000 Binary files a/public/textures/chipped/short_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/shrooming_crimson_stem.png b/public/textures/chipped/shrooming_crimson_stem.png deleted file mode 100644 index 1f55f18a..00000000 Binary files a/public/textures/chipped/shrooming_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/shrooming_warped_stem.png b/public/textures/chipped/shrooming_warped_stem.png deleted file mode 100644 index 5a60b6f9..00000000 Binary files a/public/textures/chipped/shrooming_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/shroomlight_lantern.png b/public/textures/chipped/shroomlight_lantern.png deleted file mode 100644 index 11063061..00000000 Binary files a/public/textures/chipped/shroomlight_lantern.png and /dev/null differ diff --git a/public/textures/chipped/shroomlight_lodestone_side.png b/public/textures/chipped/shroomlight_lodestone_side.png deleted file mode 100644 index 88fa36be..00000000 Binary files a/public/textures/chipped/shroomlight_lodestone_side.png and /dev/null differ diff --git a/public/textures/chipped/shroomy_dried_kelp_block.png b/public/textures/chipped/shroomy_dried_kelp_block.png deleted file mode 100644 index bb411745..00000000 Binary files a/public/textures/chipped/shroomy_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/shroomy_nether_sprouts.png b/public/textures/chipped/shroomy_nether_sprouts.png deleted file mode 100644 index 4f694b14..00000000 Binary files a/public/textures/chipped/shroomy_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_black_glazed_terracotta.png b/public/textures/chipped/shrunken_black_glazed_terracotta.png deleted file mode 100644 index ab0181db..00000000 Binary files a/public/textures/chipped/shrunken_black_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_blue_glazed_terracotta.png b/public/textures/chipped/shrunken_blue_glazed_terracotta.png deleted file mode 100644 index 4ef13b20..00000000 Binary files a/public/textures/chipped/shrunken_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_brown_glazed_terracotta.png b/public/textures/chipped/shrunken_brown_glazed_terracotta.png deleted file mode 100644 index 3bc5d6f3..00000000 Binary files a/public/textures/chipped/shrunken_brown_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_cyan_glazed_terracotta.png b/public/textures/chipped/shrunken_cyan_glazed_terracotta.png deleted file mode 100644 index bda78f4d..00000000 Binary files a/public/textures/chipped/shrunken_cyan_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_gray_glazed_terracotta.png b/public/textures/chipped/shrunken_gray_glazed_terracotta.png deleted file mode 100644 index a4e0699c..00000000 Binary files a/public/textures/chipped/shrunken_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_green_glazed_terracotta.png b/public/textures/chipped/shrunken_green_glazed_terracotta.png deleted file mode 100644 index a8fbdec3..00000000 Binary files a/public/textures/chipped/shrunken_green_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_light_blue_glazed_terracotta.png b/public/textures/chipped/shrunken_light_blue_glazed_terracotta.png deleted file mode 100644 index 4f5c31ed..00000000 Binary files a/public/textures/chipped/shrunken_light_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_light_gray_glazed_terracotta.png b/public/textures/chipped/shrunken_light_gray_glazed_terracotta.png deleted file mode 100644 index cd5c8ee8..00000000 Binary files a/public/textures/chipped/shrunken_light_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_lime_glazed_terracotta.png b/public/textures/chipped/shrunken_lime_glazed_terracotta.png deleted file mode 100644 index 90f728aa..00000000 Binary files a/public/textures/chipped/shrunken_lime_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_magenta_glazed_terracotta.png b/public/textures/chipped/shrunken_magenta_glazed_terracotta.png deleted file mode 100644 index 4bf25407..00000000 Binary files a/public/textures/chipped/shrunken_magenta_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_orange_glazed_terracotta.png b/public/textures/chipped/shrunken_orange_glazed_terracotta.png deleted file mode 100644 index cf2725f1..00000000 Binary files a/public/textures/chipped/shrunken_orange_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_pink_glazed_terracotta.png b/public/textures/chipped/shrunken_pink_glazed_terracotta.png deleted file mode 100644 index 199499c7..00000000 Binary files a/public/textures/chipped/shrunken_pink_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_purple_glazed_terracotta.png b/public/textures/chipped/shrunken_purple_glazed_terracotta.png deleted file mode 100644 index ba48e404..00000000 Binary files a/public/textures/chipped/shrunken_purple_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_red_glazed_terracotta.png b/public/textures/chipped/shrunken_red_glazed_terracotta.png deleted file mode 100644 index 2ca2bd64..00000000 Binary files a/public/textures/chipped/shrunken_red_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_white_glazed_terracotta.png b/public/textures/chipped/shrunken_white_glazed_terracotta.png deleted file mode 100644 index ff75159e..00000000 Binary files a/public/textures/chipped/shrunken_white_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shrunken_yellow_glazed_terracotta.png b/public/textures/chipped/shrunken_yellow_glazed_terracotta.png deleted file mode 100644 index 073196cd..00000000 Binary files a/public/textures/chipped/shrunken_yellow_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/shuttered_diamond_block.png b/public/textures/chipped/shuttered_diamond_block.png deleted file mode 100644 index 530ccf8a..00000000 Binary files a/public/textures/chipped/shuttered_diamond_block.png and /dev/null differ diff --git a/public/textures/chipped/shuttered_emerald_block.png b/public/textures/chipped/shuttered_emerald_block.png deleted file mode 100644 index 3e264484..00000000 Binary files a/public/textures/chipped/shuttered_emerald_block.png and /dev/null differ diff --git a/public/textures/chipped/shuttered_gold_block.png b/public/textures/chipped/shuttered_gold_block.png deleted file mode 100644 index f1706899..00000000 Binary files a/public/textures/chipped/shuttered_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/shuttered_iron_block.png b/public/textures/chipped/shuttered_iron_block.png deleted file mode 100644 index 6ea13d73..00000000 Binary files a/public/textures/chipped/shuttered_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/shuttered_netherite_block.png b/public/textures/chipped/shuttered_netherite_block.png deleted file mode 100644 index 2b561456..00000000 Binary files a/public/textures/chipped/shuttered_netherite_block.png and /dev/null differ diff --git a/public/textures/chipped/shuttered_waxed_copper_block.png b/public/textures/chipped/shuttered_waxed_copper_block.png deleted file mode 100644 index a569d4ee..00000000 Binary files a/public/textures/chipped/shuttered_waxed_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/shuttered_waxed_exposed_copper.png b/public/textures/chipped/shuttered_waxed_exposed_copper.png deleted file mode 100644 index e90515b1..00000000 Binary files a/public/textures/chipped/shuttered_waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/chipped/shuttered_waxed_oxidized_copper.png b/public/textures/chipped/shuttered_waxed_oxidized_copper.png deleted file mode 100644 index bf62287d..00000000 Binary files a/public/textures/chipped/shuttered_waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/chipped/shuttered_waxed_weathered_copper.png b/public/textures/chipped/shuttered_waxed_weathered_copper.png deleted file mode 100644 index 0353b9f8..00000000 Binary files a/public/textures/chipped/shuttered_waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/chipped/sided_mangrove_planks.png b/public/textures/chipped/sided_mangrove_planks.png deleted file mode 100644 index 76537b44..00000000 Binary files a/public/textures/chipped/sided_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/sifted_gravel.png b/public/textures/chipped/sifted_gravel.png deleted file mode 100644 index 4ccaa097..00000000 Binary files a/public/textures/chipped/sifted_gravel.png and /dev/null differ diff --git a/public/textures/chipped/sifted_soul_sand.png b/public/textures/chipped/sifted_soul_sand.png deleted file mode 100644 index df41f7a1..00000000 Binary files a/public/textures/chipped/sifted_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/sighthole_iron_bars.png b/public/textures/chipped/sighthole_iron_bars.png deleted file mode 100644 index 3158a87f..00000000 Binary files a/public/textures/chipped/sighthole_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/sigil_mud.png b/public/textures/chipped/sigil_mud.png deleted file mode 100644 index 21b49ec6..00000000 Binary files a/public/textures/chipped/sigil_mud.png and /dev/null differ diff --git a/public/textures/chipped/sigil_mud_bricks.png b/public/textures/chipped/sigil_mud_bricks.png deleted file mode 100644 index a93ba0c6..00000000 Binary files a/public/textures/chipped/sigil_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/sigil_packed_mud.png b/public/textures/chipped/sigil_packed_mud.png deleted file mode 100644 index 63b96df4..00000000 Binary files a/public/textures/chipped/sigil_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/sign_stripped_acacia_log.png b/public/textures/chipped/sign_stripped_acacia_log.png deleted file mode 100644 index 6305bb95..00000000 Binary files a/public/textures/chipped/sign_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/sign_stripped_birch_log.png b/public/textures/chipped/sign_stripped_birch_log.png deleted file mode 100644 index 231b32f5..00000000 Binary files a/public/textures/chipped/sign_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/sign_stripped_cherry_log.png b/public/textures/chipped/sign_stripped_cherry_log.png deleted file mode 100644 index 797164ba..00000000 Binary files a/public/textures/chipped/sign_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/sign_stripped_crimson_stem.png b/public/textures/chipped/sign_stripped_crimson_stem.png deleted file mode 100644 index 9d584dff..00000000 Binary files a/public/textures/chipped/sign_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/sign_stripped_dark_oak_log.png b/public/textures/chipped/sign_stripped_dark_oak_log.png deleted file mode 100644 index bd087df1..00000000 Binary files a/public/textures/chipped/sign_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/sign_stripped_jungle_log.png b/public/textures/chipped/sign_stripped_jungle_log.png deleted file mode 100644 index 66a90834..00000000 Binary files a/public/textures/chipped/sign_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/sign_stripped_mangrove_log.png b/public/textures/chipped/sign_stripped_mangrove_log.png deleted file mode 100644 index cf674ebe..00000000 Binary files a/public/textures/chipped/sign_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/sign_stripped_oak_log.png b/public/textures/chipped/sign_stripped_oak_log.png deleted file mode 100644 index 174991af..00000000 Binary files a/public/textures/chipped/sign_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/sign_stripped_spruce_log.png b/public/textures/chipped/sign_stripped_spruce_log.png deleted file mode 100644 index 963a4685..00000000 Binary files a/public/textures/chipped/sign_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/sign_stripped_warped_stem.png b/public/textures/chipped/sign_stripped_warped_stem.png deleted file mode 100644 index 95bc11bb..00000000 Binary files a/public/textures/chipped/sign_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/silly_carved_pumpkin.png b/public/textures/chipped/silly_carved_pumpkin.png deleted file mode 100644 index 8ac108bd..00000000 Binary files a/public/textures/chipped/silly_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/silly_jack_o_lantern.png b/public/textures/chipped/silly_jack_o_lantern.png deleted file mode 100644 index dfb860fa..00000000 Binary files a/public/textures/chipped/silly_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/simple_amethyst_block_pillar.png b/public/textures/chipped/simple_amethyst_block_pillar.png deleted file mode 100644 index e4af6b0f..00000000 Binary files a/public/textures/chipped/simple_amethyst_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_ancient_debris_pillar.png b/public/textures/chipped/simple_ancient_debris_pillar.png deleted file mode 100644 index 0dc4d640..00000000 Binary files a/public/textures/chipped/simple_ancient_debris_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_andesite_pillar.png b/public/textures/chipped/simple_andesite_pillar.png deleted file mode 100644 index d70ef5cd..00000000 Binary files a/public/textures/chipped/simple_andesite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_basalt_pillar.png b/public/textures/chipped/simple_basalt_pillar.png deleted file mode 100644 index 3787f86d..00000000 Binary files a/public/textures/chipped/simple_basalt_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_blackstone_pillar.png b/public/textures/chipped/simple_blackstone_pillar.png deleted file mode 100644 index c8259d71..00000000 Binary files a/public/textures/chipped/simple_blackstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_blue_ice_pillar.png b/public/textures/chipped/simple_blue_ice_pillar.png deleted file mode 100644 index eeda0ed3..00000000 Binary files a/public/textures/chipped/simple_blue_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_borderless_bricks_pillar.png b/public/textures/chipped/simple_borderless_bricks_pillar.png deleted file mode 100644 index 92f8b519..00000000 Binary files a/public/textures/chipped/simple_borderless_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_bricks_pillar.png b/public/textures/chipped/simple_bricks_pillar.png deleted file mode 100644 index a54426c6..00000000 Binary files a/public/textures/chipped/simple_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_calcite_pillar.png b/public/textures/chipped/simple_calcite_pillar.png deleted file mode 100644 index acbacd84..00000000 Binary files a/public/textures/chipped/simple_calcite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_clay_pillar.png b/public/textures/chipped/simple_clay_pillar.png deleted file mode 100644 index aaf4ea55..00000000 Binary files a/public/textures/chipped/simple_clay_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_coal_block_pillar.png b/public/textures/chipped/simple_coal_block_pillar.png deleted file mode 100644 index 80b1aed9..00000000 Binary files a/public/textures/chipped/simple_coal_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_cobblestone_pillar.png b/public/textures/chipped/simple_cobblestone_pillar.png deleted file mode 100644 index 16e567ac..00000000 Binary files a/public/textures/chipped/simple_cobblestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_crying_obsidian_pillar.png b/public/textures/chipped/simple_crying_obsidian_pillar.png deleted file mode 100644 index 3e670bed..00000000 Binary files a/public/textures/chipped/simple_crying_obsidian_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_dark_prismarine_pillar.png b/public/textures/chipped/simple_dark_prismarine_pillar.png deleted file mode 100644 index b9301695..00000000 Binary files a/public/textures/chipped/simple_dark_prismarine_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_deepslate_pillar.png b/public/textures/chipped/simple_deepslate_pillar.png deleted file mode 100644 index 2fadd0e0..00000000 Binary files a/public/textures/chipped/simple_deepslate_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_diorite_pillar.png b/public/textures/chipped/simple_diorite_pillar.png deleted file mode 100644 index 8f30ba87..00000000 Binary files a/public/textures/chipped/simple_diorite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_dirt_pillar.png b/public/textures/chipped/simple_dirt_pillar.png deleted file mode 100644 index 4c22fadf..00000000 Binary files a/public/textures/chipped/simple_dirt_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_dripstone_block_pillar.png b/public/textures/chipped/simple_dripstone_block_pillar.png deleted file mode 100644 index 2241830c..00000000 Binary files a/public/textures/chipped/simple_dripstone_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_end_stone_pillar.png b/public/textures/chipped/simple_end_stone_pillar.png deleted file mode 100644 index 7bcb05b8..00000000 Binary files a/public/textures/chipped/simple_end_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_gilded_blackstone_pillar.png b/public/textures/chipped/simple_gilded_blackstone_pillar.png deleted file mode 100644 index 14294f08..00000000 Binary files a/public/textures/chipped/simple_gilded_blackstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_granite_pillar.png b/public/textures/chipped/simple_granite_pillar.png deleted file mode 100644 index 5bac9517..00000000 Binary files a/public/textures/chipped/simple_granite_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_ice_pillar.png b/public/textures/chipped/simple_ice_pillar.png deleted file mode 100644 index d6453df2..00000000 Binary files a/public/textures/chipped/simple_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_lapis_block_pillar.png b/public/textures/chipped/simple_lapis_block_pillar.png deleted file mode 100644 index 6fe922ba..00000000 Binary files a/public/textures/chipped/simple_lapis_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_lodestone_pillar.png b/public/textures/chipped/simple_lodestone_pillar.png deleted file mode 100644 index c32fd799..00000000 Binary files a/public/textures/chipped/simple_lodestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_magma_block_pillar.png b/public/textures/chipped/simple_magma_block_pillar.png deleted file mode 100644 index 9a08039f..00000000 Binary files a/public/textures/chipped/simple_magma_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_mossy_cobblestone_pillar.png b/public/textures/chipped/simple_mossy_cobblestone_pillar.png deleted file mode 100644 index 90342a20..00000000 Binary files a/public/textures/chipped/simple_mossy_cobblestone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_mossy_stone_bricks_pillar.png b/public/textures/chipped/simple_mossy_stone_bricks_pillar.png deleted file mode 100644 index 51ae3d7f..00000000 Binary files a/public/textures/chipped/simple_mossy_stone_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_mud_bricks_pillar.png b/public/textures/chipped/simple_mud_bricks_pillar.png deleted file mode 100644 index e4a0a913..00000000 Binary files a/public/textures/chipped/simple_mud_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_mud_pillar.png b/public/textures/chipped/simple_mud_pillar.png deleted file mode 100644 index 23e879e4..00000000 Binary files a/public/textures/chipped/simple_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_nether_bricks_pillar.png b/public/textures/chipped/simple_nether_bricks_pillar.png deleted file mode 100644 index 1bbdb63d..00000000 Binary files a/public/textures/chipped/simple_nether_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_netherrack_pillar.png b/public/textures/chipped/simple_netherrack_pillar.png deleted file mode 100644 index 67f605ab..00000000 Binary files a/public/textures/chipped/simple_netherrack_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_obsidian_pillar.png b/public/textures/chipped/simple_obsidian_pillar.png deleted file mode 100644 index 14364e3c..00000000 Binary files a/public/textures/chipped/simple_obsidian_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_packed_ice_pillar.png b/public/textures/chipped/simple_packed_ice_pillar.png deleted file mode 100644 index 259e927b..00000000 Binary files a/public/textures/chipped/simple_packed_ice_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_packed_mud_pillar.png b/public/textures/chipped/simple_packed_mud_pillar.png deleted file mode 100644 index a4fe13e6..00000000 Binary files a/public/textures/chipped/simple_packed_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_prismarine_pillar.png b/public/textures/chipped/simple_prismarine_pillar.png deleted file mode 100644 index 8f34aa53..00000000 Binary files a/public/textures/chipped/simple_prismarine_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_purpur_block_pillar.png b/public/textures/chipped/simple_purpur_block_pillar.png deleted file mode 100644 index 1b16d4b6..00000000 Binary files a/public/textures/chipped/simple_purpur_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_quartz_block_pillar.png b/public/textures/chipped/simple_quartz_block_pillar.png deleted file mode 100644 index ffbde1a4..00000000 Binary files a/public/textures/chipped/simple_quartz_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_raw_copper_block_pillar.png b/public/textures/chipped/simple_raw_copper_block_pillar.png deleted file mode 100644 index 9f3b122d..00000000 Binary files a/public/textures/chipped/simple_raw_copper_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_raw_gold_block_pillar.png b/public/textures/chipped/simple_raw_gold_block_pillar.png deleted file mode 100644 index 4fe158e2..00000000 Binary files a/public/textures/chipped/simple_raw_gold_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_raw_iron_block_pillar.png b/public/textures/chipped/simple_raw_iron_block_pillar.png deleted file mode 100644 index 60dc6df1..00000000 Binary files a/public/textures/chipped/simple_raw_iron_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_red_nether_bricks_pillar.png b/public/textures/chipped/simple_red_nether_bricks_pillar.png deleted file mode 100644 index 91f076be..00000000 Binary files a/public/textures/chipped/simple_red_nether_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_red_sandstone_pillar.png b/public/textures/chipped/simple_red_sandstone_pillar.png deleted file mode 100644 index 031fda80..00000000 Binary files a/public/textures/chipped/simple_red_sandstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_redstone_block_pillar.png b/public/textures/chipped/simple_redstone_block_pillar.png deleted file mode 100644 index c07ea91c..00000000 Binary files a/public/textures/chipped/simple_redstone_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_sandstone_pillar.png b/public/textures/chipped/simple_sandstone_pillar.png deleted file mode 100644 index d9bfefd6..00000000 Binary files a/public/textures/chipped/simple_sandstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_smooth_stone_pillar.png b/public/textures/chipped/simple_smooth_stone_pillar.png deleted file mode 100644 index aca8c9d7..00000000 Binary files a/public/textures/chipped/simple_smooth_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_snow_block_pillar.png b/public/textures/chipped/simple_snow_block_pillar.png deleted file mode 100644 index a8b57488..00000000 Binary files a/public/textures/chipped/simple_snow_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_stone_pillar.png b/public/textures/chipped/simple_stone_pillar.png deleted file mode 100644 index 790cc126..00000000 Binary files a/public/textures/chipped/simple_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/simple_tuff_pillar.png b/public/textures/chipped/simple_tuff_pillar.png deleted file mode 100644 index 532f6651..00000000 Binary files a/public/textures/chipped/simple_tuff_pillar.png and /dev/null differ diff --git a/public/textures/chipped/slanted_acacia_planks.png b/public/textures/chipped/slanted_acacia_planks.png deleted file mode 100644 index d33306ab..00000000 Binary files a/public/textures/chipped/slanted_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/slanted_bamboo_planks.png b/public/textures/chipped/slanted_bamboo_planks.png deleted file mode 100644 index 5c55161f..00000000 Binary files a/public/textures/chipped/slanted_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/slanted_birch_planks.png b/public/textures/chipped/slanted_birch_planks.png deleted file mode 100644 index d830ca84..00000000 Binary files a/public/textures/chipped/slanted_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/slanted_cherry_planks.png b/public/textures/chipped/slanted_cherry_planks.png deleted file mode 100644 index df19540f..00000000 Binary files a/public/textures/chipped/slanted_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/slanted_crimson_planks.png b/public/textures/chipped/slanted_crimson_planks.png deleted file mode 100644 index c453c2f0..00000000 Binary files a/public/textures/chipped/slanted_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/slanted_dark_oak_planks.png b/public/textures/chipped/slanted_dark_oak_planks.png deleted file mode 100644 index 72549c87..00000000 Binary files a/public/textures/chipped/slanted_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/slanted_jungle_planks.png b/public/textures/chipped/slanted_jungle_planks.png deleted file mode 100644 index 6d399f4d..00000000 Binary files a/public/textures/chipped/slanted_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/slanted_mangrove_planks.png b/public/textures/chipped/slanted_mangrove_planks.png deleted file mode 100644 index ee0df44b..00000000 Binary files a/public/textures/chipped/slanted_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/slanted_oak_planks.png b/public/textures/chipped/slanted_oak_planks.png deleted file mode 100644 index 08e0f465..00000000 Binary files a/public/textures/chipped/slanted_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/slanted_spruce_planks.png b/public/textures/chipped/slanted_spruce_planks.png deleted file mode 100644 index d00c26a0..00000000 Binary files a/public/textures/chipped/slanted_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/slanted_warped_planks.png b/public/textures/chipped/slanted_warped_planks.png deleted file mode 100644 index ca73c350..00000000 Binary files a/public/textures/chipped/slanted_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/sliding_acacia_door.png b/public/textures/chipped/sliding_acacia_door.png deleted file mode 100644 index 5996fbf6..00000000 Binary files a/public/textures/chipped/sliding_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/sliding_bamboo_door.png b/public/textures/chipped/sliding_bamboo_door.png deleted file mode 100644 index caa55814..00000000 Binary files a/public/textures/chipped/sliding_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/sliding_birch_door.png b/public/textures/chipped/sliding_birch_door.png deleted file mode 100644 index d3978ef3..00000000 Binary files a/public/textures/chipped/sliding_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/sliding_cherry_door.png b/public/textures/chipped/sliding_cherry_door.png deleted file mode 100644 index 9f0de00a..00000000 Binary files a/public/textures/chipped/sliding_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/sliding_crimson_door.png b/public/textures/chipped/sliding_crimson_door.png deleted file mode 100644 index c64bb411..00000000 Binary files a/public/textures/chipped/sliding_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/sliding_dark_oak_door.png b/public/textures/chipped/sliding_dark_oak_door.png deleted file mode 100644 index ef165910..00000000 Binary files a/public/textures/chipped/sliding_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/sliding_jungle_door.png b/public/textures/chipped/sliding_jungle_door.png deleted file mode 100644 index a6f93e6d..00000000 Binary files a/public/textures/chipped/sliding_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/sliding_mangrove_door.png b/public/textures/chipped/sliding_mangrove_door.png deleted file mode 100644 index 6184a5eb..00000000 Binary files a/public/textures/chipped/sliding_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/sliding_oak_door.png b/public/textures/chipped/sliding_oak_door.png deleted file mode 100644 index 0b990d82..00000000 Binary files a/public/textures/chipped/sliding_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/sliding_spruce_door.png b/public/textures/chipped/sliding_spruce_door.png deleted file mode 100644 index 703130ae..00000000 Binary files a/public/textures/chipped/sliding_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/slight_smile_carved_pumpkin.png b/public/textures/chipped/slight_smile_carved_pumpkin.png deleted file mode 100644 index d11dd2c6..00000000 Binary files a/public/textures/chipped/slight_smile_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/slight_smile_jack_o_lantern.png b/public/textures/chipped/slight_smile_jack_o_lantern.png deleted file mode 100644 index 8f7901da..00000000 Binary files a/public/textures/chipped/slight_smile_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/slotted_acacia_trapdoor.png b/public/textures/chipped/slotted_acacia_trapdoor.png deleted file mode 100644 index 9d8135e5..00000000 Binary files a/public/textures/chipped/slotted_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/slotted_bamboo_trapdoor.png b/public/textures/chipped/slotted_bamboo_trapdoor.png deleted file mode 100644 index 9de591a6..00000000 Binary files a/public/textures/chipped/slotted_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/slotted_birch_trapdoor.png b/public/textures/chipped/slotted_birch_trapdoor.png deleted file mode 100644 index 1efad5c5..00000000 Binary files a/public/textures/chipped/slotted_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/slotted_cherry_trapdoor.png b/public/textures/chipped/slotted_cherry_trapdoor.png deleted file mode 100644 index a7badb32..00000000 Binary files a/public/textures/chipped/slotted_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/slotted_crimson_trapdoor.png b/public/textures/chipped/slotted_crimson_trapdoor.png deleted file mode 100644 index 711b5380..00000000 Binary files a/public/textures/chipped/slotted_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/slotted_dark_oak_trapdoor.png b/public/textures/chipped/slotted_dark_oak_trapdoor.png deleted file mode 100644 index 41287131..00000000 Binary files a/public/textures/chipped/slotted_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/slotted_jungle_trapdoor.png b/public/textures/chipped/slotted_jungle_trapdoor.png deleted file mode 100644 index 48e84dfb..00000000 Binary files a/public/textures/chipped/slotted_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/slotted_mangrove_trapdoor.png b/public/textures/chipped/slotted_mangrove_trapdoor.png deleted file mode 100644 index f0ac6993..00000000 Binary files a/public/textures/chipped/slotted_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/slotted_oak_trapdoor.png b/public/textures/chipped/slotted_oak_trapdoor.png deleted file mode 100644 index 76df5a7b..00000000 Binary files a/public/textures/chipped/slotted_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/slotted_spruce_trapdoor.png b/public/textures/chipped/slotted_spruce_trapdoor.png deleted file mode 100644 index 94e12047..00000000 Binary files a/public/textures/chipped/slotted_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/slotted_warped_trapdoor.png b/public/textures/chipped/slotted_warped_trapdoor.png deleted file mode 100644 index 8a0c07e1..00000000 Binary files a/public/textures/chipped/slotted_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/small_amethyst_block_bricks.png b/public/textures/chipped/small_amethyst_block_bricks.png deleted file mode 100644 index b004bd8a..00000000 Binary files a/public/textures/chipped/small_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_ancient_debris_bricks.png b/public/textures/chipped/small_ancient_debris_bricks.png deleted file mode 100644 index 041f60c4..00000000 Binary files a/public/textures/chipped/small_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_andesite_bricks.png b/public/textures/chipped/small_andesite_bricks.png deleted file mode 100644 index 76493b37..00000000 Binary files a/public/textures/chipped/small_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_basalt_bricks.png b/public/textures/chipped/small_basalt_bricks.png deleted file mode 100644 index e7faa5fe..00000000 Binary files a/public/textures/chipped/small_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_black_stained_glass.png b/public/textures/chipped/small_black_stained_glass.png deleted file mode 100644 index e0629846..00000000 Binary files a/public/textures/chipped/small_black_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_black_stained_glass_pane.png b/public/textures/chipped/small_black_stained_glass_pane.png deleted file mode 100644 index 4375b084..00000000 Binary files a/public/textures/chipped/small_black_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_black_terracotta_tiles.png b/public/textures/chipped/small_black_terracotta_tiles.png deleted file mode 100644 index 793cb134..00000000 Binary files a/public/textures/chipped/small_black_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_blackstone_bricks.png b/public/textures/chipped/small_blackstone_bricks.png deleted file mode 100644 index fc1d7476..00000000 Binary files a/public/textures/chipped/small_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_blue_ice_bricks.png b/public/textures/chipped/small_blue_ice_bricks.png deleted file mode 100644 index e2595e43..00000000 Binary files a/public/textures/chipped/small_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_blue_stained_glass.png b/public/textures/chipped/small_blue_stained_glass.png deleted file mode 100644 index e71a6c92..00000000 Binary files a/public/textures/chipped/small_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_blue_stained_glass_pane.png b/public/textures/chipped/small_blue_stained_glass_pane.png deleted file mode 100644 index 0591f0bc..00000000 Binary files a/public/textures/chipped/small_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_blue_terracotta_tiles.png b/public/textures/chipped/small_blue_terracotta_tiles.png deleted file mode 100644 index 5af38680..00000000 Binary files a/public/textures/chipped/small_blue_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_borderless_bricks_bricks.png b/public/textures/chipped/small_borderless_bricks_bricks.png deleted file mode 100644 index 78ef8eef..00000000 Binary files a/public/textures/chipped/small_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_bricks_bricks.png b/public/textures/chipped/small_bricks_bricks.png deleted file mode 100644 index 2c0abc06..00000000 Binary files a/public/textures/chipped/small_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_brown_stained_glass.png b/public/textures/chipped/small_brown_stained_glass.png deleted file mode 100644 index 117a1f0b..00000000 Binary files a/public/textures/chipped/small_brown_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_brown_stained_glass_pane.png b/public/textures/chipped/small_brown_stained_glass_pane.png deleted file mode 100644 index 681517e5..00000000 Binary files a/public/textures/chipped/small_brown_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_brown_terracotta_tiles.png b/public/textures/chipped/small_brown_terracotta_tiles.png deleted file mode 100644 index 885b72c2..00000000 Binary files a/public/textures/chipped/small_brown_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_calcite_bricks.png b/public/textures/chipped/small_calcite_bricks.png deleted file mode 100644 index f5e13d5e..00000000 Binary files a/public/textures/chipped/small_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_clay_bricks.png b/public/textures/chipped/small_clay_bricks.png deleted file mode 100644 index edc775dc..00000000 Binary files a/public/textures/chipped/small_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_coal_block_bricks.png b/public/textures/chipped/small_coal_block_bricks.png deleted file mode 100644 index 06c0b6c6..00000000 Binary files a/public/textures/chipped/small_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_cobblestone_bricks.png b/public/textures/chipped/small_cobblestone_bricks.png deleted file mode 100644 index 08e37028..00000000 Binary files a/public/textures/chipped/small_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_crimson_roots_bud.png b/public/textures/chipped/small_crimson_roots_bud.png deleted file mode 100644 index 904003bf..00000000 Binary files a/public/textures/chipped/small_crimson_roots_bud.png and /dev/null differ diff --git a/public/textures/chipped/small_crying_obsidian_bricks.png b/public/textures/chipped/small_crying_obsidian_bricks.png deleted file mode 100644 index f9b2a3b1..00000000 Binary files a/public/textures/chipped/small_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_cyan_stained_glass.png b/public/textures/chipped/small_cyan_stained_glass.png deleted file mode 100644 index 5832c791..00000000 Binary files a/public/textures/chipped/small_cyan_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_cyan_stained_glass_pane.png b/public/textures/chipped/small_cyan_stained_glass_pane.png deleted file mode 100644 index 20a59fde..00000000 Binary files a/public/textures/chipped/small_cyan_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_cyan_terracotta_tiles.png b/public/textures/chipped/small_cyan_terracotta_tiles.png deleted file mode 100644 index 81ff9d5a..00000000 Binary files a/public/textures/chipped/small_cyan_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_dark_prismarine_bricks.png b/public/textures/chipped/small_dark_prismarine_bricks.png deleted file mode 100644 index 0007a8dd..00000000 Binary files a/public/textures/chipped/small_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_deepslate_bricks.png b/public/textures/chipped/small_deepslate_bricks.png deleted file mode 100644 index c72e80b2..00000000 Binary files a/public/textures/chipped/small_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_diamond_leaded_glass.png b/public/textures/chipped/small_diamond_leaded_glass.png deleted file mode 100644 index c49df111..00000000 Binary files a/public/textures/chipped/small_diamond_leaded_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_diamond_leaded_glass_pane.png b/public/textures/chipped/small_diamond_leaded_glass_pane.png deleted file mode 100644 index a9997003..00000000 Binary files a/public/textures/chipped/small_diamond_leaded_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_diorite_bricks.png b/public/textures/chipped/small_diorite_bricks.png deleted file mode 100644 index ffcd9578..00000000 Binary files a/public/textures/chipped/small_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_dirt_bricks.png b/public/textures/chipped/small_dirt_bricks.png deleted file mode 100644 index bd947430..00000000 Binary files a/public/textures/chipped/small_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_dripstone_block_bricks.png b/public/textures/chipped/small_dripstone_block_bricks.png deleted file mode 100644 index ef0e5aa9..00000000 Binary files a/public/textures/chipped/small_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_end_stone_bricks.png b/public/textures/chipped/small_end_stone_bricks.png deleted file mode 100644 index 6d8a77c9..00000000 Binary files a/public/textures/chipped/small_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_gilded_blackstone_bricks.png b/public/textures/chipped/small_gilded_blackstone_bricks.png deleted file mode 100644 index fccc456a..00000000 Binary files a/public/textures/chipped/small_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_granite_bricks.png b/public/textures/chipped/small_granite_bricks.png deleted file mode 100644 index b8653272..00000000 Binary files a/public/textures/chipped/small_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_gray_stained_glass.png b/public/textures/chipped/small_gray_stained_glass.png deleted file mode 100644 index b836895f..00000000 Binary files a/public/textures/chipped/small_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_gray_stained_glass_pane.png b/public/textures/chipped/small_gray_stained_glass_pane.png deleted file mode 100644 index ad5af018..00000000 Binary files a/public/textures/chipped/small_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_gray_terracotta_tiles.png b/public/textures/chipped/small_gray_terracotta_tiles.png deleted file mode 100644 index aea433ac..00000000 Binary files a/public/textures/chipped/small_gray_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_green_lantern.png b/public/textures/chipped/small_green_lantern.png deleted file mode 100644 index 7ed4d3a4..00000000 Binary files a/public/textures/chipped/small_green_lantern.png and /dev/null differ diff --git a/public/textures/chipped/small_green_stained_glass.png b/public/textures/chipped/small_green_stained_glass.png deleted file mode 100644 index 3b720357..00000000 Binary files a/public/textures/chipped/small_green_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_green_stained_glass_pane.png b/public/textures/chipped/small_green_stained_glass_pane.png deleted file mode 100644 index df13170b..00000000 Binary files a/public/textures/chipped/small_green_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_green_terracotta_tiles.png b/public/textures/chipped/small_green_terracotta_tiles.png deleted file mode 100644 index 3586f675..00000000 Binary files a/public/textures/chipped/small_green_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_ice_bricks.png b/public/textures/chipped/small_ice_bricks.png deleted file mode 100644 index 1abaf2e3..00000000 Binary files a/public/textures/chipped/small_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_lapis_block_bricks.png b/public/textures/chipped/small_lapis_block_bricks.png deleted file mode 100644 index 9c0edbee..00000000 Binary files a/public/textures/chipped/small_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_light_blue_stained_glass.png b/public/textures/chipped/small_light_blue_stained_glass.png deleted file mode 100644 index 7522c613..00000000 Binary files a/public/textures/chipped/small_light_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_light_blue_stained_glass_pane.png b/public/textures/chipped/small_light_blue_stained_glass_pane.png deleted file mode 100644 index 9584d562..00000000 Binary files a/public/textures/chipped/small_light_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_light_blue_terracotta_tiles.png b/public/textures/chipped/small_light_blue_terracotta_tiles.png deleted file mode 100644 index 7cc033a7..00000000 Binary files a/public/textures/chipped/small_light_blue_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_light_gray_stained_glass.png b/public/textures/chipped/small_light_gray_stained_glass.png deleted file mode 100644 index e0d6e814..00000000 Binary files a/public/textures/chipped/small_light_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_light_gray_stained_glass_pane.png b/public/textures/chipped/small_light_gray_stained_glass_pane.png deleted file mode 100644 index 8ddf7720..00000000 Binary files a/public/textures/chipped/small_light_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_light_gray_terracotta_tiles.png b/public/textures/chipped/small_light_gray_terracotta_tiles.png deleted file mode 100644 index 90fa8f4c..00000000 Binary files a/public/textures/chipped/small_light_gray_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_lime_stained_glass.png b/public/textures/chipped/small_lime_stained_glass.png deleted file mode 100644 index 36feb127..00000000 Binary files a/public/textures/chipped/small_lime_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_lime_stained_glass_pane.png b/public/textures/chipped/small_lime_stained_glass_pane.png deleted file mode 100644 index 8405083b..00000000 Binary files a/public/textures/chipped/small_lime_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_lime_terracotta_tiles.png b/public/textures/chipped/small_lime_terracotta_tiles.png deleted file mode 100644 index 31efb53f..00000000 Binary files a/public/textures/chipped/small_lime_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_lodestone_bricks.png b/public/textures/chipped/small_lodestone_bricks.png deleted file mode 100644 index 62312d86..00000000 Binary files a/public/textures/chipped/small_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_magenta_stained_glass.png b/public/textures/chipped/small_magenta_stained_glass.png deleted file mode 100644 index f3d13977..00000000 Binary files a/public/textures/chipped/small_magenta_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_magenta_stained_glass_pane.png b/public/textures/chipped/small_magenta_stained_glass_pane.png deleted file mode 100644 index 58e78222..00000000 Binary files a/public/textures/chipped/small_magenta_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_magenta_terracotta_tiles.png b/public/textures/chipped/small_magenta_terracotta_tiles.png deleted file mode 100644 index 0b2a1281..00000000 Binary files a/public/textures/chipped/small_magenta_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_magma_block_bricks.png b/public/textures/chipped/small_magma_block_bricks.png deleted file mode 100644 index 97502fef..00000000 Binary files a/public/textures/chipped/small_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_mossy_cobblestone_bricks.png b/public/textures/chipped/small_mossy_cobblestone_bricks.png deleted file mode 100644 index 19adcc20..00000000 Binary files a/public/textures/chipped/small_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_mossy_stone_bricks_bricks.png b/public/textures/chipped/small_mossy_stone_bricks_bricks.png deleted file mode 100644 index 9a994111..00000000 Binary files a/public/textures/chipped/small_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_mud_bricks.png b/public/textures/chipped/small_mud_bricks.png deleted file mode 100644 index bfdd4a25..00000000 Binary files a/public/textures/chipped/small_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_mud_bricks_bricks.png b/public/textures/chipped/small_mud_bricks_bricks.png deleted file mode 100644 index fa396f6b..00000000 Binary files a/public/textures/chipped/small_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_nether_bricks_bricks.png b/public/textures/chipped/small_nether_bricks_bricks.png deleted file mode 100644 index 26e1bd34..00000000 Binary files a/public/textures/chipped/small_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_netherrack_bricks.png b/public/textures/chipped/small_netherrack_bricks.png deleted file mode 100644 index b7095675..00000000 Binary files a/public/textures/chipped/small_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_obsidian_bricks.png b/public/textures/chipped/small_obsidian_bricks.png deleted file mode 100644 index 0c14f771..00000000 Binary files a/public/textures/chipped/small_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_orange_stained_glass.png b/public/textures/chipped/small_orange_stained_glass.png deleted file mode 100644 index 33a9afe1..00000000 Binary files a/public/textures/chipped/small_orange_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_orange_stained_glass_pane.png b/public/textures/chipped/small_orange_stained_glass_pane.png deleted file mode 100644 index 24526227..00000000 Binary files a/public/textures/chipped/small_orange_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_orange_terracotta_tiles.png b/public/textures/chipped/small_orange_terracotta_tiles.png deleted file mode 100644 index 967196b8..00000000 Binary files a/public/textures/chipped/small_orange_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_packed_ice_bricks.png b/public/textures/chipped/small_packed_ice_bricks.png deleted file mode 100644 index c347cbe8..00000000 Binary files a/public/textures/chipped/small_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_packed_mud_bricks.png b/public/textures/chipped/small_packed_mud_bricks.png deleted file mode 100644 index e922ee63..00000000 Binary files a/public/textures/chipped/small_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_pink_stained_glass.png b/public/textures/chipped/small_pink_stained_glass.png deleted file mode 100644 index 0eb3898b..00000000 Binary files a/public/textures/chipped/small_pink_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_pink_stained_glass_pane.png b/public/textures/chipped/small_pink_stained_glass_pane.png deleted file mode 100644 index 33b95cc6..00000000 Binary files a/public/textures/chipped/small_pink_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_pink_terracotta_tiles.png b/public/textures/chipped/small_pink_terracotta_tiles.png deleted file mode 100644 index 44de0d7c..00000000 Binary files a/public/textures/chipped/small_pink_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_prismarine_bricks.png b/public/textures/chipped/small_prismarine_bricks.png deleted file mode 100644 index f4b14416..00000000 Binary files a/public/textures/chipped/small_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_purple_stained_glass.png b/public/textures/chipped/small_purple_stained_glass.png deleted file mode 100644 index 2f8d1e9e..00000000 Binary files a/public/textures/chipped/small_purple_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_purple_stained_glass_pane.png b/public/textures/chipped/small_purple_stained_glass_pane.png deleted file mode 100644 index 3a328215..00000000 Binary files a/public/textures/chipped/small_purple_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_purple_terracotta_tiles.png b/public/textures/chipped/small_purple_terracotta_tiles.png deleted file mode 100644 index 904a85d0..00000000 Binary files a/public/textures/chipped/small_purple_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_purpur_block_bricks.png b/public/textures/chipped/small_purpur_block_bricks.png deleted file mode 100644 index 425922ff..00000000 Binary files a/public/textures/chipped/small_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_quartz_block_bricks.png b/public/textures/chipped/small_quartz_block_bricks.png deleted file mode 100644 index c8bb8439..00000000 Binary files a/public/textures/chipped/small_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_raw_copper_block_bricks.png b/public/textures/chipped/small_raw_copper_block_bricks.png deleted file mode 100644 index e868d442..00000000 Binary files a/public/textures/chipped/small_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_raw_gold_block_bricks.png b/public/textures/chipped/small_raw_gold_block_bricks.png deleted file mode 100644 index f12544c5..00000000 Binary files a/public/textures/chipped/small_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_raw_iron_block_bricks.png b/public/textures/chipped/small_raw_iron_block_bricks.png deleted file mode 100644 index b6ca5e15..00000000 Binary files a/public/textures/chipped/small_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_red_nether_bricks_bricks.png b/public/textures/chipped/small_red_nether_bricks_bricks.png deleted file mode 100644 index 19bc6c3c..00000000 Binary files a/public/textures/chipped/small_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_red_sandstone_bricks.png b/public/textures/chipped/small_red_sandstone_bricks.png deleted file mode 100644 index 4bb9d607..00000000 Binary files a/public/textures/chipped/small_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_red_soul_lantern.png b/public/textures/chipped/small_red_soul_lantern.png deleted file mode 100644 index 4b0da63c..00000000 Binary files a/public/textures/chipped/small_red_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/small_red_stained_glass.png b/public/textures/chipped/small_red_stained_glass.png deleted file mode 100644 index 71e461f4..00000000 Binary files a/public/textures/chipped/small_red_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_red_stained_glass_pane.png b/public/textures/chipped/small_red_stained_glass_pane.png deleted file mode 100644 index 207d9722..00000000 Binary files a/public/textures/chipped/small_red_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_red_terracotta_tiles.png b/public/textures/chipped/small_red_terracotta_tiles.png deleted file mode 100644 index 73ca2a1f..00000000 Binary files a/public/textures/chipped/small_red_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_redstone_block_bricks.png b/public/textures/chipped/small_redstone_block_bricks.png deleted file mode 100644 index 4067b110..00000000 Binary files a/public/textures/chipped/small_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_sandstone_bricks.png b/public/textures/chipped/small_sandstone_bricks.png deleted file mode 100644 index 60125569..00000000 Binary files a/public/textures/chipped/small_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_smooth_stone_bricks.png b/public/textures/chipped/small_smooth_stone_bricks.png deleted file mode 100644 index 290f86c6..00000000 Binary files a/public/textures/chipped/small_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_snow_block_bricks.png b/public/textures/chipped/small_snow_block_bricks.png deleted file mode 100644 index 2d07e226..00000000 Binary files a/public/textures/chipped/small_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_stone_bricks.png b/public/textures/chipped/small_stone_bricks.png deleted file mode 100644 index f601935d..00000000 Binary files a/public/textures/chipped/small_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_terracotta_tiles.png b/public/textures/chipped/small_terracotta_tiles.png deleted file mode 100644 index 1eff91a8..00000000 Binary files a/public/textures/chipped/small_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_tuff_bricks.png b/public/textures/chipped/small_tuff_bricks.png deleted file mode 100644 index 1166d2c4..00000000 Binary files a/public/textures/chipped/small_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/small_white_stained_glass.png b/public/textures/chipped/small_white_stained_glass.png deleted file mode 100644 index b54d8843..00000000 Binary files a/public/textures/chipped/small_white_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_white_stained_glass_pane.png b/public/textures/chipped/small_white_stained_glass_pane.png deleted file mode 100644 index 8124d1f6..00000000 Binary files a/public/textures/chipped/small_white_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_white_terracotta_tiles.png b/public/textures/chipped/small_white_terracotta_tiles.png deleted file mode 100644 index 01988453..00000000 Binary files a/public/textures/chipped/small_white_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/small_yellow_stained_glass.png b/public/textures/chipped/small_yellow_stained_glass.png deleted file mode 100644 index f54a5d30..00000000 Binary files a/public/textures/chipped/small_yellow_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/small_yellow_stained_glass_pane.png b/public/textures/chipped/small_yellow_stained_glass_pane.png deleted file mode 100644 index 09c7d3f4..00000000 Binary files a/public/textures/chipped/small_yellow_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/small_yellow_terracotta_tiles.png b/public/textures/chipped/small_yellow_terracotta_tiles.png deleted file mode 100644 index 995a8d24..00000000 Binary files a/public/textures/chipped/small_yellow_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/smiling_carved_pumpkin.png b/public/textures/chipped/smiling_carved_pumpkin.png deleted file mode 100644 index 8229f713..00000000 Binary files a/public/textures/chipped/smiling_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/smiling_jack_o_lantern.png b/public/textures/chipped/smiling_jack_o_lantern.png deleted file mode 100644 index 0bcf32d7..00000000 Binary files a/public/textures/chipped/smiling_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/smol_lily_pad.png b/public/textures/chipped/smol_lily_pad.png deleted file mode 100644 index 7fdb0e12..00000000 Binary files a/public/textures/chipped/smol_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/smooth_acacia_planks.png b/public/textures/chipped/smooth_acacia_planks.png deleted file mode 100644 index a45c6e2b..00000000 Binary files a/public/textures/chipped/smooth_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_amethyst_block_column.png b/public/textures/chipped/smooth_amethyst_block_column.png deleted file mode 100644 index d24597ee..00000000 Binary files a/public/textures/chipped/smooth_amethyst_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ancient_debris_column.png b/public/textures/chipped/smooth_ancient_debris_column.png deleted file mode 100644 index 88a287b1..00000000 Binary files a/public/textures/chipped/smooth_ancient_debris_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_andesite_column.png b/public/textures/chipped/smooth_andesite_column.png deleted file mode 100644 index c1f260d1..00000000 Binary files a/public/textures/chipped/smooth_andesite_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_bamboo_planks.png b/public/textures/chipped/smooth_bamboo_planks.png deleted file mode 100644 index f490202c..00000000 Binary files a/public/textures/chipped/smooth_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_basalt_column.png b/public/textures/chipped/smooth_basalt_column.png deleted file mode 100644 index 94155c6f..00000000 Binary files a/public/textures/chipped/smooth_basalt_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_basalt_pointed_dripstone.png b/public/textures/chipped/smooth_basalt_pointed_dripstone.png deleted file mode 100644 index 5a045c7f..00000000 Binary files a/public/textures/chipped/smooth_basalt_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_birch_planks.png b/public/textures/chipped/smooth_birch_planks.png deleted file mode 100644 index bffd0aaa..00000000 Binary files a/public/textures/chipped/smooth_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_black_concrete.png b/public/textures/chipped/smooth_black_concrete.png deleted file mode 100644 index 65657d6d..00000000 Binary files a/public/textures/chipped/smooth_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_blackstone_bricks.png b/public/textures/chipped/smooth_blackstone_bricks.png deleted file mode 100644 index d95d142a..00000000 Binary files a/public/textures/chipped/smooth_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_blackstone_column.png b/public/textures/chipped/smooth_blackstone_column.png deleted file mode 100644 index 51805035..00000000 Binary files a/public/textures/chipped/smooth_blackstone_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_blue_concrete.png b/public/textures/chipped/smooth_blue_concrete.png deleted file mode 100644 index 04d0fe32..00000000 Binary files a/public/textures/chipped/smooth_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_blue_ice_column.png b/public/textures/chipped/smooth_blue_ice_column.png deleted file mode 100644 index 389ff915..00000000 Binary files a/public/textures/chipped/smooth_blue_ice_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_borderless_bricks_column.png b/public/textures/chipped/smooth_borderless_bricks_column.png deleted file mode 100644 index d917498e..00000000 Binary files a/public/textures/chipped/smooth_borderless_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_bricks_column.png b/public/textures/chipped/smooth_bricks_column.png deleted file mode 100644 index f89c5912..00000000 Binary files a/public/textures/chipped/smooth_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_brown_concrete.png b/public/textures/chipped/smooth_brown_concrete.png deleted file mode 100644 index 1dcebf8a..00000000 Binary files a/public/textures/chipped/smooth_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_brown_mushroom_block.png b/public/textures/chipped/smooth_brown_mushroom_block.png deleted file mode 100644 index 77eb4e4f..00000000 Binary files a/public/textures/chipped/smooth_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_calcite_column.png b/public/textures/chipped/smooth_calcite_column.png deleted file mode 100644 index 391fe125..00000000 Binary files a/public/textures/chipped/smooth_calcite_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_cherry_planks.png b/public/textures/chipped/smooth_cherry_planks.png deleted file mode 100644 index 0e705053..00000000 Binary files a/public/textures/chipped/smooth_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_clay_column.png b/public/textures/chipped/smooth_clay_column.png deleted file mode 100644 index df1b7f28..00000000 Binary files a/public/textures/chipped/smooth_clay_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_coal_block_column.png b/public/textures/chipped/smooth_coal_block_column.png deleted file mode 100644 index f30c1542..00000000 Binary files a/public/textures/chipped/smooth_coal_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_cobblestone_column.png b/public/textures/chipped/smooth_cobblestone_column.png deleted file mode 100644 index 194096ca..00000000 Binary files a/public/textures/chipped/smooth_cobblestone_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_crimson_planks.png b/public/textures/chipped/smooth_crimson_planks.png deleted file mode 100644 index 597d68ad..00000000 Binary files a/public/textures/chipped/smooth_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_crimson_stem.png b/public/textures/chipped/smooth_crimson_stem.png deleted file mode 100644 index 041ec939..00000000 Binary files a/public/textures/chipped/smooth_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/smooth_crying_obsidian_column.png b/public/textures/chipped/smooth_crying_obsidian_column.png deleted file mode 100644 index de818686..00000000 Binary files a/public/textures/chipped/smooth_crying_obsidian_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_cyan_concrete.png b/public/textures/chipped/smooth_cyan_concrete.png deleted file mode 100644 index 789ab4cf..00000000 Binary files a/public/textures/chipped/smooth_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_dark_oak_planks.png b/public/textures/chipped/smooth_dark_oak_planks.png deleted file mode 100644 index 1960c11f..00000000 Binary files a/public/textures/chipped/smooth_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_dark_prismarine_column.png b/public/textures/chipped/smooth_dark_prismarine_column.png deleted file mode 100644 index 2234f6f7..00000000 Binary files a/public/textures/chipped/smooth_dark_prismarine_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_deepslate_column.png b/public/textures/chipped/smooth_deepslate_column.png deleted file mode 100644 index 14c86283..00000000 Binary files a/public/textures/chipped/smooth_deepslate_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_diorite_column.png b/public/textures/chipped/smooth_diorite_column.png deleted file mode 100644 index 5dcf63fd..00000000 Binary files a/public/textures/chipped/smooth_diorite_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_dirt_column.png b/public/textures/chipped/smooth_dirt_column.png deleted file mode 100644 index d881114a..00000000 Binary files a/public/textures/chipped/smooth_dirt_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_dripstone_block_column.png b/public/textures/chipped/smooth_dripstone_block_column.png deleted file mode 100644 index d01a329c..00000000 Binary files a/public/textures/chipped/smooth_dripstone_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_end_stone_column.png b/public/textures/chipped/smooth_end_stone_column.png deleted file mode 100644 index f667ae5d..00000000 Binary files a/public/textures/chipped/smooth_end_stone_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_gilded_blackstone_column.png b/public/textures/chipped/smooth_gilded_blackstone_column.png deleted file mode 100644 index cf453134..00000000 Binary files a/public/textures/chipped/smooth_gilded_blackstone_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_glowstone.png b/public/textures/chipped/smooth_glowstone.png deleted file mode 100644 index dd4ad2e6..00000000 Binary files a/public/textures/chipped/smooth_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_granite_column.png b/public/textures/chipped/smooth_granite_column.png deleted file mode 100644 index d79b5db5..00000000 Binary files a/public/textures/chipped/smooth_granite_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_gray_concrete.png b/public/textures/chipped/smooth_gray_concrete.png deleted file mode 100644 index c4bf7baa..00000000 Binary files a/public/textures/chipped/smooth_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_green_concrete.png b/public/textures/chipped/smooth_green_concrete.png deleted file mode 100644 index 2dc31403..00000000 Binary files a/public/textures/chipped/smooth_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ice_column.png b/public/textures/chipped/smooth_ice_column.png deleted file mode 100644 index edf62888..00000000 Binary files a/public/textures/chipped/smooth_ice_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_amethyst_block.png b/public/textures/chipped/smooth_inlayed_amethyst_block.png deleted file mode 100644 index 8cda9664..00000000 Binary files a/public/textures/chipped/smooth_inlayed_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_ancient_debris.png b/public/textures/chipped/smooth_inlayed_ancient_debris.png deleted file mode 100644 index 9be37297..00000000 Binary files a/public/textures/chipped/smooth_inlayed_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_andesite.png b/public/textures/chipped/smooth_inlayed_andesite.png deleted file mode 100644 index 244e0fcf..00000000 Binary files a/public/textures/chipped/smooth_inlayed_andesite.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_basalt.png b/public/textures/chipped/smooth_inlayed_basalt.png deleted file mode 100644 index 463601d1..00000000 Binary files a/public/textures/chipped/smooth_inlayed_basalt.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_blackstone.png b/public/textures/chipped/smooth_inlayed_blackstone.png deleted file mode 100644 index b38f1142..00000000 Binary files a/public/textures/chipped/smooth_inlayed_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_blue_ice.png b/public/textures/chipped/smooth_inlayed_blue_ice.png deleted file mode 100644 index ba22aee2..00000000 Binary files a/public/textures/chipped/smooth_inlayed_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_borderless_bricks.png b/public/textures/chipped/smooth_inlayed_borderless_bricks.png deleted file mode 100644 index 9a1cb3cf..00000000 Binary files a/public/textures/chipped/smooth_inlayed_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_bricks.png b/public/textures/chipped/smooth_inlayed_bricks.png deleted file mode 100644 index 2bf2bdcb..00000000 Binary files a/public/textures/chipped/smooth_inlayed_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_calcite.png b/public/textures/chipped/smooth_inlayed_calcite.png deleted file mode 100644 index dac34513..00000000 Binary files a/public/textures/chipped/smooth_inlayed_calcite.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_clay.png b/public/textures/chipped/smooth_inlayed_clay.png deleted file mode 100644 index e58f6260..00000000 Binary files a/public/textures/chipped/smooth_inlayed_clay.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_coal_block.png b/public/textures/chipped/smooth_inlayed_coal_block.png deleted file mode 100644 index b740237c..00000000 Binary files a/public/textures/chipped/smooth_inlayed_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_cobblestone.png b/public/textures/chipped/smooth_inlayed_cobblestone.png deleted file mode 100644 index 594cd724..00000000 Binary files a/public/textures/chipped/smooth_inlayed_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_crying_obsidian.png b/public/textures/chipped/smooth_inlayed_crying_obsidian.png deleted file mode 100644 index 705c8174..00000000 Binary files a/public/textures/chipped/smooth_inlayed_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_dark_prismarine.png b/public/textures/chipped/smooth_inlayed_dark_prismarine.png deleted file mode 100644 index 881df3ad..00000000 Binary files a/public/textures/chipped/smooth_inlayed_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_deepslate.png b/public/textures/chipped/smooth_inlayed_deepslate.png deleted file mode 100644 index caf3515e..00000000 Binary files a/public/textures/chipped/smooth_inlayed_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_diorite.png b/public/textures/chipped/smooth_inlayed_diorite.png deleted file mode 100644 index 83f02681..00000000 Binary files a/public/textures/chipped/smooth_inlayed_diorite.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_dirt.png b/public/textures/chipped/smooth_inlayed_dirt.png deleted file mode 100644 index a1826d79..00000000 Binary files a/public/textures/chipped/smooth_inlayed_dirt.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_dripstone_block.png b/public/textures/chipped/smooth_inlayed_dripstone_block.png deleted file mode 100644 index c2aaf23f..00000000 Binary files a/public/textures/chipped/smooth_inlayed_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_end_stone.png b/public/textures/chipped/smooth_inlayed_end_stone.png deleted file mode 100644 index 0d929abc..00000000 Binary files a/public/textures/chipped/smooth_inlayed_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_gilded_blackstone.png b/public/textures/chipped/smooth_inlayed_gilded_blackstone.png deleted file mode 100644 index 25238c1b..00000000 Binary files a/public/textures/chipped/smooth_inlayed_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_granite.png b/public/textures/chipped/smooth_inlayed_granite.png deleted file mode 100644 index 6a5cf5d5..00000000 Binary files a/public/textures/chipped/smooth_inlayed_granite.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_ice.png b/public/textures/chipped/smooth_inlayed_ice.png deleted file mode 100644 index db9c8c47..00000000 Binary files a/public/textures/chipped/smooth_inlayed_ice.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_lapis_block.png b/public/textures/chipped/smooth_inlayed_lapis_block.png deleted file mode 100644 index 7dfc4e60..00000000 Binary files a/public/textures/chipped/smooth_inlayed_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_magma_block.png b/public/textures/chipped/smooth_inlayed_magma_block.png deleted file mode 100644 index 31b19dbc..00000000 Binary files a/public/textures/chipped/smooth_inlayed_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_mossy_cobblestone.png b/public/textures/chipped/smooth_inlayed_mossy_cobblestone.png deleted file mode 100644 index 18b8000d..00000000 Binary files a/public/textures/chipped/smooth_inlayed_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_mossy_stone_bricks.png b/public/textures/chipped/smooth_inlayed_mossy_stone_bricks.png deleted file mode 100644 index d91b06bf..00000000 Binary files a/public/textures/chipped/smooth_inlayed_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_nether_bricks.png b/public/textures/chipped/smooth_inlayed_nether_bricks.png deleted file mode 100644 index f8bf2d9f..00000000 Binary files a/public/textures/chipped/smooth_inlayed_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_netherrack.png b/public/textures/chipped/smooth_inlayed_netherrack.png deleted file mode 100644 index 5bacf755..00000000 Binary files a/public/textures/chipped/smooth_inlayed_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_obsidian.png b/public/textures/chipped/smooth_inlayed_obsidian.png deleted file mode 100644 index c5c2bce3..00000000 Binary files a/public/textures/chipped/smooth_inlayed_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_packed_ice.png b/public/textures/chipped/smooth_inlayed_packed_ice.png deleted file mode 100644 index 43e1d389..00000000 Binary files a/public/textures/chipped/smooth_inlayed_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_prismarine.png b/public/textures/chipped/smooth_inlayed_prismarine.png deleted file mode 100644 index a10d489b..00000000 Binary files a/public/textures/chipped/smooth_inlayed_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_purpur_block.png b/public/textures/chipped/smooth_inlayed_purpur_block.png deleted file mode 100644 index 226e46e4..00000000 Binary files a/public/textures/chipped/smooth_inlayed_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_quartz_block.png b/public/textures/chipped/smooth_inlayed_quartz_block.png deleted file mode 100644 index 5311e9cd..00000000 Binary files a/public/textures/chipped/smooth_inlayed_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_raw_copper_block.png b/public/textures/chipped/smooth_inlayed_raw_copper_block.png deleted file mode 100644 index d24a5430..00000000 Binary files a/public/textures/chipped/smooth_inlayed_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_raw_gold_block.png b/public/textures/chipped/smooth_inlayed_raw_gold_block.png deleted file mode 100644 index f7d1b8ad..00000000 Binary files a/public/textures/chipped/smooth_inlayed_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_raw_iron_block.png b/public/textures/chipped/smooth_inlayed_raw_iron_block.png deleted file mode 100644 index 14b6c47d..00000000 Binary files a/public/textures/chipped/smooth_inlayed_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_red_nether_bricks.png b/public/textures/chipped/smooth_inlayed_red_nether_bricks.png deleted file mode 100644 index 9f8a0b83..00000000 Binary files a/public/textures/chipped/smooth_inlayed_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_red_sandstone.png b/public/textures/chipped/smooth_inlayed_red_sandstone.png deleted file mode 100644 index 7a074b98..00000000 Binary files a/public/textures/chipped/smooth_inlayed_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_redstone_block.png b/public/textures/chipped/smooth_inlayed_redstone_block.png deleted file mode 100644 index 2295854b..00000000 Binary files a/public/textures/chipped/smooth_inlayed_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_sandstone.png b/public/textures/chipped/smooth_inlayed_sandstone.png deleted file mode 100644 index 29667f0d..00000000 Binary files a/public/textures/chipped/smooth_inlayed_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_smooth_stone.png b/public/textures/chipped/smooth_inlayed_smooth_stone.png deleted file mode 100644 index 60b2bfb4..00000000 Binary files a/public/textures/chipped/smooth_inlayed_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_snow_block.png b/public/textures/chipped/smooth_inlayed_snow_block.png deleted file mode 100644 index f120712a..00000000 Binary files a/public/textures/chipped/smooth_inlayed_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_stone.png b/public/textures/chipped/smooth_inlayed_stone.png deleted file mode 100644 index 35dc696b..00000000 Binary files a/public/textures/chipped/smooth_inlayed_stone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_inlayed_tuff.png b/public/textures/chipped/smooth_inlayed_tuff.png deleted file mode 100644 index a42e1b96..00000000 Binary files a/public/textures/chipped/smooth_inlayed_tuff.png and /dev/null differ diff --git a/public/textures/chipped/smooth_jungle_planks.png b/public/textures/chipped/smooth_jungle_planks.png deleted file mode 100644 index 39d16e25..00000000 Binary files a/public/textures/chipped/smooth_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_lapis_block_column.png b/public/textures/chipped/smooth_lapis_block_column.png deleted file mode 100644 index 77021e2d..00000000 Binary files a/public/textures/chipped/smooth_lapis_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_light_blue_concrete.png b/public/textures/chipped/smooth_light_blue_concrete.png deleted file mode 100644 index 815a992f..00000000 Binary files a/public/textures/chipped/smooth_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_light_gray_concrete.png b/public/textures/chipped/smooth_light_gray_concrete.png deleted file mode 100644 index 4b8a6f06..00000000 Binary files a/public/textures/chipped/smooth_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_lily_pad.png b/public/textures/chipped/smooth_lily_pad.png deleted file mode 100644 index 613626b6..00000000 Binary files a/public/textures/chipped/smooth_lily_pad.png and /dev/null differ diff --git a/public/textures/chipped/smooth_lime_concrete.png b/public/textures/chipped/smooth_lime_concrete.png deleted file mode 100644 index f7fadeea..00000000 Binary files a/public/textures/chipped/smooth_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_lodestone_column.png b/public/textures/chipped/smooth_lodestone_column.png deleted file mode 100644 index eadedfb1..00000000 Binary files a/public/textures/chipped/smooth_lodestone_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_magenta_concrete.png b/public/textures/chipped/smooth_magenta_concrete.png deleted file mode 100644 index d943a990..00000000 Binary files a/public/textures/chipped/smooth_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_magma_block_column.png b/public/textures/chipped/smooth_magma_block_column.png deleted file mode 100644 index 254816f3..00000000 Binary files a/public/textures/chipped/smooth_magma_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_mangrove_planks.png b/public/textures/chipped/smooth_mangrove_planks.png deleted file mode 100644 index 4c41cede..00000000 Binary files a/public/textures/chipped/smooth_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_moss_block.png b/public/textures/chipped/smooth_moss_block.png deleted file mode 100644 index d7e85fc9..00000000 Binary files a/public/textures/chipped/smooth_moss_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_mossy_cobblestone_column.png b/public/textures/chipped/smooth_mossy_cobblestone_column.png deleted file mode 100644 index 90118f0d..00000000 Binary files a/public/textures/chipped/smooth_mossy_cobblestone_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_mossy_stone_bricks_column.png b/public/textures/chipped/smooth_mossy_stone_bricks_column.png deleted file mode 100644 index 33adc284..00000000 Binary files a/public/textures/chipped/smooth_mossy_stone_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_mud.png b/public/textures/chipped/smooth_mud.png deleted file mode 100644 index 5d979584..00000000 Binary files a/public/textures/chipped/smooth_mud.png and /dev/null differ diff --git a/public/textures/chipped/smooth_mud_bricks.png b/public/textures/chipped/smooth_mud_bricks.png deleted file mode 100644 index 1a4d38d5..00000000 Binary files a/public/textures/chipped/smooth_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_mushroom_stem.png b/public/textures/chipped/smooth_mushroom_stem.png deleted file mode 100644 index 5a37e3bc..00000000 Binary files a/public/textures/chipped/smooth_mushroom_stem.png and /dev/null differ diff --git a/public/textures/chipped/smooth_nether_bricks_column.png b/public/textures/chipped/smooth_nether_bricks_column.png deleted file mode 100644 index d1e4bfe7..00000000 Binary files a/public/textures/chipped/smooth_nether_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_netherrack_column.png b/public/textures/chipped/smooth_netherrack_column.png deleted file mode 100644 index 70f5c6fd..00000000 Binary files a/public/textures/chipped/smooth_netherrack_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_oak_planks.png b/public/textures/chipped/smooth_oak_planks.png deleted file mode 100644 index 0f2530e2..00000000 Binary files a/public/textures/chipped/smooth_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_obsidian_column.png b/public/textures/chipped/smooth_obsidian_column.png deleted file mode 100644 index 523a10be..00000000 Binary files a/public/textures/chipped/smooth_obsidian_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_orange_concrete.png b/public/textures/chipped/smooth_orange_concrete.png deleted file mode 100644 index f9142164..00000000 Binary files a/public/textures/chipped/smooth_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_packed_ice_column.png b/public/textures/chipped/smooth_packed_ice_column.png deleted file mode 100644 index efec50ca..00000000 Binary files a/public/textures/chipped/smooth_packed_ice_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_packed_mud.png b/public/textures/chipped/smooth_packed_mud.png deleted file mode 100644 index 55ef50ef..00000000 Binary files a/public/textures/chipped/smooth_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/smooth_pink_concrete.png b/public/textures/chipped/smooth_pink_concrete.png deleted file mode 100644 index c1ac214a..00000000 Binary files a/public/textures/chipped/smooth_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_prismarine_column.png b/public/textures/chipped/smooth_prismarine_column.png deleted file mode 100644 index 64f75abc..00000000 Binary files a/public/textures/chipped/smooth_prismarine_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_purple_concrete.png b/public/textures/chipped/smooth_purple_concrete.png deleted file mode 100644 index c8cc247c..00000000 Binary files a/public/textures/chipped/smooth_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_purpur_block_column.png b/public/textures/chipped/smooth_purpur_block_column.png deleted file mode 100644 index 31020055..00000000 Binary files a/public/textures/chipped/smooth_purpur_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_quartz_block_column.png b/public/textures/chipped/smooth_quartz_block_column.png deleted file mode 100644 index e5f2939a..00000000 Binary files a/public/textures/chipped/smooth_quartz_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_raw_copper_block_column.png b/public/textures/chipped/smooth_raw_copper_block_column.png deleted file mode 100644 index ad404dcd..00000000 Binary files a/public/textures/chipped/smooth_raw_copper_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_raw_gold_block_column.png b/public/textures/chipped/smooth_raw_gold_block_column.png deleted file mode 100644 index e7b78417..00000000 Binary files a/public/textures/chipped/smooth_raw_gold_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_raw_iron_block_column.png b/public/textures/chipped/smooth_raw_iron_block_column.png deleted file mode 100644 index 2d7b00bf..00000000 Binary files a/public/textures/chipped/smooth_raw_iron_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_red_concrete.png b/public/textures/chipped/smooth_red_concrete.png deleted file mode 100644 index fd63e963..00000000 Binary files a/public/textures/chipped/smooth_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_red_mushroom_block.png b/public/textures/chipped/smooth_red_mushroom_block.png deleted file mode 100644 index c76b9eca..00000000 Binary files a/public/textures/chipped/smooth_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_red_nether_bricks_column.png b/public/textures/chipped/smooth_red_nether_bricks_column.png deleted file mode 100644 index 7eb59e6a..00000000 Binary files a/public/textures/chipped/smooth_red_nether_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_red_sandstone_column.png b/public/textures/chipped/smooth_red_sandstone_column.png deleted file mode 100644 index 9c502226..00000000 Binary files a/public/textures/chipped/smooth_red_sandstone_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_redstone_block_column.png b/public/textures/chipped/smooth_redstone_block_column.png deleted file mode 100644 index b6bebf32..00000000 Binary files a/public/textures/chipped/smooth_redstone_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_redstone_lamp.png b/public/textures/chipped/smooth_redstone_lamp.png deleted file mode 100644 index dceadbf5..00000000 Binary files a/public/textures/chipped/smooth_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_amethyst_block.png b/public/textures/chipped/smooth_ringed_amethyst_block.png deleted file mode 100644 index 5f68aa56..00000000 Binary files a/public/textures/chipped/smooth_ringed_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_ancient_debris.png b/public/textures/chipped/smooth_ringed_ancient_debris.png deleted file mode 100644 index f89609fd..00000000 Binary files a/public/textures/chipped/smooth_ringed_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_andesite.png b/public/textures/chipped/smooth_ringed_andesite.png deleted file mode 100644 index 77de2be1..00000000 Binary files a/public/textures/chipped/smooth_ringed_andesite.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_basalt.png b/public/textures/chipped/smooth_ringed_basalt.png deleted file mode 100644 index dd39ffed..00000000 Binary files a/public/textures/chipped/smooth_ringed_basalt.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_blackstone.png b/public/textures/chipped/smooth_ringed_blackstone.png deleted file mode 100644 index 73a9843b..00000000 Binary files a/public/textures/chipped/smooth_ringed_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_blue_ice.png b/public/textures/chipped/smooth_ringed_blue_ice.png deleted file mode 100644 index 929c9bca..00000000 Binary files a/public/textures/chipped/smooth_ringed_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_borderless_bricks.png b/public/textures/chipped/smooth_ringed_borderless_bricks.png deleted file mode 100644 index a3b463a4..00000000 Binary files a/public/textures/chipped/smooth_ringed_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_bricks.png b/public/textures/chipped/smooth_ringed_bricks.png deleted file mode 100644 index 9e7c5d0d..00000000 Binary files a/public/textures/chipped/smooth_ringed_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_calcite.png b/public/textures/chipped/smooth_ringed_calcite.png deleted file mode 100644 index a85bf0e0..00000000 Binary files a/public/textures/chipped/smooth_ringed_calcite.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_clay.png b/public/textures/chipped/smooth_ringed_clay.png deleted file mode 100644 index 710a6e27..00000000 Binary files a/public/textures/chipped/smooth_ringed_clay.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_coal_block.png b/public/textures/chipped/smooth_ringed_coal_block.png deleted file mode 100644 index b0e0b0d5..00000000 Binary files a/public/textures/chipped/smooth_ringed_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_cobblestone.png b/public/textures/chipped/smooth_ringed_cobblestone.png deleted file mode 100644 index 5d51282f..00000000 Binary files a/public/textures/chipped/smooth_ringed_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_crying_obsidian.png b/public/textures/chipped/smooth_ringed_crying_obsidian.png deleted file mode 100644 index dea4db20..00000000 Binary files a/public/textures/chipped/smooth_ringed_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_dark_prismarine.png b/public/textures/chipped/smooth_ringed_dark_prismarine.png deleted file mode 100644 index 08897559..00000000 Binary files a/public/textures/chipped/smooth_ringed_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_deepslate.png b/public/textures/chipped/smooth_ringed_deepslate.png deleted file mode 100644 index c23b3511..00000000 Binary files a/public/textures/chipped/smooth_ringed_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_diorite.png b/public/textures/chipped/smooth_ringed_diorite.png deleted file mode 100644 index 7a82312e..00000000 Binary files a/public/textures/chipped/smooth_ringed_diorite.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_dirt.png b/public/textures/chipped/smooth_ringed_dirt.png deleted file mode 100644 index 3ecd55ec..00000000 Binary files a/public/textures/chipped/smooth_ringed_dirt.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_dripstone_block.png b/public/textures/chipped/smooth_ringed_dripstone_block.png deleted file mode 100644 index 4c370e58..00000000 Binary files a/public/textures/chipped/smooth_ringed_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_end_stone.png b/public/textures/chipped/smooth_ringed_end_stone.png deleted file mode 100644 index 1c52c130..00000000 Binary files a/public/textures/chipped/smooth_ringed_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_gilded_blackstone.png b/public/textures/chipped/smooth_ringed_gilded_blackstone.png deleted file mode 100644 index 0ed4fea0..00000000 Binary files a/public/textures/chipped/smooth_ringed_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_granite.png b/public/textures/chipped/smooth_ringed_granite.png deleted file mode 100644 index f9b266a8..00000000 Binary files a/public/textures/chipped/smooth_ringed_granite.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_ice.png b/public/textures/chipped/smooth_ringed_ice.png deleted file mode 100644 index cc73dd5d..00000000 Binary files a/public/textures/chipped/smooth_ringed_ice.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_lapis_block.png b/public/textures/chipped/smooth_ringed_lapis_block.png deleted file mode 100644 index 5bf7e116..00000000 Binary files a/public/textures/chipped/smooth_ringed_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_lodestone.png b/public/textures/chipped/smooth_ringed_lodestone.png deleted file mode 100644 index 6cb78b65..00000000 Binary files a/public/textures/chipped/smooth_ringed_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_magma_block.png b/public/textures/chipped/smooth_ringed_magma_block.png deleted file mode 100644 index b3c2aef5..00000000 Binary files a/public/textures/chipped/smooth_ringed_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_mossy_cobblestone.png b/public/textures/chipped/smooth_ringed_mossy_cobblestone.png deleted file mode 100644 index e75adfb9..00000000 Binary files a/public/textures/chipped/smooth_ringed_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_mossy_stone_bricks.png b/public/textures/chipped/smooth_ringed_mossy_stone_bricks.png deleted file mode 100644 index 022d2e49..00000000 Binary files a/public/textures/chipped/smooth_ringed_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_mud.png b/public/textures/chipped/smooth_ringed_mud.png deleted file mode 100644 index 66279f0a..00000000 Binary files a/public/textures/chipped/smooth_ringed_mud.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_mud_bricks.png b/public/textures/chipped/smooth_ringed_mud_bricks.png deleted file mode 100644 index 91684c77..00000000 Binary files a/public/textures/chipped/smooth_ringed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_nether_bricks.png b/public/textures/chipped/smooth_ringed_nether_bricks.png deleted file mode 100644 index 955ba078..00000000 Binary files a/public/textures/chipped/smooth_ringed_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_netherrack.png b/public/textures/chipped/smooth_ringed_netherrack.png deleted file mode 100644 index 5b950ce5..00000000 Binary files a/public/textures/chipped/smooth_ringed_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_obsidian.png b/public/textures/chipped/smooth_ringed_obsidian.png deleted file mode 100644 index 3f209f93..00000000 Binary files a/public/textures/chipped/smooth_ringed_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_packed_ice.png b/public/textures/chipped/smooth_ringed_packed_ice.png deleted file mode 100644 index e1715979..00000000 Binary files a/public/textures/chipped/smooth_ringed_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_packed_mud.png b/public/textures/chipped/smooth_ringed_packed_mud.png deleted file mode 100644 index 507a1f53..00000000 Binary files a/public/textures/chipped/smooth_ringed_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_prismarine.png b/public/textures/chipped/smooth_ringed_prismarine.png deleted file mode 100644 index f21c71cc..00000000 Binary files a/public/textures/chipped/smooth_ringed_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_purpur_block.png b/public/textures/chipped/smooth_ringed_purpur_block.png deleted file mode 100644 index eb3e0a72..00000000 Binary files a/public/textures/chipped/smooth_ringed_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_quartz_block.png b/public/textures/chipped/smooth_ringed_quartz_block.png deleted file mode 100644 index 6c3dcfbd..00000000 Binary files a/public/textures/chipped/smooth_ringed_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_raw_copper_block.png b/public/textures/chipped/smooth_ringed_raw_copper_block.png deleted file mode 100644 index d4510ced..00000000 Binary files a/public/textures/chipped/smooth_ringed_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_raw_gold_block.png b/public/textures/chipped/smooth_ringed_raw_gold_block.png deleted file mode 100644 index 7f9df7b0..00000000 Binary files a/public/textures/chipped/smooth_ringed_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_raw_iron_block.png b/public/textures/chipped/smooth_ringed_raw_iron_block.png deleted file mode 100644 index 5c57129b..00000000 Binary files a/public/textures/chipped/smooth_ringed_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_red_nether_bricks.png b/public/textures/chipped/smooth_ringed_red_nether_bricks.png deleted file mode 100644 index d2d753f5..00000000 Binary files a/public/textures/chipped/smooth_ringed_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_red_sandstone.png b/public/textures/chipped/smooth_ringed_red_sandstone.png deleted file mode 100644 index 06feb3ec..00000000 Binary files a/public/textures/chipped/smooth_ringed_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_redstone_block.png b/public/textures/chipped/smooth_ringed_redstone_block.png deleted file mode 100644 index d18980c8..00000000 Binary files a/public/textures/chipped/smooth_ringed_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_sandstone.png b/public/textures/chipped/smooth_ringed_sandstone.png deleted file mode 100644 index 520387ee..00000000 Binary files a/public/textures/chipped/smooth_ringed_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_smooth_stone.png b/public/textures/chipped/smooth_ringed_smooth_stone.png deleted file mode 100644 index ea190b5f..00000000 Binary files a/public/textures/chipped/smooth_ringed_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_snow_block.png b/public/textures/chipped/smooth_ringed_snow_block.png deleted file mode 100644 index a0115384..00000000 Binary files a/public/textures/chipped/smooth_ringed_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/smooth_ringed_tuff.png b/public/textures/chipped/smooth_ringed_tuff.png deleted file mode 100644 index dc97e2e7..00000000 Binary files a/public/textures/chipped/smooth_ringed_tuff.png and /dev/null differ diff --git a/public/textures/chipped/smooth_sandstone_column.png b/public/textures/chipped/smooth_sandstone_column.png deleted file mode 100644 index 3bb14d5b..00000000 Binary files a/public/textures/chipped/smooth_sandstone_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_sea_lantern.png b/public/textures/chipped/smooth_sea_lantern.png deleted file mode 100644 index 9a557215..00000000 Binary files a/public/textures/chipped/smooth_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/smooth_shroomlight.png b/public/textures/chipped/smooth_shroomlight.png deleted file mode 100644 index 7b405796..00000000 Binary files a/public/textures/chipped/smooth_shroomlight.png and /dev/null differ diff --git a/public/textures/chipped/smooth_smooth_stone_column.png b/public/textures/chipped/smooth_smooth_stone_column.png deleted file mode 100644 index 033031b4..00000000 Binary files a/public/textures/chipped/smooth_smooth_stone_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_snow_block_column.png b/public/textures/chipped/smooth_snow_block_column.png deleted file mode 100644 index bfe65019..00000000 Binary files a/public/textures/chipped/smooth_snow_block_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_sponge.png b/public/textures/chipped/smooth_sponge.png deleted file mode 100644 index 74d65397..00000000 Binary files a/public/textures/chipped/smooth_sponge.png and /dev/null differ diff --git a/public/textures/chipped/smooth_spruce_planks.png b/public/textures/chipped/smooth_spruce_planks.png deleted file mode 100644 index acdca134..00000000 Binary files a/public/textures/chipped/smooth_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_stone_bricks.png b/public/textures/chipped/smooth_stone_bricks.png deleted file mode 100644 index 9193e4b6..00000000 Binary files a/public/textures/chipped/smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_stone_column.png b/public/textures/chipped/smooth_stone_column.png deleted file mode 100644 index c0b34f24..00000000 Binary files a/public/textures/chipped/smooth_stone_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_stone_mini_tiles.png b/public/textures/chipped/smooth_stone_mini_tiles.png deleted file mode 100644 index 16b0f1a7..00000000 Binary files a/public/textures/chipped/smooth_stone_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/smooth_stone_pillar.png b/public/textures/chipped/smooth_stone_pillar.png deleted file mode 100644 index 9d6709bb..00000000 Binary files a/public/textures/chipped/smooth_stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/smooth_stone_pillar_top.png b/public/textures/chipped/smooth_stone_pillar_top.png deleted file mode 100644 index 1ef036e9..00000000 Binary files a/public/textures/chipped/smooth_stone_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/smooth_stone_scales.png b/public/textures/chipped/smooth_stone_scales.png deleted file mode 100644 index f9134dbe..00000000 Binary files a/public/textures/chipped/smooth_stone_scales.png and /dev/null differ diff --git a/public/textures/chipped/smooth_tuff_column.png b/public/textures/chipped/smooth_tuff_column.png deleted file mode 100644 index 1e35565e..00000000 Binary files a/public/textures/chipped/smooth_tuff_column.png and /dev/null differ diff --git a/public/textures/chipped/smooth_warped_planks.png b/public/textures/chipped/smooth_warped_planks.png deleted file mode 100644 index 69f2b07a..00000000 Binary files a/public/textures/chipped/smooth_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/smooth_warped_stem.png b/public/textures/chipped/smooth_warped_stem.png deleted file mode 100644 index 46e396a4..00000000 Binary files a/public/textures/chipped/smooth_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/smooth_white_concrete.png b/public/textures/chipped/smooth_white_concrete.png deleted file mode 100644 index be11e385..00000000 Binary files a/public/textures/chipped/smooth_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smooth_white_redstone_lamp.png b/public/textures/chipped/smooth_white_redstone_lamp.png deleted file mode 100644 index 5f9b32a3..00000000 Binary files a/public/textures/chipped/smooth_white_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/smooth_yellow_concrete.png b/public/textures/chipped/smooth_yellow_concrete.png deleted file mode 100644 index c05fb8fe..00000000 Binary files a/public/textures/chipped/smooth_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_amethyst_block.png b/public/textures/chipped/smoothed_double_inlayed_amethyst_block.png deleted file mode 100644 index 44de958a..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_ancient_debris.png b/public/textures/chipped/smoothed_double_inlayed_ancient_debris.png deleted file mode 100644 index 9c9bdd75..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_andesite.png b/public/textures/chipped/smoothed_double_inlayed_andesite.png deleted file mode 100644 index 22f45301..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_andesite.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_basalt.png b/public/textures/chipped/smoothed_double_inlayed_basalt.png deleted file mode 100644 index 0d52b96c..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_basalt.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_blackstone.png b/public/textures/chipped/smoothed_double_inlayed_blackstone.png deleted file mode 100644 index 5d2ab99b..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_blue_ice.png b/public/textures/chipped/smoothed_double_inlayed_blue_ice.png deleted file mode 100644 index 4d322f8d..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_borderless_bricks.png b/public/textures/chipped/smoothed_double_inlayed_borderless_bricks.png deleted file mode 100644 index 401ffa9b..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_bricks.png b/public/textures/chipped/smoothed_double_inlayed_bricks.png deleted file mode 100644 index 69cefd54..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_calcite.png b/public/textures/chipped/smoothed_double_inlayed_calcite.png deleted file mode 100644 index 2986eae8..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_calcite.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_clay.png b/public/textures/chipped/smoothed_double_inlayed_clay.png deleted file mode 100644 index cc7c010a..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_clay.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_coal_block.png b/public/textures/chipped/smoothed_double_inlayed_coal_block.png deleted file mode 100644 index 7d31ced5..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_cobblestone.png b/public/textures/chipped/smoothed_double_inlayed_cobblestone.png deleted file mode 100644 index 104444b2..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_crying_obsidian.png b/public/textures/chipped/smoothed_double_inlayed_crying_obsidian.png deleted file mode 100644 index 6ace13b9..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_dark_prismarine.png b/public/textures/chipped/smoothed_double_inlayed_dark_prismarine.png deleted file mode 100644 index edbd08a1..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_deepslate.png b/public/textures/chipped/smoothed_double_inlayed_deepslate.png deleted file mode 100644 index 38fa1579..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_diorite.png b/public/textures/chipped/smoothed_double_inlayed_diorite.png deleted file mode 100644 index 01e9bee0..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_diorite.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_dirt.png b/public/textures/chipped/smoothed_double_inlayed_dirt.png deleted file mode 100644 index 26818f1d..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_dirt.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_dripstone_block.png b/public/textures/chipped/smoothed_double_inlayed_dripstone_block.png deleted file mode 100644 index 0239fe5d..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_end_stone.png b/public/textures/chipped/smoothed_double_inlayed_end_stone.png deleted file mode 100644 index dfd58925..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_gilded_blackstone.png b/public/textures/chipped/smoothed_double_inlayed_gilded_blackstone.png deleted file mode 100644 index 1029e467..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_granite.png b/public/textures/chipped/smoothed_double_inlayed_granite.png deleted file mode 100644 index 96b53491..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_granite.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_ice.png b/public/textures/chipped/smoothed_double_inlayed_ice.png deleted file mode 100644 index 52ee25f3..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_ice.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_lapis_block.png b/public/textures/chipped/smoothed_double_inlayed_lapis_block.png deleted file mode 100644 index b0f0b5cb..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_lodestone.png b/public/textures/chipped/smoothed_double_inlayed_lodestone.png deleted file mode 100644 index ba6f3126..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_magma_block.png b/public/textures/chipped/smoothed_double_inlayed_magma_block.png deleted file mode 100644 index 1fd3e35e..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_mossy_cobblestone.png b/public/textures/chipped/smoothed_double_inlayed_mossy_cobblestone.png deleted file mode 100644 index 8119bdff..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_mossy_stone_bricks.png b/public/textures/chipped/smoothed_double_inlayed_mossy_stone_bricks.png deleted file mode 100644 index 967dd815..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_mud.png b/public/textures/chipped/smoothed_double_inlayed_mud.png deleted file mode 100644 index 6caaba2d..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_mud.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_mud_bricks.png b/public/textures/chipped/smoothed_double_inlayed_mud_bricks.png deleted file mode 100644 index 9c394eca..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_nether_bricks.png b/public/textures/chipped/smoothed_double_inlayed_nether_bricks.png deleted file mode 100644 index 6a3f1596..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_netherrack.png b/public/textures/chipped/smoothed_double_inlayed_netherrack.png deleted file mode 100644 index a1c7011e..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_obsidian.png b/public/textures/chipped/smoothed_double_inlayed_obsidian.png deleted file mode 100644 index f12c1e6f..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_packed_ice.png b/public/textures/chipped/smoothed_double_inlayed_packed_ice.png deleted file mode 100644 index e82a6fce..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_packed_mud.png b/public/textures/chipped/smoothed_double_inlayed_packed_mud.png deleted file mode 100644 index 196f11d7..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_prismarine.png b/public/textures/chipped/smoothed_double_inlayed_prismarine.png deleted file mode 100644 index 906a43c3..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_purpur_block.png b/public/textures/chipped/smoothed_double_inlayed_purpur_block.png deleted file mode 100644 index 9fd58f82..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_quartz_block.png b/public/textures/chipped/smoothed_double_inlayed_quartz_block.png deleted file mode 100644 index d3348de4..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_raw_copper_block.png b/public/textures/chipped/smoothed_double_inlayed_raw_copper_block.png deleted file mode 100644 index 15152b52..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_raw_gold_block.png b/public/textures/chipped/smoothed_double_inlayed_raw_gold_block.png deleted file mode 100644 index cda948ec..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_raw_iron_block.png b/public/textures/chipped/smoothed_double_inlayed_raw_iron_block.png deleted file mode 100644 index d21c25a0..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_red_nether_bricks.png b/public/textures/chipped/smoothed_double_inlayed_red_nether_bricks.png deleted file mode 100644 index 790508d0..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_red_sandstone.png b/public/textures/chipped/smoothed_double_inlayed_red_sandstone.png deleted file mode 100644 index 1fd5bca7..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_redstone_block.png b/public/textures/chipped/smoothed_double_inlayed_redstone_block.png deleted file mode 100644 index dd7d8296..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_sandstone.png b/public/textures/chipped/smoothed_double_inlayed_sandstone.png deleted file mode 100644 index d9f77094..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_smooth_stone.png b/public/textures/chipped/smoothed_double_inlayed_smooth_stone.png deleted file mode 100644 index a6016a4c..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_snow_block.png b/public/textures/chipped/smoothed_double_inlayed_snow_block.png deleted file mode 100644 index 96494d79..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_stone.png b/public/textures/chipped/smoothed_double_inlayed_stone.png deleted file mode 100644 index f4009265..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_stone.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_double_inlayed_tuff.png b/public/textures/chipped/smoothed_double_inlayed_tuff.png deleted file mode 100644 index 01822590..00000000 Binary files a/public/textures/chipped/smoothed_double_inlayed_tuff.png and /dev/null differ diff --git a/public/textures/chipped/smoothed_soul_sand.png b/public/textures/chipped/smoothed_soul_sand.png deleted file mode 100644 index 586976ab..00000000 Binary files a/public/textures/chipped/smoothed_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/snow_block_bricks.png b/public/textures/chipped/snow_block_bricks.png deleted file mode 100644 index 9657fda0..00000000 Binary files a/public/textures/chipped/snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/snow_block_mini_tiles.png b/public/textures/chipped/snow_block_mini_tiles.png deleted file mode 100644 index 1cb42d3a..00000000 Binary files a/public/textures/chipped/snow_block_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/snow_block_pillar.png b/public/textures/chipped/snow_block_pillar.png deleted file mode 100644 index fd899f37..00000000 Binary files a/public/textures/chipped/snow_block_pillar.png and /dev/null differ diff --git a/public/textures/chipped/snow_block_pillar_top.png b/public/textures/chipped/snow_block_pillar_top.png deleted file mode 100644 index 0a7cbe4a..00000000 Binary files a/public/textures/chipped/snow_block_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/snow_block_scales.png b/public/textures/chipped/snow_block_scales.png deleted file mode 100644 index 8c945d01..00000000 Binary files a/public/textures/chipped/snow_block_scales.png and /dev/null differ diff --git a/public/textures/chipped/soft_black_carpet.png b/public/textures/chipped/soft_black_carpet.png deleted file mode 100644 index ce832b73..00000000 Binary files a/public/textures/chipped/soft_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_black_wool.png b/public/textures/chipped/soft_black_wool.png deleted file mode 100644 index c4dfac85..00000000 Binary files a/public/textures/chipped/soft_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_blue_carpet.png b/public/textures/chipped/soft_blue_carpet.png deleted file mode 100644 index ad736a7e..00000000 Binary files a/public/textures/chipped/soft_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_blue_wool.png b/public/textures/chipped/soft_blue_wool.png deleted file mode 100644 index ae444810..00000000 Binary files a/public/textures/chipped/soft_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_brown_carpet.png b/public/textures/chipped/soft_brown_carpet.png deleted file mode 100644 index 9a061892..00000000 Binary files a/public/textures/chipped/soft_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_brown_wool.png b/public/textures/chipped/soft_brown_wool.png deleted file mode 100644 index 470880ea..00000000 Binary files a/public/textures/chipped/soft_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_cyan_carpet.png b/public/textures/chipped/soft_cyan_carpet.png deleted file mode 100644 index 25d1c101..00000000 Binary files a/public/textures/chipped/soft_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_cyan_wool.png b/public/textures/chipped/soft_cyan_wool.png deleted file mode 100644 index 47f68dea..00000000 Binary files a/public/textures/chipped/soft_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_gray_carpet.png b/public/textures/chipped/soft_gray_carpet.png deleted file mode 100644 index 7608f22e..00000000 Binary files a/public/textures/chipped/soft_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_gray_wool.png b/public/textures/chipped/soft_gray_wool.png deleted file mode 100644 index 81645137..00000000 Binary files a/public/textures/chipped/soft_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_green_carpet.png b/public/textures/chipped/soft_green_carpet.png deleted file mode 100644 index d0506722..00000000 Binary files a/public/textures/chipped/soft_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_green_wool.png b/public/textures/chipped/soft_green_wool.png deleted file mode 100644 index 3e487964..00000000 Binary files a/public/textures/chipped/soft_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_light_blue_carpet.png b/public/textures/chipped/soft_light_blue_carpet.png deleted file mode 100644 index acc4656d..00000000 Binary files a/public/textures/chipped/soft_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_light_blue_wool.png b/public/textures/chipped/soft_light_blue_wool.png deleted file mode 100644 index 21db30a7..00000000 Binary files a/public/textures/chipped/soft_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_light_gray_carpet.png b/public/textures/chipped/soft_light_gray_carpet.png deleted file mode 100644 index d43e6c55..00000000 Binary files a/public/textures/chipped/soft_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_light_gray_wool.png b/public/textures/chipped/soft_light_gray_wool.png deleted file mode 100644 index 5f12001a..00000000 Binary files a/public/textures/chipped/soft_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_lime_carpet.png b/public/textures/chipped/soft_lime_carpet.png deleted file mode 100644 index bc2f3fba..00000000 Binary files a/public/textures/chipped/soft_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_lime_wool.png b/public/textures/chipped/soft_lime_wool.png deleted file mode 100644 index 7786de9f..00000000 Binary files a/public/textures/chipped/soft_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_magenta_carpet.png b/public/textures/chipped/soft_magenta_carpet.png deleted file mode 100644 index cc38aea2..00000000 Binary files a/public/textures/chipped/soft_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_magenta_wool.png b/public/textures/chipped/soft_magenta_wool.png deleted file mode 100644 index eb01d038..00000000 Binary files a/public/textures/chipped/soft_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_orange_carpet.png b/public/textures/chipped/soft_orange_carpet.png deleted file mode 100644 index 04ceadff..00000000 Binary files a/public/textures/chipped/soft_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_orange_wool.png b/public/textures/chipped/soft_orange_wool.png deleted file mode 100644 index c2975321..00000000 Binary files a/public/textures/chipped/soft_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_pink_carpet.png b/public/textures/chipped/soft_pink_carpet.png deleted file mode 100644 index 05933ab6..00000000 Binary files a/public/textures/chipped/soft_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_pink_wool.png b/public/textures/chipped/soft_pink_wool.png deleted file mode 100644 index 46922f1f..00000000 Binary files a/public/textures/chipped/soft_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_purple_carpet.png b/public/textures/chipped/soft_purple_carpet.png deleted file mode 100644 index fbb04601..00000000 Binary files a/public/textures/chipped/soft_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_purple_wool.png b/public/textures/chipped/soft_purple_wool.png deleted file mode 100644 index 91f71499..00000000 Binary files a/public/textures/chipped/soft_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_red_carpet.png b/public/textures/chipped/soft_red_carpet.png deleted file mode 100644 index 3416b341..00000000 Binary files a/public/textures/chipped/soft_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_red_wool.png b/public/textures/chipped/soft_red_wool.png deleted file mode 100644 index dc5c6fa5..00000000 Binary files a/public/textures/chipped/soft_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_sand.png b/public/textures/chipped/soft_sand.png deleted file mode 100644 index 554764b2..00000000 Binary files a/public/textures/chipped/soft_sand.png and /dev/null differ diff --git a/public/textures/chipped/soft_sponge.png b/public/textures/chipped/soft_sponge.png deleted file mode 100644 index 479ba613..00000000 Binary files a/public/textures/chipped/soft_sponge.png and /dev/null differ diff --git a/public/textures/chipped/soft_white_carpet.png b/public/textures/chipped/soft_white_carpet.png deleted file mode 100644 index a6b0efa8..00000000 Binary files a/public/textures/chipped/soft_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_white_wool.png b/public/textures/chipped/soft_white_wool.png deleted file mode 100644 index 94136e16..00000000 Binary files a/public/textures/chipped/soft_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/soft_yellow_carpet.png b/public/textures/chipped/soft_yellow_carpet.png deleted file mode 100644 index 3644c574..00000000 Binary files a/public/textures/chipped/soft_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/soft_yellow_wool.png b/public/textures/chipped/soft_yellow_wool.png deleted file mode 100644 index 545a6b40..00000000 Binary files a/public/textures/chipped/soft_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/solid_acacia_trapdoor.png b/public/textures/chipped/solid_acacia_trapdoor.png deleted file mode 100644 index 2189a529..00000000 Binary files a/public/textures/chipped/solid_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/solid_bamboo_trapdoor.png b/public/textures/chipped/solid_bamboo_trapdoor.png deleted file mode 100644 index 99a7dc45..00000000 Binary files a/public/textures/chipped/solid_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/solid_birch_trapdoor.png b/public/textures/chipped/solid_birch_trapdoor.png deleted file mode 100644 index 69a2920f..00000000 Binary files a/public/textures/chipped/solid_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/solid_cherry_trapdoor.png b/public/textures/chipped/solid_cherry_trapdoor.png deleted file mode 100644 index 93262de4..00000000 Binary files a/public/textures/chipped/solid_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/solid_crimson_trapdoor.png b/public/textures/chipped/solid_crimson_trapdoor.png deleted file mode 100644 index ba8008cf..00000000 Binary files a/public/textures/chipped/solid_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/solid_dark_oak_trapdoor.png b/public/textures/chipped/solid_dark_oak_trapdoor.png deleted file mode 100644 index 7101564b..00000000 Binary files a/public/textures/chipped/solid_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/solid_jungle_trapdoor.png b/public/textures/chipped/solid_jungle_trapdoor.png deleted file mode 100644 index 138f1553..00000000 Binary files a/public/textures/chipped/solid_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/solid_mangrove_trapdoor.png b/public/textures/chipped/solid_mangrove_trapdoor.png deleted file mode 100644 index b5621b79..00000000 Binary files a/public/textures/chipped/solid_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/solid_oak_trapdoor.png b/public/textures/chipped/solid_oak_trapdoor.png deleted file mode 100644 index ebc984ce..00000000 Binary files a/public/textures/chipped/solid_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/solid_spruce_trapdoor.png b/public/textures/chipped/solid_spruce_trapdoor.png deleted file mode 100644 index 3f12d728..00000000 Binary files a/public/textures/chipped/solid_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/solid_warped_trapdoor.png b/public/textures/chipped/solid_warped_trapdoor.png deleted file mode 100644 index 978e327e..00000000 Binary files a/public/textures/chipped/solid_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/special_gilded_blackstone.png b/public/textures/chipped/special_gilded_blackstone.png deleted file mode 100644 index 16fef54d..00000000 Binary files a/public/textures/chipped/special_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/special_sea_lantern.png b/public/textures/chipped/special_sea_lantern.png deleted file mode 100644 index c62883da..00000000 Binary files a/public/textures/chipped/special_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/speckled_nether_wart_block.png b/public/textures/chipped/speckled_nether_wart_block.png deleted file mode 100644 index 2dce0bf9..00000000 Binary files a/public/textures/chipped/speckled_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/speckled_warped_wart_block.png b/public/textures/chipped/speckled_warped_wart_block.png deleted file mode 100644 index 0eeb06b4..00000000 Binary files a/public/textures/chipped/speckled_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/spider_amethyst_block_carving.png b/public/textures/chipped/spider_amethyst_block_carving.png deleted file mode 100644 index bbf44771..00000000 Binary files a/public/textures/chipped/spider_amethyst_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_ancient_debris_carving.png b/public/textures/chipped/spider_ancient_debris_carving.png deleted file mode 100644 index 2a58d76a..00000000 Binary files a/public/textures/chipped/spider_ancient_debris_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_andesite_carving.png b/public/textures/chipped/spider_andesite_carving.png deleted file mode 100644 index b661ee73..00000000 Binary files a/public/textures/chipped/spider_andesite_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_basalt_carving.png b/public/textures/chipped/spider_basalt_carving.png deleted file mode 100644 index f3b92fdf..00000000 Binary files a/public/textures/chipped/spider_basalt_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_blackstone_carving.png b/public/textures/chipped/spider_blackstone_carving.png deleted file mode 100644 index c7de41f7..00000000 Binary files a/public/textures/chipped/spider_blackstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_blue_ice_carving.png b/public/textures/chipped/spider_blue_ice_carving.png deleted file mode 100644 index 1381c35e..00000000 Binary files a/public/textures/chipped/spider_blue_ice_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_borderless_bricks_carving.png b/public/textures/chipped/spider_borderless_bricks_carving.png deleted file mode 100644 index ee185218..00000000 Binary files a/public/textures/chipped/spider_borderless_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_bricks_carving.png b/public/textures/chipped/spider_bricks_carving.png deleted file mode 100644 index efbc90b9..00000000 Binary files a/public/textures/chipped/spider_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_calcite_carving.png b/public/textures/chipped/spider_calcite_carving.png deleted file mode 100644 index b617cf26..00000000 Binary files a/public/textures/chipped/spider_calcite_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_clay_carving.png b/public/textures/chipped/spider_clay_carving.png deleted file mode 100644 index 2dc59b5e..00000000 Binary files a/public/textures/chipped/spider_clay_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_coal_block_carving.png b/public/textures/chipped/spider_coal_block_carving.png deleted file mode 100644 index 276f90ee..00000000 Binary files a/public/textures/chipped/spider_coal_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_cobblestone_carving.png b/public/textures/chipped/spider_cobblestone_carving.png deleted file mode 100644 index b4466967..00000000 Binary files a/public/textures/chipped/spider_cobblestone_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_crying_obsidian_carving.png b/public/textures/chipped/spider_crying_obsidian_carving.png deleted file mode 100644 index 6dcf8e86..00000000 Binary files a/public/textures/chipped/spider_crying_obsidian_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_dark_prismarine_carving.png b/public/textures/chipped/spider_dark_prismarine_carving.png deleted file mode 100644 index e127727e..00000000 Binary files a/public/textures/chipped/spider_dark_prismarine_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_deepslate_carving.png b/public/textures/chipped/spider_deepslate_carving.png deleted file mode 100644 index 5da5ee3b..00000000 Binary files a/public/textures/chipped/spider_deepslate_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_diorite_carving.png b/public/textures/chipped/spider_diorite_carving.png deleted file mode 100644 index 5f4c4dd8..00000000 Binary files a/public/textures/chipped/spider_diorite_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_dirt_carving.png b/public/textures/chipped/spider_dirt_carving.png deleted file mode 100644 index dee8ddad..00000000 Binary files a/public/textures/chipped/spider_dirt_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_dripstone_block_carving.png b/public/textures/chipped/spider_dripstone_block_carving.png deleted file mode 100644 index 2cfbd74e..00000000 Binary files a/public/textures/chipped/spider_dripstone_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_end_stone_carving.png b/public/textures/chipped/spider_end_stone_carving.png deleted file mode 100644 index d8cf1589..00000000 Binary files a/public/textures/chipped/spider_end_stone_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_gilded_blackstone_carving.png b/public/textures/chipped/spider_gilded_blackstone_carving.png deleted file mode 100644 index e60006b9..00000000 Binary files a/public/textures/chipped/spider_gilded_blackstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_granite_carving.png b/public/textures/chipped/spider_granite_carving.png deleted file mode 100644 index 9790761a..00000000 Binary files a/public/textures/chipped/spider_granite_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_ice_carving.png b/public/textures/chipped/spider_ice_carving.png deleted file mode 100644 index c0deade6..00000000 Binary files a/public/textures/chipped/spider_ice_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_lapis_block_carving.png b/public/textures/chipped/spider_lapis_block_carving.png deleted file mode 100644 index 5dba328a..00000000 Binary files a/public/textures/chipped/spider_lapis_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_lodestone_carving.png b/public/textures/chipped/spider_lodestone_carving.png deleted file mode 100644 index 83fcee41..00000000 Binary files a/public/textures/chipped/spider_lodestone_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_magma_block_carving.png b/public/textures/chipped/spider_magma_block_carving.png deleted file mode 100644 index 5dbd80f1..00000000 Binary files a/public/textures/chipped/spider_magma_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_mossy_cobblestone_carving.png b/public/textures/chipped/spider_mossy_cobblestone_carving.png deleted file mode 100644 index 7c59ed5a..00000000 Binary files a/public/textures/chipped/spider_mossy_cobblestone_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_mossy_stone_bricks_carving.png b/public/textures/chipped/spider_mossy_stone_bricks_carving.png deleted file mode 100644 index d36afd12..00000000 Binary files a/public/textures/chipped/spider_mossy_stone_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_mud_bricks_carving.png b/public/textures/chipped/spider_mud_bricks_carving.png deleted file mode 100644 index 19d079f0..00000000 Binary files a/public/textures/chipped/spider_mud_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_mud_carving.png b/public/textures/chipped/spider_mud_carving.png deleted file mode 100644 index b1955709..00000000 Binary files a/public/textures/chipped/spider_mud_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_nether_bricks_carving.png b/public/textures/chipped/spider_nether_bricks_carving.png deleted file mode 100644 index 6d622c50..00000000 Binary files a/public/textures/chipped/spider_nether_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_netherrack_carving.png b/public/textures/chipped/spider_netherrack_carving.png deleted file mode 100644 index 021564a4..00000000 Binary files a/public/textures/chipped/spider_netherrack_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_obsidian_carving.png b/public/textures/chipped/spider_obsidian_carving.png deleted file mode 100644 index e4e15205..00000000 Binary files a/public/textures/chipped/spider_obsidian_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_packed_ice_carving.png b/public/textures/chipped/spider_packed_ice_carving.png deleted file mode 100644 index 26bd180f..00000000 Binary files a/public/textures/chipped/spider_packed_ice_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_packed_mud_carving.png b/public/textures/chipped/spider_packed_mud_carving.png deleted file mode 100644 index f9855ace..00000000 Binary files a/public/textures/chipped/spider_packed_mud_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_prismarine_carving.png b/public/textures/chipped/spider_prismarine_carving.png deleted file mode 100644 index e7f886db..00000000 Binary files a/public/textures/chipped/spider_prismarine_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_purpur_block_carving.png b/public/textures/chipped/spider_purpur_block_carving.png deleted file mode 100644 index 0601165f..00000000 Binary files a/public/textures/chipped/spider_purpur_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_quartz_block_carving.png b/public/textures/chipped/spider_quartz_block_carving.png deleted file mode 100644 index 24a5a76d..00000000 Binary files a/public/textures/chipped/spider_quartz_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_raw_copper_block_carving.png b/public/textures/chipped/spider_raw_copper_block_carving.png deleted file mode 100644 index c6767ef3..00000000 Binary files a/public/textures/chipped/spider_raw_copper_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_raw_gold_block_carving.png b/public/textures/chipped/spider_raw_gold_block_carving.png deleted file mode 100644 index 2f8a138d..00000000 Binary files a/public/textures/chipped/spider_raw_gold_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_raw_iron_block_carving.png b/public/textures/chipped/spider_raw_iron_block_carving.png deleted file mode 100644 index d535ef37..00000000 Binary files a/public/textures/chipped/spider_raw_iron_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_red_nether_bricks_carving.png b/public/textures/chipped/spider_red_nether_bricks_carving.png deleted file mode 100644 index d17f573e..00000000 Binary files a/public/textures/chipped/spider_red_nether_bricks_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_red_sandstone_carving.png b/public/textures/chipped/spider_red_sandstone_carving.png deleted file mode 100644 index 9aacfad7..00000000 Binary files a/public/textures/chipped/spider_red_sandstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_redstone_block_carving.png b/public/textures/chipped/spider_redstone_block_carving.png deleted file mode 100644 index 4caf0e53..00000000 Binary files a/public/textures/chipped/spider_redstone_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_sandstone_carving.png b/public/textures/chipped/spider_sandstone_carving.png deleted file mode 100644 index c4f6da8c..00000000 Binary files a/public/textures/chipped/spider_sandstone_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_smooth_stone_carving.png b/public/textures/chipped/spider_smooth_stone_carving.png deleted file mode 100644 index 9011682f..00000000 Binary files a/public/textures/chipped/spider_smooth_stone_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_snow_block_carving.png b/public/textures/chipped/spider_snow_block_carving.png deleted file mode 100644 index ce93e90b..00000000 Binary files a/public/textures/chipped/spider_snow_block_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_stone_carving.png b/public/textures/chipped/spider_stone_carving.png deleted file mode 100644 index b9d76313..00000000 Binary files a/public/textures/chipped/spider_stone_carving.png and /dev/null differ diff --git a/public/textures/chipped/spider_tuff_carving.png b/public/textures/chipped/spider_tuff_carving.png deleted file mode 100644 index 96f9c82f..00000000 Binary files a/public/textures/chipped/spider_tuff_carving.png and /dev/null differ diff --git a/public/textures/chipped/spiral_gilded_blackstone.png b/public/textures/chipped/spiral_gilded_blackstone.png deleted file mode 100644 index db571bda..00000000 Binary files a/public/textures/chipped/spiral_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/spiral_mud.png b/public/textures/chipped/spiral_mud.png deleted file mode 100644 index 07b7a6fe..00000000 Binary files a/public/textures/chipped/spiral_mud.png and /dev/null differ diff --git a/public/textures/chipped/spiral_mud_bricks.png b/public/textures/chipped/spiral_mud_bricks.png deleted file mode 100644 index 8c0ad092..00000000 Binary files a/public/textures/chipped/spiral_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/spiral_packed_mud.png b/public/textures/chipped/spiral_packed_mud.png deleted file mode 100644 index 11dfd6c7..00000000 Binary files a/public/textures/chipped/spiral_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_amethyst_block.png b/public/textures/chipped/spiraled_amethyst_block.png deleted file mode 100644 index 13c62d7c..00000000 Binary files a/public/textures/chipped/spiraled_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_ancient_debris.png b/public/textures/chipped/spiraled_ancient_debris.png deleted file mode 100644 index 44e61168..00000000 Binary files a/public/textures/chipped/spiraled_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_andesite.png b/public/textures/chipped/spiraled_andesite.png deleted file mode 100644 index 26385817..00000000 Binary files a/public/textures/chipped/spiraled_andesite.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_basalt.png b/public/textures/chipped/spiraled_basalt.png deleted file mode 100644 index 655c1f4d..00000000 Binary files a/public/textures/chipped/spiraled_basalt.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_blackstone.png b/public/textures/chipped/spiraled_blackstone.png deleted file mode 100644 index 13ca03cf..00000000 Binary files a/public/textures/chipped/spiraled_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_blue_ice.png b/public/textures/chipped/spiraled_blue_ice.png deleted file mode 100644 index d541571a..00000000 Binary files a/public/textures/chipped/spiraled_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_borderless_bricks.png b/public/textures/chipped/spiraled_borderless_bricks.png deleted file mode 100644 index 3b741cf3..00000000 Binary files a/public/textures/chipped/spiraled_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_bricks.png b/public/textures/chipped/spiraled_bricks.png deleted file mode 100644 index e4264c69..00000000 Binary files a/public/textures/chipped/spiraled_bricks.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_calcite.png b/public/textures/chipped/spiraled_calcite.png deleted file mode 100644 index 68982cd4..00000000 Binary files a/public/textures/chipped/spiraled_calcite.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_clay.png b/public/textures/chipped/spiraled_clay.png deleted file mode 100644 index 6cdd303f..00000000 Binary files a/public/textures/chipped/spiraled_clay.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_coal_block.png b/public/textures/chipped/spiraled_coal_block.png deleted file mode 100644 index 0ae78680..00000000 Binary files a/public/textures/chipped/spiraled_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_cobblestone.png b/public/textures/chipped/spiraled_cobblestone.png deleted file mode 100644 index 176a171f..00000000 Binary files a/public/textures/chipped/spiraled_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_crying_obsidian.png b/public/textures/chipped/spiraled_crying_obsidian.png deleted file mode 100644 index d9663349..00000000 Binary files a/public/textures/chipped/spiraled_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_dark_prismarine.png b/public/textures/chipped/spiraled_dark_prismarine.png deleted file mode 100644 index 63ea862d..00000000 Binary files a/public/textures/chipped/spiraled_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_deepslate.png b/public/textures/chipped/spiraled_deepslate.png deleted file mode 100644 index 4835e0b8..00000000 Binary files a/public/textures/chipped/spiraled_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_diorite.png b/public/textures/chipped/spiraled_diorite.png deleted file mode 100644 index 7732bf21..00000000 Binary files a/public/textures/chipped/spiraled_diorite.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_dirt.png b/public/textures/chipped/spiraled_dirt.png deleted file mode 100644 index b99ab13f..00000000 Binary files a/public/textures/chipped/spiraled_dirt.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_dripstone_block.png b/public/textures/chipped/spiraled_dripstone_block.png deleted file mode 100644 index 92bd8261..00000000 Binary files a/public/textures/chipped/spiraled_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_end_stone.png b/public/textures/chipped/spiraled_end_stone.png deleted file mode 100644 index 40d2ebea..00000000 Binary files a/public/textures/chipped/spiraled_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_gilded_blackstone.png b/public/textures/chipped/spiraled_gilded_blackstone.png deleted file mode 100644 index ae7c3298..00000000 Binary files a/public/textures/chipped/spiraled_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_granite.png b/public/textures/chipped/spiraled_granite.png deleted file mode 100644 index 2886d3a0..00000000 Binary files a/public/textures/chipped/spiraled_granite.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_ice.png b/public/textures/chipped/spiraled_ice.png deleted file mode 100644 index 35dd3cbb..00000000 Binary files a/public/textures/chipped/spiraled_ice.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_lapis_block.png b/public/textures/chipped/spiraled_lapis_block.png deleted file mode 100644 index 22e90962..00000000 Binary files a/public/textures/chipped/spiraled_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_lodestone.png b/public/textures/chipped/spiraled_lodestone.png deleted file mode 100644 index 56575c1a..00000000 Binary files a/public/textures/chipped/spiraled_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_magma_block.png b/public/textures/chipped/spiraled_magma_block.png deleted file mode 100644 index 0e9f1048..00000000 Binary files a/public/textures/chipped/spiraled_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_mossy_cobblestone.png b/public/textures/chipped/spiraled_mossy_cobblestone.png deleted file mode 100644 index 2f765d86..00000000 Binary files a/public/textures/chipped/spiraled_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_mossy_stone_bricks.png b/public/textures/chipped/spiraled_mossy_stone_bricks.png deleted file mode 100644 index 1342b2e4..00000000 Binary files a/public/textures/chipped/spiraled_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_nether_bricks.png b/public/textures/chipped/spiraled_nether_bricks.png deleted file mode 100644 index 6d4f2c98..00000000 Binary files a/public/textures/chipped/spiraled_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_netherrack.png b/public/textures/chipped/spiraled_netherrack.png deleted file mode 100644 index c0e67e22..00000000 Binary files a/public/textures/chipped/spiraled_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_obsidian.png b/public/textures/chipped/spiraled_obsidian.png deleted file mode 100644 index a6fbaadd..00000000 Binary files a/public/textures/chipped/spiraled_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_packed_ice.png b/public/textures/chipped/spiraled_packed_ice.png deleted file mode 100644 index ead18b21..00000000 Binary files a/public/textures/chipped/spiraled_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_prismarine.png b/public/textures/chipped/spiraled_prismarine.png deleted file mode 100644 index c4cf35d3..00000000 Binary files a/public/textures/chipped/spiraled_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_purpur_block.png b/public/textures/chipped/spiraled_purpur_block.png deleted file mode 100644 index 4219a7da..00000000 Binary files a/public/textures/chipped/spiraled_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_raw_copper_block.png b/public/textures/chipped/spiraled_raw_copper_block.png deleted file mode 100644 index eabbcc84..00000000 Binary files a/public/textures/chipped/spiraled_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_raw_gold_block.png b/public/textures/chipped/spiraled_raw_gold_block.png deleted file mode 100644 index 04151783..00000000 Binary files a/public/textures/chipped/spiraled_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_raw_iron_block.png b/public/textures/chipped/spiraled_raw_iron_block.png deleted file mode 100644 index fe052baa..00000000 Binary files a/public/textures/chipped/spiraled_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_red_nether_bricks.png b/public/textures/chipped/spiraled_red_nether_bricks.png deleted file mode 100644 index 3a5f2346..00000000 Binary files a/public/textures/chipped/spiraled_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_red_sandstone.png b/public/textures/chipped/spiraled_red_sandstone.png deleted file mode 100644 index a5d90769..00000000 Binary files a/public/textures/chipped/spiraled_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_redstone_block.png b/public/textures/chipped/spiraled_redstone_block.png deleted file mode 100644 index 0b618a0a..00000000 Binary files a/public/textures/chipped/spiraled_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_sandstone.png b/public/textures/chipped/spiraled_sandstone.png deleted file mode 100644 index aca1a428..00000000 Binary files a/public/textures/chipped/spiraled_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_smooth_stone.png b/public/textures/chipped/spiraled_smooth_stone.png deleted file mode 100644 index 8baa3203..00000000 Binary files a/public/textures/chipped/spiraled_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_snow_block.png b/public/textures/chipped/spiraled_snow_block.png deleted file mode 100644 index 27e48a6c..00000000 Binary files a/public/textures/chipped/spiraled_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_stone.png b/public/textures/chipped/spiraled_stone.png deleted file mode 100644 index 229aaa36..00000000 Binary files a/public/textures/chipped/spiraled_stone.png and /dev/null differ diff --git a/public/textures/chipped/spiraled_tuff.png b/public/textures/chipped/spiraled_tuff.png deleted file mode 100644 index 80eccd2f..00000000 Binary files a/public/textures/chipped/spiraled_tuff.png and /dev/null differ diff --git a/public/textures/chipped/spongy_moss_block.png b/public/textures/chipped/spongy_moss_block.png deleted file mode 100644 index d2a958d1..00000000 Binary files a/public/textures/chipped/spongy_moss_block.png and /dev/null differ diff --git a/public/textures/chipped/spongy_nether_wart_block.png b/public/textures/chipped/spongy_nether_wart_block.png deleted file mode 100644 index 970d5f59..00000000 Binary files a/public/textures/chipped/spongy_nether_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/spongy_warped_wart_block.png b/public/textures/chipped/spongy_warped_wart_block.png deleted file mode 100644 index 98b9bdeb..00000000 Binary files a/public/textures/chipped/spongy_warped_wart_block.png and /dev/null differ diff --git a/public/textures/chipped/spooky_carved_pumpkin.png b/public/textures/chipped/spooky_carved_pumpkin.png deleted file mode 100644 index 393427c8..00000000 Binary files a/public/textures/chipped/spooky_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/spooky_jack_o_lantern.png b/public/textures/chipped/spooky_jack_o_lantern.png deleted file mode 100644 index f194ad27..00000000 Binary files a/public/textures/chipped/spooky_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/spotted_brown_mushroom_block.png b/public/textures/chipped/spotted_brown_mushroom_block.png deleted file mode 100644 index a65e4e2f..00000000 Binary files a/public/textures/chipped/spotted_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/spotted_red_mushroom_block.png b/public/textures/chipped/spotted_red_mushroom_block.png deleted file mode 100644 index 4f7ac3fc..00000000 Binary files a/public/textures/chipped/spotted_red_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/sprinkled_brown_mushroom_block.png b/public/textures/chipped/sprinkled_brown_mushroom_block.png deleted file mode 100644 index fd595d9d..00000000 Binary files a/public/textures/chipped/sprinkled_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/sprinkled_moss_block.png b/public/textures/chipped/sprinkled_moss_block.png deleted file mode 100644 index 337d7ef1..00000000 Binary files a/public/textures/chipped/sprinkled_moss_block.png and /dev/null differ diff --git a/public/textures/chipped/sprouting_crimson_roots.png b/public/textures/chipped/sprouting_crimson_roots.png deleted file mode 100644 index f89b5037..00000000 Binary files a/public/textures/chipped/sprouting_crimson_roots.png and /dev/null differ diff --git a/public/textures/chipped/sprouting_crimson_roots_bulb.png b/public/textures/chipped/sprouting_crimson_roots_bulb.png deleted file mode 100644 index 3ffafc0f..00000000 Binary files a/public/textures/chipped/sprouting_crimson_roots_bulb.png and /dev/null differ diff --git a/public/textures/chipped/spruce_barrel.png b/public/textures/chipped/spruce_barrel.png deleted file mode 100644 index f163f84b..00000000 Binary files a/public/textures/chipped/spruce_barrel.png and /dev/null differ diff --git a/public/textures/chipped/spruce_crate.png b/public/textures/chipped/spruce_crate.png deleted file mode 100644 index 020f7b4b..00000000 Binary files a/public/textures/chipped/spruce_crate.png and /dev/null differ diff --git a/public/textures/chipped/spruce_planks_mosaic.png b/public/textures/chipped/spruce_planks_mosaic.png deleted file mode 100644 index f9a638f1..00000000 Binary files a/public/textures/chipped/spruce_planks_mosaic.png and /dev/null differ diff --git a/public/textures/chipped/spruce_planks_panel.png b/public/textures/chipped/spruce_planks_panel.png deleted file mode 100644 index 1af189f8..00000000 Binary files a/public/textures/chipped/spruce_planks_panel.png and /dev/null differ diff --git a/public/textures/chipped/spruce_planks_shavings.png b/public/textures/chipped/spruce_planks_shavings.png deleted file mode 100644 index 4a7ee644..00000000 Binary files a/public/textures/chipped/spruce_planks_shavings.png and /dev/null differ diff --git a/public/textures/chipped/spruce_torch.png b/public/textures/chipped/spruce_torch.png deleted file mode 100644 index 5f61c66e..00000000 Binary files a/public/textures/chipped/spruce_torch.png and /dev/null differ diff --git a/public/textures/chipped/square_black_stained_glass.png b/public/textures/chipped/square_black_stained_glass.png deleted file mode 100644 index c5471eea..00000000 Binary files a/public/textures/chipped/square_black_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_black_stained_glass_pane.png b/public/textures/chipped/square_black_stained_glass_pane.png deleted file mode 100644 index 6d727f84..00000000 Binary files a/public/textures/chipped/square_black_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_blue_stained_glass.png b/public/textures/chipped/square_blue_stained_glass.png deleted file mode 100644 index b8115e0c..00000000 Binary files a/public/textures/chipped/square_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_blue_stained_glass_pane.png b/public/textures/chipped/square_blue_stained_glass_pane.png deleted file mode 100644 index 6f52aac6..00000000 Binary files a/public/textures/chipped/square_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_brown_stained_glass.png b/public/textures/chipped/square_brown_stained_glass.png deleted file mode 100644 index 27f147ec..00000000 Binary files a/public/textures/chipped/square_brown_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_brown_stained_glass_pane.png b/public/textures/chipped/square_brown_stained_glass_pane.png deleted file mode 100644 index b1f19c56..00000000 Binary files a/public/textures/chipped/square_brown_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_cyan_stained_glass.png b/public/textures/chipped/square_cyan_stained_glass.png deleted file mode 100644 index a6870d4a..00000000 Binary files a/public/textures/chipped/square_cyan_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_cyan_stained_glass_pane.png b/public/textures/chipped/square_cyan_stained_glass_pane.png deleted file mode 100644 index 363bb6cf..00000000 Binary files a/public/textures/chipped/square_cyan_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_gray_stained_glass.png b/public/textures/chipped/square_gray_stained_glass.png deleted file mode 100644 index 0fbb7fc0..00000000 Binary files a/public/textures/chipped/square_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_gray_stained_glass_pane.png b/public/textures/chipped/square_gray_stained_glass_pane.png deleted file mode 100644 index e76a1b3f..00000000 Binary files a/public/textures/chipped/square_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_green_stained_glass.png b/public/textures/chipped/square_green_stained_glass.png deleted file mode 100644 index 56d07a7a..00000000 Binary files a/public/textures/chipped/square_green_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_green_stained_glass_pane.png b/public/textures/chipped/square_green_stained_glass_pane.png deleted file mode 100644 index 9f677d2e..00000000 Binary files a/public/textures/chipped/square_green_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_leaded_glass.png b/public/textures/chipped/square_leaded_glass.png deleted file mode 100644 index 05c6b454..00000000 Binary files a/public/textures/chipped/square_leaded_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_leaded_glass_pane.png b/public/textures/chipped/square_leaded_glass_pane.png deleted file mode 100644 index 25b8a69f..00000000 Binary files a/public/textures/chipped/square_leaded_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_light_blue_stained_glass.png b/public/textures/chipped/square_light_blue_stained_glass.png deleted file mode 100644 index 630ed1d9..00000000 Binary files a/public/textures/chipped/square_light_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_light_blue_stained_glass_pane.png b/public/textures/chipped/square_light_blue_stained_glass_pane.png deleted file mode 100644 index f2a65fda..00000000 Binary files a/public/textures/chipped/square_light_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_light_gray_stained_glass.png b/public/textures/chipped/square_light_gray_stained_glass.png deleted file mode 100644 index 77757442..00000000 Binary files a/public/textures/chipped/square_light_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_light_gray_stained_glass_pane.png b/public/textures/chipped/square_light_gray_stained_glass_pane.png deleted file mode 100644 index 84010b0d..00000000 Binary files a/public/textures/chipped/square_light_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_lime_stained_glass.png b/public/textures/chipped/square_lime_stained_glass.png deleted file mode 100644 index dd221e44..00000000 Binary files a/public/textures/chipped/square_lime_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_lime_stained_glass_pane.png b/public/textures/chipped/square_lime_stained_glass_pane.png deleted file mode 100644 index 13320571..00000000 Binary files a/public/textures/chipped/square_lime_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_magenta_stained_glass.png b/public/textures/chipped/square_magenta_stained_glass.png deleted file mode 100644 index 5a4f0fbf..00000000 Binary files a/public/textures/chipped/square_magenta_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_magenta_stained_glass_pane.png b/public/textures/chipped/square_magenta_stained_glass_pane.png deleted file mode 100644 index 39073fa5..00000000 Binary files a/public/textures/chipped/square_magenta_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_oak_glass.png b/public/textures/chipped/square_oak_glass.png deleted file mode 100644 index 21aa079a..00000000 Binary files a/public/textures/chipped/square_oak_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_oak_glass_pane.png b/public/textures/chipped/square_oak_glass_pane.png deleted file mode 100644 index d78ffcd5..00000000 Binary files a/public/textures/chipped/square_oak_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_orange_stained_glass.png b/public/textures/chipped/square_orange_stained_glass.png deleted file mode 100644 index f1f7ddd6..00000000 Binary files a/public/textures/chipped/square_orange_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_orange_stained_glass_pane.png b/public/textures/chipped/square_orange_stained_glass_pane.png deleted file mode 100644 index 19b2b9eb..00000000 Binary files a/public/textures/chipped/square_orange_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_pink_stained_glass.png b/public/textures/chipped/square_pink_stained_glass.png deleted file mode 100644 index 833fff30..00000000 Binary files a/public/textures/chipped/square_pink_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_pink_stained_glass_pane.png b/public/textures/chipped/square_pink_stained_glass_pane.png deleted file mode 100644 index 3370d804..00000000 Binary files a/public/textures/chipped/square_pink_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_purple_stained_glass.png b/public/textures/chipped/square_purple_stained_glass.png deleted file mode 100644 index 2311b8cf..00000000 Binary files a/public/textures/chipped/square_purple_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_purple_stained_glass_pane.png b/public/textures/chipped/square_purple_stained_glass_pane.png deleted file mode 100644 index 18c867ff..00000000 Binary files a/public/textures/chipped/square_purple_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_red_stained_glass.png b/public/textures/chipped/square_red_stained_glass.png deleted file mode 100644 index 5185c3fe..00000000 Binary files a/public/textures/chipped/square_red_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_red_stained_glass_pane.png b/public/textures/chipped/square_red_stained_glass_pane.png deleted file mode 100644 index 9e678b85..00000000 Binary files a/public/textures/chipped/square_red_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_white_stained_glass.png b/public/textures/chipped/square_white_stained_glass.png deleted file mode 100644 index fcd537de..00000000 Binary files a/public/textures/chipped/square_white_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_white_stained_glass_pane.png b/public/textures/chipped/square_white_stained_glass_pane.png deleted file mode 100644 index 113ec9e6..00000000 Binary files a/public/textures/chipped/square_white_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/square_yellow_stained_glass.png b/public/textures/chipped/square_yellow_stained_glass.png deleted file mode 100644 index ebcbd99d..00000000 Binary files a/public/textures/chipped/square_yellow_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/square_yellow_stained_glass_pane.png b/public/textures/chipped/square_yellow_stained_glass_pane.png deleted file mode 100644 index 1e93bc4e..00000000 Binary files a/public/textures/chipped/square_yellow_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/squished_cute_carved_pumpkin.png b/public/textures/chipped/squished_cute_carved_pumpkin.png deleted file mode 100644 index 6b952e78..00000000 Binary files a/public/textures/chipped/squished_cute_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/squished_cute_jack_o_lantern.png b/public/textures/chipped/squished_cute_jack_o_lantern.png deleted file mode 100644 index 6cefa516..00000000 Binary files a/public/textures/chipped/squished_cute_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/stacked_acacia_planks.png b/public/textures/chipped/stacked_acacia_planks.png deleted file mode 100644 index 01257d59..00000000 Binary files a/public/textures/chipped/stacked_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_amethyst_block_bricks.png b/public/textures/chipped/stacked_amethyst_block_bricks.png deleted file mode 100644 index 78158083..00000000 Binary files a/public/textures/chipped/stacked_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_ancient_debris_bricks.png b/public/textures/chipped/stacked_ancient_debris_bricks.png deleted file mode 100644 index a80656e8..00000000 Binary files a/public/textures/chipped/stacked_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_andesite_bricks.png b/public/textures/chipped/stacked_andesite_bricks.png deleted file mode 100644 index 2aae7d71..00000000 Binary files a/public/textures/chipped/stacked_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_bamboo_planks.png b/public/textures/chipped/stacked_bamboo_planks.png deleted file mode 100644 index 3b18ee3c..00000000 Binary files a/public/textures/chipped/stacked_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_basalt_bricks.png b/public/textures/chipped/stacked_basalt_bricks.png deleted file mode 100644 index 035bc4b0..00000000 Binary files a/public/textures/chipped/stacked_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_birch_planks.png b/public/textures/chipped/stacked_birch_planks.png deleted file mode 100644 index 8644ad65..00000000 Binary files a/public/textures/chipped/stacked_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_black_concrete.png b/public/textures/chipped/stacked_black_concrete.png deleted file mode 100644 index 76f85c05..00000000 Binary files a/public/textures/chipped/stacked_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_blackstone_bricks.png b/public/textures/chipped/stacked_blackstone_bricks.png deleted file mode 100644 index fc337ad5..00000000 Binary files a/public/textures/chipped/stacked_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_blue_concrete.png b/public/textures/chipped/stacked_blue_concrete.png deleted file mode 100644 index 4294302c..00000000 Binary files a/public/textures/chipped/stacked_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_blue_ice_bricks.png b/public/textures/chipped/stacked_blue_ice_bricks.png deleted file mode 100644 index a7d644dc..00000000 Binary files a/public/textures/chipped/stacked_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_borderless_bricks_bricks.png b/public/textures/chipped/stacked_borderless_bricks_bricks.png deleted file mode 100644 index 481e05c2..00000000 Binary files a/public/textures/chipped/stacked_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_bricks_bricks.png b/public/textures/chipped/stacked_bricks_bricks.png deleted file mode 100644 index d46ef093..00000000 Binary files a/public/textures/chipped/stacked_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_brown_concrete.png b/public/textures/chipped/stacked_brown_concrete.png deleted file mode 100644 index f02a5cb6..00000000 Binary files a/public/textures/chipped/stacked_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_calcite_bricks.png b/public/textures/chipped/stacked_calcite_bricks.png deleted file mode 100644 index a73a167d..00000000 Binary files a/public/textures/chipped/stacked_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_cherry_planks.png b/public/textures/chipped/stacked_cherry_planks.png deleted file mode 100644 index 477c10af..00000000 Binary files a/public/textures/chipped/stacked_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_clay_bricks.png b/public/textures/chipped/stacked_clay_bricks.png deleted file mode 100644 index 2b944995..00000000 Binary files a/public/textures/chipped/stacked_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_coal_block_bricks.png b/public/textures/chipped/stacked_coal_block_bricks.png deleted file mode 100644 index 2ac18e68..00000000 Binary files a/public/textures/chipped/stacked_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_cobblestone_bricks.png b/public/textures/chipped/stacked_cobblestone_bricks.png deleted file mode 100644 index 0fe466e1..00000000 Binary files a/public/textures/chipped/stacked_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_crimson_planks.png b/public/textures/chipped/stacked_crimson_planks.png deleted file mode 100644 index 9953633c..00000000 Binary files a/public/textures/chipped/stacked_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_crying_obsidian_bricks.png b/public/textures/chipped/stacked_crying_obsidian_bricks.png deleted file mode 100644 index c8612208..00000000 Binary files a/public/textures/chipped/stacked_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_cyan_concrete.png b/public/textures/chipped/stacked_cyan_concrete.png deleted file mode 100644 index 57637c72..00000000 Binary files a/public/textures/chipped/stacked_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_dark_oak_planks.png b/public/textures/chipped/stacked_dark_oak_planks.png deleted file mode 100644 index c05b8b8d..00000000 Binary files a/public/textures/chipped/stacked_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_dark_prismarine_bricks.png b/public/textures/chipped/stacked_dark_prismarine_bricks.png deleted file mode 100644 index bc72297b..00000000 Binary files a/public/textures/chipped/stacked_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_deepslate_bricks.png b/public/textures/chipped/stacked_deepslate_bricks.png deleted file mode 100644 index 76423577..00000000 Binary files a/public/textures/chipped/stacked_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_diamond_block.png b/public/textures/chipped/stacked_diamond_block.png deleted file mode 100644 index d6551df3..00000000 Binary files a/public/textures/chipped/stacked_diamond_block.png and /dev/null differ diff --git a/public/textures/chipped/stacked_diorite_bricks.png b/public/textures/chipped/stacked_diorite_bricks.png deleted file mode 100644 index e3991a32..00000000 Binary files a/public/textures/chipped/stacked_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_dirt_bricks.png b/public/textures/chipped/stacked_dirt_bricks.png deleted file mode 100644 index 4fc68980..00000000 Binary files a/public/textures/chipped/stacked_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_dripstone_block_bricks.png b/public/textures/chipped/stacked_dripstone_block_bricks.png deleted file mode 100644 index 15436dc3..00000000 Binary files a/public/textures/chipped/stacked_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_emerald_block.png b/public/textures/chipped/stacked_emerald_block.png deleted file mode 100644 index c3640da4..00000000 Binary files a/public/textures/chipped/stacked_emerald_block.png and /dev/null differ diff --git a/public/textures/chipped/stacked_end_stone_bricks.png b/public/textures/chipped/stacked_end_stone_bricks.png deleted file mode 100644 index 9a5895a9..00000000 Binary files a/public/textures/chipped/stacked_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_gilded_blackstone_bricks.png b/public/textures/chipped/stacked_gilded_blackstone_bricks.png deleted file mode 100644 index be09cad1..00000000 Binary files a/public/textures/chipped/stacked_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_gold_block.png b/public/textures/chipped/stacked_gold_block.png deleted file mode 100644 index d617eff5..00000000 Binary files a/public/textures/chipped/stacked_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/stacked_granite_bricks.png b/public/textures/chipped/stacked_granite_bricks.png deleted file mode 100644 index 32f7353a..00000000 Binary files a/public/textures/chipped/stacked_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_gray_concrete.png b/public/textures/chipped/stacked_gray_concrete.png deleted file mode 100644 index 5c7a6603..00000000 Binary files a/public/textures/chipped/stacked_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_green_concrete.png b/public/textures/chipped/stacked_green_concrete.png deleted file mode 100644 index 26d16158..00000000 Binary files a/public/textures/chipped/stacked_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_ice_bricks.png b/public/textures/chipped/stacked_ice_bricks.png deleted file mode 100644 index 1403b9e9..00000000 Binary files a/public/textures/chipped/stacked_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_iron_block.png b/public/textures/chipped/stacked_iron_block.png deleted file mode 100644 index 9fd35824..00000000 Binary files a/public/textures/chipped/stacked_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/stacked_jungle_planks.png b/public/textures/chipped/stacked_jungle_planks.png deleted file mode 100644 index ff0a242b..00000000 Binary files a/public/textures/chipped/stacked_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_lapis_block_bricks.png b/public/textures/chipped/stacked_lapis_block_bricks.png deleted file mode 100644 index 1b4cee8f..00000000 Binary files a/public/textures/chipped/stacked_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_light_blue_concrete.png b/public/textures/chipped/stacked_light_blue_concrete.png deleted file mode 100644 index 223d7db7..00000000 Binary files a/public/textures/chipped/stacked_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_light_gray_concrete.png b/public/textures/chipped/stacked_light_gray_concrete.png deleted file mode 100644 index 1bd6095d..00000000 Binary files a/public/textures/chipped/stacked_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_lime_concrete.png b/public/textures/chipped/stacked_lime_concrete.png deleted file mode 100644 index 031f0b2c..00000000 Binary files a/public/textures/chipped/stacked_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_lodestone_bricks.png b/public/textures/chipped/stacked_lodestone_bricks.png deleted file mode 100644 index 25fd080e..00000000 Binary files a/public/textures/chipped/stacked_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_magenta_concrete.png b/public/textures/chipped/stacked_magenta_concrete.png deleted file mode 100644 index 1d85f0f8..00000000 Binary files a/public/textures/chipped/stacked_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_magma_block_bricks.png b/public/textures/chipped/stacked_magma_block_bricks.png deleted file mode 100644 index 07b8bed6..00000000 Binary files a/public/textures/chipped/stacked_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_mangrove_planks.png b/public/textures/chipped/stacked_mangrove_planks.png deleted file mode 100644 index f4d7f9c2..00000000 Binary files a/public/textures/chipped/stacked_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_mossy_cobblestone_bricks.png b/public/textures/chipped/stacked_mossy_cobblestone_bricks.png deleted file mode 100644 index 82610692..00000000 Binary files a/public/textures/chipped/stacked_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_mossy_stone_bricks_bricks.png b/public/textures/chipped/stacked_mossy_stone_bricks_bricks.png deleted file mode 100644 index c12c1f92..00000000 Binary files a/public/textures/chipped/stacked_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_mud_bricks.png b/public/textures/chipped/stacked_mud_bricks.png deleted file mode 100644 index 7cda9251..00000000 Binary files a/public/textures/chipped/stacked_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_mud_bricks_bricks.png b/public/textures/chipped/stacked_mud_bricks_bricks.png deleted file mode 100644 index 5910dde8..00000000 Binary files a/public/textures/chipped/stacked_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_nether_bricks_bricks.png b/public/textures/chipped/stacked_nether_bricks_bricks.png deleted file mode 100644 index f9dcc690..00000000 Binary files a/public/textures/chipped/stacked_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_netherite_block.png b/public/textures/chipped/stacked_netherite_block.png deleted file mode 100644 index cf14fbb9..00000000 Binary files a/public/textures/chipped/stacked_netherite_block.png and /dev/null differ diff --git a/public/textures/chipped/stacked_netherrack_bricks.png b/public/textures/chipped/stacked_netherrack_bricks.png deleted file mode 100644 index 800656c6..00000000 Binary files a/public/textures/chipped/stacked_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_oak_planks.png b/public/textures/chipped/stacked_oak_planks.png deleted file mode 100644 index c1ce389f..00000000 Binary files a/public/textures/chipped/stacked_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_obsidian_bricks.png b/public/textures/chipped/stacked_obsidian_bricks.png deleted file mode 100644 index 59bd610f..00000000 Binary files a/public/textures/chipped/stacked_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_orange_concrete.png b/public/textures/chipped/stacked_orange_concrete.png deleted file mode 100644 index 6ace1a93..00000000 Binary files a/public/textures/chipped/stacked_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_packed_ice_bricks.png b/public/textures/chipped/stacked_packed_ice_bricks.png deleted file mode 100644 index 5eb0ddb9..00000000 Binary files a/public/textures/chipped/stacked_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_packed_mud_bricks.png b/public/textures/chipped/stacked_packed_mud_bricks.png deleted file mode 100644 index f7dbf6c3..00000000 Binary files a/public/textures/chipped/stacked_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_pink_concrete.png b/public/textures/chipped/stacked_pink_concrete.png deleted file mode 100644 index 1c0672f7..00000000 Binary files a/public/textures/chipped/stacked_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_prismarine_bricks.png b/public/textures/chipped/stacked_prismarine_bricks.png deleted file mode 100644 index d791a0b1..00000000 Binary files a/public/textures/chipped/stacked_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_purple_concrete.png b/public/textures/chipped/stacked_purple_concrete.png deleted file mode 100644 index a967056c..00000000 Binary files a/public/textures/chipped/stacked_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_purpur_block_bricks.png b/public/textures/chipped/stacked_purpur_block_bricks.png deleted file mode 100644 index ea2ad32a..00000000 Binary files a/public/textures/chipped/stacked_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_quartz_block_bricks.png b/public/textures/chipped/stacked_quartz_block_bricks.png deleted file mode 100644 index bff9a844..00000000 Binary files a/public/textures/chipped/stacked_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_raw_copper_block_bricks.png b/public/textures/chipped/stacked_raw_copper_block_bricks.png deleted file mode 100644 index 264f14e6..00000000 Binary files a/public/textures/chipped/stacked_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_raw_gold_block_bricks.png b/public/textures/chipped/stacked_raw_gold_block_bricks.png deleted file mode 100644 index d42ae582..00000000 Binary files a/public/textures/chipped/stacked_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_raw_iron_block_bricks.png b/public/textures/chipped/stacked_raw_iron_block_bricks.png deleted file mode 100644 index c4e03e39..00000000 Binary files a/public/textures/chipped/stacked_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_red_concrete.png b/public/textures/chipped/stacked_red_concrete.png deleted file mode 100644 index d6490bb2..00000000 Binary files a/public/textures/chipped/stacked_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_red_nether_bricks_bricks.png b/public/textures/chipped/stacked_red_nether_bricks_bricks.png deleted file mode 100644 index 42dc30f4..00000000 Binary files a/public/textures/chipped/stacked_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_red_sandstone_bricks.png b/public/textures/chipped/stacked_red_sandstone_bricks.png deleted file mode 100644 index c11eb2b1..00000000 Binary files a/public/textures/chipped/stacked_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_redstone_block_bricks.png b/public/textures/chipped/stacked_redstone_block_bricks.png deleted file mode 100644 index d3aaccb5..00000000 Binary files a/public/textures/chipped/stacked_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_sandstone_bricks.png b/public/textures/chipped/stacked_sandstone_bricks.png deleted file mode 100644 index 64478352..00000000 Binary files a/public/textures/chipped/stacked_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_smooth_stone_bricks.png b/public/textures/chipped/stacked_smooth_stone_bricks.png deleted file mode 100644 index d4fd6565..00000000 Binary files a/public/textures/chipped/stacked_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_snow_block_bricks.png b/public/textures/chipped/stacked_snow_block_bricks.png deleted file mode 100644 index 9f6d0525..00000000 Binary files a/public/textures/chipped/stacked_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_spruce_planks.png b/public/textures/chipped/stacked_spruce_planks.png deleted file mode 100644 index 3140a2af..00000000 Binary files a/public/textures/chipped/stacked_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_stone_bricks.png b/public/textures/chipped/stacked_stone_bricks.png deleted file mode 100644 index 218345a7..00000000 Binary files a/public/textures/chipped/stacked_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_tuff_bricks.png b/public/textures/chipped/stacked_tuff_bricks.png deleted file mode 100644 index 09ed20a3..00000000 Binary files a/public/textures/chipped/stacked_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_warped_planks.png b/public/textures/chipped/stacked_warped_planks.png deleted file mode 100644 index 0a520f1b..00000000 Binary files a/public/textures/chipped/stacked_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/stacked_waxed_copper_block.png b/public/textures/chipped/stacked_waxed_copper_block.png deleted file mode 100644 index 19b7ad14..00000000 Binary files a/public/textures/chipped/stacked_waxed_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/stacked_waxed_exposed_copper.png b/public/textures/chipped/stacked_waxed_exposed_copper.png deleted file mode 100644 index 1784f3dd..00000000 Binary files a/public/textures/chipped/stacked_waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/chipped/stacked_waxed_oxidized_copper.png b/public/textures/chipped/stacked_waxed_oxidized_copper.png deleted file mode 100644 index b0266909..00000000 Binary files a/public/textures/chipped/stacked_waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/chipped/stacked_waxed_weathered_copper.png b/public/textures/chipped/stacked_waxed_weathered_copper.png deleted file mode 100644 index 00f4bdf4..00000000 Binary files a/public/textures/chipped/stacked_waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/chipped/stacked_white_concrete.png b/public/textures/chipped/stacked_white_concrete.png deleted file mode 100644 index 625227c0..00000000 Binary files a/public/textures/chipped/stacked_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stacked_yellow_concrete.png b/public/textures/chipped/stacked_yellow_concrete.png deleted file mode 100644 index 574d89e0..00000000 Binary files a/public/textures/chipped/stacked_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/star_mud.png b/public/textures/chipped/star_mud.png deleted file mode 100644 index cea0d336..00000000 Binary files a/public/textures/chipped/star_mud.png and /dev/null differ diff --git a/public/textures/chipped/star_mud_bricks.png b/public/textures/chipped/star_mud_bricks.png deleted file mode 100644 index 46a9f6fe..00000000 Binary files a/public/textures/chipped/star_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/star_packed_mud.png b/public/textures/chipped/star_packed_mud.png deleted file mode 100644 index 1883628b..00000000 Binary files a/public/textures/chipped/star_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/starry_black_glazed_terracotta.png b/public/textures/chipped/starry_black_glazed_terracotta.png deleted file mode 100644 index 22e56440..00000000 Binary files a/public/textures/chipped/starry_black_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_black_terracotta.png b/public/textures/chipped/starry_black_terracotta.png deleted file mode 100644 index 1d87f06a..00000000 Binary files a/public/textures/chipped/starry_black_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_blue_glazed_terracotta.png b/public/textures/chipped/starry_blue_glazed_terracotta.png deleted file mode 100644 index 428806f1..00000000 Binary files a/public/textures/chipped/starry_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_blue_terracotta.png b/public/textures/chipped/starry_blue_terracotta.png deleted file mode 100644 index 81358215..00000000 Binary files a/public/textures/chipped/starry_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_brown_glazed_terracotta.png b/public/textures/chipped/starry_brown_glazed_terracotta.png deleted file mode 100644 index f5fc5b2c..00000000 Binary files a/public/textures/chipped/starry_brown_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_brown_terracotta.png b/public/textures/chipped/starry_brown_terracotta.png deleted file mode 100644 index ecbc4018..00000000 Binary files a/public/textures/chipped/starry_brown_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_cyan_glazed_terracotta.png b/public/textures/chipped/starry_cyan_glazed_terracotta.png deleted file mode 100644 index 5d9cf6f4..00000000 Binary files a/public/textures/chipped/starry_cyan_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_cyan_terracotta.png b/public/textures/chipped/starry_cyan_terracotta.png deleted file mode 100644 index ac2cab0d..00000000 Binary files a/public/textures/chipped/starry_cyan_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_gray_glazed_terracotta.png b/public/textures/chipped/starry_gray_glazed_terracotta.png deleted file mode 100644 index 154e0b3e..00000000 Binary files a/public/textures/chipped/starry_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_gray_terracotta.png b/public/textures/chipped/starry_gray_terracotta.png deleted file mode 100644 index 38413557..00000000 Binary files a/public/textures/chipped/starry_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_green_glazed_terracotta.png b/public/textures/chipped/starry_green_glazed_terracotta.png deleted file mode 100644 index 5ef00da2..00000000 Binary files a/public/textures/chipped/starry_green_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_green_terracotta.png b/public/textures/chipped/starry_green_terracotta.png deleted file mode 100644 index 0f68680e..00000000 Binary files a/public/textures/chipped/starry_green_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_light_blue_glazed_terracotta.png b/public/textures/chipped/starry_light_blue_glazed_terracotta.png deleted file mode 100644 index ed407f43..00000000 Binary files a/public/textures/chipped/starry_light_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_light_blue_terracotta.png b/public/textures/chipped/starry_light_blue_terracotta.png deleted file mode 100644 index 438c98f4..00000000 Binary files a/public/textures/chipped/starry_light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_light_gray_glazed_terracotta.png b/public/textures/chipped/starry_light_gray_glazed_terracotta.png deleted file mode 100644 index f3c1fe9f..00000000 Binary files a/public/textures/chipped/starry_light_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_light_gray_terracotta.png b/public/textures/chipped/starry_light_gray_terracotta.png deleted file mode 100644 index cff86f05..00000000 Binary files a/public/textures/chipped/starry_light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_lime_glazed_terracotta.png b/public/textures/chipped/starry_lime_glazed_terracotta.png deleted file mode 100644 index e1120aec..00000000 Binary files a/public/textures/chipped/starry_lime_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_lime_terracotta.png b/public/textures/chipped/starry_lime_terracotta.png deleted file mode 100644 index 1fcae68c..00000000 Binary files a/public/textures/chipped/starry_lime_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_magenta_glazed_terracotta.png b/public/textures/chipped/starry_magenta_glazed_terracotta.png deleted file mode 100644 index c3d11cb0..00000000 Binary files a/public/textures/chipped/starry_magenta_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_magenta_terracotta.png b/public/textures/chipped/starry_magenta_terracotta.png deleted file mode 100644 index f5e43fec..00000000 Binary files a/public/textures/chipped/starry_magenta_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_orange_glazed_terracotta.png b/public/textures/chipped/starry_orange_glazed_terracotta.png deleted file mode 100644 index 9e75333e..00000000 Binary files a/public/textures/chipped/starry_orange_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_orange_terracotta.png b/public/textures/chipped/starry_orange_terracotta.png deleted file mode 100644 index 77323300..00000000 Binary files a/public/textures/chipped/starry_orange_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_pink_glazed_terracotta.png b/public/textures/chipped/starry_pink_glazed_terracotta.png deleted file mode 100644 index c59c8564..00000000 Binary files a/public/textures/chipped/starry_pink_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_pink_terracotta.png b/public/textures/chipped/starry_pink_terracotta.png deleted file mode 100644 index 61c5620b..00000000 Binary files a/public/textures/chipped/starry_pink_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_purple_glazed_terracotta.png b/public/textures/chipped/starry_purple_glazed_terracotta.png deleted file mode 100644 index 608a9fc2..00000000 Binary files a/public/textures/chipped/starry_purple_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_purple_terracotta.png b/public/textures/chipped/starry_purple_terracotta.png deleted file mode 100644 index 33412441..00000000 Binary files a/public/textures/chipped/starry_purple_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_red_glazed_terracotta.png b/public/textures/chipped/starry_red_glazed_terracotta.png deleted file mode 100644 index 592909a2..00000000 Binary files a/public/textures/chipped/starry_red_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_red_terracotta.png b/public/textures/chipped/starry_red_terracotta.png deleted file mode 100644 index a5703e0f..00000000 Binary files a/public/textures/chipped/starry_red_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_terracotta.png b/public/textures/chipped/starry_terracotta.png deleted file mode 100644 index 6c0082ae..00000000 Binary files a/public/textures/chipped/starry_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_white_glazed_terracotta.png b/public/textures/chipped/starry_white_glazed_terracotta.png deleted file mode 100644 index 28656683..00000000 Binary files a/public/textures/chipped/starry_white_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_white_terracotta.png b/public/textures/chipped/starry_white_terracotta.png deleted file mode 100644 index 8ae603a6..00000000 Binary files a/public/textures/chipped/starry_white_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_yellow_glazed_terracotta.png b/public/textures/chipped/starry_yellow_glazed_terracotta.png deleted file mode 100644 index d4fd93ea..00000000 Binary files a/public/textures/chipped/starry_yellow_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/starry_yellow_terracotta.png b/public/textures/chipped/starry_yellow_terracotta.png deleted file mode 100644 index e2b4cbcb..00000000 Binary files a/public/textures/chipped/starry_yellow_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/stem_warped_roots.png b/public/textures/chipped/stem_warped_roots.png deleted file mode 100644 index fb5ba34a..00000000 Binary files a/public/textures/chipped/stem_warped_roots.png and /dev/null differ diff --git a/public/textures/chipped/stepped_iron_bars.png b/public/textures/chipped/stepped_iron_bars.png deleted file mode 100644 index 879da212..00000000 Binary files a/public/textures/chipped/stepped_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/stern_stripped_acacia_log.png b/public/textures/chipped/stern_stripped_acacia_log.png deleted file mode 100644 index bd274bf4..00000000 Binary files a/public/textures/chipped/stern_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/stern_stripped_birch_log.png b/public/textures/chipped/stern_stripped_birch_log.png deleted file mode 100644 index fe5f8654..00000000 Binary files a/public/textures/chipped/stern_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/stern_stripped_cherry_log.png b/public/textures/chipped/stern_stripped_cherry_log.png deleted file mode 100644 index fcb3decb..00000000 Binary files a/public/textures/chipped/stern_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/stern_stripped_crimson_stem.png b/public/textures/chipped/stern_stripped_crimson_stem.png deleted file mode 100644 index 918cd263..00000000 Binary files a/public/textures/chipped/stern_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/stern_stripped_dark_oak_log.png b/public/textures/chipped/stern_stripped_dark_oak_log.png deleted file mode 100644 index cd07c637..00000000 Binary files a/public/textures/chipped/stern_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/stern_stripped_jungle_log.png b/public/textures/chipped/stern_stripped_jungle_log.png deleted file mode 100644 index 434c11b9..00000000 Binary files a/public/textures/chipped/stern_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/stern_stripped_mangrove_log.png b/public/textures/chipped/stern_stripped_mangrove_log.png deleted file mode 100644 index b9c5ce00..00000000 Binary files a/public/textures/chipped/stern_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/stern_stripped_oak_log.png b/public/textures/chipped/stern_stripped_oak_log.png deleted file mode 100644 index 2a552ee4..00000000 Binary files a/public/textures/chipped/stern_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/stern_stripped_spruce_log.png b/public/textures/chipped/stern_stripped_spruce_log.png deleted file mode 100644 index 08d30bcc..00000000 Binary files a/public/textures/chipped/stern_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/stern_stripped_warped_stem.png b/public/textures/chipped/stern_stripped_warped_stem.png deleted file mode 100644 index 988f586d..00000000 Binary files a/public/textures/chipped/stern_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/sticky_melon.png b/public/textures/chipped/sticky_melon.png deleted file mode 100644 index 994ff5c4..00000000 Binary files a/public/textures/chipped/sticky_melon.png and /dev/null differ diff --git a/public/textures/chipped/stone_mini_tiles.png b/public/textures/chipped/stone_mini_tiles.png deleted file mode 100644 index 0ac8a181..00000000 Binary files a/public/textures/chipped/stone_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/stone_pillar.png b/public/textures/chipped/stone_pillar.png deleted file mode 100644 index 9a14726f..00000000 Binary files a/public/textures/chipped/stone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/stone_pillar_top.png b/public/textures/chipped/stone_pillar_top.png deleted file mode 100644 index 826bd1b5..00000000 Binary files a/public/textures/chipped/stone_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/stone_pointed_dripstone.png b/public/textures/chipped/stone_pointed_dripstone.png deleted file mode 100644 index 1e72e8f0..00000000 Binary files a/public/textures/chipped/stone_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/stone_scales.png b/public/textures/chipped/stone_scales.png deleted file mode 100644 index 44176566..00000000 Binary files a/public/textures/chipped/stone_scales.png and /dev/null differ diff --git a/public/textures/chipped/stop_black_concrete.png b/public/textures/chipped/stop_black_concrete.png deleted file mode 100644 index 744dce51..00000000 Binary files a/public/textures/chipped/stop_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_blue_concrete.png b/public/textures/chipped/stop_blue_concrete.png deleted file mode 100644 index 7ba42b5b..00000000 Binary files a/public/textures/chipped/stop_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_brown_concrete.png b/public/textures/chipped/stop_brown_concrete.png deleted file mode 100644 index cfc17745..00000000 Binary files a/public/textures/chipped/stop_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_cyan_concrete.png b/public/textures/chipped/stop_cyan_concrete.png deleted file mode 100644 index 7b44ffd6..00000000 Binary files a/public/textures/chipped/stop_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_gray_concrete.png b/public/textures/chipped/stop_gray_concrete.png deleted file mode 100644 index 60b7c2de..00000000 Binary files a/public/textures/chipped/stop_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_green_concrete.png b/public/textures/chipped/stop_green_concrete.png deleted file mode 100644 index 3e5d3877..00000000 Binary files a/public/textures/chipped/stop_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_light_blue_concrete.png b/public/textures/chipped/stop_light_blue_concrete.png deleted file mode 100644 index 7cd98ddd..00000000 Binary files a/public/textures/chipped/stop_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_light_gray_concrete.png b/public/textures/chipped/stop_light_gray_concrete.png deleted file mode 100644 index 4a55b2da..00000000 Binary files a/public/textures/chipped/stop_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_lime_concrete.png b/public/textures/chipped/stop_lime_concrete.png deleted file mode 100644 index 31371832..00000000 Binary files a/public/textures/chipped/stop_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_magenta_concrete.png b/public/textures/chipped/stop_magenta_concrete.png deleted file mode 100644 index c61ba169..00000000 Binary files a/public/textures/chipped/stop_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_orange_concrete.png b/public/textures/chipped/stop_orange_concrete.png deleted file mode 100644 index b55315c0..00000000 Binary files a/public/textures/chipped/stop_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_pink_concrete.png b/public/textures/chipped/stop_pink_concrete.png deleted file mode 100644 index 75418a66..00000000 Binary files a/public/textures/chipped/stop_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_purple_concrete.png b/public/textures/chipped/stop_purple_concrete.png deleted file mode 100644 index 88726b57..00000000 Binary files a/public/textures/chipped/stop_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_red_concrete.png b/public/textures/chipped/stop_red_concrete.png deleted file mode 100644 index 31f5bfc6..00000000 Binary files a/public/textures/chipped/stop_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_white_concrete.png b/public/textures/chipped/stop_white_concrete.png deleted file mode 100644 index d97624e9..00000000 Binary files a/public/textures/chipped/stop_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stop_yellow_concrete.png b/public/textures/chipped/stop_yellow_concrete.png deleted file mode 100644 index 892be55d..00000000 Binary files a/public/textures/chipped/stop_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/stretched_cobweb.png b/public/textures/chipped/stretched_cobweb.png deleted file mode 100644 index 5084fe7e..00000000 Binary files a/public/textures/chipped/stretched_cobweb.png and /dev/null differ diff --git a/public/textures/chipped/stringed_black_carpet.png b/public/textures/chipped/stringed_black_carpet.png deleted file mode 100644 index dfdd0eaf..00000000 Binary files a/public/textures/chipped/stringed_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_black_wool.png b/public/textures/chipped/stringed_black_wool.png deleted file mode 100644 index 19280f80..00000000 Binary files a/public/textures/chipped/stringed_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_blue_carpet.png b/public/textures/chipped/stringed_blue_carpet.png deleted file mode 100644 index ffbfc8e6..00000000 Binary files a/public/textures/chipped/stringed_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_blue_wool.png b/public/textures/chipped/stringed_blue_wool.png deleted file mode 100644 index 4bb427f6..00000000 Binary files a/public/textures/chipped/stringed_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_brown_carpet.png b/public/textures/chipped/stringed_brown_carpet.png deleted file mode 100644 index 4a989fb7..00000000 Binary files a/public/textures/chipped/stringed_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_brown_wool.png b/public/textures/chipped/stringed_brown_wool.png deleted file mode 100644 index 8859505d..00000000 Binary files a/public/textures/chipped/stringed_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_cyan_carpet.png b/public/textures/chipped/stringed_cyan_carpet.png deleted file mode 100644 index 81dbba53..00000000 Binary files a/public/textures/chipped/stringed_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_cyan_wool.png b/public/textures/chipped/stringed_cyan_wool.png deleted file mode 100644 index 8bed5128..00000000 Binary files a/public/textures/chipped/stringed_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_gray_carpet.png b/public/textures/chipped/stringed_gray_carpet.png deleted file mode 100644 index 5e418336..00000000 Binary files a/public/textures/chipped/stringed_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_gray_wool.png b/public/textures/chipped/stringed_gray_wool.png deleted file mode 100644 index bb6e0f9a..00000000 Binary files a/public/textures/chipped/stringed_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_green_carpet.png b/public/textures/chipped/stringed_green_carpet.png deleted file mode 100644 index 6c141d28..00000000 Binary files a/public/textures/chipped/stringed_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_green_wool.png b/public/textures/chipped/stringed_green_wool.png deleted file mode 100644 index 4ef3dbd0..00000000 Binary files a/public/textures/chipped/stringed_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_light_blue_carpet.png b/public/textures/chipped/stringed_light_blue_carpet.png deleted file mode 100644 index d068bd1e..00000000 Binary files a/public/textures/chipped/stringed_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_light_blue_wool.png b/public/textures/chipped/stringed_light_blue_wool.png deleted file mode 100644 index 4179efeb..00000000 Binary files a/public/textures/chipped/stringed_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_light_gray_carpet.png b/public/textures/chipped/stringed_light_gray_carpet.png deleted file mode 100644 index b8fbb467..00000000 Binary files a/public/textures/chipped/stringed_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_light_gray_wool.png b/public/textures/chipped/stringed_light_gray_wool.png deleted file mode 100644 index ed3dc245..00000000 Binary files a/public/textures/chipped/stringed_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_lime_carpet.png b/public/textures/chipped/stringed_lime_carpet.png deleted file mode 100644 index fd548f53..00000000 Binary files a/public/textures/chipped/stringed_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_lime_wool.png b/public/textures/chipped/stringed_lime_wool.png deleted file mode 100644 index 9d4699c0..00000000 Binary files a/public/textures/chipped/stringed_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_magenta_carpet.png b/public/textures/chipped/stringed_magenta_carpet.png deleted file mode 100644 index 6a8627fe..00000000 Binary files a/public/textures/chipped/stringed_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_magenta_wool.png b/public/textures/chipped/stringed_magenta_wool.png deleted file mode 100644 index 68edcb57..00000000 Binary files a/public/textures/chipped/stringed_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_orange_carpet.png b/public/textures/chipped/stringed_orange_carpet.png deleted file mode 100644 index b1838aca..00000000 Binary files a/public/textures/chipped/stringed_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_orange_wool.png b/public/textures/chipped/stringed_orange_wool.png deleted file mode 100644 index 03debf2a..00000000 Binary files a/public/textures/chipped/stringed_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_pink_carpet.png b/public/textures/chipped/stringed_pink_carpet.png deleted file mode 100644 index 2f1e3428..00000000 Binary files a/public/textures/chipped/stringed_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_pink_wool.png b/public/textures/chipped/stringed_pink_wool.png deleted file mode 100644 index ed585800..00000000 Binary files a/public/textures/chipped/stringed_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_purple_carpet.png b/public/textures/chipped/stringed_purple_carpet.png deleted file mode 100644 index be582799..00000000 Binary files a/public/textures/chipped/stringed_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_purple_wool.png b/public/textures/chipped/stringed_purple_wool.png deleted file mode 100644 index 8edf8abc..00000000 Binary files a/public/textures/chipped/stringed_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_red_carpet.png b/public/textures/chipped/stringed_red_carpet.png deleted file mode 100644 index 4eb78add..00000000 Binary files a/public/textures/chipped/stringed_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_red_wool.png b/public/textures/chipped/stringed_red_wool.png deleted file mode 100644 index 83434a31..00000000 Binary files a/public/textures/chipped/stringed_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_white_carpet.png b/public/textures/chipped/stringed_white_carpet.png deleted file mode 100644 index e831b8f8..00000000 Binary files a/public/textures/chipped/stringed_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_white_wool.png b/public/textures/chipped/stringed_white_wool.png deleted file mode 100644 index 70206b55..00000000 Binary files a/public/textures/chipped/stringed_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringed_yellow_carpet.png b/public/textures/chipped/stringed_yellow_carpet.png deleted file mode 100644 index be0f0de0..00000000 Binary files a/public/textures/chipped/stringed_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/stringed_yellow_wool.png b/public/textures/chipped/stringed_yellow_wool.png deleted file mode 100644 index 5717dc4a..00000000 Binary files a/public/textures/chipped/stringed_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/stringy_cobweb.png b/public/textures/chipped/stringy_cobweb.png deleted file mode 100644 index 95ba3421..00000000 Binary files a/public/textures/chipped/stringy_cobweb.png and /dev/null differ diff --git a/public/textures/chipped/striped_black_concrete.png b/public/textures/chipped/striped_black_concrete.png deleted file mode 100644 index f636cd07..00000000 Binary files a/public/textures/chipped/striped_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_blue_concrete.png b/public/textures/chipped/striped_blue_concrete.png deleted file mode 100644 index 693df14d..00000000 Binary files a/public/textures/chipped/striped_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_brown_concrete.png b/public/textures/chipped/striped_brown_concrete.png deleted file mode 100644 index 83824ada..00000000 Binary files a/public/textures/chipped/striped_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_cyan_concrete.png b/public/textures/chipped/striped_cyan_concrete.png deleted file mode 100644 index ff2c8d5c..00000000 Binary files a/public/textures/chipped/striped_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_gray_concrete.png b/public/textures/chipped/striped_gray_concrete.png deleted file mode 100644 index 711c5bf0..00000000 Binary files a/public/textures/chipped/striped_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_green_concrete.png b/public/textures/chipped/striped_green_concrete.png deleted file mode 100644 index bdb70442..00000000 Binary files a/public/textures/chipped/striped_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_light_blue_concrete.png b/public/textures/chipped/striped_light_blue_concrete.png deleted file mode 100644 index aa7a72d1..00000000 Binary files a/public/textures/chipped/striped_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_light_gray_concrete.png b/public/textures/chipped/striped_light_gray_concrete.png deleted file mode 100644 index 2c9c0cfa..00000000 Binary files a/public/textures/chipped/striped_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_lime_concrete.png b/public/textures/chipped/striped_lime_concrete.png deleted file mode 100644 index ca6449ea..00000000 Binary files a/public/textures/chipped/striped_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_magenta_concrete.png b/public/textures/chipped/striped_magenta_concrete.png deleted file mode 100644 index 4c13b30e..00000000 Binary files a/public/textures/chipped/striped_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_orange_concrete.png b/public/textures/chipped/striped_orange_concrete.png deleted file mode 100644 index aca90e8c..00000000 Binary files a/public/textures/chipped/striped_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_pink_concrete.png b/public/textures/chipped/striped_pink_concrete.png deleted file mode 100644 index 58e19ed2..00000000 Binary files a/public/textures/chipped/striped_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_purple_concrete.png b/public/textures/chipped/striped_purple_concrete.png deleted file mode 100644 index 61109921..00000000 Binary files a/public/textures/chipped/striped_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_red_concrete.png b/public/textures/chipped/striped_red_concrete.png deleted file mode 100644 index 933d373b..00000000 Binary files a/public/textures/chipped/striped_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_white_concrete.png b/public/textures/chipped/striped_white_concrete.png deleted file mode 100644 index b763f3a2..00000000 Binary files a/public/textures/chipped/striped_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/striped_yellow_concrete.png b/public/textures/chipped/striped_yellow_concrete.png deleted file mode 100644 index 11864cd7..00000000 Binary files a/public/textures/chipped/striped_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/strong_ladder.png b/public/textures/chipped/strong_ladder.png deleted file mode 100644 index 90d27634..00000000 Binary files a/public/textures/chipped/strong_ladder.png and /dev/null differ diff --git a/public/textures/chipped/sturdy_iron_bars.png b/public/textures/chipped/sturdy_iron_bars.png deleted file mode 100644 index c6ce331d..00000000 Binary files a/public/textures/chipped/sturdy_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/sugarcane_dried_kelp_block.png b/public/textures/chipped/sugarcane_dried_kelp_block.png deleted file mode 100644 index 98b86ba5..00000000 Binary files a/public/textures/chipped/sugarcane_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/sunny_melon.png b/public/textures/chipped/sunny_melon.png deleted file mode 100644 index e65a48ef..00000000 Binary files a/public/textures/chipped/sunny_melon.png and /dev/null differ diff --git a/public/textures/chipped/supported_acacia_door.png b/public/textures/chipped/supported_acacia_door.png deleted file mode 100644 index aefffa16..00000000 Binary files a/public/textures/chipped/supported_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/supported_bamboo_door.png b/public/textures/chipped/supported_bamboo_door.png deleted file mode 100644 index d50c88a1..00000000 Binary files a/public/textures/chipped/supported_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/supported_birch_door.png b/public/textures/chipped/supported_birch_door.png deleted file mode 100644 index e3081394..00000000 Binary files a/public/textures/chipped/supported_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/supported_cherry_door.png b/public/textures/chipped/supported_cherry_door.png deleted file mode 100644 index 3411882e..00000000 Binary files a/public/textures/chipped/supported_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/supported_dark_oak_door.png b/public/textures/chipped/supported_dark_oak_door.png deleted file mode 100644 index 40243b9e..00000000 Binary files a/public/textures/chipped/supported_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/supported_iron_bars.png b/public/textures/chipped/supported_iron_bars.png deleted file mode 100644 index d4796435..00000000 Binary files a/public/textures/chipped/supported_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/supported_jungle_door.png b/public/textures/chipped/supported_jungle_door.png deleted file mode 100644 index 33d74dbc..00000000 Binary files a/public/textures/chipped/supported_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/supported_mangrove_door.png b/public/textures/chipped/supported_mangrove_door.png deleted file mode 100644 index 89b28c5c..00000000 Binary files a/public/textures/chipped/supported_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/supported_oak_door.png b/public/textures/chipped/supported_oak_door.png deleted file mode 100644 index ee491512..00000000 Binary files a/public/textures/chipped/supported_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/supported_spruce_door.png b/public/textures/chipped/supported_spruce_door.png deleted file mode 100644 index f4adc794..00000000 Binary files a/public/textures/chipped/supported_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/supported_warped_door.png b/public/textures/chipped/supported_warped_door.png deleted file mode 100644 index f21a3d69..00000000 Binary files a/public/textures/chipped/supported_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_acacia_trapdoor.png b/public/textures/chipped/suspicious_acacia_trapdoor.png deleted file mode 100644 index 5d06446d..00000000 Binary files a/public/textures/chipped/suspicious_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_bamboo_trapdoor.png b/public/textures/chipped/suspicious_bamboo_trapdoor.png deleted file mode 100644 index cf47bd6e..00000000 Binary files a/public/textures/chipped/suspicious_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_birch_trapdoor.png b/public/textures/chipped/suspicious_birch_trapdoor.png deleted file mode 100644 index cb11a6f4..00000000 Binary files a/public/textures/chipped/suspicious_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_carved_pumpkin.png b/public/textures/chipped/suspicious_carved_pumpkin.png deleted file mode 100644 index a47c9c10..00000000 Binary files a/public/textures/chipped/suspicious_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_cherry_trapdoor.png b/public/textures/chipped/suspicious_cherry_trapdoor.png deleted file mode 100644 index 3a45372f..00000000 Binary files a/public/textures/chipped/suspicious_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_dark_oak_trapdoor.png b/public/textures/chipped/suspicious_dark_oak_trapdoor.png deleted file mode 100644 index 73568477..00000000 Binary files a/public/textures/chipped/suspicious_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_jack_o_lantern.png b/public/textures/chipped/suspicious_jack_o_lantern.png deleted file mode 100644 index 751fce94..00000000 Binary files a/public/textures/chipped/suspicious_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_jungle_trapdoor.png b/public/textures/chipped/suspicious_jungle_trapdoor.png deleted file mode 100644 index b56ea217..00000000 Binary files a/public/textures/chipped/suspicious_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_mangrove_trapdoor.png b/public/textures/chipped/suspicious_mangrove_trapdoor.png deleted file mode 100644 index 5dbf2f01..00000000 Binary files a/public/textures/chipped/suspicious_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_oak_trapdoor.png b/public/textures/chipped/suspicious_oak_trapdoor.png deleted file mode 100644 index a1da723b..00000000 Binary files a/public/textures/chipped/suspicious_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_spruce_trapdoor.png b/public/textures/chipped/suspicious_spruce_trapdoor.png deleted file mode 100644 index b5c63a3b..00000000 Binary files a/public/textures/chipped/suspicious_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/suspicious_warped_trapdoor.png b/public/textures/chipped/suspicious_warped_trapdoor.png deleted file mode 100644 index cf16c63d..00000000 Binary files a/public/textures/chipped/suspicious_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/swampy_hay_block.png b/public/textures/chipped/swampy_hay_block.png deleted file mode 100644 index b1f0ffd7..00000000 Binary files a/public/textures/chipped/swampy_hay_block.png and /dev/null differ diff --git a/public/textures/chipped/swampy_melon.png b/public/textures/chipped/swampy_melon.png deleted file mode 100644 index 980cfb36..00000000 Binary files a/public/textures/chipped/swampy_melon.png and /dev/null differ diff --git a/public/textures/chipped/sweet_melon.png b/public/textures/chipped/sweet_melon.png deleted file mode 100644 index 767985f3..00000000 Binary files a/public/textures/chipped/sweet_melon.png and /dev/null differ diff --git a/public/textures/chipped/symbol_mud.png b/public/textures/chipped/symbol_mud.png deleted file mode 100644 index dfac4c98..00000000 Binary files a/public/textures/chipped/symbol_mud.png and /dev/null differ diff --git a/public/textures/chipped/symbol_mud_bricks.png b/public/textures/chipped/symbol_mud_bricks.png deleted file mode 100644 index a538dd3b..00000000 Binary files a/public/textures/chipped/symbol_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/symbol_packed_mud.png b/public/textures/chipped/symbol_packed_mud.png deleted file mode 100644 index b8af72bf..00000000 Binary files a/public/textures/chipped/symbol_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/symbolic_mud_bricks_pillar.png b/public/textures/chipped/symbolic_mud_bricks_pillar.png deleted file mode 100644 index b242283b..00000000 Binary files a/public/textures/chipped/symbolic_mud_bricks_pillar.png and /dev/null differ diff --git a/public/textures/chipped/symbolic_mud_pillar.png b/public/textures/chipped/symbolic_mud_pillar.png deleted file mode 100644 index e3546ba9..00000000 Binary files a/public/textures/chipped/symbolic_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/symbolic_packed_mud_pillar.png b/public/textures/chipped/symbolic_packed_mud_pillar.png deleted file mode 100644 index abf70386..00000000 Binary files a/public/textures/chipped/symbolic_packed_mud_pillar.png and /dev/null differ diff --git a/public/textures/chipped/tall_lantern.png b/public/textures/chipped/tall_lantern.png deleted file mode 100644 index d2c006ba..00000000 Binary files a/public/textures/chipped/tall_lantern.png and /dev/null differ diff --git a/public/textures/chipped/tall_shroomy_nether_sprouts.png b/public/textures/chipped/tall_shroomy_nether_sprouts.png deleted file mode 100644 index 792ab1b8..00000000 Binary files a/public/textures/chipped/tall_shroomy_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/tall_soul_lantern.png b/public/textures/chipped/tall_soul_lantern.png deleted file mode 100644 index 62345cad..00000000 Binary files a/public/textures/chipped/tall_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/tar_sand.png b/public/textures/chipped/tar_sand.png deleted file mode 100644 index 69644f69..00000000 Binary files a/public/textures/chipped/tar_sand.png and /dev/null differ diff --git a/public/textures/chipped/terracotta_bricks.png b/public/textures/chipped/terracotta_bricks.png deleted file mode 100644 index fd575ae2..00000000 Binary files a/public/textures/chipped/terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/terracotta_column.png b/public/textures/chipped/terracotta_column.png deleted file mode 100644 index fa7be9f7..00000000 Binary files a/public/textures/chipped/terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/terracotta_pillar.png b/public/textures/chipped/terracotta_pillar.png deleted file mode 100644 index 8510671e..00000000 Binary files a/public/textures/chipped/terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/terracotta_tile.png b/public/textures/chipped/terracotta_tile.png deleted file mode 100644 index 14d6f764..00000000 Binary files a/public/textures/chipped/terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/terracotta_tiles.png b/public/textures/chipped/terracotta_tiles.png deleted file mode 100644 index 32ffa001..00000000 Binary files a/public/textures/chipped/terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/thicc_vine.png b/public/textures/chipped/thicc_vine.png deleted file mode 100644 index e0325fd1..00000000 Binary files a/public/textures/chipped/thicc_vine.png and /dev/null differ diff --git a/public/textures/chipped/thick_cobweb_floor.png b/public/textures/chipped/thick_cobweb_floor.png deleted file mode 100644 index 5062e952..00000000 Binary files a/public/textures/chipped/thick_cobweb_floor.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_amethyst_block.png b/public/textures/chipped/thick_inlayed_amethyst_block.png deleted file mode 100644 index b9e1e066..00000000 Binary files a/public/textures/chipped/thick_inlayed_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_ancient_debris.png b/public/textures/chipped/thick_inlayed_ancient_debris.png deleted file mode 100644 index 7485be54..00000000 Binary files a/public/textures/chipped/thick_inlayed_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_andesite.png b/public/textures/chipped/thick_inlayed_andesite.png deleted file mode 100644 index b81a053e..00000000 Binary files a/public/textures/chipped/thick_inlayed_andesite.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_basalt.png b/public/textures/chipped/thick_inlayed_basalt.png deleted file mode 100644 index 15cdaf12..00000000 Binary files a/public/textures/chipped/thick_inlayed_basalt.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_blackstone.png b/public/textures/chipped/thick_inlayed_blackstone.png deleted file mode 100644 index b24b47fe..00000000 Binary files a/public/textures/chipped/thick_inlayed_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_blue_ice.png b/public/textures/chipped/thick_inlayed_blue_ice.png deleted file mode 100644 index 1d40b0a2..00000000 Binary files a/public/textures/chipped/thick_inlayed_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_borderless_bricks.png b/public/textures/chipped/thick_inlayed_borderless_bricks.png deleted file mode 100644 index c483eda7..00000000 Binary files a/public/textures/chipped/thick_inlayed_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_bricks.png b/public/textures/chipped/thick_inlayed_bricks.png deleted file mode 100644 index d8ea3081..00000000 Binary files a/public/textures/chipped/thick_inlayed_bricks.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_calcite.png b/public/textures/chipped/thick_inlayed_calcite.png deleted file mode 100644 index a21793a1..00000000 Binary files a/public/textures/chipped/thick_inlayed_calcite.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_clay.png b/public/textures/chipped/thick_inlayed_clay.png deleted file mode 100644 index 7b885a6f..00000000 Binary files a/public/textures/chipped/thick_inlayed_clay.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_coal_block.png b/public/textures/chipped/thick_inlayed_coal_block.png deleted file mode 100644 index f5861377..00000000 Binary files a/public/textures/chipped/thick_inlayed_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_cobblestone.png b/public/textures/chipped/thick_inlayed_cobblestone.png deleted file mode 100644 index 636acb08..00000000 Binary files a/public/textures/chipped/thick_inlayed_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_crying_obsidian.png b/public/textures/chipped/thick_inlayed_crying_obsidian.png deleted file mode 100644 index af5d0d3b..00000000 Binary files a/public/textures/chipped/thick_inlayed_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_dark_prismarine.png b/public/textures/chipped/thick_inlayed_dark_prismarine.png deleted file mode 100644 index 45686f8b..00000000 Binary files a/public/textures/chipped/thick_inlayed_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_deepslate.png b/public/textures/chipped/thick_inlayed_deepslate.png deleted file mode 100644 index 5febb471..00000000 Binary files a/public/textures/chipped/thick_inlayed_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_diorite.png b/public/textures/chipped/thick_inlayed_diorite.png deleted file mode 100644 index c51354c5..00000000 Binary files a/public/textures/chipped/thick_inlayed_diorite.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_dirt.png b/public/textures/chipped/thick_inlayed_dirt.png deleted file mode 100644 index e245e3fa..00000000 Binary files a/public/textures/chipped/thick_inlayed_dirt.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_dripstone_block.png b/public/textures/chipped/thick_inlayed_dripstone_block.png deleted file mode 100644 index 3185ec3e..00000000 Binary files a/public/textures/chipped/thick_inlayed_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_end_stone.png b/public/textures/chipped/thick_inlayed_end_stone.png deleted file mode 100644 index 6b965795..00000000 Binary files a/public/textures/chipped/thick_inlayed_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_gilded_blackstone.png b/public/textures/chipped/thick_inlayed_gilded_blackstone.png deleted file mode 100644 index eb44a37a..00000000 Binary files a/public/textures/chipped/thick_inlayed_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_glowstone.png b/public/textures/chipped/thick_inlayed_glowstone.png deleted file mode 100644 index bbde61ab..00000000 Binary files a/public/textures/chipped/thick_inlayed_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_granite.png b/public/textures/chipped/thick_inlayed_granite.png deleted file mode 100644 index 05ae4a90..00000000 Binary files a/public/textures/chipped/thick_inlayed_granite.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_ice.png b/public/textures/chipped/thick_inlayed_ice.png deleted file mode 100644 index ecc16858..00000000 Binary files a/public/textures/chipped/thick_inlayed_ice.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_lapis_block.png b/public/textures/chipped/thick_inlayed_lapis_block.png deleted file mode 100644 index a2af4473..00000000 Binary files a/public/textures/chipped/thick_inlayed_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_lodestone.png b/public/textures/chipped/thick_inlayed_lodestone.png deleted file mode 100644 index b353aa8f..00000000 Binary files a/public/textures/chipped/thick_inlayed_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_magma_block.png b/public/textures/chipped/thick_inlayed_magma_block.png deleted file mode 100644 index 0cad1cef..00000000 Binary files a/public/textures/chipped/thick_inlayed_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_mossy_cobblestone.png b/public/textures/chipped/thick_inlayed_mossy_cobblestone.png deleted file mode 100644 index 8fb5895a..00000000 Binary files a/public/textures/chipped/thick_inlayed_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_mossy_stone_bricks.png b/public/textures/chipped/thick_inlayed_mossy_stone_bricks.png deleted file mode 100644 index 72ccd91c..00000000 Binary files a/public/textures/chipped/thick_inlayed_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_mud.png b/public/textures/chipped/thick_inlayed_mud.png deleted file mode 100644 index 67fa3a12..00000000 Binary files a/public/textures/chipped/thick_inlayed_mud.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_mud_bricks.png b/public/textures/chipped/thick_inlayed_mud_bricks.png deleted file mode 100644 index c0318f31..00000000 Binary files a/public/textures/chipped/thick_inlayed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_nether_bricks.png b/public/textures/chipped/thick_inlayed_nether_bricks.png deleted file mode 100644 index 68390dc5..00000000 Binary files a/public/textures/chipped/thick_inlayed_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_netherrack.png b/public/textures/chipped/thick_inlayed_netherrack.png deleted file mode 100644 index ef3ade0a..00000000 Binary files a/public/textures/chipped/thick_inlayed_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_obsidian.png b/public/textures/chipped/thick_inlayed_obsidian.png deleted file mode 100644 index e0d5ea38..00000000 Binary files a/public/textures/chipped/thick_inlayed_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_packed_ice.png b/public/textures/chipped/thick_inlayed_packed_ice.png deleted file mode 100644 index b885fe71..00000000 Binary files a/public/textures/chipped/thick_inlayed_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_packed_mud.png b/public/textures/chipped/thick_inlayed_packed_mud.png deleted file mode 100644 index 587e617a..00000000 Binary files a/public/textures/chipped/thick_inlayed_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_prismarine.png b/public/textures/chipped/thick_inlayed_prismarine.png deleted file mode 100644 index 8ebfbb71..00000000 Binary files a/public/textures/chipped/thick_inlayed_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_purpur_block.png b/public/textures/chipped/thick_inlayed_purpur_block.png deleted file mode 100644 index 1d69047b..00000000 Binary files a/public/textures/chipped/thick_inlayed_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_quartz_block.png b/public/textures/chipped/thick_inlayed_quartz_block.png deleted file mode 100644 index 7d65108f..00000000 Binary files a/public/textures/chipped/thick_inlayed_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_raw_copper_block.png b/public/textures/chipped/thick_inlayed_raw_copper_block.png deleted file mode 100644 index 1702fd28..00000000 Binary files a/public/textures/chipped/thick_inlayed_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_raw_gold_block.png b/public/textures/chipped/thick_inlayed_raw_gold_block.png deleted file mode 100644 index 043ef3bb..00000000 Binary files a/public/textures/chipped/thick_inlayed_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_raw_iron_block.png b/public/textures/chipped/thick_inlayed_raw_iron_block.png deleted file mode 100644 index c60880e5..00000000 Binary files a/public/textures/chipped/thick_inlayed_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_red_nether_bricks.png b/public/textures/chipped/thick_inlayed_red_nether_bricks.png deleted file mode 100644 index 2d02ab65..00000000 Binary files a/public/textures/chipped/thick_inlayed_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_red_sandstone.png b/public/textures/chipped/thick_inlayed_red_sandstone.png deleted file mode 100644 index 1ca30951..00000000 Binary files a/public/textures/chipped/thick_inlayed_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_redstone_block.png b/public/textures/chipped/thick_inlayed_redstone_block.png deleted file mode 100644 index 61f19727..00000000 Binary files a/public/textures/chipped/thick_inlayed_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_redstone_lamp.png b/public/textures/chipped/thick_inlayed_redstone_lamp.png deleted file mode 100644 index 99594e19..00000000 Binary files a/public/textures/chipped/thick_inlayed_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_sandstone.png b/public/textures/chipped/thick_inlayed_sandstone.png deleted file mode 100644 index ee941949..00000000 Binary files a/public/textures/chipped/thick_inlayed_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_sea_lantern.png b/public/textures/chipped/thick_inlayed_sea_lantern.png deleted file mode 100644 index b3192401..00000000 Binary files a/public/textures/chipped/thick_inlayed_sea_lantern.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_shroomlight.png b/public/textures/chipped/thick_inlayed_shroomlight.png deleted file mode 100644 index 44b33d70..00000000 Binary files a/public/textures/chipped/thick_inlayed_shroomlight.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_smooth_stone.png b/public/textures/chipped/thick_inlayed_smooth_stone.png deleted file mode 100644 index b19b12f5..00000000 Binary files a/public/textures/chipped/thick_inlayed_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_snow_block.png b/public/textures/chipped/thick_inlayed_snow_block.png deleted file mode 100644 index 19d3c574..00000000 Binary files a/public/textures/chipped/thick_inlayed_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_stone.png b/public/textures/chipped/thick_inlayed_stone.png deleted file mode 100644 index 4a0507ce..00000000 Binary files a/public/textures/chipped/thick_inlayed_stone.png and /dev/null differ diff --git a/public/textures/chipped/thick_inlayed_tuff.png b/public/textures/chipped/thick_inlayed_tuff.png deleted file mode 100644 index 558022e3..00000000 Binary files a/public/textures/chipped/thick_inlayed_tuff.png and /dev/null differ diff --git a/public/textures/chipped/thick_white_inlayed_redstone_lamp.png b/public/textures/chipped/thick_white_inlayed_redstone_lamp.png deleted file mode 100644 index dbc47006..00000000 Binary files a/public/textures/chipped/thick_white_inlayed_redstone_lamp.png and /dev/null differ diff --git a/public/textures/chipped/thin_acacia_planks.png b/public/textures/chipped/thin_acacia_planks.png deleted file mode 100644 index 5a26c0ba..00000000 Binary files a/public/textures/chipped/thin_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/thin_bamboo_planks.png b/public/textures/chipped/thin_bamboo_planks.png deleted file mode 100644 index 321db9b1..00000000 Binary files a/public/textures/chipped/thin_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/thin_birch_planks.png b/public/textures/chipped/thin_birch_planks.png deleted file mode 100644 index ab541cf0..00000000 Binary files a/public/textures/chipped/thin_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/thin_cherry_planks.png b/public/textures/chipped/thin_cherry_planks.png deleted file mode 100644 index 8e77e060..00000000 Binary files a/public/textures/chipped/thin_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/thin_crimson_planks.png b/public/textures/chipped/thin_crimson_planks.png deleted file mode 100644 index 5e3f5ffc..00000000 Binary files a/public/textures/chipped/thin_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/thin_dark_oak_planks.png b/public/textures/chipped/thin_dark_oak_planks.png deleted file mode 100644 index 56c1853d..00000000 Binary files a/public/textures/chipped/thin_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/thin_jungle_planks.png b/public/textures/chipped/thin_jungle_planks.png deleted file mode 100644 index 8c61948e..00000000 Binary files a/public/textures/chipped/thin_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/thin_mangrove_planks.png b/public/textures/chipped/thin_mangrove_planks.png deleted file mode 100644 index 6383e5b4..00000000 Binary files a/public/textures/chipped/thin_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/thin_mangrove_roots.png b/public/textures/chipped/thin_mangrove_roots.png deleted file mode 100644 index 2847c1af..00000000 Binary files a/public/textures/chipped/thin_mangrove_roots.png and /dev/null differ diff --git a/public/textures/chipped/thin_nether_sprouts.png b/public/textures/chipped/thin_nether_sprouts.png deleted file mode 100644 index 41a383a7..00000000 Binary files a/public/textures/chipped/thin_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/thin_oak_planks.png b/public/textures/chipped/thin_oak_planks.png deleted file mode 100644 index 9f95da2e..00000000 Binary files a/public/textures/chipped/thin_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/thin_spruce_planks.png b/public/textures/chipped/thin_spruce_planks.png deleted file mode 100644 index 94a9d500..00000000 Binary files a/public/textures/chipped/thin_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/thin_vine.png b/public/textures/chipped/thin_vine.png deleted file mode 100644 index 5645c6ed..00000000 Binary files a/public/textures/chipped/thin_vine.png and /dev/null differ diff --git a/public/textures/chipped/thin_warped_planks.png b/public/textures/chipped/thin_warped_planks.png deleted file mode 100644 index 31064366..00000000 Binary files a/public/textures/chipped/thin_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/thorned_iron_bars.png b/public/textures/chipped/thorned_iron_bars.png deleted file mode 100644 index bf53c459..00000000 Binary files a/public/textures/chipped/thorned_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/tied_bamboo_planks.png b/public/textures/chipped/tied_bamboo_planks.png deleted file mode 100644 index dffb93b4..00000000 Binary files a/public/textures/chipped/tied_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/tile_windowed_acacia_door.png b/public/textures/chipped/tile_windowed_acacia_door.png deleted file mode 100644 index 65c885fc..00000000 Binary files a/public/textures/chipped/tile_windowed_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/tile_windowed_bamboo_door.png b/public/textures/chipped/tile_windowed_bamboo_door.png deleted file mode 100644 index 4c31319c..00000000 Binary files a/public/textures/chipped/tile_windowed_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/tile_windowed_birch_door.png b/public/textures/chipped/tile_windowed_birch_door.png deleted file mode 100644 index ba4c650e..00000000 Binary files a/public/textures/chipped/tile_windowed_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/tile_windowed_cherry_door.png b/public/textures/chipped/tile_windowed_cherry_door.png deleted file mode 100644 index 8a051796..00000000 Binary files a/public/textures/chipped/tile_windowed_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/tile_windowed_crimson_door.png b/public/textures/chipped/tile_windowed_crimson_door.png deleted file mode 100644 index f8081649..00000000 Binary files a/public/textures/chipped/tile_windowed_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/tile_windowed_dark_oak_door.png b/public/textures/chipped/tile_windowed_dark_oak_door.png deleted file mode 100644 index 969a9048..00000000 Binary files a/public/textures/chipped/tile_windowed_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/tile_windowed_jungle_door.png b/public/textures/chipped/tile_windowed_jungle_door.png deleted file mode 100644 index b81463d8..00000000 Binary files a/public/textures/chipped/tile_windowed_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/tile_windowed_mangrove_door.png b/public/textures/chipped/tile_windowed_mangrove_door.png deleted file mode 100644 index 913508fb..00000000 Binary files a/public/textures/chipped/tile_windowed_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/tile_windowed_oak_door.png b/public/textures/chipped/tile_windowed_oak_door.png deleted file mode 100644 index adb020ee..00000000 Binary files a/public/textures/chipped/tile_windowed_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/tile_windowed_spruce_door.png b/public/textures/chipped/tile_windowed_spruce_door.png deleted file mode 100644 index adbfb1cf..00000000 Binary files a/public/textures/chipped/tile_windowed_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/tile_windowed_warped_door.png b/public/textures/chipped/tile_windowed_warped_door.png deleted file mode 100644 index eac44f31..00000000 Binary files a/public/textures/chipped/tile_windowed_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/tiled_acacia_door.png b/public/textures/chipped/tiled_acacia_door.png deleted file mode 100644 index a0c62f44..00000000 Binary files a/public/textures/chipped/tiled_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/tiled_acacia_planks.png b/public/textures/chipped/tiled_acacia_planks.png deleted file mode 100644 index 6aa873f3..00000000 Binary files a/public/textures/chipped/tiled_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_amethyst_block.png b/public/textures/chipped/tiled_amethyst_block.png deleted file mode 100644 index d0bb0993..00000000 Binary files a/public/textures/chipped/tiled_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_amethyst_block_column.png b/public/textures/chipped/tiled_amethyst_block_column.png deleted file mode 100644 index 1590c10b..00000000 Binary files a/public/textures/chipped/tiled_amethyst_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_ancient_debris.png b/public/textures/chipped/tiled_ancient_debris.png deleted file mode 100644 index fc7a6b0a..00000000 Binary files a/public/textures/chipped/tiled_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/tiled_ancient_debris_column.png b/public/textures/chipped/tiled_ancient_debris_column.png deleted file mode 100644 index 49b7840c..00000000 Binary files a/public/textures/chipped/tiled_ancient_debris_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_andesite.png b/public/textures/chipped/tiled_andesite.png deleted file mode 100644 index 9ad003d0..00000000 Binary files a/public/textures/chipped/tiled_andesite.png and /dev/null differ diff --git a/public/textures/chipped/tiled_andesite_column.png b/public/textures/chipped/tiled_andesite_column.png deleted file mode 100644 index 039d592a..00000000 Binary files a/public/textures/chipped/tiled_andesite_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bamboo_door.png b/public/textures/chipped/tiled_bamboo_door.png deleted file mode 100644 index 3155b251..00000000 Binary files a/public/textures/chipped/tiled_bamboo_door.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bamboo_planks.png b/public/textures/chipped/tiled_bamboo_planks.png deleted file mode 100644 index 6147d869..00000000 Binary files a/public/textures/chipped/tiled_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_basalt.png b/public/textures/chipped/tiled_basalt.png deleted file mode 100644 index e3fd282c..00000000 Binary files a/public/textures/chipped/tiled_basalt.png and /dev/null differ diff --git a/public/textures/chipped/tiled_basalt_column.png b/public/textures/chipped/tiled_basalt_column.png deleted file mode 100644 index 7754c204..00000000 Binary files a/public/textures/chipped/tiled_basalt_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_birch_door.png b/public/textures/chipped/tiled_birch_door.png deleted file mode 100644 index a6ecfa3f..00000000 Binary files a/public/textures/chipped/tiled_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/tiled_birch_planks.png b/public/textures/chipped/tiled_birch_planks.png deleted file mode 100644 index b74d7ab0..00000000 Binary files a/public/textures/chipped/tiled_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_black_carpet.png b/public/textures/chipped/tiled_black_carpet.png deleted file mode 100644 index 8c29e607..00000000 Binary files a/public/textures/chipped/tiled_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_black_stained_glass.png b/public/textures/chipped/tiled_black_stained_glass.png deleted file mode 100644 index 6369a91a..00000000 Binary files a/public/textures/chipped/tiled_black_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_black_stained_glass_pane.png b/public/textures/chipped/tiled_black_stained_glass_pane.png deleted file mode 100644 index 0d84a88a..00000000 Binary files a/public/textures/chipped/tiled_black_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_black_wool.png b/public/textures/chipped/tiled_black_wool.png deleted file mode 100644 index eaf4633d..00000000 Binary files a/public/textures/chipped/tiled_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_blackstone.png b/public/textures/chipped/tiled_blackstone.png deleted file mode 100644 index 80524abd..00000000 Binary files a/public/textures/chipped/tiled_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_blackstone_column.png b/public/textures/chipped/tiled_blackstone_column.png deleted file mode 100644 index 9f37ee68..00000000 Binary files a/public/textures/chipped/tiled_blackstone_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_blue_carpet.png b/public/textures/chipped/tiled_blue_carpet.png deleted file mode 100644 index d8b08bb0..00000000 Binary files a/public/textures/chipped/tiled_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_blue_ice.png b/public/textures/chipped/tiled_blue_ice.png deleted file mode 100644 index 2f300716..00000000 Binary files a/public/textures/chipped/tiled_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/tiled_blue_ice_column.png b/public/textures/chipped/tiled_blue_ice_column.png deleted file mode 100644 index 91e0daab..00000000 Binary files a/public/textures/chipped/tiled_blue_ice_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_blue_stained_glass.png b/public/textures/chipped/tiled_blue_stained_glass.png deleted file mode 100644 index b16115f4..00000000 Binary files a/public/textures/chipped/tiled_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_blue_stained_glass_pane.png b/public/textures/chipped/tiled_blue_stained_glass_pane.png deleted file mode 100644 index 2ca48ba6..00000000 Binary files a/public/textures/chipped/tiled_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_blue_wool.png b/public/textures/chipped/tiled_blue_wool.png deleted file mode 100644 index bd232140..00000000 Binary files a/public/textures/chipped/tiled_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bone_block.png b/public/textures/chipped/tiled_bone_block.png deleted file mode 100644 index 2e25b48d..00000000 Binary files a/public/textures/chipped/tiled_bone_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_amethyst_block.png b/public/textures/chipped/tiled_bordered_amethyst_block.png deleted file mode 100644 index 24cb96c9..00000000 Binary files a/public/textures/chipped/tiled_bordered_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_ancient_debris.png b/public/textures/chipped/tiled_bordered_ancient_debris.png deleted file mode 100644 index c11e0113..00000000 Binary files a/public/textures/chipped/tiled_bordered_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_andesite.png b/public/textures/chipped/tiled_bordered_andesite.png deleted file mode 100644 index 9d600c22..00000000 Binary files a/public/textures/chipped/tiled_bordered_andesite.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_basalt.png b/public/textures/chipped/tiled_bordered_basalt.png deleted file mode 100644 index 19422d60..00000000 Binary files a/public/textures/chipped/tiled_bordered_basalt.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_blackstone.png b/public/textures/chipped/tiled_bordered_blackstone.png deleted file mode 100644 index b87498a8..00000000 Binary files a/public/textures/chipped/tiled_bordered_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_blue_ice.png b/public/textures/chipped/tiled_bordered_blue_ice.png deleted file mode 100644 index 7e42acf0..00000000 Binary files a/public/textures/chipped/tiled_bordered_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_borderless_bricks.png b/public/textures/chipped/tiled_bordered_borderless_bricks.png deleted file mode 100644 index 504dcf7f..00000000 Binary files a/public/textures/chipped/tiled_bordered_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_bricks.png b/public/textures/chipped/tiled_bordered_bricks.png deleted file mode 100644 index 910012b5..00000000 Binary files a/public/textures/chipped/tiled_bordered_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_calcite.png b/public/textures/chipped/tiled_bordered_calcite.png deleted file mode 100644 index 1801ce22..00000000 Binary files a/public/textures/chipped/tiled_bordered_calcite.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_clay.png b/public/textures/chipped/tiled_bordered_clay.png deleted file mode 100644 index 97b3594f..00000000 Binary files a/public/textures/chipped/tiled_bordered_clay.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_coal_block.png b/public/textures/chipped/tiled_bordered_coal_block.png deleted file mode 100644 index b807c0b8..00000000 Binary files a/public/textures/chipped/tiled_bordered_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_cobblestone.png b/public/textures/chipped/tiled_bordered_cobblestone.png deleted file mode 100644 index fdeb6102..00000000 Binary files a/public/textures/chipped/tiled_bordered_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_crying_obsidian.png b/public/textures/chipped/tiled_bordered_crying_obsidian.png deleted file mode 100644 index a1f53542..00000000 Binary files a/public/textures/chipped/tiled_bordered_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_dark_prismarine.png b/public/textures/chipped/tiled_bordered_dark_prismarine.png deleted file mode 100644 index 318696fb..00000000 Binary files a/public/textures/chipped/tiled_bordered_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_deepslate.png b/public/textures/chipped/tiled_bordered_deepslate.png deleted file mode 100644 index 1146996a..00000000 Binary files a/public/textures/chipped/tiled_bordered_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_diorite.png b/public/textures/chipped/tiled_bordered_diorite.png deleted file mode 100644 index af3d87e6..00000000 Binary files a/public/textures/chipped/tiled_bordered_diorite.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_dirt.png b/public/textures/chipped/tiled_bordered_dirt.png deleted file mode 100644 index 47bf6bab..00000000 Binary files a/public/textures/chipped/tiled_bordered_dirt.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_dripstone_block.png b/public/textures/chipped/tiled_bordered_dripstone_block.png deleted file mode 100644 index fc5f03a4..00000000 Binary files a/public/textures/chipped/tiled_bordered_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_end_stone.png b/public/textures/chipped/tiled_bordered_end_stone.png deleted file mode 100644 index 57dab170..00000000 Binary files a/public/textures/chipped/tiled_bordered_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_gilded_blackstone.png b/public/textures/chipped/tiled_bordered_gilded_blackstone.png deleted file mode 100644 index 3a836f2c..00000000 Binary files a/public/textures/chipped/tiled_bordered_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_granite.png b/public/textures/chipped/tiled_bordered_granite.png deleted file mode 100644 index ebd52a4a..00000000 Binary files a/public/textures/chipped/tiled_bordered_granite.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_ice.png b/public/textures/chipped/tiled_bordered_ice.png deleted file mode 100644 index 9bb13a66..00000000 Binary files a/public/textures/chipped/tiled_bordered_ice.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_lapis_block.png b/public/textures/chipped/tiled_bordered_lapis_block.png deleted file mode 100644 index d5152973..00000000 Binary files a/public/textures/chipped/tiled_bordered_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_lodestone.png b/public/textures/chipped/tiled_bordered_lodestone.png deleted file mode 100644 index c0c030f1..00000000 Binary files a/public/textures/chipped/tiled_bordered_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_magma_block.png b/public/textures/chipped/tiled_bordered_magma_block.png deleted file mode 100644 index f66c11fa..00000000 Binary files a/public/textures/chipped/tiled_bordered_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_mossy_cobblestone.png b/public/textures/chipped/tiled_bordered_mossy_cobblestone.png deleted file mode 100644 index aabad7a0..00000000 Binary files a/public/textures/chipped/tiled_bordered_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_mossy_stone_bricks.png b/public/textures/chipped/tiled_bordered_mossy_stone_bricks.png deleted file mode 100644 index 762c0db4..00000000 Binary files a/public/textures/chipped/tiled_bordered_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_mud.png b/public/textures/chipped/tiled_bordered_mud.png deleted file mode 100644 index 3048b1bc..00000000 Binary files a/public/textures/chipped/tiled_bordered_mud.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_mud_bricks.png b/public/textures/chipped/tiled_bordered_mud_bricks.png deleted file mode 100644 index 0797a703..00000000 Binary files a/public/textures/chipped/tiled_bordered_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_nether_bricks.png b/public/textures/chipped/tiled_bordered_nether_bricks.png deleted file mode 100644 index a6ab5a06..00000000 Binary files a/public/textures/chipped/tiled_bordered_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_netherrack.png b/public/textures/chipped/tiled_bordered_netherrack.png deleted file mode 100644 index 6cc65655..00000000 Binary files a/public/textures/chipped/tiled_bordered_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_obsidian.png b/public/textures/chipped/tiled_bordered_obsidian.png deleted file mode 100644 index 77674010..00000000 Binary files a/public/textures/chipped/tiled_bordered_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_packed_ice.png b/public/textures/chipped/tiled_bordered_packed_ice.png deleted file mode 100644 index 828255dd..00000000 Binary files a/public/textures/chipped/tiled_bordered_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_packed_mud.png b/public/textures/chipped/tiled_bordered_packed_mud.png deleted file mode 100644 index c8c4d7b9..00000000 Binary files a/public/textures/chipped/tiled_bordered_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_prismarine.png b/public/textures/chipped/tiled_bordered_prismarine.png deleted file mode 100644 index a5779e60..00000000 Binary files a/public/textures/chipped/tiled_bordered_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_purpur_block.png b/public/textures/chipped/tiled_bordered_purpur_block.png deleted file mode 100644 index 2f3dece1..00000000 Binary files a/public/textures/chipped/tiled_bordered_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_quartz_block.png b/public/textures/chipped/tiled_bordered_quartz_block.png deleted file mode 100644 index d1081ba0..00000000 Binary files a/public/textures/chipped/tiled_bordered_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_raw_copper_block.png b/public/textures/chipped/tiled_bordered_raw_copper_block.png deleted file mode 100644 index 3beed592..00000000 Binary files a/public/textures/chipped/tiled_bordered_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_raw_gold_block.png b/public/textures/chipped/tiled_bordered_raw_gold_block.png deleted file mode 100644 index c07595be..00000000 Binary files a/public/textures/chipped/tiled_bordered_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_raw_iron_block.png b/public/textures/chipped/tiled_bordered_raw_iron_block.png deleted file mode 100644 index e7fb53c0..00000000 Binary files a/public/textures/chipped/tiled_bordered_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_red_nether_bricks.png b/public/textures/chipped/tiled_bordered_red_nether_bricks.png deleted file mode 100644 index 940a228c..00000000 Binary files a/public/textures/chipped/tiled_bordered_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_red_sandstone.png b/public/textures/chipped/tiled_bordered_red_sandstone.png deleted file mode 100644 index 9b1011c4..00000000 Binary files a/public/textures/chipped/tiled_bordered_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_redstone_block.png b/public/textures/chipped/tiled_bordered_redstone_block.png deleted file mode 100644 index ca93489f..00000000 Binary files a/public/textures/chipped/tiled_bordered_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_sandstone.png b/public/textures/chipped/tiled_bordered_sandstone.png deleted file mode 100644 index b23813d3..00000000 Binary files a/public/textures/chipped/tiled_bordered_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_smooth_stone.png b/public/textures/chipped/tiled_bordered_smooth_stone.png deleted file mode 100644 index c5922d26..00000000 Binary files a/public/textures/chipped/tiled_bordered_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_snow_block.png b/public/textures/chipped/tiled_bordered_snow_block.png deleted file mode 100644 index 00a80719..00000000 Binary files a/public/textures/chipped/tiled_bordered_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_stone.png b/public/textures/chipped/tiled_bordered_stone.png deleted file mode 100644 index dc5a5489..00000000 Binary files a/public/textures/chipped/tiled_bordered_stone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bordered_tuff.png b/public/textures/chipped/tiled_bordered_tuff.png deleted file mode 100644 index c26b04ea..00000000 Binary files a/public/textures/chipped/tiled_bordered_tuff.png and /dev/null differ diff --git a/public/textures/chipped/tiled_borderless_bricks.png b/public/textures/chipped/tiled_borderless_bricks.png deleted file mode 100644 index 860423ae..00000000 Binary files a/public/textures/chipped/tiled_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_borderless_bricks_column.png b/public/textures/chipped/tiled_borderless_bricks_column.png deleted file mode 100644 index a95e6a13..00000000 Binary files a/public/textures/chipped/tiled_borderless_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bricks.png b/public/textures/chipped/tiled_bricks.png deleted file mode 100644 index ea18a435..00000000 Binary files a/public/textures/chipped/tiled_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_bricks_column.png b/public/textures/chipped/tiled_bricks_column.png deleted file mode 100644 index dedce2ba..00000000 Binary files a/public/textures/chipped/tiled_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_brown_carpet.png b/public/textures/chipped/tiled_brown_carpet.png deleted file mode 100644 index 017c8dee..00000000 Binary files a/public/textures/chipped/tiled_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_brown_stained_glass.png b/public/textures/chipped/tiled_brown_stained_glass.png deleted file mode 100644 index 8ae8e35a..00000000 Binary files a/public/textures/chipped/tiled_brown_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_brown_stained_glass_pane.png b/public/textures/chipped/tiled_brown_stained_glass_pane.png deleted file mode 100644 index b3bb6ccd..00000000 Binary files a/public/textures/chipped/tiled_brown_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_brown_wool.png b/public/textures/chipped/tiled_brown_wool.png deleted file mode 100644 index cc89492f..00000000 Binary files a/public/textures/chipped/tiled_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_calcite.png b/public/textures/chipped/tiled_calcite.png deleted file mode 100644 index 35b0c1ff..00000000 Binary files a/public/textures/chipped/tiled_calcite.png and /dev/null differ diff --git a/public/textures/chipped/tiled_calcite_column.png b/public/textures/chipped/tiled_calcite_column.png deleted file mode 100644 index 0b16b03a..00000000 Binary files a/public/textures/chipped/tiled_calcite_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_cherry_door.png b/public/textures/chipped/tiled_cherry_door.png deleted file mode 100644 index c8d93f38..00000000 Binary files a/public/textures/chipped/tiled_cherry_door.png and /dev/null differ diff --git a/public/textures/chipped/tiled_cherry_planks.png b/public/textures/chipped/tiled_cherry_planks.png deleted file mode 100644 index 99ba8614..00000000 Binary files a/public/textures/chipped/tiled_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_clay.png b/public/textures/chipped/tiled_clay.png deleted file mode 100644 index 6b8d305b..00000000 Binary files a/public/textures/chipped/tiled_clay.png and /dev/null differ diff --git a/public/textures/chipped/tiled_clay_column.png b/public/textures/chipped/tiled_clay_column.png deleted file mode 100644 index 292cbafa..00000000 Binary files a/public/textures/chipped/tiled_clay_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_coal_block.png b/public/textures/chipped/tiled_coal_block.png deleted file mode 100644 index a9f82ce1..00000000 Binary files a/public/textures/chipped/tiled_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_coal_block_column.png b/public/textures/chipped/tiled_coal_block_column.png deleted file mode 100644 index 4cfc12d6..00000000 Binary files a/public/textures/chipped/tiled_coal_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_cobblestone.png b/public/textures/chipped/tiled_cobblestone.png deleted file mode 100644 index fc6696b9..00000000 Binary files a/public/textures/chipped/tiled_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_cobblestone_column.png b/public/textures/chipped/tiled_cobblestone_column.png deleted file mode 100644 index 77c4b37f..00000000 Binary files a/public/textures/chipped/tiled_cobblestone_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_crimson_door.png b/public/textures/chipped/tiled_crimson_door.png deleted file mode 100644 index 8d088795..00000000 Binary files a/public/textures/chipped/tiled_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/tiled_crimson_planks.png b/public/textures/chipped/tiled_crimson_planks.png deleted file mode 100644 index bdf9883d..00000000 Binary files a/public/textures/chipped/tiled_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_crying_obsidian.png b/public/textures/chipped/tiled_crying_obsidian.png deleted file mode 100644 index abf5c67e..00000000 Binary files a/public/textures/chipped/tiled_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/tiled_crying_obsidian_column.png b/public/textures/chipped/tiled_crying_obsidian_column.png deleted file mode 100644 index cca8afe3..00000000 Binary files a/public/textures/chipped/tiled_crying_obsidian_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_cyan_carpet.png b/public/textures/chipped/tiled_cyan_carpet.png deleted file mode 100644 index 444c9541..00000000 Binary files a/public/textures/chipped/tiled_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_cyan_stained_glass.png b/public/textures/chipped/tiled_cyan_stained_glass.png deleted file mode 100644 index 21603fbe..00000000 Binary files a/public/textures/chipped/tiled_cyan_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_cyan_stained_glass_pane.png b/public/textures/chipped/tiled_cyan_stained_glass_pane.png deleted file mode 100644 index 01d100d8..00000000 Binary files a/public/textures/chipped/tiled_cyan_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_cyan_wool.png b/public/textures/chipped/tiled_cyan_wool.png deleted file mode 100644 index 00e77165..00000000 Binary files a/public/textures/chipped/tiled_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_dark_oak_door.png b/public/textures/chipped/tiled_dark_oak_door.png deleted file mode 100644 index 8cfc00b4..00000000 Binary files a/public/textures/chipped/tiled_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/tiled_dark_oak_planks.png b/public/textures/chipped/tiled_dark_oak_planks.png deleted file mode 100644 index 8ec7fb12..00000000 Binary files a/public/textures/chipped/tiled_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_dark_prismarine.png b/public/textures/chipped/tiled_dark_prismarine.png deleted file mode 100644 index 026864ea..00000000 Binary files a/public/textures/chipped/tiled_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/tiled_dark_prismarine_column.png b/public/textures/chipped/tiled_dark_prismarine_column.png deleted file mode 100644 index 41e09146..00000000 Binary files a/public/textures/chipped/tiled_dark_prismarine_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_deepslate.png b/public/textures/chipped/tiled_deepslate.png deleted file mode 100644 index ae632cb2..00000000 Binary files a/public/textures/chipped/tiled_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/tiled_deepslate_column.png b/public/textures/chipped/tiled_deepslate_column.png deleted file mode 100644 index 3a6fe16d..00000000 Binary files a/public/textures/chipped/tiled_deepslate_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_diorite.png b/public/textures/chipped/tiled_diorite.png deleted file mode 100644 index a0724a71..00000000 Binary files a/public/textures/chipped/tiled_diorite.png and /dev/null differ diff --git a/public/textures/chipped/tiled_diorite_column.png b/public/textures/chipped/tiled_diorite_column.png deleted file mode 100644 index f42228f1..00000000 Binary files a/public/textures/chipped/tiled_diorite_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_dirt.png b/public/textures/chipped/tiled_dirt.png deleted file mode 100644 index 063d2f8a..00000000 Binary files a/public/textures/chipped/tiled_dirt.png and /dev/null differ diff --git a/public/textures/chipped/tiled_dirt_column.png b/public/textures/chipped/tiled_dirt_column.png deleted file mode 100644 index 8f9fd7bb..00000000 Binary files a/public/textures/chipped/tiled_dirt_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_dripstone_block.png b/public/textures/chipped/tiled_dripstone_block.png deleted file mode 100644 index 4c8a12b2..00000000 Binary files a/public/textures/chipped/tiled_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_dripstone_block_column.png b/public/textures/chipped/tiled_dripstone_block_column.png deleted file mode 100644 index e5203227..00000000 Binary files a/public/textures/chipped/tiled_dripstone_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_end_stone.png b/public/textures/chipped/tiled_end_stone.png deleted file mode 100644 index a5a830f7..00000000 Binary files a/public/textures/chipped/tiled_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_end_stone_column.png b/public/textures/chipped/tiled_end_stone_column.png deleted file mode 100644 index cd071698..00000000 Binary files a/public/textures/chipped/tiled_end_stone_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_gilded_blackstone.png b/public/textures/chipped/tiled_gilded_blackstone.png deleted file mode 100644 index 122cee59..00000000 Binary files a/public/textures/chipped/tiled_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_gilded_blackstone_column.png b/public/textures/chipped/tiled_gilded_blackstone_column.png deleted file mode 100644 index 871a5725..00000000 Binary files a/public/textures/chipped/tiled_gilded_blackstone_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_glowstone_pillar.png b/public/textures/chipped/tiled_glowstone_pillar.png deleted file mode 100644 index 4567dd6a..00000000 Binary files a/public/textures/chipped/tiled_glowstone_pillar.png and /dev/null differ diff --git a/public/textures/chipped/tiled_granite.png b/public/textures/chipped/tiled_granite.png deleted file mode 100644 index 40a57193..00000000 Binary files a/public/textures/chipped/tiled_granite.png and /dev/null differ diff --git a/public/textures/chipped/tiled_granite_column.png b/public/textures/chipped/tiled_granite_column.png deleted file mode 100644 index bf2e4f03..00000000 Binary files a/public/textures/chipped/tiled_granite_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_gray_carpet.png b/public/textures/chipped/tiled_gray_carpet.png deleted file mode 100644 index dbe27731..00000000 Binary files a/public/textures/chipped/tiled_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_gray_stained_glass.png b/public/textures/chipped/tiled_gray_stained_glass.png deleted file mode 100644 index d473b26a..00000000 Binary files a/public/textures/chipped/tiled_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_gray_stained_glass_pane.png b/public/textures/chipped/tiled_gray_stained_glass_pane.png deleted file mode 100644 index 1930cdba..00000000 Binary files a/public/textures/chipped/tiled_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_gray_wool.png b/public/textures/chipped/tiled_gray_wool.png deleted file mode 100644 index 3c8c91c4..00000000 Binary files a/public/textures/chipped/tiled_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_green_carpet.png b/public/textures/chipped/tiled_green_carpet.png deleted file mode 100644 index 442ef65b..00000000 Binary files a/public/textures/chipped/tiled_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_green_stained_glass.png b/public/textures/chipped/tiled_green_stained_glass.png deleted file mode 100644 index b662c8e4..00000000 Binary files a/public/textures/chipped/tiled_green_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_green_stained_glass_pane.png b/public/textures/chipped/tiled_green_stained_glass_pane.png deleted file mode 100644 index 1b104be4..00000000 Binary files a/public/textures/chipped/tiled_green_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_green_wool.png b/public/textures/chipped/tiled_green_wool.png deleted file mode 100644 index 6bb83437..00000000 Binary files a/public/textures/chipped/tiled_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_ice.png b/public/textures/chipped/tiled_ice.png deleted file mode 100644 index ebdb8e75..00000000 Binary files a/public/textures/chipped/tiled_ice.png and /dev/null differ diff --git a/public/textures/chipped/tiled_ice_column.png b/public/textures/chipped/tiled_ice_column.png deleted file mode 100644 index 07927bd3..00000000 Binary files a/public/textures/chipped/tiled_ice_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_jungle_door.png b/public/textures/chipped/tiled_jungle_door.png deleted file mode 100644 index 9beb544a..00000000 Binary files a/public/textures/chipped/tiled_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/tiled_jungle_planks.png b/public/textures/chipped/tiled_jungle_planks.png deleted file mode 100644 index f0a4c2b9..00000000 Binary files a/public/textures/chipped/tiled_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_lapis_block.png b/public/textures/chipped/tiled_lapis_block.png deleted file mode 100644 index ec13deb5..00000000 Binary files a/public/textures/chipped/tiled_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_lapis_block_column.png b/public/textures/chipped/tiled_lapis_block_column.png deleted file mode 100644 index 1b83890c..00000000 Binary files a/public/textures/chipped/tiled_lapis_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_light_blue_carpet.png b/public/textures/chipped/tiled_light_blue_carpet.png deleted file mode 100644 index 2c2b1420..00000000 Binary files a/public/textures/chipped/tiled_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_light_blue_stained_glass.png b/public/textures/chipped/tiled_light_blue_stained_glass.png deleted file mode 100644 index 0a10671d..00000000 Binary files a/public/textures/chipped/tiled_light_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_light_blue_stained_glass_pane.png b/public/textures/chipped/tiled_light_blue_stained_glass_pane.png deleted file mode 100644 index 151ed351..00000000 Binary files a/public/textures/chipped/tiled_light_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_light_blue_wool.png b/public/textures/chipped/tiled_light_blue_wool.png deleted file mode 100644 index d87b5022..00000000 Binary files a/public/textures/chipped/tiled_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_light_gray_carpet.png b/public/textures/chipped/tiled_light_gray_carpet.png deleted file mode 100644 index 5b0aa067..00000000 Binary files a/public/textures/chipped/tiled_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_light_gray_stained_glass.png b/public/textures/chipped/tiled_light_gray_stained_glass.png deleted file mode 100644 index d903fdfe..00000000 Binary files a/public/textures/chipped/tiled_light_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_light_gray_stained_glass_pane.png b/public/textures/chipped/tiled_light_gray_stained_glass_pane.png deleted file mode 100644 index 50a43482..00000000 Binary files a/public/textures/chipped/tiled_light_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_light_gray_wool.png b/public/textures/chipped/tiled_light_gray_wool.png deleted file mode 100644 index c40bab74..00000000 Binary files a/public/textures/chipped/tiled_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_lime_carpet.png b/public/textures/chipped/tiled_lime_carpet.png deleted file mode 100644 index d47b6945..00000000 Binary files a/public/textures/chipped/tiled_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_lime_stained_glass.png b/public/textures/chipped/tiled_lime_stained_glass.png deleted file mode 100644 index ba0e11ab..00000000 Binary files a/public/textures/chipped/tiled_lime_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_lime_stained_glass_pane.png b/public/textures/chipped/tiled_lime_stained_glass_pane.png deleted file mode 100644 index 48b0c2bf..00000000 Binary files a/public/textures/chipped/tiled_lime_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_lime_wool.png b/public/textures/chipped/tiled_lime_wool.png deleted file mode 100644 index 92e7a3ce..00000000 Binary files a/public/textures/chipped/tiled_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_lodestone.png b/public/textures/chipped/tiled_lodestone.png deleted file mode 100644 index 69c9ac13..00000000 Binary files a/public/textures/chipped/tiled_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_lodestone_column.png b/public/textures/chipped/tiled_lodestone_column.png deleted file mode 100644 index 3315b2f3..00000000 Binary files a/public/textures/chipped/tiled_lodestone_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_magenta_carpet.png b/public/textures/chipped/tiled_magenta_carpet.png deleted file mode 100644 index d9bf0b6e..00000000 Binary files a/public/textures/chipped/tiled_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_magenta_stained_glass.png b/public/textures/chipped/tiled_magenta_stained_glass.png deleted file mode 100644 index 85ed682b..00000000 Binary files a/public/textures/chipped/tiled_magenta_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_magenta_stained_glass_pane.png b/public/textures/chipped/tiled_magenta_stained_glass_pane.png deleted file mode 100644 index 666599df..00000000 Binary files a/public/textures/chipped/tiled_magenta_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_magenta_wool.png b/public/textures/chipped/tiled_magenta_wool.png deleted file mode 100644 index 302618b5..00000000 Binary files a/public/textures/chipped/tiled_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_magma_block.png b/public/textures/chipped/tiled_magma_block.png deleted file mode 100644 index 013246ee..00000000 Binary files a/public/textures/chipped/tiled_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_magma_block_column.png b/public/textures/chipped/tiled_magma_block_column.png deleted file mode 100644 index 0e8eaf4d..00000000 Binary files a/public/textures/chipped/tiled_magma_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_mangrove_planks.png b/public/textures/chipped/tiled_mangrove_planks.png deleted file mode 100644 index c44d433d..00000000 Binary files a/public/textures/chipped/tiled_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_mossy_cobblestone.png b/public/textures/chipped/tiled_mossy_cobblestone.png deleted file mode 100644 index 6f8ab82c..00000000 Binary files a/public/textures/chipped/tiled_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_mossy_cobblestone_column.png b/public/textures/chipped/tiled_mossy_cobblestone_column.png deleted file mode 100644 index 80c1b102..00000000 Binary files a/public/textures/chipped/tiled_mossy_cobblestone_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_mossy_stone_bricks.png b/public/textures/chipped/tiled_mossy_stone_bricks.png deleted file mode 100644 index 3933f179..00000000 Binary files a/public/textures/chipped/tiled_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_mossy_stone_bricks_column.png b/public/textures/chipped/tiled_mossy_stone_bricks_column.png deleted file mode 100644 index 02a04c5d..00000000 Binary files a/public/textures/chipped/tiled_mossy_stone_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_mud_bricks.png b/public/textures/chipped/tiled_mud_bricks.png deleted file mode 100644 index 21cf95f3..00000000 Binary files a/public/textures/chipped/tiled_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_mud_bricks_bricks.png b/public/textures/chipped/tiled_mud_bricks_bricks.png deleted file mode 100644 index 4ee8f477..00000000 Binary files a/public/textures/chipped/tiled_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_mud_bricks_column.png b/public/textures/chipped/tiled_mud_bricks_column.png deleted file mode 100644 index f0fc0bb5..00000000 Binary files a/public/textures/chipped/tiled_mud_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_mud_column.png b/public/textures/chipped/tiled_mud_column.png deleted file mode 100644 index d623dc7d..00000000 Binary files a/public/textures/chipped/tiled_mud_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_nether_bricks.png b/public/textures/chipped/tiled_nether_bricks.png deleted file mode 100644 index 28ae9616..00000000 Binary files a/public/textures/chipped/tiled_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_nether_bricks_column.png b/public/textures/chipped/tiled_nether_bricks_column.png deleted file mode 100644 index c2880147..00000000 Binary files a/public/textures/chipped/tiled_nether_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_netherrack.png b/public/textures/chipped/tiled_netherrack.png deleted file mode 100644 index 4f91f778..00000000 Binary files a/public/textures/chipped/tiled_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/tiled_netherrack_column.png b/public/textures/chipped/tiled_netherrack_column.png deleted file mode 100644 index c9df7200..00000000 Binary files a/public/textures/chipped/tiled_netherrack_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_oak_door.png b/public/textures/chipped/tiled_oak_door.png deleted file mode 100644 index 37e4ba27..00000000 Binary files a/public/textures/chipped/tiled_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/tiled_oak_planks.png b/public/textures/chipped/tiled_oak_planks.png deleted file mode 100644 index 7e9e4b37..00000000 Binary files a/public/textures/chipped/tiled_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_obsidian.png b/public/textures/chipped/tiled_obsidian.png deleted file mode 100644 index 2e53c236..00000000 Binary files a/public/textures/chipped/tiled_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/tiled_obsidian_column.png b/public/textures/chipped/tiled_obsidian_column.png deleted file mode 100644 index e1f0b962..00000000 Binary files a/public/textures/chipped/tiled_obsidian_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_orange_carpet.png b/public/textures/chipped/tiled_orange_carpet.png deleted file mode 100644 index c7f58921..00000000 Binary files a/public/textures/chipped/tiled_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_orange_stained_glass.png b/public/textures/chipped/tiled_orange_stained_glass.png deleted file mode 100644 index d88aa337..00000000 Binary files a/public/textures/chipped/tiled_orange_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_orange_stained_glass_pane.png b/public/textures/chipped/tiled_orange_stained_glass_pane.png deleted file mode 100644 index 06c28eec..00000000 Binary files a/public/textures/chipped/tiled_orange_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_orange_wool.png b/public/textures/chipped/tiled_orange_wool.png deleted file mode 100644 index 3cb678c5..00000000 Binary files a/public/textures/chipped/tiled_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_packed_ice.png b/public/textures/chipped/tiled_packed_ice.png deleted file mode 100644 index ed81fb12..00000000 Binary files a/public/textures/chipped/tiled_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/tiled_packed_ice_column.png b/public/textures/chipped/tiled_packed_ice_column.png deleted file mode 100644 index 0f83f2ba..00000000 Binary files a/public/textures/chipped/tiled_packed_ice_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_packed_mud_bricks.png b/public/textures/chipped/tiled_packed_mud_bricks.png deleted file mode 100644 index a3b7138f..00000000 Binary files a/public/textures/chipped/tiled_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_packed_mud_column.png b/public/textures/chipped/tiled_packed_mud_column.png deleted file mode 100644 index 5ab43795..00000000 Binary files a/public/textures/chipped/tiled_packed_mud_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_pink_carpet.png b/public/textures/chipped/tiled_pink_carpet.png deleted file mode 100644 index 0a2c75db..00000000 Binary files a/public/textures/chipped/tiled_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_pink_stained_glass.png b/public/textures/chipped/tiled_pink_stained_glass.png deleted file mode 100644 index 40c60837..00000000 Binary files a/public/textures/chipped/tiled_pink_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_pink_stained_glass_pane.png b/public/textures/chipped/tiled_pink_stained_glass_pane.png deleted file mode 100644 index 051bb95a..00000000 Binary files a/public/textures/chipped/tiled_pink_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_pink_wool.png b/public/textures/chipped/tiled_pink_wool.png deleted file mode 100644 index 8463057d..00000000 Binary files a/public/textures/chipped/tiled_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_prismarine.png b/public/textures/chipped/tiled_prismarine.png deleted file mode 100644 index e3c03886..00000000 Binary files a/public/textures/chipped/tiled_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/tiled_prismarine_column.png b/public/textures/chipped/tiled_prismarine_column.png deleted file mode 100644 index 633c5604..00000000 Binary files a/public/textures/chipped/tiled_prismarine_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_purple_carpet.png b/public/textures/chipped/tiled_purple_carpet.png deleted file mode 100644 index 0fc6dce9..00000000 Binary files a/public/textures/chipped/tiled_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_purple_stained_glass.png b/public/textures/chipped/tiled_purple_stained_glass.png deleted file mode 100644 index 15571c62..00000000 Binary files a/public/textures/chipped/tiled_purple_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_purple_stained_glass_pane.png b/public/textures/chipped/tiled_purple_stained_glass_pane.png deleted file mode 100644 index 303b901b..00000000 Binary files a/public/textures/chipped/tiled_purple_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_purple_wool.png b/public/textures/chipped/tiled_purple_wool.png deleted file mode 100644 index de4e3cef..00000000 Binary files a/public/textures/chipped/tiled_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_purpur_block.png b/public/textures/chipped/tiled_purpur_block.png deleted file mode 100644 index 7178bf3c..00000000 Binary files a/public/textures/chipped/tiled_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_purpur_block_column.png b/public/textures/chipped/tiled_purpur_block_column.png deleted file mode 100644 index 5fa9c0fa..00000000 Binary files a/public/textures/chipped/tiled_purpur_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_quartz_block.png b/public/textures/chipped/tiled_quartz_block.png deleted file mode 100644 index 1e7beb23..00000000 Binary files a/public/textures/chipped/tiled_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_quartz_block_column.png b/public/textures/chipped/tiled_quartz_block_column.png deleted file mode 100644 index 406b5951..00000000 Binary files a/public/textures/chipped/tiled_quartz_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_raw_copper_block.png b/public/textures/chipped/tiled_raw_copper_block.png deleted file mode 100644 index 9953c3b5..00000000 Binary files a/public/textures/chipped/tiled_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_raw_copper_block_column.png b/public/textures/chipped/tiled_raw_copper_block_column.png deleted file mode 100644 index d9a5bb46..00000000 Binary files a/public/textures/chipped/tiled_raw_copper_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_raw_gold_block.png b/public/textures/chipped/tiled_raw_gold_block.png deleted file mode 100644 index d8e36733..00000000 Binary files a/public/textures/chipped/tiled_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_raw_gold_block_column.png b/public/textures/chipped/tiled_raw_gold_block_column.png deleted file mode 100644 index 6cbd74ef..00000000 Binary files a/public/textures/chipped/tiled_raw_gold_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_raw_iron_block.png b/public/textures/chipped/tiled_raw_iron_block.png deleted file mode 100644 index fe14a028..00000000 Binary files a/public/textures/chipped/tiled_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_raw_iron_block_column.png b/public/textures/chipped/tiled_raw_iron_block_column.png deleted file mode 100644 index 1646f8be..00000000 Binary files a/public/textures/chipped/tiled_raw_iron_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_red_carpet.png b/public/textures/chipped/tiled_red_carpet.png deleted file mode 100644 index 09bc6186..00000000 Binary files a/public/textures/chipped/tiled_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_red_nether_bricks.png b/public/textures/chipped/tiled_red_nether_bricks.png deleted file mode 100644 index f4195747..00000000 Binary files a/public/textures/chipped/tiled_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_red_nether_bricks_column.png b/public/textures/chipped/tiled_red_nether_bricks_column.png deleted file mode 100644 index 37f6f734..00000000 Binary files a/public/textures/chipped/tiled_red_nether_bricks_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_red_sandstone.png b/public/textures/chipped/tiled_red_sandstone.png deleted file mode 100644 index f6d03e2f..00000000 Binary files a/public/textures/chipped/tiled_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_red_sandstone_column.png b/public/textures/chipped/tiled_red_sandstone_column.png deleted file mode 100644 index 88a91e65..00000000 Binary files a/public/textures/chipped/tiled_red_sandstone_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_red_stained_glass.png b/public/textures/chipped/tiled_red_stained_glass.png deleted file mode 100644 index ed2b0078..00000000 Binary files a/public/textures/chipped/tiled_red_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_red_stained_glass_pane.png b/public/textures/chipped/tiled_red_stained_glass_pane.png deleted file mode 100644 index 570c20a5..00000000 Binary files a/public/textures/chipped/tiled_red_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_red_wool.png b/public/textures/chipped/tiled_red_wool.png deleted file mode 100644 index 2da9bd15..00000000 Binary files a/public/textures/chipped/tiled_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_redstone_block.png b/public/textures/chipped/tiled_redstone_block.png deleted file mode 100644 index 779697d2..00000000 Binary files a/public/textures/chipped/tiled_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_redstone_block_column.png b/public/textures/chipped/tiled_redstone_block_column.png deleted file mode 100644 index 14f69e94..00000000 Binary files a/public/textures/chipped/tiled_redstone_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_sandstone.png b/public/textures/chipped/tiled_sandstone.png deleted file mode 100644 index 76d28b9f..00000000 Binary files a/public/textures/chipped/tiled_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_sandstone_column.png b/public/textures/chipped/tiled_sandstone_column.png deleted file mode 100644 index aa294b5e..00000000 Binary files a/public/textures/chipped/tiled_sandstone_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_sea_lantern_pillar.png b/public/textures/chipped/tiled_sea_lantern_pillar.png deleted file mode 100644 index b0bbc82c..00000000 Binary files a/public/textures/chipped/tiled_sea_lantern_pillar.png and /dev/null differ diff --git a/public/textures/chipped/tiled_shroomlight_pillar.png b/public/textures/chipped/tiled_shroomlight_pillar.png deleted file mode 100644 index 0bd5d991..00000000 Binary files a/public/textures/chipped/tiled_shroomlight_pillar.png and /dev/null differ diff --git a/public/textures/chipped/tiled_smooth_stone.png b/public/textures/chipped/tiled_smooth_stone.png deleted file mode 100644 index 83b6e163..00000000 Binary files a/public/textures/chipped/tiled_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_smooth_stone_column.png b/public/textures/chipped/tiled_smooth_stone_column.png deleted file mode 100644 index 9efe73d9..00000000 Binary files a/public/textures/chipped/tiled_smooth_stone_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_snow_block.png b/public/textures/chipped/tiled_snow_block.png deleted file mode 100644 index 27c9e776..00000000 Binary files a/public/textures/chipped/tiled_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/tiled_snow_block_column.png b/public/textures/chipped/tiled_snow_block_column.png deleted file mode 100644 index f3a6ba7f..00000000 Binary files a/public/textures/chipped/tiled_snow_block_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_spruce_door.png b/public/textures/chipped/tiled_spruce_door.png deleted file mode 100644 index 115ec2ee..00000000 Binary files a/public/textures/chipped/tiled_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/tiled_spruce_planks.png b/public/textures/chipped/tiled_spruce_planks.png deleted file mode 100644 index e79a7289..00000000 Binary files a/public/textures/chipped/tiled_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_stone.png b/public/textures/chipped/tiled_stone.png deleted file mode 100644 index 322b30ba..00000000 Binary files a/public/textures/chipped/tiled_stone.png and /dev/null differ diff --git a/public/textures/chipped/tiled_stone_column.png b/public/textures/chipped/tiled_stone_column.png deleted file mode 100644 index a9e58c8f..00000000 Binary files a/public/textures/chipped/tiled_stone_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_tuff.png b/public/textures/chipped/tiled_tuff.png deleted file mode 100644 index debc9928..00000000 Binary files a/public/textures/chipped/tiled_tuff.png and /dev/null differ diff --git a/public/textures/chipped/tiled_tuff_column.png b/public/textures/chipped/tiled_tuff_column.png deleted file mode 100644 index 67a71fd4..00000000 Binary files a/public/textures/chipped/tiled_tuff_column.png and /dev/null differ diff --git a/public/textures/chipped/tiled_warped_door.png b/public/textures/chipped/tiled_warped_door.png deleted file mode 100644 index acc94229..00000000 Binary files a/public/textures/chipped/tiled_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/tiled_warped_planks.png b/public/textures/chipped/tiled_warped_planks.png deleted file mode 100644 index b1235689..00000000 Binary files a/public/textures/chipped/tiled_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/tiled_white_carpet.png b/public/textures/chipped/tiled_white_carpet.png deleted file mode 100644 index 71baa1f2..00000000 Binary files a/public/textures/chipped/tiled_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_white_stained_glass.png b/public/textures/chipped/tiled_white_stained_glass.png deleted file mode 100644 index 3a4ec199..00000000 Binary files a/public/textures/chipped/tiled_white_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_white_stained_glass_pane.png b/public/textures/chipped/tiled_white_stained_glass_pane.png deleted file mode 100644 index 5758b72c..00000000 Binary files a/public/textures/chipped/tiled_white_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_white_wool.png b/public/textures/chipped/tiled_white_wool.png deleted file mode 100644 index 874f2246..00000000 Binary files a/public/textures/chipped/tiled_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/tiled_yellow_carpet.png b/public/textures/chipped/tiled_yellow_carpet.png deleted file mode 100644 index 3c68a9e1..00000000 Binary files a/public/textures/chipped/tiled_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tiled_yellow_stained_glass.png b/public/textures/chipped/tiled_yellow_stained_glass.png deleted file mode 100644 index 2610fcb0..00000000 Binary files a/public/textures/chipped/tiled_yellow_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/tiled_yellow_stained_glass_pane.png b/public/textures/chipped/tiled_yellow_stained_glass_pane.png deleted file mode 100644 index 97962668..00000000 Binary files a/public/textures/chipped/tiled_yellow_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/tiled_yellow_wool.png b/public/textures/chipped/tiled_yellow_wool.png deleted file mode 100644 index 4860f6d8..00000000 Binary files a/public/textures/chipped/tiled_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/tinkering_table.png b/public/textures/chipped/tinkering_table.png deleted file mode 100644 index ccb942b8..00000000 Binary files a/public/textures/chipped/tinkering_table.png and /dev/null differ diff --git a/public/textures/chipped/tiny_amethyst_block_bricks.png b/public/textures/chipped/tiny_amethyst_block_bricks.png deleted file mode 100644 index 5aa97e58..00000000 Binary files a/public/textures/chipped/tiny_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_ancient_debris_bricks.png b/public/textures/chipped/tiny_ancient_debris_bricks.png deleted file mode 100644 index 5c61e4c4..00000000 Binary files a/public/textures/chipped/tiny_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_andesite_bricks.png b/public/textures/chipped/tiny_andesite_bricks.png deleted file mode 100644 index ea129996..00000000 Binary files a/public/textures/chipped/tiny_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_basalt_bricks.png b/public/textures/chipped/tiny_basalt_bricks.png deleted file mode 100644 index dff00f1a..00000000 Binary files a/public/textures/chipped/tiny_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_blackstone_bricks.png b/public/textures/chipped/tiny_blackstone_bricks.png deleted file mode 100644 index b421c2fc..00000000 Binary files a/public/textures/chipped/tiny_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_blue_ice_bricks.png b/public/textures/chipped/tiny_blue_ice_bricks.png deleted file mode 100644 index 9f3be164..00000000 Binary files a/public/textures/chipped/tiny_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_borderless_bricks_bricks.png b/public/textures/chipped/tiny_borderless_bricks_bricks.png deleted file mode 100644 index 8bb036da..00000000 Binary files a/public/textures/chipped/tiny_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_amethyst_block.png b/public/textures/chipped/tiny_brick_bordered_amethyst_block.png deleted file mode 100644 index 63aa8af5..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_ancient_debris.png b/public/textures/chipped/tiny_brick_bordered_ancient_debris.png deleted file mode 100644 index dfb3d7d0..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_andesite.png b/public/textures/chipped/tiny_brick_bordered_andesite.png deleted file mode 100644 index 3d31dd22..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_andesite.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_basalt.png b/public/textures/chipped/tiny_brick_bordered_basalt.png deleted file mode 100644 index 0c082810..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_basalt.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_blackstone.png b/public/textures/chipped/tiny_brick_bordered_blackstone.png deleted file mode 100644 index d7937579..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_blue_ice.png b/public/textures/chipped/tiny_brick_bordered_blue_ice.png deleted file mode 100644 index c82f6eb9..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_borderless_bricks.png b/public/textures/chipped/tiny_brick_bordered_borderless_bricks.png deleted file mode 100644 index 7dae7506..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_bricks.png b/public/textures/chipped/tiny_brick_bordered_bricks.png deleted file mode 100644 index 88678248..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_calcite.png b/public/textures/chipped/tiny_brick_bordered_calcite.png deleted file mode 100644 index 48d9527a..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_calcite.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_clay.png b/public/textures/chipped/tiny_brick_bordered_clay.png deleted file mode 100644 index 98f5d768..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_clay.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_coal_block.png b/public/textures/chipped/tiny_brick_bordered_coal_block.png deleted file mode 100644 index 5ed2b138..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_cobblestone.png b/public/textures/chipped/tiny_brick_bordered_cobblestone.png deleted file mode 100644 index f1d99744..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_crying_obsidian.png b/public/textures/chipped/tiny_brick_bordered_crying_obsidian.png deleted file mode 100644 index b541d7b9..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_dark_prismarine.png b/public/textures/chipped/tiny_brick_bordered_dark_prismarine.png deleted file mode 100644 index a1a452c2..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_deepslate.png b/public/textures/chipped/tiny_brick_bordered_deepslate.png deleted file mode 100644 index 9e5ef02c..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_diorite.png b/public/textures/chipped/tiny_brick_bordered_diorite.png deleted file mode 100644 index d561bd31..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_diorite.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_dirt.png b/public/textures/chipped/tiny_brick_bordered_dirt.png deleted file mode 100644 index 5e4b7e3a..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_dirt.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_dripstone_block.png b/public/textures/chipped/tiny_brick_bordered_dripstone_block.png deleted file mode 100644 index 4da6bf52..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_end_stone.png b/public/textures/chipped/tiny_brick_bordered_end_stone.png deleted file mode 100644 index 0196d149..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_gilded_blackstone.png b/public/textures/chipped/tiny_brick_bordered_gilded_blackstone.png deleted file mode 100644 index 7aefb84a..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_granite.png b/public/textures/chipped/tiny_brick_bordered_granite.png deleted file mode 100644 index 652a8cbe..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_granite.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_ice.png b/public/textures/chipped/tiny_brick_bordered_ice.png deleted file mode 100644 index 4f9f5059..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_ice.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_lapis_block.png b/public/textures/chipped/tiny_brick_bordered_lapis_block.png deleted file mode 100644 index ff9b7359..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_lodestone.png b/public/textures/chipped/tiny_brick_bordered_lodestone.png deleted file mode 100644 index 25b66387..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_magma_block.png b/public/textures/chipped/tiny_brick_bordered_magma_block.png deleted file mode 100644 index fd3b63f3..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_mossy_cobblestone.png b/public/textures/chipped/tiny_brick_bordered_mossy_cobblestone.png deleted file mode 100644 index ffc97e09..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_mossy_stone_bricks.png b/public/textures/chipped/tiny_brick_bordered_mossy_stone_bricks.png deleted file mode 100644 index 5928e697..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_nether_bricks.png b/public/textures/chipped/tiny_brick_bordered_nether_bricks.png deleted file mode 100644 index 9fa1352b..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_netherrack.png b/public/textures/chipped/tiny_brick_bordered_netherrack.png deleted file mode 100644 index f1d7aa88..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_obsidian.png b/public/textures/chipped/tiny_brick_bordered_obsidian.png deleted file mode 100644 index 475d9498..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_packed_ice.png b/public/textures/chipped/tiny_brick_bordered_packed_ice.png deleted file mode 100644 index 5d3ef66c..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_prismarine.png b/public/textures/chipped/tiny_brick_bordered_prismarine.png deleted file mode 100644 index 50ba4f24..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_purpur_block.png b/public/textures/chipped/tiny_brick_bordered_purpur_block.png deleted file mode 100644 index 92abea33..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_quartz_block.png b/public/textures/chipped/tiny_brick_bordered_quartz_block.png deleted file mode 100644 index fabd1d1b..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_raw_copper_block.png b/public/textures/chipped/tiny_brick_bordered_raw_copper_block.png deleted file mode 100644 index b2a5f54c..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_raw_gold_block.png b/public/textures/chipped/tiny_brick_bordered_raw_gold_block.png deleted file mode 100644 index cba1cc91..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_raw_iron_block.png b/public/textures/chipped/tiny_brick_bordered_raw_iron_block.png deleted file mode 100644 index 7b279dfb..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_red_nether_bricks.png b/public/textures/chipped/tiny_brick_bordered_red_nether_bricks.png deleted file mode 100644 index 65f0c9e2..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_red_sandstone.png b/public/textures/chipped/tiny_brick_bordered_red_sandstone.png deleted file mode 100644 index 12584fc3..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_redstone_block.png b/public/textures/chipped/tiny_brick_bordered_redstone_block.png deleted file mode 100644 index 530a3dcd..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_sandstone.png b/public/textures/chipped/tiny_brick_bordered_sandstone.png deleted file mode 100644 index d3698a38..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_smooth_stone.png b/public/textures/chipped/tiny_brick_bordered_smooth_stone.png deleted file mode 100644 index 2d16fd9e..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_snow_block.png b/public/textures/chipped/tiny_brick_bordered_snow_block.png deleted file mode 100644 index cce166af..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_stone.png b/public/textures/chipped/tiny_brick_bordered_stone.png deleted file mode 100644 index 9df01bcb..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_stone.png and /dev/null differ diff --git a/public/textures/chipped/tiny_brick_bordered_tuff.png b/public/textures/chipped/tiny_brick_bordered_tuff.png deleted file mode 100644 index 56c27c9a..00000000 Binary files a/public/textures/chipped/tiny_brick_bordered_tuff.png and /dev/null differ diff --git a/public/textures/chipped/tiny_bricks_bricks.png b/public/textures/chipped/tiny_bricks_bricks.png deleted file mode 100644 index adbc501f..00000000 Binary files a/public/textures/chipped/tiny_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_calcite_bricks.png b/public/textures/chipped/tiny_calcite_bricks.png deleted file mode 100644 index 28dc59bb..00000000 Binary files a/public/textures/chipped/tiny_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_clay_bricks.png b/public/textures/chipped/tiny_clay_bricks.png deleted file mode 100644 index ebd9b902..00000000 Binary files a/public/textures/chipped/tiny_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_coal_block_bricks.png b/public/textures/chipped/tiny_coal_block_bricks.png deleted file mode 100644 index 290c26b0..00000000 Binary files a/public/textures/chipped/tiny_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_cobblestone_bricks.png b/public/textures/chipped/tiny_cobblestone_bricks.png deleted file mode 100644 index e1f1ea5b..00000000 Binary files a/public/textures/chipped/tiny_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_crying_obsidian_bricks.png b/public/textures/chipped/tiny_crying_obsidian_bricks.png deleted file mode 100644 index 4be0be9c..00000000 Binary files a/public/textures/chipped/tiny_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_dark_prismarine_bricks.png b/public/textures/chipped/tiny_dark_prismarine_bricks.png deleted file mode 100644 index 658d13f6..00000000 Binary files a/public/textures/chipped/tiny_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_deepslate_bricks.png b/public/textures/chipped/tiny_deepslate_bricks.png deleted file mode 100644 index 2a4f3554..00000000 Binary files a/public/textures/chipped/tiny_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_diorite_bricks.png b/public/textures/chipped/tiny_diorite_bricks.png deleted file mode 100644 index 3b2e756e..00000000 Binary files a/public/textures/chipped/tiny_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_dirt_bricks.png b/public/textures/chipped/tiny_dirt_bricks.png deleted file mode 100644 index 9e461265..00000000 Binary files a/public/textures/chipped/tiny_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_dripstone_block_bricks.png b/public/textures/chipped/tiny_dripstone_block_bricks.png deleted file mode 100644 index f6b6a333..00000000 Binary files a/public/textures/chipped/tiny_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_end_stone_bricks.png b/public/textures/chipped/tiny_end_stone_bricks.png deleted file mode 100644 index 81e0c5bb..00000000 Binary files a/public/textures/chipped/tiny_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_gilded_blackstone_bricks.png b/public/textures/chipped/tiny_gilded_blackstone_bricks.png deleted file mode 100644 index 0f43ddfb..00000000 Binary files a/public/textures/chipped/tiny_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_granite_bricks.png b/public/textures/chipped/tiny_granite_bricks.png deleted file mode 100644 index 96bd86c6..00000000 Binary files a/public/textures/chipped/tiny_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_ice_bricks.png b/public/textures/chipped/tiny_ice_bricks.png deleted file mode 100644 index 8b67944a..00000000 Binary files a/public/textures/chipped/tiny_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_lapis_block_bricks.png b/public/textures/chipped/tiny_lapis_block_bricks.png deleted file mode 100644 index ed4a5e32..00000000 Binary files a/public/textures/chipped/tiny_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_amethyst_block_bricks.png b/public/textures/chipped/tiny_layered_amethyst_block_bricks.png deleted file mode 100644 index ae1501d0..00000000 Binary files a/public/textures/chipped/tiny_layered_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_amethyst_block_slabs.png b/public/textures/chipped/tiny_layered_amethyst_block_slabs.png deleted file mode 100644 index 0bfd2d1f..00000000 Binary files a/public/textures/chipped/tiny_layered_amethyst_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_ancient_debris_bricks.png b/public/textures/chipped/tiny_layered_ancient_debris_bricks.png deleted file mode 100644 index 33ad59e8..00000000 Binary files a/public/textures/chipped/tiny_layered_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_ancient_debris_slabs.png b/public/textures/chipped/tiny_layered_ancient_debris_slabs.png deleted file mode 100644 index 7daa434c..00000000 Binary files a/public/textures/chipped/tiny_layered_ancient_debris_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_andesite_bricks.png b/public/textures/chipped/tiny_layered_andesite_bricks.png deleted file mode 100644 index bb9396c7..00000000 Binary files a/public/textures/chipped/tiny_layered_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_andesite_slabs.png b/public/textures/chipped/tiny_layered_andesite_slabs.png deleted file mode 100644 index 0257bd48..00000000 Binary files a/public/textures/chipped/tiny_layered_andesite_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_basalt_bricks.png b/public/textures/chipped/tiny_layered_basalt_bricks.png deleted file mode 100644 index fea35fea..00000000 Binary files a/public/textures/chipped/tiny_layered_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_basalt_slabs.png b/public/textures/chipped/tiny_layered_basalt_slabs.png deleted file mode 100644 index d2904caa..00000000 Binary files a/public/textures/chipped/tiny_layered_basalt_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_blackstone_bricks.png b/public/textures/chipped/tiny_layered_blackstone_bricks.png deleted file mode 100644 index ca0ab18b..00000000 Binary files a/public/textures/chipped/tiny_layered_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_blackstone_slabs.png b/public/textures/chipped/tiny_layered_blackstone_slabs.png deleted file mode 100644 index 7a5506a4..00000000 Binary files a/public/textures/chipped/tiny_layered_blackstone_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_blue_ice_bricks.png b/public/textures/chipped/tiny_layered_blue_ice_bricks.png deleted file mode 100644 index fdda05ad..00000000 Binary files a/public/textures/chipped/tiny_layered_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_blue_ice_slabs.png b/public/textures/chipped/tiny_layered_blue_ice_slabs.png deleted file mode 100644 index 5e804bd4..00000000 Binary files a/public/textures/chipped/tiny_layered_blue_ice_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_borderless_bricks_bricks.png b/public/textures/chipped/tiny_layered_borderless_bricks_bricks.png deleted file mode 100644 index e5a44293..00000000 Binary files a/public/textures/chipped/tiny_layered_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_borderless_bricks_slabs.png b/public/textures/chipped/tiny_layered_borderless_bricks_slabs.png deleted file mode 100644 index 83307e9c..00000000 Binary files a/public/textures/chipped/tiny_layered_borderless_bricks_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_bricks_bricks.png b/public/textures/chipped/tiny_layered_bricks_bricks.png deleted file mode 100644 index 60e2571a..00000000 Binary files a/public/textures/chipped/tiny_layered_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_bricks_slabs.png b/public/textures/chipped/tiny_layered_bricks_slabs.png deleted file mode 100644 index ccdbd027..00000000 Binary files a/public/textures/chipped/tiny_layered_bricks_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_calcite_bricks.png b/public/textures/chipped/tiny_layered_calcite_bricks.png deleted file mode 100644 index 8c1240f8..00000000 Binary files a/public/textures/chipped/tiny_layered_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_calcite_slabs.png b/public/textures/chipped/tiny_layered_calcite_slabs.png deleted file mode 100644 index a3c3558f..00000000 Binary files a/public/textures/chipped/tiny_layered_calcite_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_clay_bricks.png b/public/textures/chipped/tiny_layered_clay_bricks.png deleted file mode 100644 index e58b3892..00000000 Binary files a/public/textures/chipped/tiny_layered_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_clay_slabs.png b/public/textures/chipped/tiny_layered_clay_slabs.png deleted file mode 100644 index 6c3e96f3..00000000 Binary files a/public/textures/chipped/tiny_layered_clay_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_coal_block_bricks.png b/public/textures/chipped/tiny_layered_coal_block_bricks.png deleted file mode 100644 index e2cc21bc..00000000 Binary files a/public/textures/chipped/tiny_layered_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_coal_block_slabs.png b/public/textures/chipped/tiny_layered_coal_block_slabs.png deleted file mode 100644 index 2b2075d0..00000000 Binary files a/public/textures/chipped/tiny_layered_coal_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_cobblestone_bricks.png b/public/textures/chipped/tiny_layered_cobblestone_bricks.png deleted file mode 100644 index 2e672e6d..00000000 Binary files a/public/textures/chipped/tiny_layered_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_cobblestone_slabs.png b/public/textures/chipped/tiny_layered_cobblestone_slabs.png deleted file mode 100644 index be80eea5..00000000 Binary files a/public/textures/chipped/tiny_layered_cobblestone_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_crying_obsidian_bricks.png b/public/textures/chipped/tiny_layered_crying_obsidian_bricks.png deleted file mode 100644 index 5d763aba..00000000 Binary files a/public/textures/chipped/tiny_layered_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_crying_obsidian_slabs.png b/public/textures/chipped/tiny_layered_crying_obsidian_slabs.png deleted file mode 100644 index fd06d56c..00000000 Binary files a/public/textures/chipped/tiny_layered_crying_obsidian_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_dark_prismarine_bricks.png b/public/textures/chipped/tiny_layered_dark_prismarine_bricks.png deleted file mode 100644 index 131abfd8..00000000 Binary files a/public/textures/chipped/tiny_layered_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_dark_prismarine_slabs.png b/public/textures/chipped/tiny_layered_dark_prismarine_slabs.png deleted file mode 100644 index fe147a82..00000000 Binary files a/public/textures/chipped/tiny_layered_dark_prismarine_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_deepslate_bricks.png b/public/textures/chipped/tiny_layered_deepslate_bricks.png deleted file mode 100644 index 58591b18..00000000 Binary files a/public/textures/chipped/tiny_layered_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_deepslate_slabs.png b/public/textures/chipped/tiny_layered_deepslate_slabs.png deleted file mode 100644 index a23c7e2f..00000000 Binary files a/public/textures/chipped/tiny_layered_deepslate_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_diorite_bricks.png b/public/textures/chipped/tiny_layered_diorite_bricks.png deleted file mode 100644 index b325dcf2..00000000 Binary files a/public/textures/chipped/tiny_layered_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_diorite_slabs.png b/public/textures/chipped/tiny_layered_diorite_slabs.png deleted file mode 100644 index 26b1d23f..00000000 Binary files a/public/textures/chipped/tiny_layered_diorite_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_dirt_bricks.png b/public/textures/chipped/tiny_layered_dirt_bricks.png deleted file mode 100644 index 159d7a2a..00000000 Binary files a/public/textures/chipped/tiny_layered_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_dirt_slabs.png b/public/textures/chipped/tiny_layered_dirt_slabs.png deleted file mode 100644 index 59d89fb5..00000000 Binary files a/public/textures/chipped/tiny_layered_dirt_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_dripstone_block_bricks.png b/public/textures/chipped/tiny_layered_dripstone_block_bricks.png deleted file mode 100644 index 46570237..00000000 Binary files a/public/textures/chipped/tiny_layered_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_dripstone_block_slabs.png b/public/textures/chipped/tiny_layered_dripstone_block_slabs.png deleted file mode 100644 index 0ad52d33..00000000 Binary files a/public/textures/chipped/tiny_layered_dripstone_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_end_stone_bricks.png b/public/textures/chipped/tiny_layered_end_stone_bricks.png deleted file mode 100644 index 1a294c83..00000000 Binary files a/public/textures/chipped/tiny_layered_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_end_stone_slabs.png b/public/textures/chipped/tiny_layered_end_stone_slabs.png deleted file mode 100644 index 457e8812..00000000 Binary files a/public/textures/chipped/tiny_layered_end_stone_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_gilded_blackstone_bricks.png b/public/textures/chipped/tiny_layered_gilded_blackstone_bricks.png deleted file mode 100644 index 8b8c6387..00000000 Binary files a/public/textures/chipped/tiny_layered_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_gilded_blackstone_slabs.png b/public/textures/chipped/tiny_layered_gilded_blackstone_slabs.png deleted file mode 100644 index 7f792b54..00000000 Binary files a/public/textures/chipped/tiny_layered_gilded_blackstone_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_granite_bricks.png b/public/textures/chipped/tiny_layered_granite_bricks.png deleted file mode 100644 index 69078f44..00000000 Binary files a/public/textures/chipped/tiny_layered_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_granite_slabs.png b/public/textures/chipped/tiny_layered_granite_slabs.png deleted file mode 100644 index 83e07640..00000000 Binary files a/public/textures/chipped/tiny_layered_granite_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_ice_bricks.png b/public/textures/chipped/tiny_layered_ice_bricks.png deleted file mode 100644 index a85deee7..00000000 Binary files a/public/textures/chipped/tiny_layered_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_ice_slabs.png b/public/textures/chipped/tiny_layered_ice_slabs.png deleted file mode 100644 index 3e420bd5..00000000 Binary files a/public/textures/chipped/tiny_layered_ice_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_lapis_block_bricks.png b/public/textures/chipped/tiny_layered_lapis_block_bricks.png deleted file mode 100644 index 896afef3..00000000 Binary files a/public/textures/chipped/tiny_layered_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_lapis_block_slabs.png b/public/textures/chipped/tiny_layered_lapis_block_slabs.png deleted file mode 100644 index 0d7778a7..00000000 Binary files a/public/textures/chipped/tiny_layered_lapis_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_lodestone_bricks.png b/public/textures/chipped/tiny_layered_lodestone_bricks.png deleted file mode 100644 index 07d8a2cb..00000000 Binary files a/public/textures/chipped/tiny_layered_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_lodestone_slabs.png b/public/textures/chipped/tiny_layered_lodestone_slabs.png deleted file mode 100644 index 9a7bfe45..00000000 Binary files a/public/textures/chipped/tiny_layered_lodestone_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_magma_block_bricks.png b/public/textures/chipped/tiny_layered_magma_block_bricks.png deleted file mode 100644 index ab7e81bc..00000000 Binary files a/public/textures/chipped/tiny_layered_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_magma_block_slabs.png b/public/textures/chipped/tiny_layered_magma_block_slabs.png deleted file mode 100644 index ebab5c87..00000000 Binary files a/public/textures/chipped/tiny_layered_magma_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_mossy_cobblestone_bricks.png b/public/textures/chipped/tiny_layered_mossy_cobblestone_bricks.png deleted file mode 100644 index 3658dfdb..00000000 Binary files a/public/textures/chipped/tiny_layered_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_mossy_cobblestone_slabs.png b/public/textures/chipped/tiny_layered_mossy_cobblestone_slabs.png deleted file mode 100644 index b32e4283..00000000 Binary files a/public/textures/chipped/tiny_layered_mossy_cobblestone_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_mossy_stone_bricks_bricks.png b/public/textures/chipped/tiny_layered_mossy_stone_bricks_bricks.png deleted file mode 100644 index 69bd68ea..00000000 Binary files a/public/textures/chipped/tiny_layered_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_mossy_stone_bricks_slabs.png b/public/textures/chipped/tiny_layered_mossy_stone_bricks_slabs.png deleted file mode 100644 index c327c6a2..00000000 Binary files a/public/textures/chipped/tiny_layered_mossy_stone_bricks_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_mud_bricks.png b/public/textures/chipped/tiny_layered_mud_bricks.png deleted file mode 100644 index eb7eddd7..00000000 Binary files a/public/textures/chipped/tiny_layered_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_mud_bricks_bricks.png b/public/textures/chipped/tiny_layered_mud_bricks_bricks.png deleted file mode 100644 index e093690a..00000000 Binary files a/public/textures/chipped/tiny_layered_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_nether_bricks_bricks.png b/public/textures/chipped/tiny_layered_nether_bricks_bricks.png deleted file mode 100644 index 7a91333a..00000000 Binary files a/public/textures/chipped/tiny_layered_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_nether_bricks_slabs.png b/public/textures/chipped/tiny_layered_nether_bricks_slabs.png deleted file mode 100644 index 4e607e69..00000000 Binary files a/public/textures/chipped/tiny_layered_nether_bricks_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_netherrack_bricks.png b/public/textures/chipped/tiny_layered_netherrack_bricks.png deleted file mode 100644 index 2e21facb..00000000 Binary files a/public/textures/chipped/tiny_layered_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_netherrack_slabs.png b/public/textures/chipped/tiny_layered_netherrack_slabs.png deleted file mode 100644 index 3e3930b9..00000000 Binary files a/public/textures/chipped/tiny_layered_netherrack_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_obsidian_bricks.png b/public/textures/chipped/tiny_layered_obsidian_bricks.png deleted file mode 100644 index 4f0b883a..00000000 Binary files a/public/textures/chipped/tiny_layered_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_obsidian_slabs.png b/public/textures/chipped/tiny_layered_obsidian_slabs.png deleted file mode 100644 index 35fbcfbb..00000000 Binary files a/public/textures/chipped/tiny_layered_obsidian_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_packed_ice_bricks.png b/public/textures/chipped/tiny_layered_packed_ice_bricks.png deleted file mode 100644 index 887f731d..00000000 Binary files a/public/textures/chipped/tiny_layered_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_packed_ice_slabs.png b/public/textures/chipped/tiny_layered_packed_ice_slabs.png deleted file mode 100644 index 6f41a2d8..00000000 Binary files a/public/textures/chipped/tiny_layered_packed_ice_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_packed_mud_bricks.png b/public/textures/chipped/tiny_layered_packed_mud_bricks.png deleted file mode 100644 index 7451c989..00000000 Binary files a/public/textures/chipped/tiny_layered_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_prismarine_bricks.png b/public/textures/chipped/tiny_layered_prismarine_bricks.png deleted file mode 100644 index 4bb8d227..00000000 Binary files a/public/textures/chipped/tiny_layered_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_prismarine_slabs.png b/public/textures/chipped/tiny_layered_prismarine_slabs.png deleted file mode 100644 index 2866871c..00000000 Binary files a/public/textures/chipped/tiny_layered_prismarine_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_purpur_block_bricks.png b/public/textures/chipped/tiny_layered_purpur_block_bricks.png deleted file mode 100644 index 3ab3c13d..00000000 Binary files a/public/textures/chipped/tiny_layered_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_purpur_block_slabs.png b/public/textures/chipped/tiny_layered_purpur_block_slabs.png deleted file mode 100644 index 7423da2a..00000000 Binary files a/public/textures/chipped/tiny_layered_purpur_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_quartz_block_bricks.png b/public/textures/chipped/tiny_layered_quartz_block_bricks.png deleted file mode 100644 index 869f9cdf..00000000 Binary files a/public/textures/chipped/tiny_layered_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_quartz_block_slabs.png b/public/textures/chipped/tiny_layered_quartz_block_slabs.png deleted file mode 100644 index 838b1bee..00000000 Binary files a/public/textures/chipped/tiny_layered_quartz_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_raw_copper_block_bricks.png b/public/textures/chipped/tiny_layered_raw_copper_block_bricks.png deleted file mode 100644 index b50f9020..00000000 Binary files a/public/textures/chipped/tiny_layered_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_raw_copper_block_slabs.png b/public/textures/chipped/tiny_layered_raw_copper_block_slabs.png deleted file mode 100644 index e288f287..00000000 Binary files a/public/textures/chipped/tiny_layered_raw_copper_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_raw_gold_block_bricks.png b/public/textures/chipped/tiny_layered_raw_gold_block_bricks.png deleted file mode 100644 index 7e79c32a..00000000 Binary files a/public/textures/chipped/tiny_layered_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_raw_gold_block_slabs.png b/public/textures/chipped/tiny_layered_raw_gold_block_slabs.png deleted file mode 100644 index 222be64b..00000000 Binary files a/public/textures/chipped/tiny_layered_raw_gold_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_raw_iron_block_bricks.png b/public/textures/chipped/tiny_layered_raw_iron_block_bricks.png deleted file mode 100644 index 7f7be63e..00000000 Binary files a/public/textures/chipped/tiny_layered_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_raw_iron_block_slabs.png b/public/textures/chipped/tiny_layered_raw_iron_block_slabs.png deleted file mode 100644 index 1956af91..00000000 Binary files a/public/textures/chipped/tiny_layered_raw_iron_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_red_nether_bricks_bricks.png b/public/textures/chipped/tiny_layered_red_nether_bricks_bricks.png deleted file mode 100644 index d6bfab6e..00000000 Binary files a/public/textures/chipped/tiny_layered_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_red_nether_bricks_slabs.png b/public/textures/chipped/tiny_layered_red_nether_bricks_slabs.png deleted file mode 100644 index 32c462b0..00000000 Binary files a/public/textures/chipped/tiny_layered_red_nether_bricks_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_red_sandstone_bricks.png b/public/textures/chipped/tiny_layered_red_sandstone_bricks.png deleted file mode 100644 index 33261ffd..00000000 Binary files a/public/textures/chipped/tiny_layered_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_red_sandstone_slabs.png b/public/textures/chipped/tiny_layered_red_sandstone_slabs.png deleted file mode 100644 index 910280fd..00000000 Binary files a/public/textures/chipped/tiny_layered_red_sandstone_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_redstone_block_bricks.png b/public/textures/chipped/tiny_layered_redstone_block_bricks.png deleted file mode 100644 index acac0a6e..00000000 Binary files a/public/textures/chipped/tiny_layered_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_redstone_block_slabs.png b/public/textures/chipped/tiny_layered_redstone_block_slabs.png deleted file mode 100644 index aaf611ba..00000000 Binary files a/public/textures/chipped/tiny_layered_redstone_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_sandstone_bricks.png b/public/textures/chipped/tiny_layered_sandstone_bricks.png deleted file mode 100644 index 2fbbf95d..00000000 Binary files a/public/textures/chipped/tiny_layered_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_sandstone_slabs.png b/public/textures/chipped/tiny_layered_sandstone_slabs.png deleted file mode 100644 index 7c20e99d..00000000 Binary files a/public/textures/chipped/tiny_layered_sandstone_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_smooth_stone_bricks.png b/public/textures/chipped/tiny_layered_smooth_stone_bricks.png deleted file mode 100644 index 1806c4ab..00000000 Binary files a/public/textures/chipped/tiny_layered_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_smooth_stone_slabs.png b/public/textures/chipped/tiny_layered_smooth_stone_slabs.png deleted file mode 100644 index ca7a68d4..00000000 Binary files a/public/textures/chipped/tiny_layered_smooth_stone_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_snow_block_bricks.png b/public/textures/chipped/tiny_layered_snow_block_bricks.png deleted file mode 100644 index 757866be..00000000 Binary files a/public/textures/chipped/tiny_layered_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_snow_block_slabs.png b/public/textures/chipped/tiny_layered_snow_block_slabs.png deleted file mode 100644 index 386dcb20..00000000 Binary files a/public/textures/chipped/tiny_layered_snow_block_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_stone_bricks.png b/public/textures/chipped/tiny_layered_stone_bricks.png deleted file mode 100644 index e533e00f..00000000 Binary files a/public/textures/chipped/tiny_layered_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_stone_slabs.png b/public/textures/chipped/tiny_layered_stone_slabs.png deleted file mode 100644 index 212fb554..00000000 Binary files a/public/textures/chipped/tiny_layered_stone_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_tuff_bricks.png b/public/textures/chipped/tiny_layered_tuff_bricks.png deleted file mode 100644 index 08ea1c00..00000000 Binary files a/public/textures/chipped/tiny_layered_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_layered_tuff_slabs.png b/public/textures/chipped/tiny_layered_tuff_slabs.png deleted file mode 100644 index 3cb6c993..00000000 Binary files a/public/textures/chipped/tiny_layered_tuff_slabs.png and /dev/null differ diff --git a/public/textures/chipped/tiny_lodestone_bricks.png b/public/textures/chipped/tiny_lodestone_bricks.png deleted file mode 100644 index 7100261e..00000000 Binary files a/public/textures/chipped/tiny_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_magma_block_bricks.png b/public/textures/chipped/tiny_magma_block_bricks.png deleted file mode 100644 index 6da0b8cb..00000000 Binary files a/public/textures/chipped/tiny_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_mossy_cobblestone_bricks.png b/public/textures/chipped/tiny_mossy_cobblestone_bricks.png deleted file mode 100644 index d4ffe278..00000000 Binary files a/public/textures/chipped/tiny_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_mossy_stone_bricks_bricks.png b/public/textures/chipped/tiny_mossy_stone_bricks_bricks.png deleted file mode 100644 index 54bd0dd8..00000000 Binary files a/public/textures/chipped/tiny_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_mud_bricks.png b/public/textures/chipped/tiny_mud_bricks.png deleted file mode 100644 index 6b4dc080..00000000 Binary files a/public/textures/chipped/tiny_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_mud_bricks_bricks.png b/public/textures/chipped/tiny_mud_bricks_bricks.png deleted file mode 100644 index d502bf38..00000000 Binary files a/public/textures/chipped/tiny_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_nether_bricks_bricks.png b/public/textures/chipped/tiny_nether_bricks_bricks.png deleted file mode 100644 index 234ca70d..00000000 Binary files a/public/textures/chipped/tiny_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_netherrack_bricks.png b/public/textures/chipped/tiny_netherrack_bricks.png deleted file mode 100644 index fa6193ed..00000000 Binary files a/public/textures/chipped/tiny_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_obsidian_bricks.png b/public/textures/chipped/tiny_obsidian_bricks.png deleted file mode 100644 index 90989489..00000000 Binary files a/public/textures/chipped/tiny_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_packed_ice_bricks.png b/public/textures/chipped/tiny_packed_ice_bricks.png deleted file mode 100644 index aae042ed..00000000 Binary files a/public/textures/chipped/tiny_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_packed_mud_bricks.png b/public/textures/chipped/tiny_packed_mud_bricks.png deleted file mode 100644 index 65ba7689..00000000 Binary files a/public/textures/chipped/tiny_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_prismarine_bricks.png b/public/textures/chipped/tiny_prismarine_bricks.png deleted file mode 100644 index 73fdc7c6..00000000 Binary files a/public/textures/chipped/tiny_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_purpur_block_bricks.png b/public/textures/chipped/tiny_purpur_block_bricks.png deleted file mode 100644 index b98b126e..00000000 Binary files a/public/textures/chipped/tiny_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_quartz_block_bricks.png b/public/textures/chipped/tiny_quartz_block_bricks.png deleted file mode 100644 index 4d29837b..00000000 Binary files a/public/textures/chipped/tiny_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_raw_copper_block_bricks.png b/public/textures/chipped/tiny_raw_copper_block_bricks.png deleted file mode 100644 index c8887c53..00000000 Binary files a/public/textures/chipped/tiny_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_raw_gold_block_bricks.png b/public/textures/chipped/tiny_raw_gold_block_bricks.png deleted file mode 100644 index 62da58d7..00000000 Binary files a/public/textures/chipped/tiny_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_raw_iron_block_bricks.png b/public/textures/chipped/tiny_raw_iron_block_bricks.png deleted file mode 100644 index 0697a6a1..00000000 Binary files a/public/textures/chipped/tiny_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_red_nether_bricks_bricks.png b/public/textures/chipped/tiny_red_nether_bricks_bricks.png deleted file mode 100644 index cda26e0b..00000000 Binary files a/public/textures/chipped/tiny_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_red_sandstone_bricks.png b/public/textures/chipped/tiny_red_sandstone_bricks.png deleted file mode 100644 index 31254b74..00000000 Binary files a/public/textures/chipped/tiny_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_redstone_block_bricks.png b/public/textures/chipped/tiny_redstone_block_bricks.png deleted file mode 100644 index a158a5d4..00000000 Binary files a/public/textures/chipped/tiny_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_sandstone_bricks.png b/public/textures/chipped/tiny_sandstone_bricks.png deleted file mode 100644 index cf3d7911..00000000 Binary files a/public/textures/chipped/tiny_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_smooth_stone_bricks.png b/public/textures/chipped/tiny_smooth_stone_bricks.png deleted file mode 100644 index ef986dda..00000000 Binary files a/public/textures/chipped/tiny_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_smug_carved_pumpkin.png b/public/textures/chipped/tiny_smug_carved_pumpkin.png deleted file mode 100644 index 4cf39149..00000000 Binary files a/public/textures/chipped/tiny_smug_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/tiny_smug_jack_o_lantern.png b/public/textures/chipped/tiny_smug_jack_o_lantern.png deleted file mode 100644 index 2edb09c5..00000000 Binary files a/public/textures/chipped/tiny_smug_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/tiny_snow_block_bricks.png b/public/textures/chipped/tiny_snow_block_bricks.png deleted file mode 100644 index fff22ad4..00000000 Binary files a/public/textures/chipped/tiny_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_stone_bricks.png b/public/textures/chipped/tiny_stone_bricks.png deleted file mode 100644 index 70ffd0fb..00000000 Binary files a/public/textures/chipped/tiny_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tiny_tuff_bricks.png b/public/textures/chipped/tiny_tuff_bricks.png deleted file mode 100644 index 69b863a0..00000000 Binary files a/public/textures/chipped/tiny_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/traditional_carved_pumpkin.png b/public/textures/chipped/traditional_carved_pumpkin.png deleted file mode 100644 index 6e0d3155..00000000 Binary files a/public/textures/chipped/traditional_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/traditional_jack_o_lantern.png b/public/textures/chipped/traditional_jack_o_lantern.png deleted file mode 100644 index e6a4845a..00000000 Binary files a/public/textures/chipped/traditional_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/trampled_soul_sand.png b/public/textures/chipped/trampled_soul_sand.png deleted file mode 100644 index 97dd6378..00000000 Binary files a/public/textures/chipped/trampled_soul_sand.png and /dev/null differ diff --git a/public/textures/chipped/triangular_black_terracotta.png b/public/textures/chipped/triangular_black_terracotta.png deleted file mode 100644 index 80bb5685..00000000 Binary files a/public/textures/chipped/triangular_black_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_blue_terracotta.png b/public/textures/chipped/triangular_blue_terracotta.png deleted file mode 100644 index 451dcd11..00000000 Binary files a/public/textures/chipped/triangular_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_brown_terracotta.png b/public/textures/chipped/triangular_brown_terracotta.png deleted file mode 100644 index 3c076f62..00000000 Binary files a/public/textures/chipped/triangular_brown_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_cyan_terracotta.png b/public/textures/chipped/triangular_cyan_terracotta.png deleted file mode 100644 index 2735fb2c..00000000 Binary files a/public/textures/chipped/triangular_cyan_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_gray_terracotta.png b/public/textures/chipped/triangular_gray_terracotta.png deleted file mode 100644 index 59d1e82e..00000000 Binary files a/public/textures/chipped/triangular_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_green_terracotta.png b/public/textures/chipped/triangular_green_terracotta.png deleted file mode 100644 index 64d88871..00000000 Binary files a/public/textures/chipped/triangular_green_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_light_blue_terracotta.png b/public/textures/chipped/triangular_light_blue_terracotta.png deleted file mode 100644 index 1a308a0f..00000000 Binary files a/public/textures/chipped/triangular_light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_light_gray_terracotta.png b/public/textures/chipped/triangular_light_gray_terracotta.png deleted file mode 100644 index bfe30de6..00000000 Binary files a/public/textures/chipped/triangular_light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_lime_terracotta.png b/public/textures/chipped/triangular_lime_terracotta.png deleted file mode 100644 index 2504b962..00000000 Binary files a/public/textures/chipped/triangular_lime_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_magenta_terracotta.png b/public/textures/chipped/triangular_magenta_terracotta.png deleted file mode 100644 index 077de213..00000000 Binary files a/public/textures/chipped/triangular_magenta_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_orange_terracotta.png b/public/textures/chipped/triangular_orange_terracotta.png deleted file mode 100644 index b3b7905e..00000000 Binary files a/public/textures/chipped/triangular_orange_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_pink_terracotta.png b/public/textures/chipped/triangular_pink_terracotta.png deleted file mode 100644 index 3f67b21e..00000000 Binary files a/public/textures/chipped/triangular_pink_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_purple_terracotta.png b/public/textures/chipped/triangular_purple_terracotta.png deleted file mode 100644 index 82e7eb30..00000000 Binary files a/public/textures/chipped/triangular_purple_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_red_terracotta.png b/public/textures/chipped/triangular_red_terracotta.png deleted file mode 100644 index 1c10bd03..00000000 Binary files a/public/textures/chipped/triangular_red_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_terracotta.png b/public/textures/chipped/triangular_terracotta.png deleted file mode 100644 index 7c8886b1..00000000 Binary files a/public/textures/chipped/triangular_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_white_terracotta.png b/public/textures/chipped/triangular_white_terracotta.png deleted file mode 100644 index 22ed0cc8..00000000 Binary files a/public/textures/chipped/triangular_white_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/triangular_yellow_terracotta.png b/public/textures/chipped/triangular_yellow_terracotta.png deleted file mode 100644 index 02d39c8c..00000000 Binary files a/public/textures/chipped/triangular_yellow_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/tripped_black_carpet.png b/public/textures/chipped/tripped_black_carpet.png deleted file mode 100644 index 292b7e32..00000000 Binary files a/public/textures/chipped/tripped_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_black_wool.png b/public/textures/chipped/tripped_black_wool.png deleted file mode 100644 index 851a773e..00000000 Binary files a/public/textures/chipped/tripped_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_blue_carpet.png b/public/textures/chipped/tripped_blue_carpet.png deleted file mode 100644 index 2754be37..00000000 Binary files a/public/textures/chipped/tripped_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_blue_wool.png b/public/textures/chipped/tripped_blue_wool.png deleted file mode 100644 index 05528da6..00000000 Binary files a/public/textures/chipped/tripped_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_brown_carpet.png b/public/textures/chipped/tripped_brown_carpet.png deleted file mode 100644 index 416fd5e6..00000000 Binary files a/public/textures/chipped/tripped_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_brown_wool.png b/public/textures/chipped/tripped_brown_wool.png deleted file mode 100644 index 2b9ff16a..00000000 Binary files a/public/textures/chipped/tripped_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_cyan_carpet.png b/public/textures/chipped/tripped_cyan_carpet.png deleted file mode 100644 index 97ff67e6..00000000 Binary files a/public/textures/chipped/tripped_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_cyan_wool.png b/public/textures/chipped/tripped_cyan_wool.png deleted file mode 100644 index 7689efaa..00000000 Binary files a/public/textures/chipped/tripped_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_gray_carpet.png b/public/textures/chipped/tripped_gray_carpet.png deleted file mode 100644 index 28c9fdd1..00000000 Binary files a/public/textures/chipped/tripped_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_gray_wool.png b/public/textures/chipped/tripped_gray_wool.png deleted file mode 100644 index b9dea3d0..00000000 Binary files a/public/textures/chipped/tripped_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_green_carpet.png b/public/textures/chipped/tripped_green_carpet.png deleted file mode 100644 index 0ccc29df..00000000 Binary files a/public/textures/chipped/tripped_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_green_wool.png b/public/textures/chipped/tripped_green_wool.png deleted file mode 100644 index 30b30a2c..00000000 Binary files a/public/textures/chipped/tripped_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_light_blue_carpet.png b/public/textures/chipped/tripped_light_blue_carpet.png deleted file mode 100644 index df2ec2b9..00000000 Binary files a/public/textures/chipped/tripped_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_light_blue_wool.png b/public/textures/chipped/tripped_light_blue_wool.png deleted file mode 100644 index 74b0d8f0..00000000 Binary files a/public/textures/chipped/tripped_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_light_gray_carpet.png b/public/textures/chipped/tripped_light_gray_carpet.png deleted file mode 100644 index fbf89368..00000000 Binary files a/public/textures/chipped/tripped_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_light_gray_wool.png b/public/textures/chipped/tripped_light_gray_wool.png deleted file mode 100644 index 2f9b9398..00000000 Binary files a/public/textures/chipped/tripped_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_lime_carpet.png b/public/textures/chipped/tripped_lime_carpet.png deleted file mode 100644 index 387eec82..00000000 Binary files a/public/textures/chipped/tripped_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_lime_wool.png b/public/textures/chipped/tripped_lime_wool.png deleted file mode 100644 index 925229fb..00000000 Binary files a/public/textures/chipped/tripped_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_magenta_carpet.png b/public/textures/chipped/tripped_magenta_carpet.png deleted file mode 100644 index 7d097bc3..00000000 Binary files a/public/textures/chipped/tripped_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_magenta_wool.png b/public/textures/chipped/tripped_magenta_wool.png deleted file mode 100644 index 6c6c10de..00000000 Binary files a/public/textures/chipped/tripped_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_orange_carpet.png b/public/textures/chipped/tripped_orange_carpet.png deleted file mode 100644 index 874ad14b..00000000 Binary files a/public/textures/chipped/tripped_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_orange_wool.png b/public/textures/chipped/tripped_orange_wool.png deleted file mode 100644 index df35816c..00000000 Binary files a/public/textures/chipped/tripped_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_pink_carpet.png b/public/textures/chipped/tripped_pink_carpet.png deleted file mode 100644 index 624e8b88..00000000 Binary files a/public/textures/chipped/tripped_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_pink_wool.png b/public/textures/chipped/tripped_pink_wool.png deleted file mode 100644 index 3d31fec4..00000000 Binary files a/public/textures/chipped/tripped_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_purple_carpet.png b/public/textures/chipped/tripped_purple_carpet.png deleted file mode 100644 index 7667c263..00000000 Binary files a/public/textures/chipped/tripped_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_purple_wool.png b/public/textures/chipped/tripped_purple_wool.png deleted file mode 100644 index 7eef9e0a..00000000 Binary files a/public/textures/chipped/tripped_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_red_carpet.png b/public/textures/chipped/tripped_red_carpet.png deleted file mode 100644 index d60b6aa1..00000000 Binary files a/public/textures/chipped/tripped_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_red_wool.png b/public/textures/chipped/tripped_red_wool.png deleted file mode 100644 index 763b4b82..00000000 Binary files a/public/textures/chipped/tripped_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_white_carpet.png b/public/textures/chipped/tripped_white_carpet.png deleted file mode 100644 index 7fcd8684..00000000 Binary files a/public/textures/chipped/tripped_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_white_wool.png b/public/textures/chipped/tripped_white_wool.png deleted file mode 100644 index b4b8fa60..00000000 Binary files a/public/textures/chipped/tripped_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/tripped_yellow_carpet.png b/public/textures/chipped/tripped_yellow_carpet.png deleted file mode 100644 index ca028f0c..00000000 Binary files a/public/textures/chipped/tripped_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/tripped_yellow_wool.png b/public/textures/chipped/tripped_yellow_wool.png deleted file mode 100644 index f6380344..00000000 Binary files a/public/textures/chipped/tripped_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/trodden_amethyst_block.png b/public/textures/chipped/trodden_amethyst_block.png deleted file mode 100644 index a8c84004..00000000 Binary files a/public/textures/chipped/trodden_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_ancient_debris.png b/public/textures/chipped/trodden_ancient_debris.png deleted file mode 100644 index 6ee74c7f..00000000 Binary files a/public/textures/chipped/trodden_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/trodden_andesite.png b/public/textures/chipped/trodden_andesite.png deleted file mode 100644 index 2a14834e..00000000 Binary files a/public/textures/chipped/trodden_andesite.png and /dev/null differ diff --git a/public/textures/chipped/trodden_blackstone.png b/public/textures/chipped/trodden_blackstone.png deleted file mode 100644 index b7cce221..00000000 Binary files a/public/textures/chipped/trodden_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/trodden_blue_ice.png b/public/textures/chipped/trodden_blue_ice.png deleted file mode 100644 index 49c714e0..00000000 Binary files a/public/textures/chipped/trodden_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/trodden_borderless_bricks.png b/public/textures/chipped/trodden_borderless_bricks.png deleted file mode 100644 index 5472f84e..00000000 Binary files a/public/textures/chipped/trodden_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/trodden_bricks.png b/public/textures/chipped/trodden_bricks.png deleted file mode 100644 index 5472f84e..00000000 Binary files a/public/textures/chipped/trodden_bricks.png and /dev/null differ diff --git a/public/textures/chipped/trodden_calcite.png b/public/textures/chipped/trodden_calcite.png deleted file mode 100644 index 1017da1c..00000000 Binary files a/public/textures/chipped/trodden_calcite.png and /dev/null differ diff --git a/public/textures/chipped/trodden_clay.png b/public/textures/chipped/trodden_clay.png deleted file mode 100644 index 539a34e6..00000000 Binary files a/public/textures/chipped/trodden_clay.png and /dev/null differ diff --git a/public/textures/chipped/trodden_coal_block.png b/public/textures/chipped/trodden_coal_block.png deleted file mode 100644 index 0a5d706f..00000000 Binary files a/public/textures/chipped/trodden_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_cobblestone.png b/public/textures/chipped/trodden_cobblestone.png deleted file mode 100644 index 9cda9491..00000000 Binary files a/public/textures/chipped/trodden_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/trodden_crying_obsidian.png b/public/textures/chipped/trodden_crying_obsidian.png deleted file mode 100644 index 068a5abc..00000000 Binary files a/public/textures/chipped/trodden_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/trodden_dark_prismarine.png b/public/textures/chipped/trodden_dark_prismarine.png deleted file mode 100644 index b864ada7..00000000 Binary files a/public/textures/chipped/trodden_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/trodden_deepslate.png b/public/textures/chipped/trodden_deepslate.png deleted file mode 100644 index 48b8c58b..00000000 Binary files a/public/textures/chipped/trodden_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/trodden_diorite.png b/public/textures/chipped/trodden_diorite.png deleted file mode 100644 index c076ad01..00000000 Binary files a/public/textures/chipped/trodden_diorite.png and /dev/null differ diff --git a/public/textures/chipped/trodden_dirt.png b/public/textures/chipped/trodden_dirt.png deleted file mode 100644 index b1ee5293..00000000 Binary files a/public/textures/chipped/trodden_dirt.png and /dev/null differ diff --git a/public/textures/chipped/trodden_dripstone_block.png b/public/textures/chipped/trodden_dripstone_block.png deleted file mode 100644 index d8f12dfd..00000000 Binary files a/public/textures/chipped/trodden_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_end_stone.png b/public/textures/chipped/trodden_end_stone.png deleted file mode 100644 index 9cbec2a0..00000000 Binary files a/public/textures/chipped/trodden_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/trodden_gilded_blackstone.png b/public/textures/chipped/trodden_gilded_blackstone.png deleted file mode 100644 index 7901ea84..00000000 Binary files a/public/textures/chipped/trodden_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/trodden_granite.png b/public/textures/chipped/trodden_granite.png deleted file mode 100644 index 8c15fd1e..00000000 Binary files a/public/textures/chipped/trodden_granite.png and /dev/null differ diff --git a/public/textures/chipped/trodden_ice.png b/public/textures/chipped/trodden_ice.png deleted file mode 100644 index 39c13126..00000000 Binary files a/public/textures/chipped/trodden_ice.png and /dev/null differ diff --git a/public/textures/chipped/trodden_lapis_block.png b/public/textures/chipped/trodden_lapis_block.png deleted file mode 100644 index ef76d73b..00000000 Binary files a/public/textures/chipped/trodden_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_lodestone.png b/public/textures/chipped/trodden_lodestone.png deleted file mode 100644 index 0cf72a06..00000000 Binary files a/public/textures/chipped/trodden_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/trodden_magma_block.png b/public/textures/chipped/trodden_magma_block.png deleted file mode 100644 index c887fc97..00000000 Binary files a/public/textures/chipped/trodden_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_mossy_cobblestone.png b/public/textures/chipped/trodden_mossy_cobblestone.png deleted file mode 100644 index c0590fec..00000000 Binary files a/public/textures/chipped/trodden_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/trodden_mossy_stone_bricks.png b/public/textures/chipped/trodden_mossy_stone_bricks.png deleted file mode 100644 index 2b4a43dd..00000000 Binary files a/public/textures/chipped/trodden_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/trodden_nether_bricks.png b/public/textures/chipped/trodden_nether_bricks.png deleted file mode 100644 index f72e4890..00000000 Binary files a/public/textures/chipped/trodden_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/trodden_netherrack.png b/public/textures/chipped/trodden_netherrack.png deleted file mode 100644 index 3baa4576..00000000 Binary files a/public/textures/chipped/trodden_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/trodden_obsidian.png b/public/textures/chipped/trodden_obsidian.png deleted file mode 100644 index 68e13ef7..00000000 Binary files a/public/textures/chipped/trodden_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/trodden_packed_ice.png b/public/textures/chipped/trodden_packed_ice.png deleted file mode 100644 index 6c18013c..00000000 Binary files a/public/textures/chipped/trodden_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/trodden_prismarine.png b/public/textures/chipped/trodden_prismarine.png deleted file mode 100644 index c355e0dc..00000000 Binary files a/public/textures/chipped/trodden_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/trodden_purpur_block.png b/public/textures/chipped/trodden_purpur_block.png deleted file mode 100644 index 6c02d0a4..00000000 Binary files a/public/textures/chipped/trodden_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_quartz_block.png b/public/textures/chipped/trodden_quartz_block.png deleted file mode 100644 index 5ba6a613..00000000 Binary files a/public/textures/chipped/trodden_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_raw_copper_block.png b/public/textures/chipped/trodden_raw_copper_block.png deleted file mode 100644 index 3087345a..00000000 Binary files a/public/textures/chipped/trodden_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_raw_gold_block.png b/public/textures/chipped/trodden_raw_gold_block.png deleted file mode 100644 index 7698ff2a..00000000 Binary files a/public/textures/chipped/trodden_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_raw_iron_block.png b/public/textures/chipped/trodden_raw_iron_block.png deleted file mode 100644 index cbdedcf1..00000000 Binary files a/public/textures/chipped/trodden_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_red_nether_bricks.png b/public/textures/chipped/trodden_red_nether_bricks.png deleted file mode 100644 index 00cc49bf..00000000 Binary files a/public/textures/chipped/trodden_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/trodden_red_sandstone.png b/public/textures/chipped/trodden_red_sandstone.png deleted file mode 100644 index 37e5da7f..00000000 Binary files a/public/textures/chipped/trodden_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/trodden_redstone_block.png b/public/textures/chipped/trodden_redstone_block.png deleted file mode 100644 index f232bd31..00000000 Binary files a/public/textures/chipped/trodden_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_sandstone.png b/public/textures/chipped/trodden_sandstone.png deleted file mode 100644 index c660fbf1..00000000 Binary files a/public/textures/chipped/trodden_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/trodden_smooth_stone.png b/public/textures/chipped/trodden_smooth_stone.png deleted file mode 100644 index bc899e9a..00000000 Binary files a/public/textures/chipped/trodden_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/trodden_snow_block.png b/public/textures/chipped/trodden_snow_block.png deleted file mode 100644 index ff7d6e7a..00000000 Binary files a/public/textures/chipped/trodden_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/trodden_stone.png b/public/textures/chipped/trodden_stone.png deleted file mode 100644 index abb8b64b..00000000 Binary files a/public/textures/chipped/trodden_stone.png and /dev/null differ diff --git a/public/textures/chipped/trodden_tuff.png b/public/textures/chipped/trodden_tuff.png deleted file mode 100644 index 307be71a..00000000 Binary files a/public/textures/chipped/trodden_tuff.png and /dev/null differ diff --git a/public/textures/chipped/tropics_melon.png b/public/textures/chipped/tropics_melon.png deleted file mode 100644 index 111b4223..00000000 Binary files a/public/textures/chipped/tropics_melon.png and /dev/null differ diff --git a/public/textures/chipped/tubed_nether_sprouts.png b/public/textures/chipped/tubed_nether_sprouts.png deleted file mode 100644 index b4a79d6b..00000000 Binary files a/public/textures/chipped/tubed_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/tuff_bricks.png b/public/textures/chipped/tuff_bricks.png deleted file mode 100644 index abfc6af9..00000000 Binary files a/public/textures/chipped/tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/tuff_mini_tiles.png b/public/textures/chipped/tuff_mini_tiles.png deleted file mode 100644 index d58d6893..00000000 Binary files a/public/textures/chipped/tuff_mini_tiles.png and /dev/null differ diff --git a/public/textures/chipped/tuff_pillar.png b/public/textures/chipped/tuff_pillar.png deleted file mode 100644 index 039e6236..00000000 Binary files a/public/textures/chipped/tuff_pillar.png and /dev/null differ diff --git a/public/textures/chipped/tuff_pillar_top.png b/public/textures/chipped/tuff_pillar_top.png deleted file mode 100644 index a6731410..00000000 Binary files a/public/textures/chipped/tuff_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/tuff_pointed_dripstone.png b/public/textures/chipped/tuff_pointed_dripstone.png deleted file mode 100644 index 205ae4e0..00000000 Binary files a/public/textures/chipped/tuff_pointed_dripstone.png and /dev/null differ diff --git a/public/textures/chipped/tuff_scales.png b/public/textures/chipped/tuff_scales.png deleted file mode 100644 index d19c66fa..00000000 Binary files a/public/textures/chipped/tuff_scales.png and /dev/null differ diff --git a/public/textures/chipped/twisted_acacia_trapdoor.png b/public/textures/chipped/twisted_acacia_trapdoor.png deleted file mode 100644 index b90b327c..00000000 Binary files a/public/textures/chipped/twisted_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/twisted_bamboo_trapdoor.png b/public/textures/chipped/twisted_bamboo_trapdoor.png deleted file mode 100644 index b0aaecaa..00000000 Binary files a/public/textures/chipped/twisted_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/twisted_birch_trapdoor.png b/public/textures/chipped/twisted_birch_trapdoor.png deleted file mode 100644 index 0dba3451..00000000 Binary files a/public/textures/chipped/twisted_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/twisted_cherry_trapdoor.png b/public/textures/chipped/twisted_cherry_trapdoor.png deleted file mode 100644 index cf5a96d6..00000000 Binary files a/public/textures/chipped/twisted_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/twisted_crimson_trapdoor.png b/public/textures/chipped/twisted_crimson_trapdoor.png deleted file mode 100644 index 5d74544c..00000000 Binary files a/public/textures/chipped/twisted_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/twisted_dark_oak_trapdoor.png b/public/textures/chipped/twisted_dark_oak_trapdoor.png deleted file mode 100644 index eb830b4f..00000000 Binary files a/public/textures/chipped/twisted_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/twisted_jungle_trapdoor.png b/public/textures/chipped/twisted_jungle_trapdoor.png deleted file mode 100644 index 9a09a467..00000000 Binary files a/public/textures/chipped/twisted_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/twisted_mangrove_trapdoor.png b/public/textures/chipped/twisted_mangrove_trapdoor.png deleted file mode 100644 index 27a74f5b..00000000 Binary files a/public/textures/chipped/twisted_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/twisted_oak_trapdoor.png b/public/textures/chipped/twisted_oak_trapdoor.png deleted file mode 100644 index 1c167f28..00000000 Binary files a/public/textures/chipped/twisted_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/twisted_spruce_trapdoor.png b/public/textures/chipped/twisted_spruce_trapdoor.png deleted file mode 100644 index b01fdee6..00000000 Binary files a/public/textures/chipped/twisted_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/twisted_warped_trapdoor.png b/public/textures/chipped/twisted_warped_trapdoor.png deleted file mode 100644 index 4b3363c9..00000000 Binary files a/public/textures/chipped/twisted_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/umbrella_brown_mushroom.png b/public/textures/chipped/umbrella_brown_mushroom.png deleted file mode 100644 index 8b5a4747..00000000 Binary files a/public/textures/chipped/umbrella_brown_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/umbrella_crimson_fungus.png b/public/textures/chipped/umbrella_crimson_fungus.png deleted file mode 100644 index 37f419b9..00000000 Binary files a/public/textures/chipped/umbrella_crimson_fungus.png and /dev/null differ diff --git a/public/textures/chipped/umbrella_red_mushroom.png b/public/textures/chipped/umbrella_red_mushroom.png deleted file mode 100644 index 2f7c0e12..00000000 Binary files a/public/textures/chipped/umbrella_red_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/umbrella_warped_fungus.png b/public/textures/chipped/umbrella_warped_fungus.png deleted file mode 100644 index 8875f19b..00000000 Binary files a/public/textures/chipped/umbrella_warped_fungus.png and /dev/null differ diff --git a/public/textures/chipped/unamused_amethyst_block.png b/public/textures/chipped/unamused_amethyst_block.png deleted file mode 100644 index 2667bc1f..00000000 Binary files a/public/textures/chipped/unamused_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_ancient_debris.png b/public/textures/chipped/unamused_ancient_debris.png deleted file mode 100644 index 930a83f4..00000000 Binary files a/public/textures/chipped/unamused_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/unamused_andesite.png b/public/textures/chipped/unamused_andesite.png deleted file mode 100644 index febba90b..00000000 Binary files a/public/textures/chipped/unamused_andesite.png and /dev/null differ diff --git a/public/textures/chipped/unamused_basalt.png b/public/textures/chipped/unamused_basalt.png deleted file mode 100644 index 03a403e3..00000000 Binary files a/public/textures/chipped/unamused_basalt.png and /dev/null differ diff --git a/public/textures/chipped/unamused_blackstone.png b/public/textures/chipped/unamused_blackstone.png deleted file mode 100644 index 7677d055..00000000 Binary files a/public/textures/chipped/unamused_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/unamused_blue_ice.png b/public/textures/chipped/unamused_blue_ice.png deleted file mode 100644 index 4d3b60db..00000000 Binary files a/public/textures/chipped/unamused_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/unamused_borderless_bricks.png b/public/textures/chipped/unamused_borderless_bricks.png deleted file mode 100644 index 423037a0..00000000 Binary files a/public/textures/chipped/unamused_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/unamused_bricks.png b/public/textures/chipped/unamused_bricks.png deleted file mode 100644 index f0150ac3..00000000 Binary files a/public/textures/chipped/unamused_bricks.png and /dev/null differ diff --git a/public/textures/chipped/unamused_calcite.png b/public/textures/chipped/unamused_calcite.png deleted file mode 100644 index 3460b4bc..00000000 Binary files a/public/textures/chipped/unamused_calcite.png and /dev/null differ diff --git a/public/textures/chipped/unamused_clay.png b/public/textures/chipped/unamused_clay.png deleted file mode 100644 index 7fa67c29..00000000 Binary files a/public/textures/chipped/unamused_clay.png and /dev/null differ diff --git a/public/textures/chipped/unamused_coal_block.png b/public/textures/chipped/unamused_coal_block.png deleted file mode 100644 index 90fb27f2..00000000 Binary files a/public/textures/chipped/unamused_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_cobblestone.png b/public/textures/chipped/unamused_cobblestone.png deleted file mode 100644 index 4aac73e8..00000000 Binary files a/public/textures/chipped/unamused_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/unamused_crying_obsidian.png b/public/textures/chipped/unamused_crying_obsidian.png deleted file mode 100644 index 0b2866fc..00000000 Binary files a/public/textures/chipped/unamused_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/unamused_dark_prismarine.png b/public/textures/chipped/unamused_dark_prismarine.png deleted file mode 100644 index cd35844a..00000000 Binary files a/public/textures/chipped/unamused_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/unamused_deepslate.png b/public/textures/chipped/unamused_deepslate.png deleted file mode 100644 index c4c5e9a2..00000000 Binary files a/public/textures/chipped/unamused_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/unamused_diorite.png b/public/textures/chipped/unamused_diorite.png deleted file mode 100644 index d76ae0f6..00000000 Binary files a/public/textures/chipped/unamused_diorite.png and /dev/null differ diff --git a/public/textures/chipped/unamused_dirt.png b/public/textures/chipped/unamused_dirt.png deleted file mode 100644 index 9b8161d9..00000000 Binary files a/public/textures/chipped/unamused_dirt.png and /dev/null differ diff --git a/public/textures/chipped/unamused_dripstone_block.png b/public/textures/chipped/unamused_dripstone_block.png deleted file mode 100644 index e22f40ff..00000000 Binary files a/public/textures/chipped/unamused_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_end_stone.png b/public/textures/chipped/unamused_end_stone.png deleted file mode 100644 index 14cd7510..00000000 Binary files a/public/textures/chipped/unamused_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/unamused_gilded_blackstone.png b/public/textures/chipped/unamused_gilded_blackstone.png deleted file mode 100644 index 0a4f790e..00000000 Binary files a/public/textures/chipped/unamused_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/unamused_granite.png b/public/textures/chipped/unamused_granite.png deleted file mode 100644 index 6249c199..00000000 Binary files a/public/textures/chipped/unamused_granite.png and /dev/null differ diff --git a/public/textures/chipped/unamused_ice.png b/public/textures/chipped/unamused_ice.png deleted file mode 100644 index 92742b5b..00000000 Binary files a/public/textures/chipped/unamused_ice.png and /dev/null differ diff --git a/public/textures/chipped/unamused_lapis_block.png b/public/textures/chipped/unamused_lapis_block.png deleted file mode 100644 index 0e42b9ef..00000000 Binary files a/public/textures/chipped/unamused_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_lodestone.png b/public/textures/chipped/unamused_lodestone.png deleted file mode 100644 index ab1113a3..00000000 Binary files a/public/textures/chipped/unamused_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/unamused_magma_block.png b/public/textures/chipped/unamused_magma_block.png deleted file mode 100644 index 94c7b48c..00000000 Binary files a/public/textures/chipped/unamused_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_mossy_cobblestone.png b/public/textures/chipped/unamused_mossy_cobblestone.png deleted file mode 100644 index 1e6a6202..00000000 Binary files a/public/textures/chipped/unamused_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/unamused_mossy_stone_bricks.png b/public/textures/chipped/unamused_mossy_stone_bricks.png deleted file mode 100644 index 36692736..00000000 Binary files a/public/textures/chipped/unamused_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/unamused_mud.png b/public/textures/chipped/unamused_mud.png deleted file mode 100644 index db09950e..00000000 Binary files a/public/textures/chipped/unamused_mud.png and /dev/null differ diff --git a/public/textures/chipped/unamused_mud_bricks.png b/public/textures/chipped/unamused_mud_bricks.png deleted file mode 100644 index fc171f35..00000000 Binary files a/public/textures/chipped/unamused_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/unamused_nether_bricks.png b/public/textures/chipped/unamused_nether_bricks.png deleted file mode 100644 index 0928b540..00000000 Binary files a/public/textures/chipped/unamused_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/unamused_netherrack.png b/public/textures/chipped/unamused_netherrack.png deleted file mode 100644 index 04f266a1..00000000 Binary files a/public/textures/chipped/unamused_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/unamused_obsidian.png b/public/textures/chipped/unamused_obsidian.png deleted file mode 100644 index 111ac484..00000000 Binary files a/public/textures/chipped/unamused_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/unamused_packed_ice.png b/public/textures/chipped/unamused_packed_ice.png deleted file mode 100644 index 786a884e..00000000 Binary files a/public/textures/chipped/unamused_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/unamused_packed_mud.png b/public/textures/chipped/unamused_packed_mud.png deleted file mode 100644 index 3996cdb9..00000000 Binary files a/public/textures/chipped/unamused_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/unamused_prismarine.png b/public/textures/chipped/unamused_prismarine.png deleted file mode 100644 index eccc38ee..00000000 Binary files a/public/textures/chipped/unamused_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/unamused_purpur_block.png b/public/textures/chipped/unamused_purpur_block.png deleted file mode 100644 index 0ebe5e8d..00000000 Binary files a/public/textures/chipped/unamused_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_quartz_block.png b/public/textures/chipped/unamused_quartz_block.png deleted file mode 100644 index a5bf64f2..00000000 Binary files a/public/textures/chipped/unamused_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_raw_copper_block.png b/public/textures/chipped/unamused_raw_copper_block.png deleted file mode 100644 index e9f12428..00000000 Binary files a/public/textures/chipped/unamused_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_raw_gold_block.png b/public/textures/chipped/unamused_raw_gold_block.png deleted file mode 100644 index 4f6644d2..00000000 Binary files a/public/textures/chipped/unamused_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_raw_iron_block.png b/public/textures/chipped/unamused_raw_iron_block.png deleted file mode 100644 index 2ea517b3..00000000 Binary files a/public/textures/chipped/unamused_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_red_nether_bricks.png b/public/textures/chipped/unamused_red_nether_bricks.png deleted file mode 100644 index cdb100dc..00000000 Binary files a/public/textures/chipped/unamused_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/unamused_red_sandstone.png b/public/textures/chipped/unamused_red_sandstone.png deleted file mode 100644 index f486e7f0..00000000 Binary files a/public/textures/chipped/unamused_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/unamused_redstone_block.png b/public/textures/chipped/unamused_redstone_block.png deleted file mode 100644 index c7b90ecd..00000000 Binary files a/public/textures/chipped/unamused_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_sandstone.png b/public/textures/chipped/unamused_sandstone.png deleted file mode 100644 index 9fbb87aa..00000000 Binary files a/public/textures/chipped/unamused_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/unamused_smooth_stone.png b/public/textures/chipped/unamused_smooth_stone.png deleted file mode 100644 index c4d9641f..00000000 Binary files a/public/textures/chipped/unamused_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/unamused_snow_block.png b/public/textures/chipped/unamused_snow_block.png deleted file mode 100644 index 287f9494..00000000 Binary files a/public/textures/chipped/unamused_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/unamused_stone.png b/public/textures/chipped/unamused_stone.png deleted file mode 100644 index af28d600..00000000 Binary files a/public/textures/chipped/unamused_stone.png and /dev/null differ diff --git a/public/textures/chipped/unamused_tuff.png b/public/textures/chipped/unamused_tuff.png deleted file mode 100644 index 27fa2deb..00000000 Binary files a/public/textures/chipped/unamused_tuff.png and /dev/null differ diff --git a/public/textures/chipped/upside_down_carved_pumpkin.png b/public/textures/chipped/upside_down_carved_pumpkin.png deleted file mode 100644 index c75466a2..00000000 Binary files a/public/textures/chipped/upside_down_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/upside_down_jack_o_lantern.png b/public/textures/chipped/upside_down_jack_o_lantern.png deleted file mode 100644 index 599a681f..00000000 Binary files a/public/textures/chipped/upside_down_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/varnished_barrel.png b/public/textures/chipped/varnished_barrel.png deleted file mode 100644 index f1fcb7c9..00000000 Binary files a/public/textures/chipped/varnished_barrel.png and /dev/null differ diff --git a/public/textures/chipped/versailles_acacia_planks.png b/public/textures/chipped/versailles_acacia_planks.png deleted file mode 100644 index b9c54234..00000000 Binary files a/public/textures/chipped/versailles_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/versailles_bamboo_planks.png b/public/textures/chipped/versailles_bamboo_planks.png deleted file mode 100644 index 6276c50e..00000000 Binary files a/public/textures/chipped/versailles_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/versailles_birch_planks.png b/public/textures/chipped/versailles_birch_planks.png deleted file mode 100644 index 4a979eae..00000000 Binary files a/public/textures/chipped/versailles_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/versailles_cherry_planks.png b/public/textures/chipped/versailles_cherry_planks.png deleted file mode 100644 index 7874b422..00000000 Binary files a/public/textures/chipped/versailles_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/versailles_crimson_planks.png b/public/textures/chipped/versailles_crimson_planks.png deleted file mode 100644 index f501f609..00000000 Binary files a/public/textures/chipped/versailles_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/versailles_dark_oak_planks.png b/public/textures/chipped/versailles_dark_oak_planks.png deleted file mode 100644 index 630828e4..00000000 Binary files a/public/textures/chipped/versailles_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/versailles_jungle_planks.png b/public/textures/chipped/versailles_jungle_planks.png deleted file mode 100644 index efa9c3f8..00000000 Binary files a/public/textures/chipped/versailles_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/versailles_mangrove_planks.png b/public/textures/chipped/versailles_mangrove_planks.png deleted file mode 100644 index 494e1e44..00000000 Binary files a/public/textures/chipped/versailles_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/versailles_oak_planks.png b/public/textures/chipped/versailles_oak_planks.png deleted file mode 100644 index fa7a9c60..00000000 Binary files a/public/textures/chipped/versailles_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/versailles_spruce_planks.png b/public/textures/chipped/versailles_spruce_planks.png deleted file mode 100644 index f3d5479a..00000000 Binary files a/public/textures/chipped/versailles_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/versailles_warped_planks.png b/public/textures/chipped/versailles_warped_planks.png deleted file mode 100644 index c14fddce..00000000 Binary files a/public/textures/chipped/versailles_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_acacia_planks.png b/public/textures/chipped/vertical_acacia_planks.png deleted file mode 100644 index a5cce36f..00000000 Binary files a/public/textures/chipped/vertical_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_bamboo_planks.png b/public/textures/chipped/vertical_bamboo_planks.png deleted file mode 100644 index 3dae16a2..00000000 Binary files a/public/textures/chipped/vertical_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_birch_planks.png b/public/textures/chipped/vertical_birch_planks.png deleted file mode 100644 index c2bc80bf..00000000 Binary files a/public/textures/chipped/vertical_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_botanical_oak_bookshelf.png b/public/textures/chipped/vertical_botanical_oak_bookshelf.png deleted file mode 100644 index 69b7dabc..00000000 Binary files a/public/textures/chipped/vertical_botanical_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cherry_planks.png b/public/textures/chipped/vertical_cherry_planks.png deleted file mode 100644 index 8b1e7715..00000000 Binary files a/public/textures/chipped/vertical_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_crimson_planks.png b/public/textures/chipped/vertical_crimson_planks.png deleted file mode 100644 index 6addc0fd..00000000 Binary files a/public/textures/chipped/vertical_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_amethyst_block.png b/public/textures/chipped/vertical_cut_amethyst_block.png deleted file mode 100644 index 4be07791..00000000 Binary files a/public/textures/chipped/vertical_cut_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_ancient_debris.png b/public/textures/chipped/vertical_cut_ancient_debris.png deleted file mode 100644 index 0c297801..00000000 Binary files a/public/textures/chipped/vertical_cut_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_andesite.png b/public/textures/chipped/vertical_cut_andesite.png deleted file mode 100644 index 282b8240..00000000 Binary files a/public/textures/chipped/vertical_cut_andesite.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_basalt.png b/public/textures/chipped/vertical_cut_basalt.png deleted file mode 100644 index d2f5c514..00000000 Binary files a/public/textures/chipped/vertical_cut_basalt.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_blackstone.png b/public/textures/chipped/vertical_cut_blackstone.png deleted file mode 100644 index dffc2629..00000000 Binary files a/public/textures/chipped/vertical_cut_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_blue_ice.png b/public/textures/chipped/vertical_cut_blue_ice.png deleted file mode 100644 index 5d24012d..00000000 Binary files a/public/textures/chipped/vertical_cut_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_borderless_bricks.png b/public/textures/chipped/vertical_cut_borderless_bricks.png deleted file mode 100644 index b7ccad20..00000000 Binary files a/public/textures/chipped/vertical_cut_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_bricks.png b/public/textures/chipped/vertical_cut_bricks.png deleted file mode 100644 index cbe530a7..00000000 Binary files a/public/textures/chipped/vertical_cut_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_calcite.png b/public/textures/chipped/vertical_cut_calcite.png deleted file mode 100644 index 2231d522..00000000 Binary files a/public/textures/chipped/vertical_cut_calcite.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_clay.png b/public/textures/chipped/vertical_cut_clay.png deleted file mode 100644 index 636f4f43..00000000 Binary files a/public/textures/chipped/vertical_cut_clay.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_coal_block.png b/public/textures/chipped/vertical_cut_coal_block.png deleted file mode 100644 index be8e8894..00000000 Binary files a/public/textures/chipped/vertical_cut_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_cobblestone.png b/public/textures/chipped/vertical_cut_cobblestone.png deleted file mode 100644 index 4a175d85..00000000 Binary files a/public/textures/chipped/vertical_cut_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_crying_obsidian.png b/public/textures/chipped/vertical_cut_crying_obsidian.png deleted file mode 100644 index fb65ddc0..00000000 Binary files a/public/textures/chipped/vertical_cut_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_dark_prismarine.png b/public/textures/chipped/vertical_cut_dark_prismarine.png deleted file mode 100644 index 21a5b878..00000000 Binary files a/public/textures/chipped/vertical_cut_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_deepslate.png b/public/textures/chipped/vertical_cut_deepslate.png deleted file mode 100644 index ba181bcf..00000000 Binary files a/public/textures/chipped/vertical_cut_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_diorite.png b/public/textures/chipped/vertical_cut_diorite.png deleted file mode 100644 index aec4e82b..00000000 Binary files a/public/textures/chipped/vertical_cut_diorite.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_dirt.png b/public/textures/chipped/vertical_cut_dirt.png deleted file mode 100644 index a398be94..00000000 Binary files a/public/textures/chipped/vertical_cut_dirt.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_dripstone_block.png b/public/textures/chipped/vertical_cut_dripstone_block.png deleted file mode 100644 index bc99e8d9..00000000 Binary files a/public/textures/chipped/vertical_cut_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_end_stone.png b/public/textures/chipped/vertical_cut_end_stone.png deleted file mode 100644 index aa4ddefe..00000000 Binary files a/public/textures/chipped/vertical_cut_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_gilded_blackstone.png b/public/textures/chipped/vertical_cut_gilded_blackstone.png deleted file mode 100644 index f9d15c12..00000000 Binary files a/public/textures/chipped/vertical_cut_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_granite.png b/public/textures/chipped/vertical_cut_granite.png deleted file mode 100644 index b6a9a61b..00000000 Binary files a/public/textures/chipped/vertical_cut_granite.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_ice.png b/public/textures/chipped/vertical_cut_ice.png deleted file mode 100644 index 8ad8cb96..00000000 Binary files a/public/textures/chipped/vertical_cut_ice.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_lapis_block.png b/public/textures/chipped/vertical_cut_lapis_block.png deleted file mode 100644 index c4fb2e9e..00000000 Binary files a/public/textures/chipped/vertical_cut_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_lodestone.png b/public/textures/chipped/vertical_cut_lodestone.png deleted file mode 100644 index cc48818e..00000000 Binary files a/public/textures/chipped/vertical_cut_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_magma_block.png b/public/textures/chipped/vertical_cut_magma_block.png deleted file mode 100644 index ca776736..00000000 Binary files a/public/textures/chipped/vertical_cut_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_mossy_cobblestone.png b/public/textures/chipped/vertical_cut_mossy_cobblestone.png deleted file mode 100644 index 41045d8f..00000000 Binary files a/public/textures/chipped/vertical_cut_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_mossy_stone_bricks.png b/public/textures/chipped/vertical_cut_mossy_stone_bricks.png deleted file mode 100644 index 64aa8cbe..00000000 Binary files a/public/textures/chipped/vertical_cut_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_mud.png b/public/textures/chipped/vertical_cut_mud.png deleted file mode 100644 index 83c6d342..00000000 Binary files a/public/textures/chipped/vertical_cut_mud.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_mud_bricks.png b/public/textures/chipped/vertical_cut_mud_bricks.png deleted file mode 100644 index 212dc8ea..00000000 Binary files a/public/textures/chipped/vertical_cut_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_nether_bricks.png b/public/textures/chipped/vertical_cut_nether_bricks.png deleted file mode 100644 index 3f74ed7f..00000000 Binary files a/public/textures/chipped/vertical_cut_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_netherrack.png b/public/textures/chipped/vertical_cut_netherrack.png deleted file mode 100644 index d0263884..00000000 Binary files a/public/textures/chipped/vertical_cut_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_obsidian.png b/public/textures/chipped/vertical_cut_obsidian.png deleted file mode 100644 index e6595be4..00000000 Binary files a/public/textures/chipped/vertical_cut_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_packed_ice.png b/public/textures/chipped/vertical_cut_packed_ice.png deleted file mode 100644 index 7b01c2ee..00000000 Binary files a/public/textures/chipped/vertical_cut_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_packed_mud.png b/public/textures/chipped/vertical_cut_packed_mud.png deleted file mode 100644 index 65c17176..00000000 Binary files a/public/textures/chipped/vertical_cut_packed_mud.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_prismarine.png b/public/textures/chipped/vertical_cut_prismarine.png deleted file mode 100644 index ee436dca..00000000 Binary files a/public/textures/chipped/vertical_cut_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_purpur_block.png b/public/textures/chipped/vertical_cut_purpur_block.png deleted file mode 100644 index cfa862b0..00000000 Binary files a/public/textures/chipped/vertical_cut_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_quartz_block.png b/public/textures/chipped/vertical_cut_quartz_block.png deleted file mode 100644 index 00ea64db..00000000 Binary files a/public/textures/chipped/vertical_cut_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_raw_copper_block.png b/public/textures/chipped/vertical_cut_raw_copper_block.png deleted file mode 100644 index fad2ca2f..00000000 Binary files a/public/textures/chipped/vertical_cut_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_raw_gold_block.png b/public/textures/chipped/vertical_cut_raw_gold_block.png deleted file mode 100644 index c3686286..00000000 Binary files a/public/textures/chipped/vertical_cut_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_raw_iron_block.png b/public/textures/chipped/vertical_cut_raw_iron_block.png deleted file mode 100644 index 22ca3312..00000000 Binary files a/public/textures/chipped/vertical_cut_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_red_nether_bricks.png b/public/textures/chipped/vertical_cut_red_nether_bricks.png deleted file mode 100644 index aa9f0a91..00000000 Binary files a/public/textures/chipped/vertical_cut_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_red_sandstone.png b/public/textures/chipped/vertical_cut_red_sandstone.png deleted file mode 100644 index bf73cdae..00000000 Binary files a/public/textures/chipped/vertical_cut_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_redstone_block.png b/public/textures/chipped/vertical_cut_redstone_block.png deleted file mode 100644 index 522ba570..00000000 Binary files a/public/textures/chipped/vertical_cut_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_sandstone.png b/public/textures/chipped/vertical_cut_sandstone.png deleted file mode 100644 index b1d30c7a..00000000 Binary files a/public/textures/chipped/vertical_cut_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_smooth_stone.png b/public/textures/chipped/vertical_cut_smooth_stone.png deleted file mode 100644 index bb04b489..00000000 Binary files a/public/textures/chipped/vertical_cut_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_snow_block.png b/public/textures/chipped/vertical_cut_snow_block.png deleted file mode 100644 index 54e1afde..00000000 Binary files a/public/textures/chipped/vertical_cut_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_stone.png b/public/textures/chipped/vertical_cut_stone.png deleted file mode 100644 index b0882d74..00000000 Binary files a/public/textures/chipped/vertical_cut_stone.png and /dev/null differ diff --git a/public/textures/chipped/vertical_cut_tuff.png b/public/textures/chipped/vertical_cut_tuff.png deleted file mode 100644 index 5d130ee5..00000000 Binary files a/public/textures/chipped/vertical_cut_tuff.png and /dev/null differ diff --git a/public/textures/chipped/vertical_dark_oak_planks.png b/public/textures/chipped/vertical_dark_oak_planks.png deleted file mode 100644 index dd4172e7..00000000 Binary files a/public/textures/chipped/vertical_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_amethyst_block_bricks.png b/public/textures/chipped/vertical_disordered_amethyst_block_bricks.png deleted file mode 100644 index dd308d8e..00000000 Binary files a/public/textures/chipped/vertical_disordered_amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_ancient_debris_bricks.png b/public/textures/chipped/vertical_disordered_ancient_debris_bricks.png deleted file mode 100644 index 2ec7be08..00000000 Binary files a/public/textures/chipped/vertical_disordered_ancient_debris_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_andesite_bricks.png b/public/textures/chipped/vertical_disordered_andesite_bricks.png deleted file mode 100644 index 5313fa0f..00000000 Binary files a/public/textures/chipped/vertical_disordered_andesite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_basalt_bricks.png b/public/textures/chipped/vertical_disordered_basalt_bricks.png deleted file mode 100644 index caad1fe4..00000000 Binary files a/public/textures/chipped/vertical_disordered_basalt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_blackstone_bricks.png b/public/textures/chipped/vertical_disordered_blackstone_bricks.png deleted file mode 100644 index 3e97ff34..00000000 Binary files a/public/textures/chipped/vertical_disordered_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_blue_ice_bricks.png b/public/textures/chipped/vertical_disordered_blue_ice_bricks.png deleted file mode 100644 index 7f805bd1..00000000 Binary files a/public/textures/chipped/vertical_disordered_blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_borderless_bricks_bricks.png b/public/textures/chipped/vertical_disordered_borderless_bricks_bricks.png deleted file mode 100644 index e6302f6c..00000000 Binary files a/public/textures/chipped/vertical_disordered_borderless_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_bricks_bricks.png b/public/textures/chipped/vertical_disordered_bricks_bricks.png deleted file mode 100644 index b5e72558..00000000 Binary files a/public/textures/chipped/vertical_disordered_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_calcite_bricks.png b/public/textures/chipped/vertical_disordered_calcite_bricks.png deleted file mode 100644 index a75b0348..00000000 Binary files a/public/textures/chipped/vertical_disordered_calcite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_clay_bricks.png b/public/textures/chipped/vertical_disordered_clay_bricks.png deleted file mode 100644 index e155bfc4..00000000 Binary files a/public/textures/chipped/vertical_disordered_clay_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_coal_block_bricks.png b/public/textures/chipped/vertical_disordered_coal_block_bricks.png deleted file mode 100644 index e8c9d458..00000000 Binary files a/public/textures/chipped/vertical_disordered_coal_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_cobblestone_bricks.png b/public/textures/chipped/vertical_disordered_cobblestone_bricks.png deleted file mode 100644 index cda8a594..00000000 Binary files a/public/textures/chipped/vertical_disordered_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_crying_obsidian_bricks.png b/public/textures/chipped/vertical_disordered_crying_obsidian_bricks.png deleted file mode 100644 index 0fd29a8c..00000000 Binary files a/public/textures/chipped/vertical_disordered_crying_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_dark_prismarine_bricks.png b/public/textures/chipped/vertical_disordered_dark_prismarine_bricks.png deleted file mode 100644 index 904e3dda..00000000 Binary files a/public/textures/chipped/vertical_disordered_dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_deepslate_bricks.png b/public/textures/chipped/vertical_disordered_deepslate_bricks.png deleted file mode 100644 index 0711b578..00000000 Binary files a/public/textures/chipped/vertical_disordered_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_diorite_bricks.png b/public/textures/chipped/vertical_disordered_diorite_bricks.png deleted file mode 100644 index 8daaf851..00000000 Binary files a/public/textures/chipped/vertical_disordered_diorite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_dirt_bricks.png b/public/textures/chipped/vertical_disordered_dirt_bricks.png deleted file mode 100644 index c6a0c4cf..00000000 Binary files a/public/textures/chipped/vertical_disordered_dirt_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_dripstone_block_bricks.png b/public/textures/chipped/vertical_disordered_dripstone_block_bricks.png deleted file mode 100644 index 6592d3c2..00000000 Binary files a/public/textures/chipped/vertical_disordered_dripstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_end_stone_bricks.png b/public/textures/chipped/vertical_disordered_end_stone_bricks.png deleted file mode 100644 index 80290ebb..00000000 Binary files a/public/textures/chipped/vertical_disordered_end_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_gilded_blackstone_bricks.png b/public/textures/chipped/vertical_disordered_gilded_blackstone_bricks.png deleted file mode 100644 index b1c4fe0d..00000000 Binary files a/public/textures/chipped/vertical_disordered_gilded_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_granite_bricks.png b/public/textures/chipped/vertical_disordered_granite_bricks.png deleted file mode 100644 index 0ada2a78..00000000 Binary files a/public/textures/chipped/vertical_disordered_granite_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_ice_bricks.png b/public/textures/chipped/vertical_disordered_ice_bricks.png deleted file mode 100644 index 626f9287..00000000 Binary files a/public/textures/chipped/vertical_disordered_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_lapis_block_bricks.png b/public/textures/chipped/vertical_disordered_lapis_block_bricks.png deleted file mode 100644 index 87244579..00000000 Binary files a/public/textures/chipped/vertical_disordered_lapis_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_lodestone_bricks.png b/public/textures/chipped/vertical_disordered_lodestone_bricks.png deleted file mode 100644 index 83748503..00000000 Binary files a/public/textures/chipped/vertical_disordered_lodestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_magma_block_bricks.png b/public/textures/chipped/vertical_disordered_magma_block_bricks.png deleted file mode 100644 index ecc5e189..00000000 Binary files a/public/textures/chipped/vertical_disordered_magma_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_mossy_cobblestone_bricks.png b/public/textures/chipped/vertical_disordered_mossy_cobblestone_bricks.png deleted file mode 100644 index 4a133c2a..00000000 Binary files a/public/textures/chipped/vertical_disordered_mossy_cobblestone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_mossy_stone_bricks_bricks.png b/public/textures/chipped/vertical_disordered_mossy_stone_bricks_bricks.png deleted file mode 100644 index 0a433ea3..00000000 Binary files a/public/textures/chipped/vertical_disordered_mossy_stone_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_mud_bricks.png b/public/textures/chipped/vertical_disordered_mud_bricks.png deleted file mode 100644 index 069fdcc3..00000000 Binary files a/public/textures/chipped/vertical_disordered_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_mud_bricks_bricks.png b/public/textures/chipped/vertical_disordered_mud_bricks_bricks.png deleted file mode 100644 index 8767b225..00000000 Binary files a/public/textures/chipped/vertical_disordered_mud_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_nether_bricks_bricks.png b/public/textures/chipped/vertical_disordered_nether_bricks_bricks.png deleted file mode 100644 index 225e10aa..00000000 Binary files a/public/textures/chipped/vertical_disordered_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_netherrack_bricks.png b/public/textures/chipped/vertical_disordered_netherrack_bricks.png deleted file mode 100644 index 4328bbb5..00000000 Binary files a/public/textures/chipped/vertical_disordered_netherrack_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_obsidian_bricks.png b/public/textures/chipped/vertical_disordered_obsidian_bricks.png deleted file mode 100644 index f0e53c98..00000000 Binary files a/public/textures/chipped/vertical_disordered_obsidian_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_packed_ice_bricks.png b/public/textures/chipped/vertical_disordered_packed_ice_bricks.png deleted file mode 100644 index ae23d7bb..00000000 Binary files a/public/textures/chipped/vertical_disordered_packed_ice_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_packed_mud_bricks.png b/public/textures/chipped/vertical_disordered_packed_mud_bricks.png deleted file mode 100644 index b5850711..00000000 Binary files a/public/textures/chipped/vertical_disordered_packed_mud_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_prismarine_bricks.png b/public/textures/chipped/vertical_disordered_prismarine_bricks.png deleted file mode 100644 index 397c3591..00000000 Binary files a/public/textures/chipped/vertical_disordered_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_purpur_block_bricks.png b/public/textures/chipped/vertical_disordered_purpur_block_bricks.png deleted file mode 100644 index 5c87ed67..00000000 Binary files a/public/textures/chipped/vertical_disordered_purpur_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_quartz_block_bricks.png b/public/textures/chipped/vertical_disordered_quartz_block_bricks.png deleted file mode 100644 index 23323d7d..00000000 Binary files a/public/textures/chipped/vertical_disordered_quartz_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_raw_copper_block_bricks.png b/public/textures/chipped/vertical_disordered_raw_copper_block_bricks.png deleted file mode 100644 index b7fc5f66..00000000 Binary files a/public/textures/chipped/vertical_disordered_raw_copper_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_raw_gold_block_bricks.png b/public/textures/chipped/vertical_disordered_raw_gold_block_bricks.png deleted file mode 100644 index 103e841b..00000000 Binary files a/public/textures/chipped/vertical_disordered_raw_gold_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_raw_iron_block_bricks.png b/public/textures/chipped/vertical_disordered_raw_iron_block_bricks.png deleted file mode 100644 index ceba49ff..00000000 Binary files a/public/textures/chipped/vertical_disordered_raw_iron_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_red_nether_bricks_bricks.png b/public/textures/chipped/vertical_disordered_red_nether_bricks_bricks.png deleted file mode 100644 index 635a6d96..00000000 Binary files a/public/textures/chipped/vertical_disordered_red_nether_bricks_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_red_sandstone_bricks.png b/public/textures/chipped/vertical_disordered_red_sandstone_bricks.png deleted file mode 100644 index 9cd4b848..00000000 Binary files a/public/textures/chipped/vertical_disordered_red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_redstone_block_bricks.png b/public/textures/chipped/vertical_disordered_redstone_block_bricks.png deleted file mode 100644 index b0f7c139..00000000 Binary files a/public/textures/chipped/vertical_disordered_redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_sandstone_bricks.png b/public/textures/chipped/vertical_disordered_sandstone_bricks.png deleted file mode 100644 index 6bd92e9e..00000000 Binary files a/public/textures/chipped/vertical_disordered_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_smooth_stone_bricks.png b/public/textures/chipped/vertical_disordered_smooth_stone_bricks.png deleted file mode 100644 index 7ed13631..00000000 Binary files a/public/textures/chipped/vertical_disordered_smooth_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_snow_block_bricks.png b/public/textures/chipped/vertical_disordered_snow_block_bricks.png deleted file mode 100644 index 4ce27880..00000000 Binary files a/public/textures/chipped/vertical_disordered_snow_block_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_stone_bricks.png b/public/textures/chipped/vertical_disordered_stone_bricks.png deleted file mode 100644 index 93b03205..00000000 Binary files a/public/textures/chipped/vertical_disordered_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_disordered_tuff_bricks.png b/public/textures/chipped/vertical_disordered_tuff_bricks.png deleted file mode 100644 index ecdca225..00000000 Binary files a/public/textures/chipped/vertical_disordered_tuff_bricks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_jungle_planks.png b/public/textures/chipped/vertical_jungle_planks.png deleted file mode 100644 index 928898fc..00000000 Binary files a/public/textures/chipped/vertical_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_layered_stripped_mangrove_log.png b/public/textures/chipped/vertical_layered_stripped_mangrove_log.png deleted file mode 100644 index 2e9ed57d..00000000 Binary files a/public/textures/chipped/vertical_layered_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/vertical_leaded_glass.png b/public/textures/chipped/vertical_leaded_glass.png deleted file mode 100644 index bd6c57a1..00000000 Binary files a/public/textures/chipped/vertical_leaded_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_leaded_glass_pane.png b/public/textures/chipped/vertical_leaded_glass_pane.png deleted file mode 100644 index 65c0f2be..00000000 Binary files a/public/textures/chipped/vertical_leaded_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_mangrove_planks.png b/public/textures/chipped/vertical_mangrove_planks.png deleted file mode 100644 index 022e9647..00000000 Binary files a/public/textures/chipped/vertical_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_mixed_oak_bookshelf.png b/public/textures/chipped/vertical_mixed_oak_bookshelf.png deleted file mode 100644 index d9aa717f..00000000 Binary files a/public/textures/chipped/vertical_mixed_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/vertical_oak_bookshelf.png b/public/textures/chipped/vertical_oak_bookshelf.png deleted file mode 100644 index 857d09bd..00000000 Binary files a/public/textures/chipped/vertical_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/vertical_oak_lighted_bookshelf.png b/public/textures/chipped/vertical_oak_lighted_bookshelf.png deleted file mode 100644 index 4b2df36f..00000000 Binary files a/public/textures/chipped/vertical_oak_lighted_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/vertical_oak_planks.png b/public/textures/chipped/vertical_oak_planks.png deleted file mode 100644 index f62b868e..00000000 Binary files a/public/textures/chipped/vertical_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_oak_webbed_bookshelf.png b/public/textures/chipped/vertical_oak_webbed_bookshelf.png deleted file mode 100644 index bc7f5f9a..00000000 Binary files a/public/textures/chipped/vertical_oak_webbed_bookshelf.png and /dev/null differ diff --git a/public/textures/chipped/vertical_spruce_planks.png b/public/textures/chipped/vertical_spruce_planks.png deleted file mode 100644 index 1c6650d3..00000000 Binary files a/public/textures/chipped/vertical_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_black_stained_glass.png b/public/textures/chipped/vertical_stiped_black_stained_glass.png deleted file mode 100644 index a3a6b89a..00000000 Binary files a/public/textures/chipped/vertical_stiped_black_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_black_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_black_stained_glass_pane.png deleted file mode 100644 index 54942042..00000000 Binary files a/public/textures/chipped/vertical_stiped_black_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_blue_stained_glass.png b/public/textures/chipped/vertical_stiped_blue_stained_glass.png deleted file mode 100644 index 721d91b5..00000000 Binary files a/public/textures/chipped/vertical_stiped_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_blue_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_blue_stained_glass_pane.png deleted file mode 100644 index 2aad1566..00000000 Binary files a/public/textures/chipped/vertical_stiped_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_brown_stained_glass.png b/public/textures/chipped/vertical_stiped_brown_stained_glass.png deleted file mode 100644 index b92d2c62..00000000 Binary files a/public/textures/chipped/vertical_stiped_brown_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_brown_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_brown_stained_glass_pane.png deleted file mode 100644 index df0c94a2..00000000 Binary files a/public/textures/chipped/vertical_stiped_brown_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_cyan_stained_glass.png b/public/textures/chipped/vertical_stiped_cyan_stained_glass.png deleted file mode 100644 index ea3b7e49..00000000 Binary files a/public/textures/chipped/vertical_stiped_cyan_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_cyan_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_cyan_stained_glass_pane.png deleted file mode 100644 index 52953bd1..00000000 Binary files a/public/textures/chipped/vertical_stiped_cyan_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_gray_stained_glass.png b/public/textures/chipped/vertical_stiped_gray_stained_glass.png deleted file mode 100644 index 5fed8087..00000000 Binary files a/public/textures/chipped/vertical_stiped_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_gray_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_gray_stained_glass_pane.png deleted file mode 100644 index b2e8c0c5..00000000 Binary files a/public/textures/chipped/vertical_stiped_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_green_stained_glass.png b/public/textures/chipped/vertical_stiped_green_stained_glass.png deleted file mode 100644 index 761e9a98..00000000 Binary files a/public/textures/chipped/vertical_stiped_green_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_green_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_green_stained_glass_pane.png deleted file mode 100644 index c6178fc5..00000000 Binary files a/public/textures/chipped/vertical_stiped_green_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_light_blue_stained_glass.png b/public/textures/chipped/vertical_stiped_light_blue_stained_glass.png deleted file mode 100644 index db6b2314..00000000 Binary files a/public/textures/chipped/vertical_stiped_light_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_light_blue_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_light_blue_stained_glass_pane.png deleted file mode 100644 index c7f19bfb..00000000 Binary files a/public/textures/chipped/vertical_stiped_light_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_light_gray_stained_glass.png b/public/textures/chipped/vertical_stiped_light_gray_stained_glass.png deleted file mode 100644 index f9a76c72..00000000 Binary files a/public/textures/chipped/vertical_stiped_light_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_light_gray_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_light_gray_stained_glass_pane.png deleted file mode 100644 index 0523f26f..00000000 Binary files a/public/textures/chipped/vertical_stiped_light_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_lime_stained_glass.png b/public/textures/chipped/vertical_stiped_lime_stained_glass.png deleted file mode 100644 index 524ec39f..00000000 Binary files a/public/textures/chipped/vertical_stiped_lime_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_lime_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_lime_stained_glass_pane.png deleted file mode 100644 index 3c530825..00000000 Binary files a/public/textures/chipped/vertical_stiped_lime_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_magenta_stained_glass.png b/public/textures/chipped/vertical_stiped_magenta_stained_glass.png deleted file mode 100644 index e76b7104..00000000 Binary files a/public/textures/chipped/vertical_stiped_magenta_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_magenta_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_magenta_stained_glass_pane.png deleted file mode 100644 index 97e5b186..00000000 Binary files a/public/textures/chipped/vertical_stiped_magenta_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_orange_stained_glass.png b/public/textures/chipped/vertical_stiped_orange_stained_glass.png deleted file mode 100644 index a5b3e870..00000000 Binary files a/public/textures/chipped/vertical_stiped_orange_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_orange_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_orange_stained_glass_pane.png deleted file mode 100644 index f2f29a94..00000000 Binary files a/public/textures/chipped/vertical_stiped_orange_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_pink_stained_glass.png b/public/textures/chipped/vertical_stiped_pink_stained_glass.png deleted file mode 100644 index 67f9fdc3..00000000 Binary files a/public/textures/chipped/vertical_stiped_pink_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_pink_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_pink_stained_glass_pane.png deleted file mode 100644 index e6f7e00a..00000000 Binary files a/public/textures/chipped/vertical_stiped_pink_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_purple_stained_glass.png b/public/textures/chipped/vertical_stiped_purple_stained_glass.png deleted file mode 100644 index 7542ed79..00000000 Binary files a/public/textures/chipped/vertical_stiped_purple_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_purple_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_purple_stained_glass_pane.png deleted file mode 100644 index 6eb9e79c..00000000 Binary files a/public/textures/chipped/vertical_stiped_purple_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_red_stained_glass.png b/public/textures/chipped/vertical_stiped_red_stained_glass.png deleted file mode 100644 index 3f1b737b..00000000 Binary files a/public/textures/chipped/vertical_stiped_red_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_red_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_red_stained_glass_pane.png deleted file mode 100644 index 72f819da..00000000 Binary files a/public/textures/chipped/vertical_stiped_red_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_white_stained_glass.png b/public/textures/chipped/vertical_stiped_white_stained_glass.png deleted file mode 100644 index 3ffe821e..00000000 Binary files a/public/textures/chipped/vertical_stiped_white_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_white_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_white_stained_glass_pane.png deleted file mode 100644 index d6db5ef4..00000000 Binary files a/public/textures/chipped/vertical_stiped_white_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_yellow_stained_glass.png b/public/textures/chipped/vertical_stiped_yellow_stained_glass.png deleted file mode 100644 index 9b79c022..00000000 Binary files a/public/textures/chipped/vertical_stiped_yellow_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/vertical_stiped_yellow_stained_glass_pane.png b/public/textures/chipped/vertical_stiped_yellow_stained_glass_pane.png deleted file mode 100644 index 1f3a26fa..00000000 Binary files a/public/textures/chipped/vertical_stiped_yellow_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/vertical_warped_planks.png b/public/textures/chipped/vertical_warped_planks.png deleted file mode 100644 index 051e468e..00000000 Binary files a/public/textures/chipped/vertical_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertically_railed_acacia_planks.png b/public/textures/chipped/vertically_railed_acacia_planks.png deleted file mode 100644 index 6e10e5cc..00000000 Binary files a/public/textures/chipped/vertically_railed_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertically_railed_bamboo_planks.png b/public/textures/chipped/vertically_railed_bamboo_planks.png deleted file mode 100644 index 39919d6b..00000000 Binary files a/public/textures/chipped/vertically_railed_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertically_railed_birch_planks.png b/public/textures/chipped/vertically_railed_birch_planks.png deleted file mode 100644 index f5a8f49f..00000000 Binary files a/public/textures/chipped/vertically_railed_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertically_railed_cherry_planks.png b/public/textures/chipped/vertically_railed_cherry_planks.png deleted file mode 100644 index 8d966afc..00000000 Binary files a/public/textures/chipped/vertically_railed_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertically_railed_crimson_planks.png b/public/textures/chipped/vertically_railed_crimson_planks.png deleted file mode 100644 index 2aabf61b..00000000 Binary files a/public/textures/chipped/vertically_railed_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertically_railed_dark_oak_planks.png b/public/textures/chipped/vertically_railed_dark_oak_planks.png deleted file mode 100644 index fe8b0b58..00000000 Binary files a/public/textures/chipped/vertically_railed_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertically_railed_jungle_planks.png b/public/textures/chipped/vertically_railed_jungle_planks.png deleted file mode 100644 index f85d71c7..00000000 Binary files a/public/textures/chipped/vertically_railed_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertically_railed_mangrove_planks.png b/public/textures/chipped/vertically_railed_mangrove_planks.png deleted file mode 100644 index 55a0a1e5..00000000 Binary files a/public/textures/chipped/vertically_railed_mangrove_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertically_railed_oak_planks.png b/public/textures/chipped/vertically_railed_oak_planks.png deleted file mode 100644 index b724590a..00000000 Binary files a/public/textures/chipped/vertically_railed_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertically_railed_spruce_planks.png b/public/textures/chipped/vertically_railed_spruce_planks.png deleted file mode 100644 index 2060d863..00000000 Binary files a/public/textures/chipped/vertically_railed_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/vertically_railed_warped_planks.png b/public/textures/chipped/vertically_railed_warped_planks.png deleted file mode 100644 index b70309e6..00000000 Binary files a/public/textures/chipped/vertically_railed_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/victorian_iron_bars_pikes.png b/public/textures/chipped/victorian_iron_bars_pikes.png deleted file mode 100644 index 2fdca4f5..00000000 Binary files a/public/textures/chipped/victorian_iron_bars_pikes.png and /dev/null differ diff --git a/public/textures/chipped/vined_acacia_trapdoor.png b/public/textures/chipped/vined_acacia_trapdoor.png deleted file mode 100644 index c74f7948..00000000 Binary files a/public/textures/chipped/vined_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/vined_bamboo_trapdoor.png b/public/textures/chipped/vined_bamboo_trapdoor.png deleted file mode 100644 index 32539029..00000000 Binary files a/public/textures/chipped/vined_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/vined_birch_trapdoor.png b/public/textures/chipped/vined_birch_trapdoor.png deleted file mode 100644 index 860d6567..00000000 Binary files a/public/textures/chipped/vined_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/vined_cherry_trapdoor.png b/public/textures/chipped/vined_cherry_trapdoor.png deleted file mode 100644 index 2fe1012f..00000000 Binary files a/public/textures/chipped/vined_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/vined_crimson_trapdoor.png b/public/textures/chipped/vined_crimson_trapdoor.png deleted file mode 100644 index c7395d20..00000000 Binary files a/public/textures/chipped/vined_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/vined_dark_oak_trapdoor.png b/public/textures/chipped/vined_dark_oak_trapdoor.png deleted file mode 100644 index 4670a74d..00000000 Binary files a/public/textures/chipped/vined_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/vined_iron_bars.png b/public/textures/chipped/vined_iron_bars.png deleted file mode 100644 index 267d1308..00000000 Binary files a/public/textures/chipped/vined_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/vined_jungle_trapdoor.png b/public/textures/chipped/vined_jungle_trapdoor.png deleted file mode 100644 index a2d3004f..00000000 Binary files a/public/textures/chipped/vined_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/vined_mangrove_trapdoor.png b/public/textures/chipped/vined_mangrove_trapdoor.png deleted file mode 100644 index 1a6ae272..00000000 Binary files a/public/textures/chipped/vined_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/vined_oak_trapdoor.png b/public/textures/chipped/vined_oak_trapdoor.png deleted file mode 100644 index 67a3bc04..00000000 Binary files a/public/textures/chipped/vined_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/vined_spruce_trapdoor.png b/public/textures/chipped/vined_spruce_trapdoor.png deleted file mode 100644 index 88abd282..00000000 Binary files a/public/textures/chipped/vined_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/vined_warped_trapdoor.png b/public/textures/chipped/vined_warped_trapdoor.png deleted file mode 100644 index 4d3e95e5..00000000 Binary files a/public/textures/chipped/vined_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warm_mushroom_stem.png b/public/textures/chipped/warm_mushroom_stem.png deleted file mode 100644 index f2c5724f..00000000 Binary files a/public/textures/chipped/warm_mushroom_stem.png and /dev/null differ diff --git a/public/textures/chipped/warning_black_concrete.png b/public/textures/chipped/warning_black_concrete.png deleted file mode 100644 index 451b5d2f..00000000 Binary files a/public/textures/chipped/warning_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_blue_concrete.png b/public/textures/chipped/warning_blue_concrete.png deleted file mode 100644 index 54780fd8..00000000 Binary files a/public/textures/chipped/warning_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_brown_concrete.png b/public/textures/chipped/warning_brown_concrete.png deleted file mode 100644 index 1f30fdca..00000000 Binary files a/public/textures/chipped/warning_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_cyan_concrete.png b/public/textures/chipped/warning_cyan_concrete.png deleted file mode 100644 index 1d4dc6be..00000000 Binary files a/public/textures/chipped/warning_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_gray_concrete.png b/public/textures/chipped/warning_gray_concrete.png deleted file mode 100644 index a3a6d5ac..00000000 Binary files a/public/textures/chipped/warning_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_green_concrete.png b/public/textures/chipped/warning_green_concrete.png deleted file mode 100644 index 51458af5..00000000 Binary files a/public/textures/chipped/warning_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_light_blue_concrete.png b/public/textures/chipped/warning_light_blue_concrete.png deleted file mode 100644 index dcf51a74..00000000 Binary files a/public/textures/chipped/warning_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_light_gray_concrete.png b/public/textures/chipped/warning_light_gray_concrete.png deleted file mode 100644 index f4006adf..00000000 Binary files a/public/textures/chipped/warning_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_lime_concrete.png b/public/textures/chipped/warning_lime_concrete.png deleted file mode 100644 index 2a03f90e..00000000 Binary files a/public/textures/chipped/warning_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_magenta_concrete.png b/public/textures/chipped/warning_magenta_concrete.png deleted file mode 100644 index e3e26801..00000000 Binary files a/public/textures/chipped/warning_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_orange_concrete.png b/public/textures/chipped/warning_orange_concrete.png deleted file mode 100644 index 18f35102..00000000 Binary files a/public/textures/chipped/warning_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_pink_concrete.png b/public/textures/chipped/warning_pink_concrete.png deleted file mode 100644 index 3788d1ee..00000000 Binary files a/public/textures/chipped/warning_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_purple_concrete.png b/public/textures/chipped/warning_purple_concrete.png deleted file mode 100644 index a947dfb2..00000000 Binary files a/public/textures/chipped/warning_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_red_concrete.png b/public/textures/chipped/warning_red_concrete.png deleted file mode 100644 index c46832a0..00000000 Binary files a/public/textures/chipped/warning_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_white_concrete.png b/public/textures/chipped/warning_white_concrete.png deleted file mode 100644 index a18a7588..00000000 Binary files a/public/textures/chipped/warning_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warning_yellow_concrete.png b/public/textures/chipped/warning_yellow_concrete.png deleted file mode 100644 index b7019388..00000000 Binary files a/public/textures/chipped/warning_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/warped_crate.png b/public/textures/chipped/warped_crate.png deleted file mode 100644 index 432745ac..00000000 Binary files a/public/textures/chipped/warped_crate.png and /dev/null differ diff --git a/public/textures/chipped/warped_fungus_bulb.png b/public/textures/chipped/warped_fungus_bulb.png deleted file mode 100644 index 37f230af..00000000 Binary files a/public/textures/chipped/warped_fungus_bulb.png and /dev/null differ diff --git a/public/textures/chipped/warped_fungus_bushel.png b/public/textures/chipped/warped_fungus_bushel.png deleted file mode 100644 index 0b67c4cd..00000000 Binary files a/public/textures/chipped/warped_fungus_bushel.png and /dev/null differ diff --git a/public/textures/chipped/warped_fungus_cluster.png b/public/textures/chipped/warped_fungus_cluster.png deleted file mode 100644 index 345a19ad..00000000 Binary files a/public/textures/chipped/warped_fungus_cluster.png and /dev/null differ diff --git a/public/textures/chipped/warped_fungus_trio.png b/public/textures/chipped/warped_fungus_trio.png deleted file mode 100644 index 67e9ae29..00000000 Binary files a/public/textures/chipped/warped_fungus_trio.png and /dev/null differ diff --git a/public/textures/chipped/warped_planks_mosaic.png b/public/textures/chipped/warped_planks_mosaic.png deleted file mode 100644 index bc0e5035..00000000 Binary files a/public/textures/chipped/warped_planks_mosaic.png and /dev/null differ diff --git a/public/textures/chipped/warped_planks_panel.png b/public/textures/chipped/warped_planks_panel.png deleted file mode 100644 index e9921da0..00000000 Binary files a/public/textures/chipped/warped_planks_panel.png and /dev/null differ diff --git a/public/textures/chipped/warped_planks_shavings.png b/public/textures/chipped/warped_planks_shavings.png deleted file mode 100644 index e70ba310..00000000 Binary files a/public/textures/chipped/warped_planks_shavings.png and /dev/null differ diff --git a/public/textures/chipped/warped_torch.png b/public/textures/chipped/warped_torch.png deleted file mode 100644 index b2746e6f..00000000 Binary files a/public/textures/chipped/warped_torch.png and /dev/null differ diff --git a/public/textures/chipped/warped_vine.png b/public/textures/chipped/warped_vine.png deleted file mode 100644 index 194f9c39..00000000 Binary files a/public/textures/chipped/warped_vine.png and /dev/null differ diff --git a/public/textures/chipped/wart_dried_kelp_block.png b/public/textures/chipped/wart_dried_kelp_block.png deleted file mode 100644 index 13fe74dc..00000000 Binary files a/public/textures/chipped/wart_dried_kelp_block.png and /dev/null differ diff --git a/public/textures/chipped/warted_acacia_trapdoor.png b/public/textures/chipped/warted_acacia_trapdoor.png deleted file mode 100644 index ec0c81b1..00000000 Binary files a/public/textures/chipped/warted_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warted_bamboo_trapdoor.png b/public/textures/chipped/warted_bamboo_trapdoor.png deleted file mode 100644 index d16b707c..00000000 Binary files a/public/textures/chipped/warted_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warted_birch_trapdoor.png b/public/textures/chipped/warted_birch_trapdoor.png deleted file mode 100644 index 792819f8..00000000 Binary files a/public/textures/chipped/warted_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warted_cherry_trapdoor.png b/public/textures/chipped/warted_cherry_trapdoor.png deleted file mode 100644 index da98527a..00000000 Binary files a/public/textures/chipped/warted_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warted_crimson_trapdoor.png b/public/textures/chipped/warted_crimson_trapdoor.png deleted file mode 100644 index 83f87011..00000000 Binary files a/public/textures/chipped/warted_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warted_dark_oak_trapdoor.png b/public/textures/chipped/warted_dark_oak_trapdoor.png deleted file mode 100644 index c246c922..00000000 Binary files a/public/textures/chipped/warted_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warted_jungle_trapdoor.png b/public/textures/chipped/warted_jungle_trapdoor.png deleted file mode 100644 index f9841d1d..00000000 Binary files a/public/textures/chipped/warted_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warted_mangrove_trapdoor.png b/public/textures/chipped/warted_mangrove_trapdoor.png deleted file mode 100644 index 662a5b02..00000000 Binary files a/public/textures/chipped/warted_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warted_oak_trapdoor.png b/public/textures/chipped/warted_oak_trapdoor.png deleted file mode 100644 index b2857ed3..00000000 Binary files a/public/textures/chipped/warted_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warted_spruce_trapdoor.png b/public/textures/chipped/warted_spruce_trapdoor.png deleted file mode 100644 index 43e0edec..00000000 Binary files a/public/textures/chipped/warted_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warted_warped_trapdoor.png b/public/textures/chipped/warted_warped_trapdoor.png deleted file mode 100644 index 67b7a331..00000000 Binary files a/public/textures/chipped/warted_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/warty_nether_sprouts.png b/public/textures/chipped/warty_nether_sprouts.png deleted file mode 100644 index 5047a095..00000000 Binary files a/public/textures/chipped/warty_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/watching_lodestone.png b/public/textures/chipped/watching_lodestone.png deleted file mode 100644 index e40cbae6..00000000 Binary files a/public/textures/chipped/watching_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/watering_can.png b/public/textures/chipped/watering_can.png deleted file mode 100644 index c42f8f7c..00000000 Binary files a/public/textures/chipped/watering_can.png and /dev/null differ diff --git a/public/textures/chipped/waved_black_glazed_terracotta.png b/public/textures/chipped/waved_black_glazed_terracotta.png deleted file mode 100644 index 335c5fa8..00000000 Binary files a/public/textures/chipped/waved_black_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_blue_glazed_terracotta.png b/public/textures/chipped/waved_blue_glazed_terracotta.png deleted file mode 100644 index a6563a5e..00000000 Binary files a/public/textures/chipped/waved_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_brown_glazed_terracotta.png b/public/textures/chipped/waved_brown_glazed_terracotta.png deleted file mode 100644 index a4d12ec4..00000000 Binary files a/public/textures/chipped/waved_brown_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_cyan_glazed_terracotta.png b/public/textures/chipped/waved_cyan_glazed_terracotta.png deleted file mode 100644 index a013f8b9..00000000 Binary files a/public/textures/chipped/waved_cyan_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_gray_glazed_terracotta.png b/public/textures/chipped/waved_gray_glazed_terracotta.png deleted file mode 100644 index 91734c19..00000000 Binary files a/public/textures/chipped/waved_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_green_glazed_terracotta.png b/public/textures/chipped/waved_green_glazed_terracotta.png deleted file mode 100644 index b6a6fa3c..00000000 Binary files a/public/textures/chipped/waved_green_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_light_blue_glazed_terracotta.png b/public/textures/chipped/waved_light_blue_glazed_terracotta.png deleted file mode 100644 index 4a701174..00000000 Binary files a/public/textures/chipped/waved_light_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_light_gray_glazed_terracotta.png b/public/textures/chipped/waved_light_gray_glazed_terracotta.png deleted file mode 100644 index 91236407..00000000 Binary files a/public/textures/chipped/waved_light_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_lime_glazed_terracotta.png b/public/textures/chipped/waved_lime_glazed_terracotta.png deleted file mode 100644 index 73e3ebfd..00000000 Binary files a/public/textures/chipped/waved_lime_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_magenta_glazed_terracotta.png b/public/textures/chipped/waved_magenta_glazed_terracotta.png deleted file mode 100644 index 921f0b4d..00000000 Binary files a/public/textures/chipped/waved_magenta_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_orange_glazed_terracotta.png b/public/textures/chipped/waved_orange_glazed_terracotta.png deleted file mode 100644 index 89a5da49..00000000 Binary files a/public/textures/chipped/waved_orange_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_pink_glazed_terracotta.png b/public/textures/chipped/waved_pink_glazed_terracotta.png deleted file mode 100644 index dad3b0f6..00000000 Binary files a/public/textures/chipped/waved_pink_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_purple_glazed_terracotta.png b/public/textures/chipped/waved_purple_glazed_terracotta.png deleted file mode 100644 index 2f8202df..00000000 Binary files a/public/textures/chipped/waved_purple_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_red_glazed_terracotta.png b/public/textures/chipped/waved_red_glazed_terracotta.png deleted file mode 100644 index d9a0c496..00000000 Binary files a/public/textures/chipped/waved_red_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_white_glazed_terracotta.png b/public/textures/chipped/waved_white_glazed_terracotta.png deleted file mode 100644 index ca85304e..00000000 Binary files a/public/textures/chipped/waved_white_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/waved_yellow_glazed_terracotta.png b/public/textures/chipped/waved_yellow_glazed_terracotta.png deleted file mode 100644 index 82286b5f..00000000 Binary files a/public/textures/chipped/waved_yellow_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/chipped/weathered_amethyst_block.png b/public/textures/chipped/weathered_amethyst_block.png deleted file mode 100644 index 65088c80..00000000 Binary files a/public/textures/chipped/weathered_amethyst_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_ancient_debris.png b/public/textures/chipped/weathered_ancient_debris.png deleted file mode 100644 index 01bf6bdc..00000000 Binary files a/public/textures/chipped/weathered_ancient_debris.png and /dev/null differ diff --git a/public/textures/chipped/weathered_andesite.png b/public/textures/chipped/weathered_andesite.png deleted file mode 100644 index f4ff7525..00000000 Binary files a/public/textures/chipped/weathered_andesite.png and /dev/null differ diff --git a/public/textures/chipped/weathered_basalt.png b/public/textures/chipped/weathered_basalt.png deleted file mode 100644 index de3efec8..00000000 Binary files a/public/textures/chipped/weathered_basalt.png and /dev/null differ diff --git a/public/textures/chipped/weathered_blue_ice.png b/public/textures/chipped/weathered_blue_ice.png deleted file mode 100644 index 93091a01..00000000 Binary files a/public/textures/chipped/weathered_blue_ice.png and /dev/null differ diff --git a/public/textures/chipped/weathered_borderless_bricks.png b/public/textures/chipped/weathered_borderless_bricks.png deleted file mode 100644 index 8ef68756..00000000 Binary files a/public/textures/chipped/weathered_borderless_bricks.png and /dev/null differ diff --git a/public/textures/chipped/weathered_bricks.png b/public/textures/chipped/weathered_bricks.png deleted file mode 100644 index 8ef68756..00000000 Binary files a/public/textures/chipped/weathered_bricks.png and /dev/null differ diff --git a/public/textures/chipped/weathered_calcite.png b/public/textures/chipped/weathered_calcite.png deleted file mode 100644 index 3d6d84d3..00000000 Binary files a/public/textures/chipped/weathered_calcite.png and /dev/null differ diff --git a/public/textures/chipped/weathered_clay.png b/public/textures/chipped/weathered_clay.png deleted file mode 100644 index 5f46dd47..00000000 Binary files a/public/textures/chipped/weathered_clay.png and /dev/null differ diff --git a/public/textures/chipped/weathered_coal_block.png b/public/textures/chipped/weathered_coal_block.png deleted file mode 100644 index 490349d8..00000000 Binary files a/public/textures/chipped/weathered_coal_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_cobblestone.png b/public/textures/chipped/weathered_cobblestone.png deleted file mode 100644 index 29f2e933..00000000 Binary files a/public/textures/chipped/weathered_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/weathered_crying_obsidian.png b/public/textures/chipped/weathered_crying_obsidian.png deleted file mode 100644 index 14b20571..00000000 Binary files a/public/textures/chipped/weathered_crying_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/weathered_dark_prismarine.png b/public/textures/chipped/weathered_dark_prismarine.png deleted file mode 100644 index 125eb02b..00000000 Binary files a/public/textures/chipped/weathered_dark_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/weathered_deepslate.png b/public/textures/chipped/weathered_deepslate.png deleted file mode 100644 index 6df34500..00000000 Binary files a/public/textures/chipped/weathered_deepslate.png and /dev/null differ diff --git a/public/textures/chipped/weathered_diorite.png b/public/textures/chipped/weathered_diorite.png deleted file mode 100644 index 1e0493c6..00000000 Binary files a/public/textures/chipped/weathered_diorite.png and /dev/null differ diff --git a/public/textures/chipped/weathered_dirt.png b/public/textures/chipped/weathered_dirt.png deleted file mode 100644 index 303e9823..00000000 Binary files a/public/textures/chipped/weathered_dirt.png and /dev/null differ diff --git a/public/textures/chipped/weathered_dripstone_block.png b/public/textures/chipped/weathered_dripstone_block.png deleted file mode 100644 index 44d1e2a2..00000000 Binary files a/public/textures/chipped/weathered_dripstone_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_end_stone.png b/public/textures/chipped/weathered_end_stone.png deleted file mode 100644 index 4da56d89..00000000 Binary files a/public/textures/chipped/weathered_end_stone.png and /dev/null differ diff --git a/public/textures/chipped/weathered_gilded_blackstone.png b/public/textures/chipped/weathered_gilded_blackstone.png deleted file mode 100644 index 2cb36261..00000000 Binary files a/public/textures/chipped/weathered_gilded_blackstone.png and /dev/null differ diff --git a/public/textures/chipped/weathered_granite.png b/public/textures/chipped/weathered_granite.png deleted file mode 100644 index 2e6fc207..00000000 Binary files a/public/textures/chipped/weathered_granite.png and /dev/null differ diff --git a/public/textures/chipped/weathered_ice.png b/public/textures/chipped/weathered_ice.png deleted file mode 100644 index 724a2a6e..00000000 Binary files a/public/textures/chipped/weathered_ice.png and /dev/null differ diff --git a/public/textures/chipped/weathered_lapis_block.png b/public/textures/chipped/weathered_lapis_block.png deleted file mode 100644 index 66c2f7b1..00000000 Binary files a/public/textures/chipped/weathered_lapis_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_lodestone.png b/public/textures/chipped/weathered_lodestone.png deleted file mode 100644 index 240abd92..00000000 Binary files a/public/textures/chipped/weathered_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/weathered_magma_block.png b/public/textures/chipped/weathered_magma_block.png deleted file mode 100644 index edf092a8..00000000 Binary files a/public/textures/chipped/weathered_magma_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_mossy_cobblestone.png b/public/textures/chipped/weathered_mossy_cobblestone.png deleted file mode 100644 index 758d0fdc..00000000 Binary files a/public/textures/chipped/weathered_mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/chipped/weathered_mossy_stone_bricks.png b/public/textures/chipped/weathered_mossy_stone_bricks.png deleted file mode 100644 index d2eb0b66..00000000 Binary files a/public/textures/chipped/weathered_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/chipped/weathered_nether_bricks.png b/public/textures/chipped/weathered_nether_bricks.png deleted file mode 100644 index b1add805..00000000 Binary files a/public/textures/chipped/weathered_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/weathered_netherrack.png b/public/textures/chipped/weathered_netherrack.png deleted file mode 100644 index bdbec93b..00000000 Binary files a/public/textures/chipped/weathered_netherrack.png and /dev/null differ diff --git a/public/textures/chipped/weathered_obsidian.png b/public/textures/chipped/weathered_obsidian.png deleted file mode 100644 index ce0b9789..00000000 Binary files a/public/textures/chipped/weathered_obsidian.png and /dev/null differ diff --git a/public/textures/chipped/weathered_packed_ice.png b/public/textures/chipped/weathered_packed_ice.png deleted file mode 100644 index 1f69e743..00000000 Binary files a/public/textures/chipped/weathered_packed_ice.png and /dev/null differ diff --git a/public/textures/chipped/weathered_prismarine.png b/public/textures/chipped/weathered_prismarine.png deleted file mode 100644 index 3c220a0f..00000000 Binary files a/public/textures/chipped/weathered_prismarine.png and /dev/null differ diff --git a/public/textures/chipped/weathered_purpur_block.png b/public/textures/chipped/weathered_purpur_block.png deleted file mode 100644 index 4d54652a..00000000 Binary files a/public/textures/chipped/weathered_purpur_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_quartz_block.png b/public/textures/chipped/weathered_quartz_block.png deleted file mode 100644 index a3e26285..00000000 Binary files a/public/textures/chipped/weathered_quartz_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_raw_copper_block.png b/public/textures/chipped/weathered_raw_copper_block.png deleted file mode 100644 index cc7b1d4c..00000000 Binary files a/public/textures/chipped/weathered_raw_copper_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_raw_gold_block.png b/public/textures/chipped/weathered_raw_gold_block.png deleted file mode 100644 index f94105b5..00000000 Binary files a/public/textures/chipped/weathered_raw_gold_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_raw_iron_block.png b/public/textures/chipped/weathered_raw_iron_block.png deleted file mode 100644 index b44e7882..00000000 Binary files a/public/textures/chipped/weathered_raw_iron_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_red_nether_bricks.png b/public/textures/chipped/weathered_red_nether_bricks.png deleted file mode 100644 index 6caea1f3..00000000 Binary files a/public/textures/chipped/weathered_red_nether_bricks.png and /dev/null differ diff --git a/public/textures/chipped/weathered_red_sandstone.png b/public/textures/chipped/weathered_red_sandstone.png deleted file mode 100644 index 2026d8d1..00000000 Binary files a/public/textures/chipped/weathered_red_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/weathered_redstone_block.png b/public/textures/chipped/weathered_redstone_block.png deleted file mode 100644 index f987a845..00000000 Binary files a/public/textures/chipped/weathered_redstone_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_sandstone.png b/public/textures/chipped/weathered_sandstone.png deleted file mode 100644 index 597c4019..00000000 Binary files a/public/textures/chipped/weathered_sandstone.png and /dev/null differ diff --git a/public/textures/chipped/weathered_smooth_stone.png b/public/textures/chipped/weathered_smooth_stone.png deleted file mode 100644 index 38b6f170..00000000 Binary files a/public/textures/chipped/weathered_smooth_stone.png and /dev/null differ diff --git a/public/textures/chipped/weathered_snow_block.png b/public/textures/chipped/weathered_snow_block.png deleted file mode 100644 index a25e0f0f..00000000 Binary files a/public/textures/chipped/weathered_snow_block.png and /dev/null differ diff --git a/public/textures/chipped/weathered_stone.png b/public/textures/chipped/weathered_stone.png deleted file mode 100644 index 279de009..00000000 Binary files a/public/textures/chipped/weathered_stone.png and /dev/null differ diff --git a/public/textures/chipped/weathered_tuff.png b/public/textures/chipped/weathered_tuff.png deleted file mode 100644 index 2b105a0e..00000000 Binary files a/public/textures/chipped/weathered_tuff.png and /dev/null differ diff --git a/public/textures/chipped/weaved_bone_block.png b/public/textures/chipped/weaved_bone_block.png deleted file mode 100644 index 43b50526..00000000 Binary files a/public/textures/chipped/weaved_bone_block.png and /dev/null differ diff --git a/public/textures/chipped/wet_red_sand.png b/public/textures/chipped/wet_red_sand.png deleted file mode 100644 index f6e1cb78..00000000 Binary files a/public/textures/chipped/wet_red_sand.png and /dev/null differ diff --git a/public/textures/chipped/wet_sand.png b/public/textures/chipped/wet_sand.png deleted file mode 100644 index befafcf2..00000000 Binary files a/public/textures/chipped/wet_sand.png and /dev/null differ diff --git a/public/textures/chipped/whirlwind_acacia_planks.png b/public/textures/chipped/whirlwind_acacia_planks.png deleted file mode 100644 index 1d485d3f..00000000 Binary files a/public/textures/chipped/whirlwind_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/whirlwind_bamboo_planks.png b/public/textures/chipped/whirlwind_bamboo_planks.png deleted file mode 100644 index b2716be8..00000000 Binary files a/public/textures/chipped/whirlwind_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/whirlwind_birch_planks.png b/public/textures/chipped/whirlwind_birch_planks.png deleted file mode 100644 index d56d8d91..00000000 Binary files a/public/textures/chipped/whirlwind_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/whirlwind_cherry_planks.png b/public/textures/chipped/whirlwind_cherry_planks.png deleted file mode 100644 index 2afb24a9..00000000 Binary files a/public/textures/chipped/whirlwind_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/whirlwind_crimson_planks.png b/public/textures/chipped/whirlwind_crimson_planks.png deleted file mode 100644 index 9f0b9936..00000000 Binary files a/public/textures/chipped/whirlwind_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/whirlwind_dark_oak_planks.png b/public/textures/chipped/whirlwind_dark_oak_planks.png deleted file mode 100644 index b7fe4b92..00000000 Binary files a/public/textures/chipped/whirlwind_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/whirlwind_jungle_planks.png b/public/textures/chipped/whirlwind_jungle_planks.png deleted file mode 100644 index a4a374d4..00000000 Binary files a/public/textures/chipped/whirlwind_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/whirlwind_oak_planks.png b/public/textures/chipped/whirlwind_oak_planks.png deleted file mode 100644 index 866016cd..00000000 Binary files a/public/textures/chipped/whirlwind_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/whirlwind_spruce_planks.png b/public/textures/chipped/whirlwind_spruce_planks.png deleted file mode 100644 index f48975bb..00000000 Binary files a/public/textures/chipped/whirlwind_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/whirlwind_warped_planks.png b/public/textures/chipped/whirlwind_warped_planks.png deleted file mode 100644 index 69f2b07a..00000000 Binary files a/public/textures/chipped/whirlwind_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/white_concrete_bricks.png b/public/textures/chipped/white_concrete_bricks.png deleted file mode 100644 index 149df340..00000000 Binary files a/public/textures/chipped/white_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/white_concrete_panel.png b/public/textures/chipped/white_concrete_panel.png deleted file mode 100644 index 85e66c3c..00000000 Binary files a/public/textures/chipped/white_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/white_concrete_pillar.png b/public/textures/chipped/white_concrete_pillar.png deleted file mode 100644 index 5b0ce3a8..00000000 Binary files a/public/textures/chipped/white_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/white_concrete_tiles.png b/public/textures/chipped/white_concrete_tiles.png deleted file mode 100644 index cf0cbee1..00000000 Binary files a/public/textures/chipped/white_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/white_dusted_brown_mushroom_block.png b/public/textures/chipped/white_dusted_brown_mushroom_block.png deleted file mode 100644 index da8a1c03..00000000 Binary files a/public/textures/chipped/white_dusted_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/white_flower_acacia_leaves.png b/public/textures/chipped/white_flower_acacia_leaves.png deleted file mode 100644 index 07b750e0..00000000 Binary files a/public/textures/chipped/white_flower_acacia_leaves.png and /dev/null differ diff --git a/public/textures/chipped/white_flower_birch_leaves.png b/public/textures/chipped/white_flower_birch_leaves.png deleted file mode 100644 index f0301731..00000000 Binary files a/public/textures/chipped/white_flower_birch_leaves.png and /dev/null differ diff --git a/public/textures/chipped/white_flower_dark_oak_leaves.png b/public/textures/chipped/white_flower_dark_oak_leaves.png deleted file mode 100644 index 13dbc8d9..00000000 Binary files a/public/textures/chipped/white_flower_dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/white_flower_jungle_leaves.png b/public/textures/chipped/white_flower_jungle_leaves.png deleted file mode 100644 index 187a4f65..00000000 Binary files a/public/textures/chipped/white_flower_jungle_leaves.png and /dev/null differ diff --git a/public/textures/chipped/white_flower_oak_leaves.png b/public/textures/chipped/white_flower_oak_leaves.png deleted file mode 100644 index 369050d9..00000000 Binary files a/public/textures/chipped/white_flower_oak_leaves.png and /dev/null differ diff --git a/public/textures/chipped/white_flower_spruce_leaves.png b/public/textures/chipped/white_flower_spruce_leaves.png deleted file mode 100644 index 96f836ee..00000000 Binary files a/public/textures/chipped/white_flower_spruce_leaves.png and /dev/null differ diff --git a/public/textures/chipped/white_freckled_brown_mushroom_block.png b/public/textures/chipped/white_freckled_brown_mushroom_block.png deleted file mode 100644 index a651b4c1..00000000 Binary files a/public/textures/chipped/white_freckled_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/white_glazed_terracotta_pillar_sides.png b/public/textures/chipped/white_glazed_terracotta_pillar_sides.png deleted file mode 100644 index 127e1cd3..00000000 Binary files a/public/textures/chipped/white_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/white_glazed_terracotta_pillar_top.png b/public/textures/chipped/white_glazed_terracotta_pillar_top.png deleted file mode 100644 index 109c438f..00000000 Binary files a/public/textures/chipped/white_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/white_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/white_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index 93e68b49..00000000 Binary files a/public/textures/chipped/white_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/white_glazed_terracotta_tiles.png b/public/textures/chipped/white_glazed_terracotta_tiles.png deleted file mode 100644 index 62f50498..00000000 Binary files a/public/textures/chipped/white_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/white_paper_lantern.png b/public/textures/chipped/white_paper_lantern.png deleted file mode 100644 index 3a0aae1b..00000000 Binary files a/public/textures/chipped/white_paper_lantern.png and /dev/null differ diff --git a/public/textures/chipped/white_sand.png b/public/textures/chipped/white_sand.png deleted file mode 100644 index 1c00a109..00000000 Binary files a/public/textures/chipped/white_sand.png and /dev/null differ diff --git a/public/textures/chipped/white_spotted_brown_mushroom_block.png b/public/textures/chipped/white_spotted_brown_mushroom_block.png deleted file mode 100644 index cd582c20..00000000 Binary files a/public/textures/chipped/white_spotted_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/white_sprinkled_brown_mushroom_block.png b/public/textures/chipped/white_sprinkled_brown_mushroom_block.png deleted file mode 100644 index f34ba3fd..00000000 Binary files a/public/textures/chipped/white_sprinkled_brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/chipped/white_terracotta_bricks.png b/public/textures/chipped/white_terracotta_bricks.png deleted file mode 100644 index 172880f6..00000000 Binary files a/public/textures/chipped/white_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/white_terracotta_column.png b/public/textures/chipped/white_terracotta_column.png deleted file mode 100644 index 39e61344..00000000 Binary files a/public/textures/chipped/white_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/white_terracotta_pillar.png b/public/textures/chipped/white_terracotta_pillar.png deleted file mode 100644 index bada695b..00000000 Binary files a/public/textures/chipped/white_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/white_terracotta_tile.png b/public/textures/chipped/white_terracotta_tile.png deleted file mode 100644 index 18331e78..00000000 Binary files a/public/textures/chipped/white_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/white_terracotta_tiles.png b/public/textures/chipped/white_terracotta_tiles.png deleted file mode 100644 index 150b1088..00000000 Binary files a/public/textures/chipped/white_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/wicked_brown_mushroom.png b/public/textures/chipped/wicked_brown_mushroom.png deleted file mode 100644 index b56ea2c7..00000000 Binary files a/public/textures/chipped/wicked_brown_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/wicked_crimson_fungus.png b/public/textures/chipped/wicked_crimson_fungus.png deleted file mode 100644 index 77d7cf13..00000000 Binary files a/public/textures/chipped/wicked_crimson_fungus.png and /dev/null differ diff --git a/public/textures/chipped/wicked_red_mushroom.png b/public/textures/chipped/wicked_red_mushroom.png deleted file mode 100644 index d3acfb5c..00000000 Binary files a/public/textures/chipped/wicked_red_mushroom.png and /dev/null differ diff --git a/public/textures/chipped/wicked_warped_fungus.png b/public/textures/chipped/wicked_warped_fungus.png deleted file mode 100644 index f02c08d2..00000000 Binary files a/public/textures/chipped/wicked_warped_fungus.png and /dev/null differ diff --git a/public/textures/chipped/wickered_acacia_planks.png b/public/textures/chipped/wickered_acacia_planks.png deleted file mode 100644 index a9e989ba..00000000 Binary files a/public/textures/chipped/wickered_acacia_planks.png and /dev/null differ diff --git a/public/textures/chipped/wickered_bamboo_planks.png b/public/textures/chipped/wickered_bamboo_planks.png deleted file mode 100644 index 691de616..00000000 Binary files a/public/textures/chipped/wickered_bamboo_planks.png and /dev/null differ diff --git a/public/textures/chipped/wickered_birch_planks.png b/public/textures/chipped/wickered_birch_planks.png deleted file mode 100644 index 76cb1b35..00000000 Binary files a/public/textures/chipped/wickered_birch_planks.png and /dev/null differ diff --git a/public/textures/chipped/wickered_black_carpet.png b/public/textures/chipped/wickered_black_carpet.png deleted file mode 100644 index ac0eb1b5..00000000 Binary files a/public/textures/chipped/wickered_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_black_wool.png b/public/textures/chipped/wickered_black_wool.png deleted file mode 100644 index 30401da1..00000000 Binary files a/public/textures/chipped/wickered_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_blue_carpet.png b/public/textures/chipped/wickered_blue_carpet.png deleted file mode 100644 index cb3ceb02..00000000 Binary files a/public/textures/chipped/wickered_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_blue_wool.png b/public/textures/chipped/wickered_blue_wool.png deleted file mode 100644 index 7138161d..00000000 Binary files a/public/textures/chipped/wickered_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_brown_carpet.png b/public/textures/chipped/wickered_brown_carpet.png deleted file mode 100644 index 56dbf7d3..00000000 Binary files a/public/textures/chipped/wickered_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_brown_wool.png b/public/textures/chipped/wickered_brown_wool.png deleted file mode 100644 index 9672d7d0..00000000 Binary files a/public/textures/chipped/wickered_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_cherry_planks.png b/public/textures/chipped/wickered_cherry_planks.png deleted file mode 100644 index c7af36c9..00000000 Binary files a/public/textures/chipped/wickered_cherry_planks.png and /dev/null differ diff --git a/public/textures/chipped/wickered_crimson_planks.png b/public/textures/chipped/wickered_crimson_planks.png deleted file mode 100644 index 0a0feb80..00000000 Binary files a/public/textures/chipped/wickered_crimson_planks.png and /dev/null differ diff --git a/public/textures/chipped/wickered_cyan_carpet.png b/public/textures/chipped/wickered_cyan_carpet.png deleted file mode 100644 index 66823051..00000000 Binary files a/public/textures/chipped/wickered_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_cyan_wool.png b/public/textures/chipped/wickered_cyan_wool.png deleted file mode 100644 index 9f5780e9..00000000 Binary files a/public/textures/chipped/wickered_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_dark_oak_planks.png b/public/textures/chipped/wickered_dark_oak_planks.png deleted file mode 100644 index 3c7ed562..00000000 Binary files a/public/textures/chipped/wickered_dark_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/wickered_gray_carpet.png b/public/textures/chipped/wickered_gray_carpet.png deleted file mode 100644 index b83b7e50..00000000 Binary files a/public/textures/chipped/wickered_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_gray_wool.png b/public/textures/chipped/wickered_gray_wool.png deleted file mode 100644 index 7add369b..00000000 Binary files a/public/textures/chipped/wickered_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_green_carpet.png b/public/textures/chipped/wickered_green_carpet.png deleted file mode 100644 index b8af5272..00000000 Binary files a/public/textures/chipped/wickered_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_green_wool.png b/public/textures/chipped/wickered_green_wool.png deleted file mode 100644 index d7b5fdd8..00000000 Binary files a/public/textures/chipped/wickered_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_jungle_planks.png b/public/textures/chipped/wickered_jungle_planks.png deleted file mode 100644 index 1944b46f..00000000 Binary files a/public/textures/chipped/wickered_jungle_planks.png and /dev/null differ diff --git a/public/textures/chipped/wickered_light_blue_carpet.png b/public/textures/chipped/wickered_light_blue_carpet.png deleted file mode 100644 index bd7a52ec..00000000 Binary files a/public/textures/chipped/wickered_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_light_blue_wool.png b/public/textures/chipped/wickered_light_blue_wool.png deleted file mode 100644 index c02d18a2..00000000 Binary files a/public/textures/chipped/wickered_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_light_gray_carpet.png b/public/textures/chipped/wickered_light_gray_carpet.png deleted file mode 100644 index 2782f190..00000000 Binary files a/public/textures/chipped/wickered_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_light_gray_wool.png b/public/textures/chipped/wickered_light_gray_wool.png deleted file mode 100644 index 9534e1b7..00000000 Binary files a/public/textures/chipped/wickered_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_lime_carpet.png b/public/textures/chipped/wickered_lime_carpet.png deleted file mode 100644 index 7d8b1896..00000000 Binary files a/public/textures/chipped/wickered_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_lime_wool.png b/public/textures/chipped/wickered_lime_wool.png deleted file mode 100644 index d98a9d1e..00000000 Binary files a/public/textures/chipped/wickered_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_magenta_carpet.png b/public/textures/chipped/wickered_magenta_carpet.png deleted file mode 100644 index 32ac8c1a..00000000 Binary files a/public/textures/chipped/wickered_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_magenta_wool.png b/public/textures/chipped/wickered_magenta_wool.png deleted file mode 100644 index 76eff9a8..00000000 Binary files a/public/textures/chipped/wickered_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_oak_planks.png b/public/textures/chipped/wickered_oak_planks.png deleted file mode 100644 index 96c8f6f1..00000000 Binary files a/public/textures/chipped/wickered_oak_planks.png and /dev/null differ diff --git a/public/textures/chipped/wickered_orange_carpet.png b/public/textures/chipped/wickered_orange_carpet.png deleted file mode 100644 index c33ef384..00000000 Binary files a/public/textures/chipped/wickered_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_orange_wool.png b/public/textures/chipped/wickered_orange_wool.png deleted file mode 100644 index 8d223f8f..00000000 Binary files a/public/textures/chipped/wickered_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_pink_carpet.png b/public/textures/chipped/wickered_pink_carpet.png deleted file mode 100644 index 313c5132..00000000 Binary files a/public/textures/chipped/wickered_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_pink_wool.png b/public/textures/chipped/wickered_pink_wool.png deleted file mode 100644 index 3ce8d394..00000000 Binary files a/public/textures/chipped/wickered_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_purple_carpet.png b/public/textures/chipped/wickered_purple_carpet.png deleted file mode 100644 index 240f759e..00000000 Binary files a/public/textures/chipped/wickered_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_purple_wool.png b/public/textures/chipped/wickered_purple_wool.png deleted file mode 100644 index 8d575579..00000000 Binary files a/public/textures/chipped/wickered_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_red_carpet.png b/public/textures/chipped/wickered_red_carpet.png deleted file mode 100644 index 8cda7650..00000000 Binary files a/public/textures/chipped/wickered_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_red_wool.png b/public/textures/chipped/wickered_red_wool.png deleted file mode 100644 index 25e59be6..00000000 Binary files a/public/textures/chipped/wickered_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_spruce_planks.png b/public/textures/chipped/wickered_spruce_planks.png deleted file mode 100644 index 5f506631..00000000 Binary files a/public/textures/chipped/wickered_spruce_planks.png and /dev/null differ diff --git a/public/textures/chipped/wickered_warped_planks.png b/public/textures/chipped/wickered_warped_planks.png deleted file mode 100644 index d92e877a..00000000 Binary files a/public/textures/chipped/wickered_warped_planks.png and /dev/null differ diff --git a/public/textures/chipped/wickered_white_carpet.png b/public/textures/chipped/wickered_white_carpet.png deleted file mode 100644 index b54c978b..00000000 Binary files a/public/textures/chipped/wickered_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_white_wool.png b/public/textures/chipped/wickered_white_wool.png deleted file mode 100644 index 44f60ccf..00000000 Binary files a/public/textures/chipped/wickered_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/wickered_yellow_carpet.png b/public/textures/chipped/wickered_yellow_carpet.png deleted file mode 100644 index 9386c1fe..00000000 Binary files a/public/textures/chipped/wickered_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/wickered_yellow_wool.png b/public/textures/chipped/wickered_yellow_wool.png deleted file mode 100644 index c93628a6..00000000 Binary files a/public/textures/chipped/wickered_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/wide_eyed_carved_pumpkin.png b/public/textures/chipped/wide_eyed_carved_pumpkin.png deleted file mode 100644 index 0650e289..00000000 Binary files a/public/textures/chipped/wide_eyed_carved_pumpkin.png and /dev/null differ diff --git a/public/textures/chipped/wide_eyed_jack_o_lantern.png b/public/textures/chipped/wide_eyed_jack_o_lantern.png deleted file mode 100644 index 8465b328..00000000 Binary files a/public/textures/chipped/wide_eyed_jack_o_lantern.png and /dev/null differ diff --git a/public/textures/chipped/wide_lantern.png b/public/textures/chipped/wide_lantern.png deleted file mode 100644 index 0efbfeac..00000000 Binary files a/public/textures/chipped/wide_lantern.png and /dev/null differ diff --git a/public/textures/chipped/wide_nether_sprouts.png b/public/textures/chipped/wide_nether_sprouts.png deleted file mode 100644 index f9393f60..00000000 Binary files a/public/textures/chipped/wide_nether_sprouts.png and /dev/null differ diff --git a/public/textures/chipped/wide_soul_lantern.png b/public/textures/chipped/wide_soul_lantern.png deleted file mode 100644 index 3eb1fe20..00000000 Binary files a/public/textures/chipped/wide_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/wider_diamond_lodestone.png b/public/textures/chipped/wider_diamond_lodestone.png deleted file mode 100644 index f0b31645..00000000 Binary files a/public/textures/chipped/wider_diamond_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/wider_ring_lodestone.png b/public/textures/chipped/wider_ring_lodestone.png deleted file mode 100644 index 4b385807..00000000 Binary files a/public/textures/chipped/wider_ring_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/wider_watching_lodestone.png b/public/textures/chipped/wider_watching_lodestone.png deleted file mode 100644 index 053d0bf4..00000000 Binary files a/public/textures/chipped/wider_watching_lodestone.png and /dev/null differ diff --git a/public/textures/chipped/wiggly_warped_roots.png b/public/textures/chipped/wiggly_warped_roots.png deleted file mode 100644 index 37cf569c..00000000 Binary files a/public/textures/chipped/wiggly_warped_roots.png and /dev/null differ diff --git a/public/textures/chipped/wilted_crimson_roots_bud.png b/public/textures/chipped/wilted_crimson_roots_bud.png deleted file mode 100644 index bca1e975..00000000 Binary files a/public/textures/chipped/wilted_crimson_roots_bud.png and /dev/null differ diff --git a/public/textures/chipped/wilted_crimson_roots_bulb.png b/public/textures/chipped/wilted_crimson_roots_bulb.png deleted file mode 100644 index 6a995adc..00000000 Binary files a/public/textures/chipped/wilted_crimson_roots_bulb.png and /dev/null differ diff --git a/public/textures/chipped/windmill_black_carpet.png b/public/textures/chipped/windmill_black_carpet.png deleted file mode 100644 index e33d663b..00000000 Binary files a/public/textures/chipped/windmill_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_black_wool.png b/public/textures/chipped/windmill_black_wool.png deleted file mode 100644 index a564db8e..00000000 Binary files a/public/textures/chipped/windmill_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_blue_carpet.png b/public/textures/chipped/windmill_blue_carpet.png deleted file mode 100644 index e5688ed4..00000000 Binary files a/public/textures/chipped/windmill_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_blue_wool.png b/public/textures/chipped/windmill_blue_wool.png deleted file mode 100644 index af599b53..00000000 Binary files a/public/textures/chipped/windmill_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_brown_carpet.png b/public/textures/chipped/windmill_brown_carpet.png deleted file mode 100644 index 36639593..00000000 Binary files a/public/textures/chipped/windmill_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_brown_wool.png b/public/textures/chipped/windmill_brown_wool.png deleted file mode 100644 index 971ecb67..00000000 Binary files a/public/textures/chipped/windmill_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_cyan_carpet.png b/public/textures/chipped/windmill_cyan_carpet.png deleted file mode 100644 index 478bf1a8..00000000 Binary files a/public/textures/chipped/windmill_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_cyan_wool.png b/public/textures/chipped/windmill_cyan_wool.png deleted file mode 100644 index 68d999c7..00000000 Binary files a/public/textures/chipped/windmill_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_gray_carpet.png b/public/textures/chipped/windmill_gray_carpet.png deleted file mode 100644 index a02d673c..00000000 Binary files a/public/textures/chipped/windmill_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_gray_wool.png b/public/textures/chipped/windmill_gray_wool.png deleted file mode 100644 index 1e979c5c..00000000 Binary files a/public/textures/chipped/windmill_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_green_carpet.png b/public/textures/chipped/windmill_green_carpet.png deleted file mode 100644 index a72b926a..00000000 Binary files a/public/textures/chipped/windmill_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_green_wool.png b/public/textures/chipped/windmill_green_wool.png deleted file mode 100644 index 2121cd5d..00000000 Binary files a/public/textures/chipped/windmill_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_light_blue_carpet.png b/public/textures/chipped/windmill_light_blue_carpet.png deleted file mode 100644 index d39b09a8..00000000 Binary files a/public/textures/chipped/windmill_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_light_blue_wool.png b/public/textures/chipped/windmill_light_blue_wool.png deleted file mode 100644 index fe50e059..00000000 Binary files a/public/textures/chipped/windmill_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_light_gray_carpet.png b/public/textures/chipped/windmill_light_gray_carpet.png deleted file mode 100644 index d9d6f077..00000000 Binary files a/public/textures/chipped/windmill_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_light_gray_wool.png b/public/textures/chipped/windmill_light_gray_wool.png deleted file mode 100644 index 2c3f29fc..00000000 Binary files a/public/textures/chipped/windmill_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_lime_carpet.png b/public/textures/chipped/windmill_lime_carpet.png deleted file mode 100644 index 234e0729..00000000 Binary files a/public/textures/chipped/windmill_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_lime_wool.png b/public/textures/chipped/windmill_lime_wool.png deleted file mode 100644 index 7aed23f8..00000000 Binary files a/public/textures/chipped/windmill_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_magenta_carpet.png b/public/textures/chipped/windmill_magenta_carpet.png deleted file mode 100644 index 40acb301..00000000 Binary files a/public/textures/chipped/windmill_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_magenta_wool.png b/public/textures/chipped/windmill_magenta_wool.png deleted file mode 100644 index c19694ae..00000000 Binary files a/public/textures/chipped/windmill_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_orange_carpet.png b/public/textures/chipped/windmill_orange_carpet.png deleted file mode 100644 index 7791ccb0..00000000 Binary files a/public/textures/chipped/windmill_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_orange_wool.png b/public/textures/chipped/windmill_orange_wool.png deleted file mode 100644 index 3d7e1937..00000000 Binary files a/public/textures/chipped/windmill_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_pink_carpet.png b/public/textures/chipped/windmill_pink_carpet.png deleted file mode 100644 index 629ee9b9..00000000 Binary files a/public/textures/chipped/windmill_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_pink_wool.png b/public/textures/chipped/windmill_pink_wool.png deleted file mode 100644 index 95def60d..00000000 Binary files a/public/textures/chipped/windmill_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_purple_carpet.png b/public/textures/chipped/windmill_purple_carpet.png deleted file mode 100644 index 27e21d8c..00000000 Binary files a/public/textures/chipped/windmill_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_purple_wool.png b/public/textures/chipped/windmill_purple_wool.png deleted file mode 100644 index f3a55eb3..00000000 Binary files a/public/textures/chipped/windmill_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_red_carpet.png b/public/textures/chipped/windmill_red_carpet.png deleted file mode 100644 index cc4b35d9..00000000 Binary files a/public/textures/chipped/windmill_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_red_wool.png b/public/textures/chipped/windmill_red_wool.png deleted file mode 100644 index 5d00e0af..00000000 Binary files a/public/textures/chipped/windmill_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_white_carpet.png b/public/textures/chipped/windmill_white_carpet.png deleted file mode 100644 index 4397285d..00000000 Binary files a/public/textures/chipped/windmill_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_white_wool.png b/public/textures/chipped/windmill_white_wool.png deleted file mode 100644 index 0cad9585..00000000 Binary files a/public/textures/chipped/windmill_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/windmill_yellow_carpet.png b/public/textures/chipped/windmill_yellow_carpet.png deleted file mode 100644 index 96a44b16..00000000 Binary files a/public/textures/chipped/windmill_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/windmill_yellow_wool.png b/public/textures/chipped/windmill_yellow_wool.png deleted file mode 100644 index 32869d27..00000000 Binary files a/public/textures/chipped/windmill_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/windowed_acacia_door.png b/public/textures/chipped/windowed_acacia_door.png deleted file mode 100644 index 9fcc1066..00000000 Binary files a/public/textures/chipped/windowed_acacia_door.png and /dev/null differ diff --git a/public/textures/chipped/windowed_acacia_trapdoor.png b/public/textures/chipped/windowed_acacia_trapdoor.png deleted file mode 100644 index c6a8a41a..00000000 Binary files a/public/textures/chipped/windowed_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/windowed_bamboo_trapdoor.png b/public/textures/chipped/windowed_bamboo_trapdoor.png deleted file mode 100644 index 63c12f00..00000000 Binary files a/public/textures/chipped/windowed_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/windowed_birch_door.png b/public/textures/chipped/windowed_birch_door.png deleted file mode 100644 index 5aa79bb4..00000000 Binary files a/public/textures/chipped/windowed_birch_door.png and /dev/null differ diff --git a/public/textures/chipped/windowed_birch_trapdoor.png b/public/textures/chipped/windowed_birch_trapdoor.png deleted file mode 100644 index babfef90..00000000 Binary files a/public/textures/chipped/windowed_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/windowed_cherry_trapdoor.png b/public/textures/chipped/windowed_cherry_trapdoor.png deleted file mode 100644 index 2d96a28f..00000000 Binary files a/public/textures/chipped/windowed_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/windowed_crimson_door.png b/public/textures/chipped/windowed_crimson_door.png deleted file mode 100644 index 3a40dd56..00000000 Binary files a/public/textures/chipped/windowed_crimson_door.png and /dev/null differ diff --git a/public/textures/chipped/windowed_crimson_trapdoor.png b/public/textures/chipped/windowed_crimson_trapdoor.png deleted file mode 100644 index 4c68a133..00000000 Binary files a/public/textures/chipped/windowed_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/windowed_dark_oak_door.png b/public/textures/chipped/windowed_dark_oak_door.png deleted file mode 100644 index 9fdb9308..00000000 Binary files a/public/textures/chipped/windowed_dark_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/windowed_dark_oak_trapdoor.png b/public/textures/chipped/windowed_dark_oak_trapdoor.png deleted file mode 100644 index 7b4a39a7..00000000 Binary files a/public/textures/chipped/windowed_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/windowed_jungle_door.png b/public/textures/chipped/windowed_jungle_door.png deleted file mode 100644 index 860507a3..00000000 Binary files a/public/textures/chipped/windowed_jungle_door.png and /dev/null differ diff --git a/public/textures/chipped/windowed_jungle_trapdoor.png b/public/textures/chipped/windowed_jungle_trapdoor.png deleted file mode 100644 index 16e3c92e..00000000 Binary files a/public/textures/chipped/windowed_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/windowed_mangrove_door.png b/public/textures/chipped/windowed_mangrove_door.png deleted file mode 100644 index 0fa825a6..00000000 Binary files a/public/textures/chipped/windowed_mangrove_door.png and /dev/null differ diff --git a/public/textures/chipped/windowed_mangrove_trapdoor.png b/public/textures/chipped/windowed_mangrove_trapdoor.png deleted file mode 100644 index 9586cbfb..00000000 Binary files a/public/textures/chipped/windowed_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/windowed_oak_door.png b/public/textures/chipped/windowed_oak_door.png deleted file mode 100644 index aaae44d9..00000000 Binary files a/public/textures/chipped/windowed_oak_door.png and /dev/null differ diff --git a/public/textures/chipped/windowed_oak_trapdoor.png b/public/textures/chipped/windowed_oak_trapdoor.png deleted file mode 100644 index a26547bf..00000000 Binary files a/public/textures/chipped/windowed_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/windowed_spruce_door.png b/public/textures/chipped/windowed_spruce_door.png deleted file mode 100644 index 786b6d6f..00000000 Binary files a/public/textures/chipped/windowed_spruce_door.png and /dev/null differ diff --git a/public/textures/chipped/windowed_spruce_trapdoor.png b/public/textures/chipped/windowed_spruce_trapdoor.png deleted file mode 100644 index 76673637..00000000 Binary files a/public/textures/chipped/windowed_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/windowed_warped_door.png b/public/textures/chipped/windowed_warped_door.png deleted file mode 100644 index 41f6de4c..00000000 Binary files a/public/textures/chipped/windowed_warped_door.png and /dev/null differ diff --git a/public/textures/chipped/windowed_warped_trapdoor.png b/public/textures/chipped/windowed_warped_trapdoor.png deleted file mode 100644 index b139c1f2..00000000 Binary files a/public/textures/chipped/windowed_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/wired_black_concrete.png b/public/textures/chipped/wired_black_concrete.png deleted file mode 100644 index 1a5c77d2..00000000 Binary files a/public/textures/chipped/wired_black_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_blue_concrete.png b/public/textures/chipped/wired_blue_concrete.png deleted file mode 100644 index ad7cf0f4..00000000 Binary files a/public/textures/chipped/wired_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_brown_concrete.png b/public/textures/chipped/wired_brown_concrete.png deleted file mode 100644 index c4c26219..00000000 Binary files a/public/textures/chipped/wired_brown_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_cyan_concrete.png b/public/textures/chipped/wired_cyan_concrete.png deleted file mode 100644 index 44ace8b1..00000000 Binary files a/public/textures/chipped/wired_cyan_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_gray_concrete.png b/public/textures/chipped/wired_gray_concrete.png deleted file mode 100644 index 66f4c1d1..00000000 Binary files a/public/textures/chipped/wired_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_green_concrete.png b/public/textures/chipped/wired_green_concrete.png deleted file mode 100644 index c85828cd..00000000 Binary files a/public/textures/chipped/wired_green_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_light_blue_concrete.png b/public/textures/chipped/wired_light_blue_concrete.png deleted file mode 100644 index 5242cf5e..00000000 Binary files a/public/textures/chipped/wired_light_blue_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_light_gray_concrete.png b/public/textures/chipped/wired_light_gray_concrete.png deleted file mode 100644 index 92fdec5e..00000000 Binary files a/public/textures/chipped/wired_light_gray_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_lime_concrete.png b/public/textures/chipped/wired_lime_concrete.png deleted file mode 100644 index 80765fdc..00000000 Binary files a/public/textures/chipped/wired_lime_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_magenta_concrete.png b/public/textures/chipped/wired_magenta_concrete.png deleted file mode 100644 index 9c102149..00000000 Binary files a/public/textures/chipped/wired_magenta_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_orange_concrete.png b/public/textures/chipped/wired_orange_concrete.png deleted file mode 100644 index dd6662c7..00000000 Binary files a/public/textures/chipped/wired_orange_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_pink_concrete.png b/public/textures/chipped/wired_pink_concrete.png deleted file mode 100644 index 9aaea197..00000000 Binary files a/public/textures/chipped/wired_pink_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_purple_concrete.png b/public/textures/chipped/wired_purple_concrete.png deleted file mode 100644 index 4f0bafa0..00000000 Binary files a/public/textures/chipped/wired_purple_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_red_concrete.png b/public/textures/chipped/wired_red_concrete.png deleted file mode 100644 index 6cb8e6f7..00000000 Binary files a/public/textures/chipped/wired_red_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_white_concrete.png b/public/textures/chipped/wired_white_concrete.png deleted file mode 100644 index bb33b5c7..00000000 Binary files a/public/textures/chipped/wired_white_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wired_yellow_concrete.png b/public/textures/chipped/wired_yellow_concrete.png deleted file mode 100644 index db20cbf1..00000000 Binary files a/public/textures/chipped/wired_yellow_concrete.png and /dev/null differ diff --git a/public/textures/chipped/wise_stripped_acacia_log.png b/public/textures/chipped/wise_stripped_acacia_log.png deleted file mode 100644 index b5ad1166..00000000 Binary files a/public/textures/chipped/wise_stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/chipped/wise_stripped_birch_log.png b/public/textures/chipped/wise_stripped_birch_log.png deleted file mode 100644 index 9e361d65..00000000 Binary files a/public/textures/chipped/wise_stripped_birch_log.png and /dev/null differ diff --git a/public/textures/chipped/wise_stripped_cherry_log.png b/public/textures/chipped/wise_stripped_cherry_log.png deleted file mode 100644 index eda98aae..00000000 Binary files a/public/textures/chipped/wise_stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/chipped/wise_stripped_crimson_stem.png b/public/textures/chipped/wise_stripped_crimson_stem.png deleted file mode 100644 index 7d392576..00000000 Binary files a/public/textures/chipped/wise_stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/chipped/wise_stripped_dark_oak_log.png b/public/textures/chipped/wise_stripped_dark_oak_log.png deleted file mode 100644 index 33de30e4..00000000 Binary files a/public/textures/chipped/wise_stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/wise_stripped_jungle_log.png b/public/textures/chipped/wise_stripped_jungle_log.png deleted file mode 100644 index 4908c138..00000000 Binary files a/public/textures/chipped/wise_stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/chipped/wise_stripped_mangrove_log.png b/public/textures/chipped/wise_stripped_mangrove_log.png deleted file mode 100644 index 82bafc11..00000000 Binary files a/public/textures/chipped/wise_stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/chipped/wise_stripped_oak_log.png b/public/textures/chipped/wise_stripped_oak_log.png deleted file mode 100644 index 96d08316..00000000 Binary files a/public/textures/chipped/wise_stripped_oak_log.png and /dev/null differ diff --git a/public/textures/chipped/wise_stripped_spruce_log.png b/public/textures/chipped/wise_stripped_spruce_log.png deleted file mode 100644 index 92324737..00000000 Binary files a/public/textures/chipped/wise_stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/chipped/wise_stripped_warped_stem.png b/public/textures/chipped/wise_stripped_warped_stem.png deleted file mode 100644 index b51986ff..00000000 Binary files a/public/textures/chipped/wise_stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/chipped/wither_engraved_glowstone.png b/public/textures/chipped/wither_engraved_glowstone.png deleted file mode 100644 index 03bff457..00000000 Binary files a/public/textures/chipped/wither_engraved_glowstone.png and /dev/null differ diff --git a/public/textures/chipped/wooden_cage_lantern.png b/public/textures/chipped/wooden_cage_lantern.png deleted file mode 100644 index 1f37ed7f..00000000 Binary files a/public/textures/chipped/wooden_cage_lantern.png and /dev/null differ diff --git a/public/textures/chipped/wooden_cage_soul_lantern.png b/public/textures/chipped/wooden_cage_soul_lantern.png deleted file mode 100644 index 28200c1d..00000000 Binary files a/public/textures/chipped/wooden_cage_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/woved_black_carpet.png b/public/textures/chipped/woved_black_carpet.png deleted file mode 100644 index c639efaf..00000000 Binary files a/public/textures/chipped/woved_black_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_black_wool.png b/public/textures/chipped/woved_black_wool.png deleted file mode 100644 index 8981cd6f..00000000 Binary files a/public/textures/chipped/woved_black_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_blue_carpet.png b/public/textures/chipped/woved_blue_carpet.png deleted file mode 100644 index a5886efb..00000000 Binary files a/public/textures/chipped/woved_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_blue_wool.png b/public/textures/chipped/woved_blue_wool.png deleted file mode 100644 index 5823f07b..00000000 Binary files a/public/textures/chipped/woved_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_brown_carpet.png b/public/textures/chipped/woved_brown_carpet.png deleted file mode 100644 index e5f6b301..00000000 Binary files a/public/textures/chipped/woved_brown_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_brown_wool.png b/public/textures/chipped/woved_brown_wool.png deleted file mode 100644 index 589093d7..00000000 Binary files a/public/textures/chipped/woved_brown_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_cyan_carpet.png b/public/textures/chipped/woved_cyan_carpet.png deleted file mode 100644 index ddd91adc..00000000 Binary files a/public/textures/chipped/woved_cyan_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_cyan_wool.png b/public/textures/chipped/woved_cyan_wool.png deleted file mode 100644 index 3dbd084c..00000000 Binary files a/public/textures/chipped/woved_cyan_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_gray_carpet.png b/public/textures/chipped/woved_gray_carpet.png deleted file mode 100644 index b1ea2864..00000000 Binary files a/public/textures/chipped/woved_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_gray_wool.png b/public/textures/chipped/woved_gray_wool.png deleted file mode 100644 index 7376930a..00000000 Binary files a/public/textures/chipped/woved_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_green_carpet.png b/public/textures/chipped/woved_green_carpet.png deleted file mode 100644 index ae91f2a3..00000000 Binary files a/public/textures/chipped/woved_green_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_green_wool.png b/public/textures/chipped/woved_green_wool.png deleted file mode 100644 index e598a540..00000000 Binary files a/public/textures/chipped/woved_green_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_light_blue_carpet.png b/public/textures/chipped/woved_light_blue_carpet.png deleted file mode 100644 index 5ebeb146..00000000 Binary files a/public/textures/chipped/woved_light_blue_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_light_blue_wool.png b/public/textures/chipped/woved_light_blue_wool.png deleted file mode 100644 index 0704dd5e..00000000 Binary files a/public/textures/chipped/woved_light_blue_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_light_gray_carpet.png b/public/textures/chipped/woved_light_gray_carpet.png deleted file mode 100644 index 2b2ce509..00000000 Binary files a/public/textures/chipped/woved_light_gray_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_light_gray_wool.png b/public/textures/chipped/woved_light_gray_wool.png deleted file mode 100644 index 67b3ab74..00000000 Binary files a/public/textures/chipped/woved_light_gray_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_lime_carpet.png b/public/textures/chipped/woved_lime_carpet.png deleted file mode 100644 index 9ef43e09..00000000 Binary files a/public/textures/chipped/woved_lime_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_lime_wool.png b/public/textures/chipped/woved_lime_wool.png deleted file mode 100644 index ea8ad7dc..00000000 Binary files a/public/textures/chipped/woved_lime_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_magenta_carpet.png b/public/textures/chipped/woved_magenta_carpet.png deleted file mode 100644 index 0df6af22..00000000 Binary files a/public/textures/chipped/woved_magenta_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_magenta_wool.png b/public/textures/chipped/woved_magenta_wool.png deleted file mode 100644 index 25550828..00000000 Binary files a/public/textures/chipped/woved_magenta_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_orange_carpet.png b/public/textures/chipped/woved_orange_carpet.png deleted file mode 100644 index 93c77e15..00000000 Binary files a/public/textures/chipped/woved_orange_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_orange_wool.png b/public/textures/chipped/woved_orange_wool.png deleted file mode 100644 index ea3fd2f3..00000000 Binary files a/public/textures/chipped/woved_orange_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_pink_carpet.png b/public/textures/chipped/woved_pink_carpet.png deleted file mode 100644 index a8a85518..00000000 Binary files a/public/textures/chipped/woved_pink_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_pink_wool.png b/public/textures/chipped/woved_pink_wool.png deleted file mode 100644 index e654695b..00000000 Binary files a/public/textures/chipped/woved_pink_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_purple_carpet.png b/public/textures/chipped/woved_purple_carpet.png deleted file mode 100644 index 8bda8697..00000000 Binary files a/public/textures/chipped/woved_purple_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_purple_wool.png b/public/textures/chipped/woved_purple_wool.png deleted file mode 100644 index abcc928f..00000000 Binary files a/public/textures/chipped/woved_purple_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_red_carpet.png b/public/textures/chipped/woved_red_carpet.png deleted file mode 100644 index f4b51915..00000000 Binary files a/public/textures/chipped/woved_red_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_red_wool.png b/public/textures/chipped/woved_red_wool.png deleted file mode 100644 index 996357bf..00000000 Binary files a/public/textures/chipped/woved_red_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_white_carpet.png b/public/textures/chipped/woved_white_carpet.png deleted file mode 100644 index 6ad1aab2..00000000 Binary files a/public/textures/chipped/woved_white_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_white_wool.png b/public/textures/chipped/woved_white_wool.png deleted file mode 100644 index 8d96dde5..00000000 Binary files a/public/textures/chipped/woved_white_wool.png and /dev/null differ diff --git a/public/textures/chipped/woved_yellow_carpet.png b/public/textures/chipped/woved_yellow_carpet.png deleted file mode 100644 index 980ee44e..00000000 Binary files a/public/textures/chipped/woved_yellow_carpet.png and /dev/null differ diff --git a/public/textures/chipped/woved_yellow_wool.png b/public/textures/chipped/woved_yellow_wool.png deleted file mode 100644 index 1da974d2..00000000 Binary files a/public/textures/chipped/woved_yellow_wool.png and /dev/null differ diff --git a/public/textures/chipped/woven_acacia_trapdoor.png b/public/textures/chipped/woven_acacia_trapdoor.png deleted file mode 100644 index da62f7ae..00000000 Binary files a/public/textures/chipped/woven_acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/woven_bamboo_trapdoor.png b/public/textures/chipped/woven_bamboo_trapdoor.png deleted file mode 100644 index 334188b3..00000000 Binary files a/public/textures/chipped/woven_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/woven_birch_trapdoor.png b/public/textures/chipped/woven_birch_trapdoor.png deleted file mode 100644 index 80968c93..00000000 Binary files a/public/textures/chipped/woven_birch_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/woven_black_stained_glass.png b/public/textures/chipped/woven_black_stained_glass.png deleted file mode 100644 index 515a2c13..00000000 Binary files a/public/textures/chipped/woven_black_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_black_stained_glass_pane.png b/public/textures/chipped/woven_black_stained_glass_pane.png deleted file mode 100644 index 4c9fa881..00000000 Binary files a/public/textures/chipped/woven_black_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_blue_stained_glass.png b/public/textures/chipped/woven_blue_stained_glass.png deleted file mode 100644 index 88e39fcc..00000000 Binary files a/public/textures/chipped/woven_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_blue_stained_glass_pane.png b/public/textures/chipped/woven_blue_stained_glass_pane.png deleted file mode 100644 index d0074f73..00000000 Binary files a/public/textures/chipped/woven_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_brown_stained_glass.png b/public/textures/chipped/woven_brown_stained_glass.png deleted file mode 100644 index 61c5b118..00000000 Binary files a/public/textures/chipped/woven_brown_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_brown_stained_glass_pane.png b/public/textures/chipped/woven_brown_stained_glass_pane.png deleted file mode 100644 index 924304f0..00000000 Binary files a/public/textures/chipped/woven_brown_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_cherry_trapdoor.png b/public/textures/chipped/woven_cherry_trapdoor.png deleted file mode 100644 index 730230aa..00000000 Binary files a/public/textures/chipped/woven_cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/woven_crimson_trapdoor.png b/public/textures/chipped/woven_crimson_trapdoor.png deleted file mode 100644 index e90416a9..00000000 Binary files a/public/textures/chipped/woven_crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/woven_cyan_stained_glass.png b/public/textures/chipped/woven_cyan_stained_glass.png deleted file mode 100644 index 26946ea6..00000000 Binary files a/public/textures/chipped/woven_cyan_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_cyan_stained_glass_pane.png b/public/textures/chipped/woven_cyan_stained_glass_pane.png deleted file mode 100644 index af51a7a9..00000000 Binary files a/public/textures/chipped/woven_cyan_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_dark_oak_trapdoor.png b/public/textures/chipped/woven_dark_oak_trapdoor.png deleted file mode 100644 index 26e673f0..00000000 Binary files a/public/textures/chipped/woven_dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/woven_gray_stained_glass.png b/public/textures/chipped/woven_gray_stained_glass.png deleted file mode 100644 index aff61f62..00000000 Binary files a/public/textures/chipped/woven_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_gray_stained_glass_pane.png b/public/textures/chipped/woven_gray_stained_glass_pane.png deleted file mode 100644 index adaaab19..00000000 Binary files a/public/textures/chipped/woven_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_green_stained_glass.png b/public/textures/chipped/woven_green_stained_glass.png deleted file mode 100644 index 453e806c..00000000 Binary files a/public/textures/chipped/woven_green_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_green_stained_glass_pane.png b/public/textures/chipped/woven_green_stained_glass_pane.png deleted file mode 100644 index e2b4a4f8..00000000 Binary files a/public/textures/chipped/woven_green_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_iron_bars.png b/public/textures/chipped/woven_iron_bars.png deleted file mode 100644 index 2e390443..00000000 Binary files a/public/textures/chipped/woven_iron_bars.png and /dev/null differ diff --git a/public/textures/chipped/woven_jungle_trapdoor.png b/public/textures/chipped/woven_jungle_trapdoor.png deleted file mode 100644 index 0310b595..00000000 Binary files a/public/textures/chipped/woven_jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/woven_light_blue_stained_glass.png b/public/textures/chipped/woven_light_blue_stained_glass.png deleted file mode 100644 index 378ff031..00000000 Binary files a/public/textures/chipped/woven_light_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_light_blue_stained_glass_pane.png b/public/textures/chipped/woven_light_blue_stained_glass_pane.png deleted file mode 100644 index 3b99ca06..00000000 Binary files a/public/textures/chipped/woven_light_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_light_gray_stained_glass.png b/public/textures/chipped/woven_light_gray_stained_glass.png deleted file mode 100644 index 0150bb84..00000000 Binary files a/public/textures/chipped/woven_light_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_light_gray_stained_glass_pane.png b/public/textures/chipped/woven_light_gray_stained_glass_pane.png deleted file mode 100644 index 91bf13f4..00000000 Binary files a/public/textures/chipped/woven_light_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_lime_stained_glass.png b/public/textures/chipped/woven_lime_stained_glass.png deleted file mode 100644 index db4ff984..00000000 Binary files a/public/textures/chipped/woven_lime_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_lime_stained_glass_pane.png b/public/textures/chipped/woven_lime_stained_glass_pane.png deleted file mode 100644 index d1b271ba..00000000 Binary files a/public/textures/chipped/woven_lime_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_magenta_stained_glass.png b/public/textures/chipped/woven_magenta_stained_glass.png deleted file mode 100644 index 26415bd7..00000000 Binary files a/public/textures/chipped/woven_magenta_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_magenta_stained_glass_pane.png b/public/textures/chipped/woven_magenta_stained_glass_pane.png deleted file mode 100644 index 68e9afe6..00000000 Binary files a/public/textures/chipped/woven_magenta_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_mangrove_trapdoor.png b/public/textures/chipped/woven_mangrove_trapdoor.png deleted file mode 100644 index 9739b3c0..00000000 Binary files a/public/textures/chipped/woven_mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/woven_oak_trapdoor.png b/public/textures/chipped/woven_oak_trapdoor.png deleted file mode 100644 index 2b4cb56b..00000000 Binary files a/public/textures/chipped/woven_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/woven_orange_stained_glass.png b/public/textures/chipped/woven_orange_stained_glass.png deleted file mode 100644 index e35513f5..00000000 Binary files a/public/textures/chipped/woven_orange_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_orange_stained_glass_pane.png b/public/textures/chipped/woven_orange_stained_glass_pane.png deleted file mode 100644 index c60e57ce..00000000 Binary files a/public/textures/chipped/woven_orange_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_pink_stained_glass.png b/public/textures/chipped/woven_pink_stained_glass.png deleted file mode 100644 index cf32d1c7..00000000 Binary files a/public/textures/chipped/woven_pink_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_pink_stained_glass_pane.png b/public/textures/chipped/woven_pink_stained_glass_pane.png deleted file mode 100644 index 39cdcc5b..00000000 Binary files a/public/textures/chipped/woven_pink_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_purple_stained_glass.png b/public/textures/chipped/woven_purple_stained_glass.png deleted file mode 100644 index d7874556..00000000 Binary files a/public/textures/chipped/woven_purple_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_purple_stained_glass_pane.png b/public/textures/chipped/woven_purple_stained_glass_pane.png deleted file mode 100644 index b8ecc42a..00000000 Binary files a/public/textures/chipped/woven_purple_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_red_stained_glass.png b/public/textures/chipped/woven_red_stained_glass.png deleted file mode 100644 index cb0ed0fa..00000000 Binary files a/public/textures/chipped/woven_red_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_red_stained_glass_pane.png b/public/textures/chipped/woven_red_stained_glass_pane.png deleted file mode 100644 index c13ac18d..00000000 Binary files a/public/textures/chipped/woven_red_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_spruce_trapdoor.png b/public/textures/chipped/woven_spruce_trapdoor.png deleted file mode 100644 index fb1fe212..00000000 Binary files a/public/textures/chipped/woven_spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/woven_warped_trapdoor.png b/public/textures/chipped/woven_warped_trapdoor.png deleted file mode 100644 index 50f23518..00000000 Binary files a/public/textures/chipped/woven_warped_trapdoor.png and /dev/null differ diff --git a/public/textures/chipped/woven_white_stained_glass.png b/public/textures/chipped/woven_white_stained_glass.png deleted file mode 100644 index 9b5fa004..00000000 Binary files a/public/textures/chipped/woven_white_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_white_stained_glass_pane.png b/public/textures/chipped/woven_white_stained_glass_pane.png deleted file mode 100644 index f748d9ce..00000000 Binary files a/public/textures/chipped/woven_white_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/woven_yellow_stained_glass.png b/public/textures/chipped/woven_yellow_stained_glass.png deleted file mode 100644 index f91f8dc3..00000000 Binary files a/public/textures/chipped/woven_yellow_stained_glass.png and /dev/null differ diff --git a/public/textures/chipped/woven_yellow_stained_glass_pane.png b/public/textures/chipped/woven_yellow_stained_glass_pane.png deleted file mode 100644 index 09d00a27..00000000 Binary files a/public/textures/chipped/woven_yellow_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/chipped/wrought_iron_lantern.png b/public/textures/chipped/wrought_iron_lantern.png deleted file mode 100644 index f8d26de5..00000000 Binary files a/public/textures/chipped/wrought_iron_lantern.png and /dev/null differ diff --git a/public/textures/chipped/yellow_concrete_bricks.png b/public/textures/chipped/yellow_concrete_bricks.png deleted file mode 100644 index 27c84925..00000000 Binary files a/public/textures/chipped/yellow_concrete_bricks.png and /dev/null differ diff --git a/public/textures/chipped/yellow_concrete_panel.png b/public/textures/chipped/yellow_concrete_panel.png deleted file mode 100644 index 6ced3482..00000000 Binary files a/public/textures/chipped/yellow_concrete_panel.png and /dev/null differ diff --git a/public/textures/chipped/yellow_concrete_pillar.png b/public/textures/chipped/yellow_concrete_pillar.png deleted file mode 100644 index 9d584398..00000000 Binary files a/public/textures/chipped/yellow_concrete_pillar.png and /dev/null differ diff --git a/public/textures/chipped/yellow_concrete_tiles.png b/public/textures/chipped/yellow_concrete_tiles.png deleted file mode 100644 index c0a98e13..00000000 Binary files a/public/textures/chipped/yellow_concrete_tiles.png and /dev/null differ diff --git a/public/textures/chipped/yellow_glazed_terracotta_pillar_sides.png b/public/textures/chipped/yellow_glazed_terracotta_pillar_sides.png deleted file mode 100644 index b676f922..00000000 Binary files a/public/textures/chipped/yellow_glazed_terracotta_pillar_sides.png and /dev/null differ diff --git a/public/textures/chipped/yellow_glazed_terracotta_pillar_top.png b/public/textures/chipped/yellow_glazed_terracotta_pillar_top.png deleted file mode 100644 index 88b44441..00000000 Binary files a/public/textures/chipped/yellow_glazed_terracotta_pillar_top.png and /dev/null differ diff --git a/public/textures/chipped/yellow_glazed_terracotta_smooth_tiles.png b/public/textures/chipped/yellow_glazed_terracotta_smooth_tiles.png deleted file mode 100644 index dddf4dee..00000000 Binary files a/public/textures/chipped/yellow_glazed_terracotta_smooth_tiles.png and /dev/null differ diff --git a/public/textures/chipped/yellow_glazed_terracotta_tiles.png b/public/textures/chipped/yellow_glazed_terracotta_tiles.png deleted file mode 100644 index 9b2a8ac2..00000000 Binary files a/public/textures/chipped/yellow_glazed_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/yellow_moss_block.png b/public/textures/chipped/yellow_moss_block.png deleted file mode 100644 index a712274e..00000000 Binary files a/public/textures/chipped/yellow_moss_block.png and /dev/null differ diff --git a/public/textures/chipped/yellow_paper_soul_lantern.png b/public/textures/chipped/yellow_paper_soul_lantern.png deleted file mode 100644 index 71102ddb..00000000 Binary files a/public/textures/chipped/yellow_paper_soul_lantern.png and /dev/null differ diff --git a/public/textures/chipped/yellow_redstone_torch.png b/public/textures/chipped/yellow_redstone_torch.png deleted file mode 100644 index 6aa87c64..00000000 Binary files a/public/textures/chipped/yellow_redstone_torch.png and /dev/null differ diff --git a/public/textures/chipped/yellow_terracotta_bricks.png b/public/textures/chipped/yellow_terracotta_bricks.png deleted file mode 100644 index 92c97adc..00000000 Binary files a/public/textures/chipped/yellow_terracotta_bricks.png and /dev/null differ diff --git a/public/textures/chipped/yellow_terracotta_column.png b/public/textures/chipped/yellow_terracotta_column.png deleted file mode 100644 index 41e84518..00000000 Binary files a/public/textures/chipped/yellow_terracotta_column.png and /dev/null differ diff --git a/public/textures/chipped/yellow_terracotta_pillar.png b/public/textures/chipped/yellow_terracotta_pillar.png deleted file mode 100644 index 1a7e0d03..00000000 Binary files a/public/textures/chipped/yellow_terracotta_pillar.png and /dev/null differ diff --git a/public/textures/chipped/yellow_terracotta_tile.png b/public/textures/chipped/yellow_terracotta_tile.png deleted file mode 100644 index 0ad5239d..00000000 Binary files a/public/textures/chipped/yellow_terracotta_tile.png and /dev/null differ diff --git a/public/textures/chipped/yellow_terracotta_tiles.png b/public/textures/chipped/yellow_terracotta_tiles.png deleted file mode 100644 index e54bd46b..00000000 Binary files a/public/textures/chipped/yellow_terracotta_tiles.png and /dev/null differ diff --git a/public/textures/chipped/yellow_tube_lantern.png b/public/textures/chipped/yellow_tube_lantern.png deleted file mode 100644 index c87df6ea..00000000 Binary files a/public/textures/chipped/yellow_tube_lantern.png and /dev/null differ diff --git a/public/textures/chipped/young_warped_roots.png b/public/textures/chipped/young_warped_roots.png deleted file mode 100644 index 5c6953b7..00000000 Binary files a/public/textures/chipped/young_warped_roots.png and /dev/null differ diff --git a/public/textures/chipped/zippered_iron_bars.png b/public/textures/chipped/zippered_iron_bars.png deleted file mode 100644 index ada4477c..00000000 Binary files a/public/textures/chipped/zippered_iron_bars.png and /dev/null differ diff --git a/public/textures/computercraft/cable.png b/public/textures/computercraft/cable.png deleted file mode 100644 index a523329b..00000000 Binary files a/public/textures/computercraft/cable.png and /dev/null differ diff --git a/public/textures/computercraft/computer_advanced.png b/public/textures/computercraft/computer_advanced.png deleted file mode 100644 index fc062128..00000000 Binary files a/public/textures/computercraft/computer_advanced.png and /dev/null differ diff --git a/public/textures/computercraft/computer_normal.png b/public/textures/computercraft/computer_normal.png deleted file mode 100644 index 7432f96d..00000000 Binary files a/public/textures/computercraft/computer_normal.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__10066329,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__10066329,show_in_tooltip__0b}}.png deleted file mode 100644 index 8267c7a5..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__10066329,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__10072818,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__10072818,show_in_tooltip__0b}}.png deleted file mode 100644 index 4b679790..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__10072818,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__1118481,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__1118481,show_in_tooltip__0b}}.png deleted file mode 100644 index e7c85e73..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__1118481,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__11691749,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__11691749,show_in_tooltip__0b}}.png deleted file mode 100644 index 82305740..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__11691749,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__13388876,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__13388876,show_in_tooltip__0b}}.png deleted file mode 100644 index 0834aab7..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__13388876,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__14605932,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__14605932,show_in_tooltip__0b}}.png deleted file mode 100644 index f17bfb14..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__14605932,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15040472,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15040472,show_in_tooltip__0b}}.png deleted file mode 100644 index 1c2c5f84..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15040472,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15790320,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15790320,show_in_tooltip__0b}}.png deleted file mode 100644 index 58b11e74..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15790320,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15905331,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15905331,show_in_tooltip__0b}}.png deleted file mode 100644 index 5efe085c..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15905331,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15905484,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15905484,show_in_tooltip__0b}}.png deleted file mode 100644 index 5ee6fbe4..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__15905484,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__3368652,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__3368652,show_in_tooltip__0b}}.png deleted file mode 100644 index f27f9fc6..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__3368652,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__5000268,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__5000268,show_in_tooltip__0b}}.png deleted file mode 100644 index b43b4eff..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__5000268,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__5020082,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__5020082,show_in_tooltip__0b}}.png deleted file mode 100644 index b92b655f..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__5020082,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__5744206,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__5744206,show_in_tooltip__0b}}.png deleted file mode 100644 index eaa66919..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__5744206,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__8349260,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__8349260,show_in_tooltip__0b}}.png deleted file mode 100644 index 03f987d0..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__8349260,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__8375321,show_in_tooltip__0b}}.png b/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__8375321,show_in_tooltip__0b}}.png deleted file mode 100644 index c43ffbad..00000000 Binary files a/public/textures/computercraft/disk__{'minecraft__dyed_color'__{rgb__8375321,show_in_tooltip__0b}}.png and /dev/null differ diff --git a/public/textures/computercraft/disk_drive.png b/public/textures/computercraft/disk_drive.png deleted file mode 100644 index ac3f84ad..00000000 Binary files a/public/textures/computercraft/disk_drive.png and /dev/null differ diff --git a/public/textures/computercraft/monitor_advanced.png b/public/textures/computercraft/monitor_advanced.png deleted file mode 100644 index 47a5b0d3..00000000 Binary files a/public/textures/computercraft/monitor_advanced.png and /dev/null differ diff --git a/public/textures/computercraft/monitor_normal.png b/public/textures/computercraft/monitor_normal.png deleted file mode 100644 index c2168648..00000000 Binary files a/public/textures/computercraft/monitor_normal.png and /dev/null differ diff --git a/public/textures/computercraft/pocket_computer_advanced.png b/public/textures/computercraft/pocket_computer_advanced.png deleted file mode 100644 index 4a4c1870..00000000 Binary files a/public/textures/computercraft/pocket_computer_advanced.png and /dev/null differ diff --git a/public/textures/computercraft/pocket_computer_normal.png b/public/textures/computercraft/pocket_computer_normal.png deleted file mode 100644 index 20e7b691..00000000 Binary files a/public/textures/computercraft/pocket_computer_normal.png and /dev/null differ diff --git a/public/textures/computercraft/printed_book.png b/public/textures/computercraft/printed_book.png deleted file mode 100644 index ebd0fe03..00000000 Binary files a/public/textures/computercraft/printed_book.png and /dev/null differ diff --git a/public/textures/computercraft/printed_page.png b/public/textures/computercraft/printed_page.png deleted file mode 100644 index 768cb00d..00000000 Binary files a/public/textures/computercraft/printed_page.png and /dev/null differ diff --git a/public/textures/computercraft/printed_pages.png b/public/textures/computercraft/printed_pages.png deleted file mode 100644 index be4f4eb9..00000000 Binary files a/public/textures/computercraft/printed_pages.png and /dev/null differ diff --git a/public/textures/computercraft/printer.png b/public/textures/computercraft/printer.png deleted file mode 100644 index 352b2f50..00000000 Binary files a/public/textures/computercraft/printer.png and /dev/null differ diff --git a/public/textures/computercraft/redstone_relay.png b/public/textures/computercraft/redstone_relay.png deleted file mode 100644 index d8d5e4b6..00000000 Binary files a/public/textures/computercraft/redstone_relay.png and /dev/null differ diff --git a/public/textures/computercraft/speaker.png b/public/textures/computercraft/speaker.png deleted file mode 100644 index 276a7fb9..00000000 Binary files a/public/textures/computercraft/speaker.png and /dev/null differ diff --git a/public/textures/computercraft/turtle_advanced.png b/public/textures/computercraft/turtle_advanced.png deleted file mode 100644 index 65c60a22..00000000 Binary files a/public/textures/computercraft/turtle_advanced.png and /dev/null differ diff --git a/public/textures/computercraft/turtle_normal.png b/public/textures/computercraft/turtle_normal.png deleted file mode 100644 index fd674497..00000000 Binary files a/public/textures/computercraft/turtle_normal.png and /dev/null differ diff --git a/public/textures/computercraft/wired_modem.png b/public/textures/computercraft/wired_modem.png deleted file mode 100644 index dd454c4f..00000000 Binary files a/public/textures/computercraft/wired_modem.png and /dev/null differ diff --git a/public/textures/computercraft/wired_modem_full.png b/public/textures/computercraft/wired_modem_full.png deleted file mode 100644 index 6e747561..00000000 Binary files a/public/textures/computercraft/wired_modem_full.png and /dev/null differ diff --git a/public/textures/computercraft/wireless_modem_advanced.png b/public/textures/computercraft/wireless_modem_advanced.png deleted file mode 100644 index d9f8923f..00000000 Binary files a/public/textures/computercraft/wireless_modem_advanced.png and /dev/null differ diff --git a/public/textures/computercraft/wireless_modem_normal.png b/public/textures/computercraft/wireless_modem_normal.png deleted file mode 100644 index 13c128a4..00000000 Binary files a/public/textures/computercraft/wireless_modem_normal.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass.png b/public/textures/connectedglass/borderless_glass.png deleted file mode 100644 index 17772e65..00000000 Binary files a/public/textures/connectedglass/borderless_glass.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_black.png b/public/textures/connectedglass/borderless_glass_black.png deleted file mode 100644 index 4be7bac8..00000000 Binary files a/public/textures/connectedglass/borderless_glass_black.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_black_pane.png b/public/textures/connectedglass/borderless_glass_black_pane.png deleted file mode 100644 index ff157a9d..00000000 Binary files a/public/textures/connectedglass/borderless_glass_black_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_blue.png b/public/textures/connectedglass/borderless_glass_blue.png deleted file mode 100644 index d632bd15..00000000 Binary files a/public/textures/connectedglass/borderless_glass_blue.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_blue_pane.png b/public/textures/connectedglass/borderless_glass_blue_pane.png deleted file mode 100644 index 829dfd76..00000000 Binary files a/public/textures/connectedglass/borderless_glass_blue_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_brown.png b/public/textures/connectedglass/borderless_glass_brown.png deleted file mode 100644 index 46ce86c2..00000000 Binary files a/public/textures/connectedglass/borderless_glass_brown.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_brown_pane.png b/public/textures/connectedglass/borderless_glass_brown_pane.png deleted file mode 100644 index 7e0b1ffe..00000000 Binary files a/public/textures/connectedglass/borderless_glass_brown_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_cyan.png b/public/textures/connectedglass/borderless_glass_cyan.png deleted file mode 100644 index adac6b21..00000000 Binary files a/public/textures/connectedglass/borderless_glass_cyan.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_cyan_pane.png b/public/textures/connectedglass/borderless_glass_cyan_pane.png deleted file mode 100644 index 3208a8fc..00000000 Binary files a/public/textures/connectedglass/borderless_glass_cyan_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_gray.png b/public/textures/connectedglass/borderless_glass_gray.png deleted file mode 100644 index d49dbec8..00000000 Binary files a/public/textures/connectedglass/borderless_glass_gray.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_gray_pane.png b/public/textures/connectedglass/borderless_glass_gray_pane.png deleted file mode 100644 index 24dc048a..00000000 Binary files a/public/textures/connectedglass/borderless_glass_gray_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_green.png b/public/textures/connectedglass/borderless_glass_green.png deleted file mode 100644 index 97eb5e41..00000000 Binary files a/public/textures/connectedglass/borderless_glass_green.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_green_pane.png b/public/textures/connectedglass/borderless_glass_green_pane.png deleted file mode 100644 index c92c3074..00000000 Binary files a/public/textures/connectedglass/borderless_glass_green_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_light_blue.png b/public/textures/connectedglass/borderless_glass_light_blue.png deleted file mode 100644 index ecf69c87..00000000 Binary files a/public/textures/connectedglass/borderless_glass_light_blue.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_light_blue_pane.png b/public/textures/connectedglass/borderless_glass_light_blue_pane.png deleted file mode 100644 index 8d2f984b..00000000 Binary files a/public/textures/connectedglass/borderless_glass_light_blue_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_light_gray.png b/public/textures/connectedglass/borderless_glass_light_gray.png deleted file mode 100644 index eab54596..00000000 Binary files a/public/textures/connectedglass/borderless_glass_light_gray.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_light_gray_pane.png b/public/textures/connectedglass/borderless_glass_light_gray_pane.png deleted file mode 100644 index f2853c25..00000000 Binary files a/public/textures/connectedglass/borderless_glass_light_gray_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_lime.png b/public/textures/connectedglass/borderless_glass_lime.png deleted file mode 100644 index 2b4163cc..00000000 Binary files a/public/textures/connectedglass/borderless_glass_lime.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_lime_pane.png b/public/textures/connectedglass/borderless_glass_lime_pane.png deleted file mode 100644 index 8201bc1d..00000000 Binary files a/public/textures/connectedglass/borderless_glass_lime_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_magenta.png b/public/textures/connectedglass/borderless_glass_magenta.png deleted file mode 100644 index 5f8c5efa..00000000 Binary files a/public/textures/connectedglass/borderless_glass_magenta.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_magenta_pane.png b/public/textures/connectedglass/borderless_glass_magenta_pane.png deleted file mode 100644 index 516ce107..00000000 Binary files a/public/textures/connectedglass/borderless_glass_magenta_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_orange.png b/public/textures/connectedglass/borderless_glass_orange.png deleted file mode 100644 index 4b32b03c..00000000 Binary files a/public/textures/connectedglass/borderless_glass_orange.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_orange_pane.png b/public/textures/connectedglass/borderless_glass_orange_pane.png deleted file mode 100644 index 19878eec..00000000 Binary files a/public/textures/connectedglass/borderless_glass_orange_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_pane.png b/public/textures/connectedglass/borderless_glass_pane.png deleted file mode 100644 index 7437c4aa..00000000 Binary files a/public/textures/connectedglass/borderless_glass_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_pink.png b/public/textures/connectedglass/borderless_glass_pink.png deleted file mode 100644 index 0bcdd04d..00000000 Binary files a/public/textures/connectedglass/borderless_glass_pink.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_pink_pane.png b/public/textures/connectedglass/borderless_glass_pink_pane.png deleted file mode 100644 index 7cf3c546..00000000 Binary files a/public/textures/connectedglass/borderless_glass_pink_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_purple.png b/public/textures/connectedglass/borderless_glass_purple.png deleted file mode 100644 index f0fa0656..00000000 Binary files a/public/textures/connectedglass/borderless_glass_purple.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_purple_pane.png b/public/textures/connectedglass/borderless_glass_purple_pane.png deleted file mode 100644 index 7b2bfd8c..00000000 Binary files a/public/textures/connectedglass/borderless_glass_purple_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_red.png b/public/textures/connectedglass/borderless_glass_red.png deleted file mode 100644 index 23e7a4cd..00000000 Binary files a/public/textures/connectedglass/borderless_glass_red.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_red_pane.png b/public/textures/connectedglass/borderless_glass_red_pane.png deleted file mode 100644 index 7c050b25..00000000 Binary files a/public/textures/connectedglass/borderless_glass_red_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_white.png b/public/textures/connectedglass/borderless_glass_white.png deleted file mode 100644 index 52449d7f..00000000 Binary files a/public/textures/connectedglass/borderless_glass_white.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_white_pane.png b/public/textures/connectedglass/borderless_glass_white_pane.png deleted file mode 100644 index 4bbaae6f..00000000 Binary files a/public/textures/connectedglass/borderless_glass_white_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_yellow.png b/public/textures/connectedglass/borderless_glass_yellow.png deleted file mode 100644 index 8d99ef8e..00000000 Binary files a/public/textures/connectedglass/borderless_glass_yellow.png and /dev/null differ diff --git a/public/textures/connectedglass/borderless_glass_yellow_pane.png b/public/textures/connectedglass/borderless_glass_yellow_pane.png deleted file mode 100644 index d051ddc9..00000000 Binary files a/public/textures/connectedglass/borderless_glass_yellow_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass.png b/public/textures/connectedglass/clear_glass.png deleted file mode 100644 index 4569ebfe..00000000 Binary files a/public/textures/connectedglass/clear_glass.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_black.png b/public/textures/connectedglass/clear_glass_black.png deleted file mode 100644 index 187be90f..00000000 Binary files a/public/textures/connectedglass/clear_glass_black.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_black_pane.png b/public/textures/connectedglass/clear_glass_black_pane.png deleted file mode 100644 index 8a40b83e..00000000 Binary files a/public/textures/connectedglass/clear_glass_black_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_blue.png b/public/textures/connectedglass/clear_glass_blue.png deleted file mode 100644 index d17a5863..00000000 Binary files a/public/textures/connectedglass/clear_glass_blue.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_blue_pane.png b/public/textures/connectedglass/clear_glass_blue_pane.png deleted file mode 100644 index 28d9ae30..00000000 Binary files a/public/textures/connectedglass/clear_glass_blue_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_brown.png b/public/textures/connectedglass/clear_glass_brown.png deleted file mode 100644 index bdad050a..00000000 Binary files a/public/textures/connectedglass/clear_glass_brown.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_brown_pane.png b/public/textures/connectedglass/clear_glass_brown_pane.png deleted file mode 100644 index a1864a9e..00000000 Binary files a/public/textures/connectedglass/clear_glass_brown_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_cyan.png b/public/textures/connectedglass/clear_glass_cyan.png deleted file mode 100644 index ed3183c2..00000000 Binary files a/public/textures/connectedglass/clear_glass_cyan.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_cyan_pane.png b/public/textures/connectedglass/clear_glass_cyan_pane.png deleted file mode 100644 index 0db04bb6..00000000 Binary files a/public/textures/connectedglass/clear_glass_cyan_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_gray.png b/public/textures/connectedglass/clear_glass_gray.png deleted file mode 100644 index 234a65aa..00000000 Binary files a/public/textures/connectedglass/clear_glass_gray.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_gray_pane.png b/public/textures/connectedglass/clear_glass_gray_pane.png deleted file mode 100644 index 0c01254e..00000000 Binary files a/public/textures/connectedglass/clear_glass_gray_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_green.png b/public/textures/connectedglass/clear_glass_green.png deleted file mode 100644 index b46fe345..00000000 Binary files a/public/textures/connectedglass/clear_glass_green.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_green_pane.png b/public/textures/connectedglass/clear_glass_green_pane.png deleted file mode 100644 index 6efa7927..00000000 Binary files a/public/textures/connectedglass/clear_glass_green_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_light_blue.png b/public/textures/connectedglass/clear_glass_light_blue.png deleted file mode 100644 index c56d16f8..00000000 Binary files a/public/textures/connectedglass/clear_glass_light_blue.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_light_blue_pane.png b/public/textures/connectedglass/clear_glass_light_blue_pane.png deleted file mode 100644 index d19de301..00000000 Binary files a/public/textures/connectedglass/clear_glass_light_blue_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_light_gray.png b/public/textures/connectedglass/clear_glass_light_gray.png deleted file mode 100644 index bfa8bd23..00000000 Binary files a/public/textures/connectedglass/clear_glass_light_gray.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_light_gray_pane.png b/public/textures/connectedglass/clear_glass_light_gray_pane.png deleted file mode 100644 index ce4f5a0d..00000000 Binary files a/public/textures/connectedglass/clear_glass_light_gray_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_lime.png b/public/textures/connectedglass/clear_glass_lime.png deleted file mode 100644 index fdf8210a..00000000 Binary files a/public/textures/connectedglass/clear_glass_lime.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_lime_pane.png b/public/textures/connectedglass/clear_glass_lime_pane.png deleted file mode 100644 index ee2584b3..00000000 Binary files a/public/textures/connectedglass/clear_glass_lime_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_magenta.png b/public/textures/connectedglass/clear_glass_magenta.png deleted file mode 100644 index 1a51140a..00000000 Binary files a/public/textures/connectedglass/clear_glass_magenta.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_magenta_pane.png b/public/textures/connectedglass/clear_glass_magenta_pane.png deleted file mode 100644 index 625b32c7..00000000 Binary files a/public/textures/connectedglass/clear_glass_magenta_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_orange.png b/public/textures/connectedglass/clear_glass_orange.png deleted file mode 100644 index f7466947..00000000 Binary files a/public/textures/connectedglass/clear_glass_orange.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_orange_pane.png b/public/textures/connectedglass/clear_glass_orange_pane.png deleted file mode 100644 index 866873c3..00000000 Binary files a/public/textures/connectedglass/clear_glass_orange_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_pane.png b/public/textures/connectedglass/clear_glass_pane.png deleted file mode 100644 index 9d46f10d..00000000 Binary files a/public/textures/connectedglass/clear_glass_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_pink.png b/public/textures/connectedglass/clear_glass_pink.png deleted file mode 100644 index 455c1e0a..00000000 Binary files a/public/textures/connectedglass/clear_glass_pink.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_pink_pane.png b/public/textures/connectedglass/clear_glass_pink_pane.png deleted file mode 100644 index 170be7b7..00000000 Binary files a/public/textures/connectedglass/clear_glass_pink_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_purple.png b/public/textures/connectedglass/clear_glass_purple.png deleted file mode 100644 index cba3c227..00000000 Binary files a/public/textures/connectedglass/clear_glass_purple.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_purple_pane.png b/public/textures/connectedglass/clear_glass_purple_pane.png deleted file mode 100644 index 8260f265..00000000 Binary files a/public/textures/connectedglass/clear_glass_purple_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_red.png b/public/textures/connectedglass/clear_glass_red.png deleted file mode 100644 index 4ae296c2..00000000 Binary files a/public/textures/connectedglass/clear_glass_red.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_red_pane.png b/public/textures/connectedglass/clear_glass_red_pane.png deleted file mode 100644 index 3e156276..00000000 Binary files a/public/textures/connectedglass/clear_glass_red_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_white.png b/public/textures/connectedglass/clear_glass_white.png deleted file mode 100644 index 20215c48..00000000 Binary files a/public/textures/connectedglass/clear_glass_white.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_white_pane.png b/public/textures/connectedglass/clear_glass_white_pane.png deleted file mode 100644 index eab0fc69..00000000 Binary files a/public/textures/connectedglass/clear_glass_white_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_yellow.png b/public/textures/connectedglass/clear_glass_yellow.png deleted file mode 100644 index 74425bf5..00000000 Binary files a/public/textures/connectedglass/clear_glass_yellow.png and /dev/null differ diff --git a/public/textures/connectedglass/clear_glass_yellow_pane.png b/public/textures/connectedglass/clear_glass_yellow_pane.png deleted file mode 100644 index 5c406f33..00000000 Binary files a/public/textures/connectedglass/clear_glass_yellow_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass.png b/public/textures/connectedglass/scratched_glass.png deleted file mode 100644 index 00c02f06..00000000 Binary files a/public/textures/connectedglass/scratched_glass.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_black.png b/public/textures/connectedglass/scratched_glass_black.png deleted file mode 100644 index b6fe1712..00000000 Binary files a/public/textures/connectedglass/scratched_glass_black.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_black_pane.png b/public/textures/connectedglass/scratched_glass_black_pane.png deleted file mode 100644 index 92125df5..00000000 Binary files a/public/textures/connectedglass/scratched_glass_black_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_blue.png b/public/textures/connectedglass/scratched_glass_blue.png deleted file mode 100644 index 6a546082..00000000 Binary files a/public/textures/connectedglass/scratched_glass_blue.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_blue_pane.png b/public/textures/connectedglass/scratched_glass_blue_pane.png deleted file mode 100644 index 0827d1da..00000000 Binary files a/public/textures/connectedglass/scratched_glass_blue_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_brown.png b/public/textures/connectedglass/scratched_glass_brown.png deleted file mode 100644 index 301da2fa..00000000 Binary files a/public/textures/connectedglass/scratched_glass_brown.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_brown_pane.png b/public/textures/connectedglass/scratched_glass_brown_pane.png deleted file mode 100644 index 0e310c5e..00000000 Binary files a/public/textures/connectedglass/scratched_glass_brown_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_cyan.png b/public/textures/connectedglass/scratched_glass_cyan.png deleted file mode 100644 index a503b6b6..00000000 Binary files a/public/textures/connectedglass/scratched_glass_cyan.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_cyan_pane.png b/public/textures/connectedglass/scratched_glass_cyan_pane.png deleted file mode 100644 index 58dd2df5..00000000 Binary files a/public/textures/connectedglass/scratched_glass_cyan_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_gray.png b/public/textures/connectedglass/scratched_glass_gray.png deleted file mode 100644 index 7f772997..00000000 Binary files a/public/textures/connectedglass/scratched_glass_gray.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_gray_pane.png b/public/textures/connectedglass/scratched_glass_gray_pane.png deleted file mode 100644 index fb25ffc9..00000000 Binary files a/public/textures/connectedglass/scratched_glass_gray_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_green.png b/public/textures/connectedglass/scratched_glass_green.png deleted file mode 100644 index a5a5956b..00000000 Binary files a/public/textures/connectedglass/scratched_glass_green.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_green_pane.png b/public/textures/connectedglass/scratched_glass_green_pane.png deleted file mode 100644 index 3d07dab0..00000000 Binary files a/public/textures/connectedglass/scratched_glass_green_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_light_blue.png b/public/textures/connectedglass/scratched_glass_light_blue.png deleted file mode 100644 index 650592ac..00000000 Binary files a/public/textures/connectedglass/scratched_glass_light_blue.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_light_blue_pane.png b/public/textures/connectedglass/scratched_glass_light_blue_pane.png deleted file mode 100644 index 0dc6cb0d..00000000 Binary files a/public/textures/connectedglass/scratched_glass_light_blue_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_light_gray.png b/public/textures/connectedglass/scratched_glass_light_gray.png deleted file mode 100644 index b8ccbcf8..00000000 Binary files a/public/textures/connectedglass/scratched_glass_light_gray.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_light_gray_pane.png b/public/textures/connectedglass/scratched_glass_light_gray_pane.png deleted file mode 100644 index 29aebe42..00000000 Binary files a/public/textures/connectedglass/scratched_glass_light_gray_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_lime.png b/public/textures/connectedglass/scratched_glass_lime.png deleted file mode 100644 index e90a02a1..00000000 Binary files a/public/textures/connectedglass/scratched_glass_lime.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_lime_pane.png b/public/textures/connectedglass/scratched_glass_lime_pane.png deleted file mode 100644 index 825cfdfc..00000000 Binary files a/public/textures/connectedglass/scratched_glass_lime_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_magenta.png b/public/textures/connectedglass/scratched_glass_magenta.png deleted file mode 100644 index 94648889..00000000 Binary files a/public/textures/connectedglass/scratched_glass_magenta.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_magenta_pane.png b/public/textures/connectedglass/scratched_glass_magenta_pane.png deleted file mode 100644 index 771fbc0d..00000000 Binary files a/public/textures/connectedglass/scratched_glass_magenta_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_orange.png b/public/textures/connectedglass/scratched_glass_orange.png deleted file mode 100644 index 5d205673..00000000 Binary files a/public/textures/connectedglass/scratched_glass_orange.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_orange_pane.png b/public/textures/connectedglass/scratched_glass_orange_pane.png deleted file mode 100644 index 7dd190da..00000000 Binary files a/public/textures/connectedglass/scratched_glass_orange_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_pane.png b/public/textures/connectedglass/scratched_glass_pane.png deleted file mode 100644 index eb166d79..00000000 Binary files a/public/textures/connectedglass/scratched_glass_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_pink.png b/public/textures/connectedglass/scratched_glass_pink.png deleted file mode 100644 index 0d1b2914..00000000 Binary files a/public/textures/connectedglass/scratched_glass_pink.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_pink_pane.png b/public/textures/connectedglass/scratched_glass_pink_pane.png deleted file mode 100644 index 9c593dc0..00000000 Binary files a/public/textures/connectedglass/scratched_glass_pink_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_purple.png b/public/textures/connectedglass/scratched_glass_purple.png deleted file mode 100644 index 07d93cd8..00000000 Binary files a/public/textures/connectedglass/scratched_glass_purple.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_purple_pane.png b/public/textures/connectedglass/scratched_glass_purple_pane.png deleted file mode 100644 index aa826705..00000000 Binary files a/public/textures/connectedglass/scratched_glass_purple_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_red.png b/public/textures/connectedglass/scratched_glass_red.png deleted file mode 100644 index 9f932146..00000000 Binary files a/public/textures/connectedglass/scratched_glass_red.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_red_pane.png b/public/textures/connectedglass/scratched_glass_red_pane.png deleted file mode 100644 index f9ef68b7..00000000 Binary files a/public/textures/connectedglass/scratched_glass_red_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_white.png b/public/textures/connectedglass/scratched_glass_white.png deleted file mode 100644 index a23e4fdc..00000000 Binary files a/public/textures/connectedglass/scratched_glass_white.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_white_pane.png b/public/textures/connectedglass/scratched_glass_white_pane.png deleted file mode 100644 index 2294a0a9..00000000 Binary files a/public/textures/connectedglass/scratched_glass_white_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_yellow.png b/public/textures/connectedglass/scratched_glass_yellow.png deleted file mode 100644 index b8072c84..00000000 Binary files a/public/textures/connectedglass/scratched_glass_yellow.png and /dev/null differ diff --git a/public/textures/connectedglass/scratched_glass_yellow_pane.png b/public/textures/connectedglass/scratched_glass_yellow_pane.png deleted file mode 100644 index 2b0844f4..00000000 Binary files a/public/textures/connectedglass/scratched_glass_yellow_pane.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass.png b/public/textures/connectedglass/tinted_borderless_glass.png deleted file mode 100644 index 2742db93..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_black.png b/public/textures/connectedglass/tinted_borderless_glass_black.png deleted file mode 100644 index 9f4eab5c..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_black.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_blue.png b/public/textures/connectedglass/tinted_borderless_glass_blue.png deleted file mode 100644 index cfafca28..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_blue.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_brown.png b/public/textures/connectedglass/tinted_borderless_glass_brown.png deleted file mode 100644 index f5467668..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_brown.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_cyan.png b/public/textures/connectedglass/tinted_borderless_glass_cyan.png deleted file mode 100644 index 0d8f9939..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_cyan.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_gray.png b/public/textures/connectedglass/tinted_borderless_glass_gray.png deleted file mode 100644 index 776c572a..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_gray.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_green.png b/public/textures/connectedglass/tinted_borderless_glass_green.png deleted file mode 100644 index 1b2b5f27..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_green.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_light_blue.png b/public/textures/connectedglass/tinted_borderless_glass_light_blue.png deleted file mode 100644 index 5c82f199..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_light_blue.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_light_gray.png b/public/textures/connectedglass/tinted_borderless_glass_light_gray.png deleted file mode 100644 index 1141fa0c..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_light_gray.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_lime.png b/public/textures/connectedglass/tinted_borderless_glass_lime.png deleted file mode 100644 index ff22e8fb..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_lime.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_magenta.png b/public/textures/connectedglass/tinted_borderless_glass_magenta.png deleted file mode 100644 index fa799464..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_magenta.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_orange.png b/public/textures/connectedglass/tinted_borderless_glass_orange.png deleted file mode 100644 index c8d09f59..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_orange.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_pink.png b/public/textures/connectedglass/tinted_borderless_glass_pink.png deleted file mode 100644 index f87750a5..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_pink.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_purple.png b/public/textures/connectedglass/tinted_borderless_glass_purple.png deleted file mode 100644 index d7d97266..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_purple.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_red.png b/public/textures/connectedglass/tinted_borderless_glass_red.png deleted file mode 100644 index 2b25ddec..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_red.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_white.png b/public/textures/connectedglass/tinted_borderless_glass_white.png deleted file mode 100644 index f8049783..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_white.png and /dev/null differ diff --git a/public/textures/connectedglass/tinted_borderless_glass_yellow.png b/public/textures/connectedglass/tinted_borderless_glass_yellow.png deleted file mode 100644 index 28b3ca06..00000000 Binary files a/public/textures/connectedglass/tinted_borderless_glass_yellow.png and /dev/null differ diff --git a/public/textures/corn_delight/boiled_corn.png b/public/textures/corn_delight/boiled_corn.png deleted file mode 100644 index e83ee5e8..00000000 Binary files a/public/textures/corn_delight/boiled_corn.png and /dev/null differ diff --git a/public/textures/corn_delight/caramel_popcorn.png b/public/textures/corn_delight/caramel_popcorn.png deleted file mode 100644 index f6b26253..00000000 Binary files a/public/textures/corn_delight/caramel_popcorn.png and /dev/null differ diff --git a/public/textures/corn_delight/classic_corn_dog.png b/public/textures/corn_delight/classic_corn_dog.png deleted file mode 100644 index 16499e39..00000000 Binary files a/public/textures/corn_delight/classic_corn_dog.png and /dev/null differ diff --git a/public/textures/corn_delight/cob_pipe.png b/public/textures/corn_delight/cob_pipe.png deleted file mode 100644 index a215dfee..00000000 Binary files a/public/textures/corn_delight/cob_pipe.png and /dev/null differ diff --git a/public/textures/corn_delight/corn.png b/public/textures/corn_delight/corn.png deleted file mode 100644 index 2ba71b2d..00000000 Binary files a/public/textures/corn_delight/corn.png and /dev/null differ diff --git a/public/textures/corn_delight/corn_crate.png b/public/textures/corn_delight/corn_crate.png deleted file mode 100644 index 6672e659..00000000 Binary files a/public/textures/corn_delight/corn_crate.png and /dev/null differ diff --git a/public/textures/corn_delight/corn_dog.png b/public/textures/corn_delight/corn_dog.png deleted file mode 100644 index f93c74f9..00000000 Binary files a/public/textures/corn_delight/corn_dog.png and /dev/null differ diff --git a/public/textures/corn_delight/corn_kernel_bag.png b/public/textures/corn_delight/corn_kernel_bag.png deleted file mode 100644 index 4b561ad3..00000000 Binary files a/public/textures/corn_delight/corn_kernel_bag.png and /dev/null differ diff --git a/public/textures/corn_delight/corn_seeds.png b/public/textures/corn_delight/corn_seeds.png deleted file mode 100644 index 029221ef..00000000 Binary files a/public/textures/corn_delight/corn_seeds.png and /dev/null differ diff --git a/public/textures/corn_delight/corn_soup.png b/public/textures/corn_delight/corn_soup.png deleted file mode 100644 index c0c88a5f..00000000 Binary files a/public/textures/corn_delight/corn_soup.png and /dev/null differ diff --git a/public/textures/corn_delight/cornbread.png b/public/textures/corn_delight/cornbread.png deleted file mode 100644 index 756b0b9e..00000000 Binary files a/public/textures/corn_delight/cornbread.png and /dev/null differ diff --git a/public/textures/corn_delight/cornbread_batter.png b/public/textures/corn_delight/cornbread_batter.png deleted file mode 100644 index 57a38993..00000000 Binary files a/public/textures/corn_delight/cornbread_batter.png and /dev/null differ diff --git a/public/textures/corn_delight/cornbread_stuffing.png b/public/textures/corn_delight/cornbread_stuffing.png deleted file mode 100644 index 19899a5c..00000000 Binary files a/public/textures/corn_delight/cornbread_stuffing.png and /dev/null differ diff --git a/public/textures/corn_delight/corncob.png b/public/textures/corn_delight/corncob.png deleted file mode 100644 index 6953f05d..00000000 Binary files a/public/textures/corn_delight/corncob.png and /dev/null differ diff --git a/public/textures/corn_delight/creamed_corn.png b/public/textures/corn_delight/creamed_corn.png deleted file mode 100644 index 4f53ac90..00000000 Binary files a/public/textures/corn_delight/creamed_corn.png and /dev/null differ diff --git a/public/textures/corn_delight/creamy_corn_drink.png b/public/textures/corn_delight/creamy_corn_drink.png deleted file mode 100644 index 021ba335..00000000 Binary files a/public/textures/corn_delight/creamy_corn_drink.png and /dev/null differ diff --git a/public/textures/corn_delight/grilled_corn.png b/public/textures/corn_delight/grilled_corn.png deleted file mode 100644 index 87bfa410..00000000 Binary files a/public/textures/corn_delight/grilled_corn.png and /dev/null differ diff --git a/public/textures/corn_delight/nachos_block.png b/public/textures/corn_delight/nachos_block.png deleted file mode 100644 index a0a81a09..00000000 Binary files a/public/textures/corn_delight/nachos_block.png and /dev/null differ diff --git a/public/textures/corn_delight/nachos_bowl.png b/public/textures/corn_delight/nachos_bowl.png deleted file mode 100644 index f2dd123a..00000000 Binary files a/public/textures/corn_delight/nachos_bowl.png and /dev/null differ diff --git a/public/textures/corn_delight/popcorn.png b/public/textures/corn_delight/popcorn.png deleted file mode 100644 index 0bbb5abf..00000000 Binary files a/public/textures/corn_delight/popcorn.png and /dev/null differ diff --git a/public/textures/corn_delight/popcorn_box.png b/public/textures/corn_delight/popcorn_box.png deleted file mode 100644 index 77ed729d..00000000 Binary files a/public/textures/corn_delight/popcorn_box.png and /dev/null differ diff --git a/public/textures/corn_delight/taco.png b/public/textures/corn_delight/taco.png deleted file mode 100644 index 321433d4..00000000 Binary files a/public/textures/corn_delight/taco.png and /dev/null differ diff --git a/public/textures/corn_delight/tortilla.png b/public/textures/corn_delight/tortilla.png deleted file mode 100644 index 436dbd3c..00000000 Binary files a/public/textures/corn_delight/tortilla.png and /dev/null differ diff --git a/public/textures/corn_delight/tortilla_chip.png b/public/textures/corn_delight/tortilla_chip.png deleted file mode 100644 index 1fdaa745..00000000 Binary files a/public/textures/corn_delight/tortilla_chip.png and /dev/null differ diff --git a/public/textures/corn_delight/tortilla_raw.png b/public/textures/corn_delight/tortilla_raw.png deleted file mode 100644 index 33316c5a..00000000 Binary files a/public/textures/corn_delight/tortilla_raw.png and /dev/null differ diff --git a/public/textures/corn_delight/wild_corn.png b/public/textures/corn_delight/wild_corn.png deleted file mode 100644 index 928666d0..00000000 Binary files a/public/textures/corn_delight/wild_corn.png and /dev/null differ diff --git a/public/textures/create/acacia_window.png b/public/textures/create/acacia_window.png deleted file mode 100644 index bd87bea7..00000000 Binary files a/public/textures/create/acacia_window.png and /dev/null differ diff --git a/public/textures/create/acacia_window_pane.png b/public/textures/create/acacia_window_pane.png deleted file mode 100644 index 884587c4..00000000 Binary files a/public/textures/create/acacia_window_pane.png and /dev/null differ diff --git a/public/textures/create/adjustable_chain_gearshift.png b/public/textures/create/adjustable_chain_gearshift.png deleted file mode 100644 index f34c7c9b..00000000 Binary files a/public/textures/create/adjustable_chain_gearshift.png and /dev/null differ diff --git a/public/textures/create/analog_lever.png b/public/textures/create/analog_lever.png deleted file mode 100644 index 43e65e16..00000000 Binary files a/public/textures/create/analog_lever.png and /dev/null differ diff --git a/public/textures/create/andesite_alloy.png b/public/textures/create/andesite_alloy.png deleted file mode 100644 index cfaa5ad7..00000000 Binary files a/public/textures/create/andesite_alloy.png and /dev/null differ diff --git a/public/textures/create/andesite_alloy_block.png b/public/textures/create/andesite_alloy_block.png deleted file mode 100644 index aa8da4d9..00000000 Binary files a/public/textures/create/andesite_alloy_block.png and /dev/null differ diff --git a/public/textures/create/andesite_bars.png b/public/textures/create/andesite_bars.png deleted file mode 100644 index 4262a0d9..00000000 Binary files a/public/textures/create/andesite_bars.png and /dev/null differ diff --git a/public/textures/create/andesite_casing.png b/public/textures/create/andesite_casing.png deleted file mode 100644 index ee692c08..00000000 Binary files a/public/textures/create/andesite_casing.png and /dev/null differ diff --git a/public/textures/create/andesite_door.png b/public/textures/create/andesite_door.png deleted file mode 100644 index 436f75ce..00000000 Binary files a/public/textures/create/andesite_door.png and /dev/null differ diff --git a/public/textures/create/andesite_funnel.png b/public/textures/create/andesite_funnel.png deleted file mode 100644 index c38db912..00000000 Binary files a/public/textures/create/andesite_funnel.png and /dev/null differ diff --git a/public/textures/create/andesite_ladder.png b/public/textures/create/andesite_ladder.png deleted file mode 100644 index b6315e27..00000000 Binary files a/public/textures/create/andesite_ladder.png and /dev/null differ diff --git a/public/textures/create/andesite_pillar.png b/public/textures/create/andesite_pillar.png deleted file mode 100644 index 26bdea5a..00000000 Binary files a/public/textures/create/andesite_pillar.png and /dev/null differ diff --git a/public/textures/create/andesite_scaffolding.png b/public/textures/create/andesite_scaffolding.png deleted file mode 100644 index fcce976b..00000000 Binary files a/public/textures/create/andesite_scaffolding.png and /dev/null differ diff --git a/public/textures/create/andesite_table_cloth.png b/public/textures/create/andesite_table_cloth.png deleted file mode 100644 index 677dae5a..00000000 Binary files a/public/textures/create/andesite_table_cloth.png and /dev/null differ diff --git a/public/textures/create/andesite_tunnel.png b/public/textures/create/andesite_tunnel.png deleted file mode 100644 index 65331c68..00000000 Binary files a/public/textures/create/andesite_tunnel.png and /dev/null differ diff --git a/public/textures/create/asurine.png b/public/textures/create/asurine.png deleted file mode 100644 index 68e7a7f3..00000000 Binary files a/public/textures/create/asurine.png and /dev/null differ diff --git a/public/textures/create/asurine_pillar.png b/public/textures/create/asurine_pillar.png deleted file mode 100644 index 92a67fae..00000000 Binary files a/public/textures/create/asurine_pillar.png and /dev/null differ diff --git a/public/textures/create/attribute_filter.png b/public/textures/create/attribute_filter.png deleted file mode 100644 index f2fd0555..00000000 Binary files a/public/textures/create/attribute_filter.png and /dev/null differ diff --git a/public/textures/create/bamboo_window.png b/public/textures/create/bamboo_window.png deleted file mode 100644 index db26d691..00000000 Binary files a/public/textures/create/bamboo_window.png and /dev/null differ diff --git a/public/textures/create/bamboo_window_pane.png b/public/textures/create/bamboo_window_pane.png deleted file mode 100644 index 2c2860f8..00000000 Binary files a/public/textures/create/bamboo_window_pane.png and /dev/null differ diff --git a/public/textures/create/bar_of_chocolate.png b/public/textures/create/bar_of_chocolate.png deleted file mode 100644 index b3a5f7a1..00000000 Binary files a/public/textures/create/bar_of_chocolate.png and /dev/null differ diff --git a/public/textures/create/basin.png b/public/textures/create/basin.png deleted file mode 100644 index 436f5c4b..00000000 Binary files a/public/textures/create/basin.png and /dev/null differ diff --git a/public/textures/create/belt_connector.png b/public/textures/create/belt_connector.png deleted file mode 100644 index 3191e53b..00000000 Binary files a/public/textures/create/belt_connector.png and /dev/null differ diff --git a/public/textures/create/birch_window.png b/public/textures/create/birch_window.png deleted file mode 100644 index 99d324cc..00000000 Binary files a/public/textures/create/birch_window.png and /dev/null differ diff --git a/public/textures/create/birch_window_pane.png b/public/textures/create/birch_window_pane.png deleted file mode 100644 index 9dd5a86a..00000000 Binary files a/public/textures/create/birch_window_pane.png and /dev/null differ diff --git a/public/textures/create/blaze_burner.png b/public/textures/create/blaze_burner.png deleted file mode 100644 index 2496742f..00000000 Binary files a/public/textures/create/blaze_burner.png and /dev/null differ diff --git a/public/textures/create/blaze_cake.png b/public/textures/create/blaze_cake.png deleted file mode 100644 index 01cc54a3..00000000 Binary files a/public/textures/create/blaze_cake.png and /dev/null differ diff --git a/public/textures/create/bound_cardboard_block.png b/public/textures/create/bound_cardboard_block.png deleted file mode 100644 index 340dff0f..00000000 Binary files a/public/textures/create/bound_cardboard_block.png and /dev/null differ diff --git a/public/textures/create/brass_bars.png b/public/textures/create/brass_bars.png deleted file mode 100644 index 9814a3c6..00000000 Binary files a/public/textures/create/brass_bars.png and /dev/null differ diff --git a/public/textures/create/brass_block.png b/public/textures/create/brass_block.png deleted file mode 100644 index dc6bda36..00000000 Binary files a/public/textures/create/brass_block.png and /dev/null differ diff --git a/public/textures/create/brass_casing.png b/public/textures/create/brass_casing.png deleted file mode 100644 index 5fd83680..00000000 Binary files a/public/textures/create/brass_casing.png and /dev/null differ diff --git a/public/textures/create/brass_door.png b/public/textures/create/brass_door.png deleted file mode 100644 index 0206c68b..00000000 Binary files a/public/textures/create/brass_door.png and /dev/null differ diff --git a/public/textures/create/brass_funnel.png b/public/textures/create/brass_funnel.png deleted file mode 100644 index 940aae6f..00000000 Binary files a/public/textures/create/brass_funnel.png and /dev/null differ diff --git a/public/textures/create/brass_hand.png b/public/textures/create/brass_hand.png deleted file mode 100644 index aac48e73..00000000 Binary files a/public/textures/create/brass_hand.png and /dev/null differ diff --git a/public/textures/create/brass_ingot.png b/public/textures/create/brass_ingot.png deleted file mode 100644 index 8217acde..00000000 Binary files a/public/textures/create/brass_ingot.png and /dev/null differ diff --git a/public/textures/create/brass_ladder.png b/public/textures/create/brass_ladder.png deleted file mode 100644 index 98b36e65..00000000 Binary files a/public/textures/create/brass_ladder.png and /dev/null differ diff --git a/public/textures/create/brass_nugget.png b/public/textures/create/brass_nugget.png deleted file mode 100644 index d71e1951..00000000 Binary files a/public/textures/create/brass_nugget.png and /dev/null differ diff --git a/public/textures/create/brass_scaffolding.png b/public/textures/create/brass_scaffolding.png deleted file mode 100644 index df4c8ea3..00000000 Binary files a/public/textures/create/brass_scaffolding.png and /dev/null differ diff --git a/public/textures/create/brass_sheet.png b/public/textures/create/brass_sheet.png deleted file mode 100644 index 0c86489a..00000000 Binary files a/public/textures/create/brass_sheet.png and /dev/null differ diff --git a/public/textures/create/brass_table_cloth.png b/public/textures/create/brass_table_cloth.png deleted file mode 100644 index 3555099c..00000000 Binary files a/public/textures/create/brass_table_cloth.png and /dev/null differ diff --git a/public/textures/create/brass_tunnel.png b/public/textures/create/brass_tunnel.png deleted file mode 100644 index 4f9a9b14..00000000 Binary files a/public/textures/create/brass_tunnel.png and /dev/null differ diff --git a/public/textures/create/brown_toolbox.png b/public/textures/create/brown_toolbox.png deleted file mode 100644 index aba5f9f7..00000000 Binary files a/public/textures/create/brown_toolbox.png and /dev/null differ diff --git a/public/textures/create/builders_tea.png b/public/textures/create/builders_tea.png deleted file mode 100644 index 3ce86d66..00000000 Binary files a/public/textures/create/builders_tea.png and /dev/null differ diff --git a/public/textures/create/calcite_pillar.png b/public/textures/create/calcite_pillar.png deleted file mode 100644 index 04d96098..00000000 Binary files a/public/textures/create/calcite_pillar.png and /dev/null differ diff --git a/public/textures/create/cardboard.png b/public/textures/create/cardboard.png deleted file mode 100644 index 850502b4..00000000 Binary files a/public/textures/create/cardboard.png and /dev/null differ diff --git a/public/textures/create/cardboard_block.png b/public/textures/create/cardboard_block.png deleted file mode 100644 index 92f9c9bd..00000000 Binary files a/public/textures/create/cardboard_block.png and /dev/null differ diff --git a/public/textures/create/cardboard_boots.png b/public/textures/create/cardboard_boots.png deleted file mode 100644 index 7598e2e8..00000000 Binary files a/public/textures/create/cardboard_boots.png and /dev/null differ diff --git a/public/textures/create/cardboard_chestplate.png b/public/textures/create/cardboard_chestplate.png deleted file mode 100644 index 912b3169..00000000 Binary files a/public/textures/create/cardboard_chestplate.png and /dev/null differ diff --git a/public/textures/create/cardboard_helmet.png b/public/textures/create/cardboard_helmet.png deleted file mode 100644 index 44cb4ec8..00000000 Binary files a/public/textures/create/cardboard_helmet.png and /dev/null differ diff --git a/public/textures/create/cardboard_leggings.png b/public/textures/create/cardboard_leggings.png deleted file mode 100644 index 6d9a108b..00000000 Binary files a/public/textures/create/cardboard_leggings.png and /dev/null differ diff --git a/public/textures/create/cardboard_package_10x12.png b/public/textures/create/cardboard_package_10x12.png deleted file mode 100644 index cd539f15..00000000 Binary files a/public/textures/create/cardboard_package_10x12.png and /dev/null differ diff --git a/public/textures/create/cardboard_package_10x8.png b/public/textures/create/cardboard_package_10x8.png deleted file mode 100644 index d228ee48..00000000 Binary files a/public/textures/create/cardboard_package_10x8.png and /dev/null differ diff --git a/public/textures/create/cardboard_package_12x10.png b/public/textures/create/cardboard_package_12x10.png deleted file mode 100644 index 6d46a391..00000000 Binary files a/public/textures/create/cardboard_package_12x10.png and /dev/null differ diff --git a/public/textures/create/cardboard_package_12x12.png b/public/textures/create/cardboard_package_12x12.png deleted file mode 100644 index 37ac4151..00000000 Binary files a/public/textures/create/cardboard_package_12x12.png and /dev/null differ diff --git a/public/textures/create/cardboard_sword.png b/public/textures/create/cardboard_sword.png deleted file mode 100644 index 50b1555f..00000000 Binary files a/public/textures/create/cardboard_sword.png and /dev/null differ diff --git a/public/textures/create/cart_assembler.png b/public/textures/create/cart_assembler.png deleted file mode 100644 index 97a9ba5e..00000000 Binary files a/public/textures/create/cart_assembler.png and /dev/null differ diff --git a/public/textures/create/chain_conveyor.png b/public/textures/create/chain_conveyor.png deleted file mode 100644 index 36ef6a03..00000000 Binary files a/public/textures/create/chain_conveyor.png and /dev/null differ diff --git a/public/textures/create/cherry_window.png b/public/textures/create/cherry_window.png deleted file mode 100644 index 2f8a2d17..00000000 Binary files a/public/textures/create/cherry_window.png and /dev/null differ diff --git a/public/textures/create/cherry_window_pane.png b/public/textures/create/cherry_window_pane.png deleted file mode 100644 index 419ea6e9..00000000 Binary files a/public/textures/create/cherry_window_pane.png and /dev/null differ diff --git a/public/textures/create/chocolate_bucket.png b/public/textures/create/chocolate_bucket.png deleted file mode 100644 index 8da6ce66..00000000 Binary files a/public/textures/create/chocolate_bucket.png and /dev/null differ diff --git a/public/textures/create/chocolate_glazed_berries.png b/public/textures/create/chocolate_glazed_berries.png deleted file mode 100644 index e0d5f5bd..00000000 Binary files a/public/textures/create/chocolate_glazed_berries.png and /dev/null differ diff --git a/public/textures/create/chute.png b/public/textures/create/chute.png deleted file mode 100644 index 577bea0d..00000000 Binary files a/public/textures/create/chute.png and /dev/null differ diff --git a/public/textures/create/cinder_flour.png b/public/textures/create/cinder_flour.png deleted file mode 100644 index 6e395336..00000000 Binary files a/public/textures/create/cinder_flour.png and /dev/null differ diff --git a/public/textures/create/clipboard.png b/public/textures/create/clipboard.png deleted file mode 100644 index 3311fc87..00000000 Binary files a/public/textures/create/clipboard.png and /dev/null differ diff --git a/public/textures/create/clockwork_bearing.png b/public/textures/create/clockwork_bearing.png deleted file mode 100644 index 7dec5c78..00000000 Binary files a/public/textures/create/clockwork_bearing.png and /dev/null differ diff --git a/public/textures/create/clutch.png b/public/textures/create/clutch.png deleted file mode 100644 index 9ae62f3f..00000000 Binary files a/public/textures/create/clutch.png and /dev/null differ diff --git a/public/textures/create/cogwheel.png b/public/textures/create/cogwheel.png deleted file mode 100644 index a8fdab6b..00000000 Binary files a/public/textures/create/cogwheel.png and /dev/null differ diff --git a/public/textures/create/content_observer.png b/public/textures/create/content_observer.png deleted file mode 100644 index ca35721d..00000000 Binary files a/public/textures/create/content_observer.png and /dev/null differ diff --git a/public/textures/create/contraption_controls.png b/public/textures/create/contraption_controls.png deleted file mode 100644 index 4ed7cea6..00000000 Binary files a/public/textures/create/contraption_controls.png and /dev/null differ diff --git a/public/textures/create/controller_rail.png b/public/textures/create/controller_rail.png deleted file mode 100644 index 5f986a8b..00000000 Binary files a/public/textures/create/controller_rail.png and /dev/null differ diff --git a/public/textures/create/controls.png b/public/textures/create/controls.png deleted file mode 100644 index 1d9fa9b8..00000000 Binary files a/public/textures/create/controls.png and /dev/null differ diff --git a/public/textures/create/copper_backtank__{'create__banktank_air'__900}.png b/public/textures/create/copper_backtank__{'create__banktank_air'__900}.png deleted file mode 100644 index 2057d4c7..00000000 Binary files a/public/textures/create/copper_backtank__{'create__banktank_air'__900}.png and /dev/null differ diff --git a/public/textures/create/copper_bars.png b/public/textures/create/copper_bars.png deleted file mode 100644 index 6d831a9b..00000000 Binary files a/public/textures/create/copper_bars.png and /dev/null differ diff --git a/public/textures/create/copper_casing.png b/public/textures/create/copper_casing.png deleted file mode 100644 index b127899e..00000000 Binary files a/public/textures/create/copper_casing.png and /dev/null differ diff --git a/public/textures/create/copper_diving_boots.png b/public/textures/create/copper_diving_boots.png deleted file mode 100644 index f0d31678..00000000 Binary files a/public/textures/create/copper_diving_boots.png and /dev/null differ diff --git a/public/textures/create/copper_diving_helmet.png b/public/textures/create/copper_diving_helmet.png deleted file mode 100644 index 2f9ab300..00000000 Binary files a/public/textures/create/copper_diving_helmet.png and /dev/null differ diff --git a/public/textures/create/copper_door.png b/public/textures/create/copper_door.png deleted file mode 100644 index 32a8d888..00000000 Binary files a/public/textures/create/copper_door.png and /dev/null differ diff --git a/public/textures/create/copper_ladder.png b/public/textures/create/copper_ladder.png deleted file mode 100644 index a1e9512f..00000000 Binary files a/public/textures/create/copper_ladder.png and /dev/null differ diff --git a/public/textures/create/copper_nugget.png b/public/textures/create/copper_nugget.png deleted file mode 100644 index cd9c4ec9..00000000 Binary files a/public/textures/create/copper_nugget.png and /dev/null differ diff --git a/public/textures/create/copper_scaffolding.png b/public/textures/create/copper_scaffolding.png deleted file mode 100644 index 633dcbd8..00000000 Binary files a/public/textures/create/copper_scaffolding.png and /dev/null differ diff --git a/public/textures/create/copper_sheet.png b/public/textures/create/copper_sheet.png deleted file mode 100644 index ca1ed54b..00000000 Binary files a/public/textures/create/copper_sheet.png and /dev/null differ diff --git a/public/textures/create/copper_shingle_slab.png b/public/textures/create/copper_shingle_slab.png deleted file mode 100644 index 3f5a853c..00000000 Binary files a/public/textures/create/copper_shingle_slab.png and /dev/null differ diff --git a/public/textures/create/copper_shingle_stairs.png b/public/textures/create/copper_shingle_stairs.png deleted file mode 100644 index 7ac53255..00000000 Binary files a/public/textures/create/copper_shingle_stairs.png and /dev/null differ diff --git a/public/textures/create/copper_shingles.png b/public/textures/create/copper_shingles.png deleted file mode 100644 index 6da0ce63..00000000 Binary files a/public/textures/create/copper_shingles.png and /dev/null differ diff --git a/public/textures/create/copper_table_cloth.png b/public/textures/create/copper_table_cloth.png deleted file mode 100644 index 7f17868b..00000000 Binary files a/public/textures/create/copper_table_cloth.png and /dev/null differ diff --git a/public/textures/create/copper_tile_slab.png b/public/textures/create/copper_tile_slab.png deleted file mode 100644 index 5d3090f9..00000000 Binary files a/public/textures/create/copper_tile_slab.png and /dev/null differ diff --git a/public/textures/create/copper_tile_stairs.png b/public/textures/create/copper_tile_stairs.png deleted file mode 100644 index 1493bb57..00000000 Binary files a/public/textures/create/copper_tile_stairs.png and /dev/null differ diff --git a/public/textures/create/copper_tiles.png b/public/textures/create/copper_tiles.png deleted file mode 100644 index 8f102fad..00000000 Binary files a/public/textures/create/copper_tiles.png and /dev/null differ diff --git a/public/textures/create/copper_valve_handle.png b/public/textures/create/copper_valve_handle.png deleted file mode 100644 index a2edb010..00000000 Binary files a/public/textures/create/copper_valve_handle.png and /dev/null differ diff --git a/public/textures/create/copycat_panel.png b/public/textures/create/copycat_panel.png deleted file mode 100644 index 8f1ad64c..00000000 Binary files a/public/textures/create/copycat_panel.png and /dev/null differ diff --git a/public/textures/create/copycat_step.png b/public/textures/create/copycat_step.png deleted file mode 100644 index 8e09655a..00000000 Binary files a/public/textures/create/copycat_step.png and /dev/null differ diff --git a/public/textures/create/crafter_slot_cover.png b/public/textures/create/crafter_slot_cover.png deleted file mode 100644 index 30cba91f..00000000 Binary files a/public/textures/create/crafter_slot_cover.png and /dev/null differ diff --git a/public/textures/create/crafting_blueprint.png b/public/textures/create/crafting_blueprint.png deleted file mode 100644 index 11a6e703..00000000 Binary files a/public/textures/create/crafting_blueprint.png and /dev/null differ diff --git a/public/textures/create/creative_blaze_cake.png b/public/textures/create/creative_blaze_cake.png deleted file mode 100644 index 1f23afed..00000000 Binary files a/public/textures/create/creative_blaze_cake.png and /dev/null differ diff --git a/public/textures/create/creative_crate.png b/public/textures/create/creative_crate.png deleted file mode 100644 index e92fbd6c..00000000 Binary files a/public/textures/create/creative_crate.png and /dev/null differ diff --git a/public/textures/create/creative_fluid_tank.png b/public/textures/create/creative_fluid_tank.png deleted file mode 100644 index 07c70074..00000000 Binary files a/public/textures/create/creative_fluid_tank.png and /dev/null differ diff --git a/public/textures/create/creative_motor.png b/public/textures/create/creative_motor.png deleted file mode 100644 index 02e8f61b..00000000 Binary files a/public/textures/create/creative_motor.png and /dev/null differ diff --git a/public/textures/create/crimsite.png b/public/textures/create/crimsite.png deleted file mode 100644 index e3d1e206..00000000 Binary files a/public/textures/create/crimsite.png and /dev/null differ diff --git a/public/textures/create/crimsite_pillar.png b/public/textures/create/crimsite_pillar.png deleted file mode 100644 index 0702a914..00000000 Binary files a/public/textures/create/crimsite_pillar.png and /dev/null differ diff --git a/public/textures/create/crimson_window.png b/public/textures/create/crimson_window.png deleted file mode 100644 index 2e8f3163..00000000 Binary files a/public/textures/create/crimson_window.png and /dev/null differ diff --git a/public/textures/create/crimson_window_pane.png b/public/textures/create/crimson_window_pane.png deleted file mode 100644 index cb034c0a..00000000 Binary files a/public/textures/create/crimson_window_pane.png and /dev/null differ diff --git a/public/textures/create/crushed_raw_aluminum.png b/public/textures/create/crushed_raw_aluminum.png deleted file mode 100644 index c1bed03b..00000000 Binary files a/public/textures/create/crushed_raw_aluminum.png and /dev/null differ diff --git a/public/textures/create/crushed_raw_copper.png b/public/textures/create/crushed_raw_copper.png deleted file mode 100644 index b2241a17..00000000 Binary files a/public/textures/create/crushed_raw_copper.png and /dev/null differ diff --git a/public/textures/create/crushed_raw_gold.png b/public/textures/create/crushed_raw_gold.png deleted file mode 100644 index a5fabd3c..00000000 Binary files a/public/textures/create/crushed_raw_gold.png and /dev/null differ diff --git a/public/textures/create/crushed_raw_iron.png b/public/textures/create/crushed_raw_iron.png deleted file mode 100644 index 23b296a0..00000000 Binary files a/public/textures/create/crushed_raw_iron.png and /dev/null differ diff --git a/public/textures/create/crushed_raw_lead.png b/public/textures/create/crushed_raw_lead.png deleted file mode 100644 index c627a0f9..00000000 Binary files a/public/textures/create/crushed_raw_lead.png and /dev/null differ diff --git a/public/textures/create/crushed_raw_nickel.png b/public/textures/create/crushed_raw_nickel.png deleted file mode 100644 index a13f0567..00000000 Binary files a/public/textures/create/crushed_raw_nickel.png and /dev/null differ diff --git a/public/textures/create/crushed_raw_osmium.png b/public/textures/create/crushed_raw_osmium.png deleted file mode 100644 index 2485dc01..00000000 Binary files a/public/textures/create/crushed_raw_osmium.png and /dev/null differ diff --git a/public/textures/create/crushed_raw_silver.png b/public/textures/create/crushed_raw_silver.png deleted file mode 100644 index 6cfbbb66..00000000 Binary files a/public/textures/create/crushed_raw_silver.png and /dev/null differ diff --git a/public/textures/create/crushed_raw_tin.png b/public/textures/create/crushed_raw_tin.png deleted file mode 100644 index a14ac004..00000000 Binary files a/public/textures/create/crushed_raw_tin.png and /dev/null differ diff --git a/public/textures/create/crushed_raw_uranium.png b/public/textures/create/crushed_raw_uranium.png deleted file mode 100644 index 38d3d72f..00000000 Binary files a/public/textures/create/crushed_raw_uranium.png and /dev/null differ diff --git a/public/textures/create/crushed_raw_zinc.png b/public/textures/create/crushed_raw_zinc.png deleted file mode 100644 index 0c1725ae..00000000 Binary files a/public/textures/create/crushed_raw_zinc.png and /dev/null differ diff --git a/public/textures/create/crushing_wheel.png b/public/textures/create/crushing_wheel.png deleted file mode 100644 index 9dea10fe..00000000 Binary files a/public/textures/create/crushing_wheel.png and /dev/null differ diff --git a/public/textures/create/cuckoo_clock.png b/public/textures/create/cuckoo_clock.png deleted file mode 100644 index 53694028..00000000 Binary files a/public/textures/create/cuckoo_clock.png and /dev/null differ diff --git a/public/textures/create/cut_andesite.png b/public/textures/create/cut_andesite.png deleted file mode 100644 index 01fb868b..00000000 Binary files a/public/textures/create/cut_andesite.png and /dev/null differ diff --git a/public/textures/create/cut_andesite_brick_slab.png b/public/textures/create/cut_andesite_brick_slab.png deleted file mode 100644 index 6c7bdfd5..00000000 Binary files a/public/textures/create/cut_andesite_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_andesite_brick_stairs.png b/public/textures/create/cut_andesite_brick_stairs.png deleted file mode 100644 index 7aa21810..00000000 Binary files a/public/textures/create/cut_andesite_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_andesite_brick_wall.png b/public/textures/create/cut_andesite_brick_wall.png deleted file mode 100644 index f7f3f81e..00000000 Binary files a/public/textures/create/cut_andesite_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_andesite_bricks.png b/public/textures/create/cut_andesite_bricks.png deleted file mode 100644 index e0995482..00000000 Binary files a/public/textures/create/cut_andesite_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_andesite_slab.png b/public/textures/create/cut_andesite_slab.png deleted file mode 100644 index 954c3a9a..00000000 Binary files a/public/textures/create/cut_andesite_slab.png and /dev/null differ diff --git a/public/textures/create/cut_andesite_stairs.png b/public/textures/create/cut_andesite_stairs.png deleted file mode 100644 index 5a720d86..00000000 Binary files a/public/textures/create/cut_andesite_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_andesite_wall.png b/public/textures/create/cut_andesite_wall.png deleted file mode 100644 index d32cf4e7..00000000 Binary files a/public/textures/create/cut_andesite_wall.png and /dev/null differ diff --git a/public/textures/create/cut_asurine.png b/public/textures/create/cut_asurine.png deleted file mode 100644 index f21a1d45..00000000 Binary files a/public/textures/create/cut_asurine.png and /dev/null differ diff --git a/public/textures/create/cut_asurine_brick_slab.png b/public/textures/create/cut_asurine_brick_slab.png deleted file mode 100644 index 3b940b3b..00000000 Binary files a/public/textures/create/cut_asurine_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_asurine_brick_stairs.png b/public/textures/create/cut_asurine_brick_stairs.png deleted file mode 100644 index 35d534a8..00000000 Binary files a/public/textures/create/cut_asurine_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_asurine_brick_wall.png b/public/textures/create/cut_asurine_brick_wall.png deleted file mode 100644 index 2f754cea..00000000 Binary files a/public/textures/create/cut_asurine_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_asurine_bricks.png b/public/textures/create/cut_asurine_bricks.png deleted file mode 100644 index 333cb4db..00000000 Binary files a/public/textures/create/cut_asurine_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_asurine_slab.png b/public/textures/create/cut_asurine_slab.png deleted file mode 100644 index 9a039b30..00000000 Binary files a/public/textures/create/cut_asurine_slab.png and /dev/null differ diff --git a/public/textures/create/cut_asurine_stairs.png b/public/textures/create/cut_asurine_stairs.png deleted file mode 100644 index 08e24128..00000000 Binary files a/public/textures/create/cut_asurine_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_asurine_wall.png b/public/textures/create/cut_asurine_wall.png deleted file mode 100644 index aa0a04e9..00000000 Binary files a/public/textures/create/cut_asurine_wall.png and /dev/null differ diff --git a/public/textures/create/cut_calcite.png b/public/textures/create/cut_calcite.png deleted file mode 100644 index 22ca61bd..00000000 Binary files a/public/textures/create/cut_calcite.png and /dev/null differ diff --git a/public/textures/create/cut_calcite_brick_slab.png b/public/textures/create/cut_calcite_brick_slab.png deleted file mode 100644 index 9bf41b3d..00000000 Binary files a/public/textures/create/cut_calcite_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_calcite_brick_stairs.png b/public/textures/create/cut_calcite_brick_stairs.png deleted file mode 100644 index 785cd3ba..00000000 Binary files a/public/textures/create/cut_calcite_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_calcite_brick_wall.png b/public/textures/create/cut_calcite_brick_wall.png deleted file mode 100644 index 5e31cc9a..00000000 Binary files a/public/textures/create/cut_calcite_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_calcite_bricks.png b/public/textures/create/cut_calcite_bricks.png deleted file mode 100644 index a2006e81..00000000 Binary files a/public/textures/create/cut_calcite_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_calcite_slab.png b/public/textures/create/cut_calcite_slab.png deleted file mode 100644 index d104892e..00000000 Binary files a/public/textures/create/cut_calcite_slab.png and /dev/null differ diff --git a/public/textures/create/cut_calcite_stairs.png b/public/textures/create/cut_calcite_stairs.png deleted file mode 100644 index 3a4de61e..00000000 Binary files a/public/textures/create/cut_calcite_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_calcite_wall.png b/public/textures/create/cut_calcite_wall.png deleted file mode 100644 index a63a099b..00000000 Binary files a/public/textures/create/cut_calcite_wall.png and /dev/null differ diff --git a/public/textures/create/cut_crimsite.png b/public/textures/create/cut_crimsite.png deleted file mode 100644 index 0d4c4dd8..00000000 Binary files a/public/textures/create/cut_crimsite.png and /dev/null differ diff --git a/public/textures/create/cut_crimsite_brick_slab.png b/public/textures/create/cut_crimsite_brick_slab.png deleted file mode 100644 index ea9335a1..00000000 Binary files a/public/textures/create/cut_crimsite_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_crimsite_brick_stairs.png b/public/textures/create/cut_crimsite_brick_stairs.png deleted file mode 100644 index c55f992e..00000000 Binary files a/public/textures/create/cut_crimsite_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_crimsite_brick_wall.png b/public/textures/create/cut_crimsite_brick_wall.png deleted file mode 100644 index e87503d3..00000000 Binary files a/public/textures/create/cut_crimsite_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_crimsite_bricks.png b/public/textures/create/cut_crimsite_bricks.png deleted file mode 100644 index d68f0621..00000000 Binary files a/public/textures/create/cut_crimsite_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_crimsite_slab.png b/public/textures/create/cut_crimsite_slab.png deleted file mode 100644 index 3225b5d6..00000000 Binary files a/public/textures/create/cut_crimsite_slab.png and /dev/null differ diff --git a/public/textures/create/cut_crimsite_stairs.png b/public/textures/create/cut_crimsite_stairs.png deleted file mode 100644 index 889f131b..00000000 Binary files a/public/textures/create/cut_crimsite_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_crimsite_wall.png b/public/textures/create/cut_crimsite_wall.png deleted file mode 100644 index 478fe2be..00000000 Binary files a/public/textures/create/cut_crimsite_wall.png and /dev/null differ diff --git a/public/textures/create/cut_deepslate.png b/public/textures/create/cut_deepslate.png deleted file mode 100644 index 979c9492..00000000 Binary files a/public/textures/create/cut_deepslate.png and /dev/null differ diff --git a/public/textures/create/cut_deepslate_brick_slab.png b/public/textures/create/cut_deepslate_brick_slab.png deleted file mode 100644 index 8b2b137e..00000000 Binary files a/public/textures/create/cut_deepslate_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_deepslate_brick_stairs.png b/public/textures/create/cut_deepslate_brick_stairs.png deleted file mode 100644 index 00a9a81a..00000000 Binary files a/public/textures/create/cut_deepslate_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_deepslate_brick_wall.png b/public/textures/create/cut_deepslate_brick_wall.png deleted file mode 100644 index 060ca335..00000000 Binary files a/public/textures/create/cut_deepslate_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_deepslate_bricks.png b/public/textures/create/cut_deepslate_bricks.png deleted file mode 100644 index 3ed048d3..00000000 Binary files a/public/textures/create/cut_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_deepslate_slab.png b/public/textures/create/cut_deepslate_slab.png deleted file mode 100644 index 0712b8de..00000000 Binary files a/public/textures/create/cut_deepslate_slab.png and /dev/null differ diff --git a/public/textures/create/cut_deepslate_stairs.png b/public/textures/create/cut_deepslate_stairs.png deleted file mode 100644 index 15aa8d06..00000000 Binary files a/public/textures/create/cut_deepslate_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_deepslate_wall.png b/public/textures/create/cut_deepslate_wall.png deleted file mode 100644 index 8bfe62fa..00000000 Binary files a/public/textures/create/cut_deepslate_wall.png and /dev/null differ diff --git a/public/textures/create/cut_diorite.png b/public/textures/create/cut_diorite.png deleted file mode 100644 index 8978df3f..00000000 Binary files a/public/textures/create/cut_diorite.png and /dev/null differ diff --git a/public/textures/create/cut_diorite_brick_slab.png b/public/textures/create/cut_diorite_brick_slab.png deleted file mode 100644 index 62ed8720..00000000 Binary files a/public/textures/create/cut_diorite_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_diorite_brick_stairs.png b/public/textures/create/cut_diorite_brick_stairs.png deleted file mode 100644 index 246617be..00000000 Binary files a/public/textures/create/cut_diorite_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_diorite_brick_wall.png b/public/textures/create/cut_diorite_brick_wall.png deleted file mode 100644 index ffd7c50b..00000000 Binary files a/public/textures/create/cut_diorite_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_diorite_bricks.png b/public/textures/create/cut_diorite_bricks.png deleted file mode 100644 index d471d8b9..00000000 Binary files a/public/textures/create/cut_diorite_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_diorite_slab.png b/public/textures/create/cut_diorite_slab.png deleted file mode 100644 index 294c8c03..00000000 Binary files a/public/textures/create/cut_diorite_slab.png and /dev/null differ diff --git a/public/textures/create/cut_diorite_stairs.png b/public/textures/create/cut_diorite_stairs.png deleted file mode 100644 index c5752679..00000000 Binary files a/public/textures/create/cut_diorite_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_diorite_wall.png b/public/textures/create/cut_diorite_wall.png deleted file mode 100644 index d3d7c47f..00000000 Binary files a/public/textures/create/cut_diorite_wall.png and /dev/null differ diff --git a/public/textures/create/cut_dripstone.png b/public/textures/create/cut_dripstone.png deleted file mode 100644 index 6ac96033..00000000 Binary files a/public/textures/create/cut_dripstone.png and /dev/null differ diff --git a/public/textures/create/cut_dripstone_brick_slab.png b/public/textures/create/cut_dripstone_brick_slab.png deleted file mode 100644 index cc8e450e..00000000 Binary files a/public/textures/create/cut_dripstone_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_dripstone_brick_stairs.png b/public/textures/create/cut_dripstone_brick_stairs.png deleted file mode 100644 index 6d4f1f1e..00000000 Binary files a/public/textures/create/cut_dripstone_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_dripstone_brick_wall.png b/public/textures/create/cut_dripstone_brick_wall.png deleted file mode 100644 index 0edabcf6..00000000 Binary files a/public/textures/create/cut_dripstone_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_dripstone_bricks.png b/public/textures/create/cut_dripstone_bricks.png deleted file mode 100644 index 73348435..00000000 Binary files a/public/textures/create/cut_dripstone_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_dripstone_slab.png b/public/textures/create/cut_dripstone_slab.png deleted file mode 100644 index 6c29125f..00000000 Binary files a/public/textures/create/cut_dripstone_slab.png and /dev/null differ diff --git a/public/textures/create/cut_dripstone_stairs.png b/public/textures/create/cut_dripstone_stairs.png deleted file mode 100644 index f01ac9d5..00000000 Binary files a/public/textures/create/cut_dripstone_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_dripstone_wall.png b/public/textures/create/cut_dripstone_wall.png deleted file mode 100644 index 48fa9f64..00000000 Binary files a/public/textures/create/cut_dripstone_wall.png and /dev/null differ diff --git a/public/textures/create/cut_granite.png b/public/textures/create/cut_granite.png deleted file mode 100644 index 626a0a78..00000000 Binary files a/public/textures/create/cut_granite.png and /dev/null differ diff --git a/public/textures/create/cut_granite_brick_slab.png b/public/textures/create/cut_granite_brick_slab.png deleted file mode 100644 index 228567c5..00000000 Binary files a/public/textures/create/cut_granite_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_granite_brick_stairs.png b/public/textures/create/cut_granite_brick_stairs.png deleted file mode 100644 index 9116e602..00000000 Binary files a/public/textures/create/cut_granite_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_granite_brick_wall.png b/public/textures/create/cut_granite_brick_wall.png deleted file mode 100644 index 071a9633..00000000 Binary files a/public/textures/create/cut_granite_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_granite_bricks.png b/public/textures/create/cut_granite_bricks.png deleted file mode 100644 index 483345ad..00000000 Binary files a/public/textures/create/cut_granite_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_granite_slab.png b/public/textures/create/cut_granite_slab.png deleted file mode 100644 index bfcefe46..00000000 Binary files a/public/textures/create/cut_granite_slab.png and /dev/null differ diff --git a/public/textures/create/cut_granite_stairs.png b/public/textures/create/cut_granite_stairs.png deleted file mode 100644 index bc61cb8c..00000000 Binary files a/public/textures/create/cut_granite_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_granite_wall.png b/public/textures/create/cut_granite_wall.png deleted file mode 100644 index 5b0e3311..00000000 Binary files a/public/textures/create/cut_granite_wall.png and /dev/null differ diff --git a/public/textures/create/cut_limestone.png b/public/textures/create/cut_limestone.png deleted file mode 100644 index 3d5210a0..00000000 Binary files a/public/textures/create/cut_limestone.png and /dev/null differ diff --git a/public/textures/create/cut_limestone_brick_slab.png b/public/textures/create/cut_limestone_brick_slab.png deleted file mode 100644 index 4c472d11..00000000 Binary files a/public/textures/create/cut_limestone_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_limestone_brick_stairs.png b/public/textures/create/cut_limestone_brick_stairs.png deleted file mode 100644 index 25163b77..00000000 Binary files a/public/textures/create/cut_limestone_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_limestone_brick_wall.png b/public/textures/create/cut_limestone_brick_wall.png deleted file mode 100644 index 795fd6a2..00000000 Binary files a/public/textures/create/cut_limestone_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_limestone_bricks.png b/public/textures/create/cut_limestone_bricks.png deleted file mode 100644 index 97b6a3de..00000000 Binary files a/public/textures/create/cut_limestone_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_limestone_slab.png b/public/textures/create/cut_limestone_slab.png deleted file mode 100644 index 9e73cc2d..00000000 Binary files a/public/textures/create/cut_limestone_slab.png and /dev/null differ diff --git a/public/textures/create/cut_limestone_stairs.png b/public/textures/create/cut_limestone_stairs.png deleted file mode 100644 index 1a9f773d..00000000 Binary files a/public/textures/create/cut_limestone_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_limestone_wall.png b/public/textures/create/cut_limestone_wall.png deleted file mode 100644 index e74576c2..00000000 Binary files a/public/textures/create/cut_limestone_wall.png and /dev/null differ diff --git a/public/textures/create/cut_ochrum.png b/public/textures/create/cut_ochrum.png deleted file mode 100644 index fd6d18fa..00000000 Binary files a/public/textures/create/cut_ochrum.png and /dev/null differ diff --git a/public/textures/create/cut_ochrum_brick_slab.png b/public/textures/create/cut_ochrum_brick_slab.png deleted file mode 100644 index 71f6eb36..00000000 Binary files a/public/textures/create/cut_ochrum_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_ochrum_brick_stairs.png b/public/textures/create/cut_ochrum_brick_stairs.png deleted file mode 100644 index bed67439..00000000 Binary files a/public/textures/create/cut_ochrum_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_ochrum_brick_wall.png b/public/textures/create/cut_ochrum_brick_wall.png deleted file mode 100644 index aac46d3e..00000000 Binary files a/public/textures/create/cut_ochrum_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_ochrum_bricks.png b/public/textures/create/cut_ochrum_bricks.png deleted file mode 100644 index 566b1d59..00000000 Binary files a/public/textures/create/cut_ochrum_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_ochrum_slab.png b/public/textures/create/cut_ochrum_slab.png deleted file mode 100644 index 8e38f53f..00000000 Binary files a/public/textures/create/cut_ochrum_slab.png and /dev/null differ diff --git a/public/textures/create/cut_ochrum_stairs.png b/public/textures/create/cut_ochrum_stairs.png deleted file mode 100644 index 8dcef1d6..00000000 Binary files a/public/textures/create/cut_ochrum_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_ochrum_wall.png b/public/textures/create/cut_ochrum_wall.png deleted file mode 100644 index 0dc3f1e2..00000000 Binary files a/public/textures/create/cut_ochrum_wall.png and /dev/null differ diff --git a/public/textures/create/cut_scorchia.png b/public/textures/create/cut_scorchia.png deleted file mode 100644 index 93f25704..00000000 Binary files a/public/textures/create/cut_scorchia.png and /dev/null differ diff --git a/public/textures/create/cut_scorchia_brick_slab.png b/public/textures/create/cut_scorchia_brick_slab.png deleted file mode 100644 index c5150a41..00000000 Binary files a/public/textures/create/cut_scorchia_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_scorchia_brick_stairs.png b/public/textures/create/cut_scorchia_brick_stairs.png deleted file mode 100644 index 8caf9c52..00000000 Binary files a/public/textures/create/cut_scorchia_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_scorchia_brick_wall.png b/public/textures/create/cut_scorchia_brick_wall.png deleted file mode 100644 index 551c3c42..00000000 Binary files a/public/textures/create/cut_scorchia_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_scorchia_bricks.png b/public/textures/create/cut_scorchia_bricks.png deleted file mode 100644 index 12a803ab..00000000 Binary files a/public/textures/create/cut_scorchia_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_scorchia_slab.png b/public/textures/create/cut_scorchia_slab.png deleted file mode 100644 index 63052455..00000000 Binary files a/public/textures/create/cut_scorchia_slab.png and /dev/null differ diff --git a/public/textures/create/cut_scorchia_stairs.png b/public/textures/create/cut_scorchia_stairs.png deleted file mode 100644 index 6b42e72f..00000000 Binary files a/public/textures/create/cut_scorchia_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_scorchia_wall.png b/public/textures/create/cut_scorchia_wall.png deleted file mode 100644 index 790672ec..00000000 Binary files a/public/textures/create/cut_scorchia_wall.png and /dev/null differ diff --git a/public/textures/create/cut_scoria.png b/public/textures/create/cut_scoria.png deleted file mode 100644 index e1a36ddb..00000000 Binary files a/public/textures/create/cut_scoria.png and /dev/null differ diff --git a/public/textures/create/cut_scoria_brick_slab.png b/public/textures/create/cut_scoria_brick_slab.png deleted file mode 100644 index 08a39efa..00000000 Binary files a/public/textures/create/cut_scoria_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_scoria_brick_stairs.png b/public/textures/create/cut_scoria_brick_stairs.png deleted file mode 100644 index 93ebff89..00000000 Binary files a/public/textures/create/cut_scoria_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_scoria_brick_wall.png b/public/textures/create/cut_scoria_brick_wall.png deleted file mode 100644 index 80b8be45..00000000 Binary files a/public/textures/create/cut_scoria_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_scoria_bricks.png b/public/textures/create/cut_scoria_bricks.png deleted file mode 100644 index a45a108b..00000000 Binary files a/public/textures/create/cut_scoria_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_scoria_slab.png b/public/textures/create/cut_scoria_slab.png deleted file mode 100644 index 32404e7e..00000000 Binary files a/public/textures/create/cut_scoria_slab.png and /dev/null differ diff --git a/public/textures/create/cut_scoria_stairs.png b/public/textures/create/cut_scoria_stairs.png deleted file mode 100644 index bb781ffe..00000000 Binary files a/public/textures/create/cut_scoria_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_scoria_wall.png b/public/textures/create/cut_scoria_wall.png deleted file mode 100644 index 63eb0b64..00000000 Binary files a/public/textures/create/cut_scoria_wall.png and /dev/null differ diff --git a/public/textures/create/cut_tuff.png b/public/textures/create/cut_tuff.png deleted file mode 100644 index 150c3416..00000000 Binary files a/public/textures/create/cut_tuff.png and /dev/null differ diff --git a/public/textures/create/cut_tuff_brick_slab.png b/public/textures/create/cut_tuff_brick_slab.png deleted file mode 100644 index 9c5e68da..00000000 Binary files a/public/textures/create/cut_tuff_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_tuff_brick_stairs.png b/public/textures/create/cut_tuff_brick_stairs.png deleted file mode 100644 index b9bbf89c..00000000 Binary files a/public/textures/create/cut_tuff_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_tuff_brick_wall.png b/public/textures/create/cut_tuff_brick_wall.png deleted file mode 100644 index dfd9f86f..00000000 Binary files a/public/textures/create/cut_tuff_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_tuff_bricks.png b/public/textures/create/cut_tuff_bricks.png deleted file mode 100644 index 7deef51a..00000000 Binary files a/public/textures/create/cut_tuff_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_tuff_slab.png b/public/textures/create/cut_tuff_slab.png deleted file mode 100644 index df4b7944..00000000 Binary files a/public/textures/create/cut_tuff_slab.png and /dev/null differ diff --git a/public/textures/create/cut_tuff_stairs.png b/public/textures/create/cut_tuff_stairs.png deleted file mode 100644 index e9216d1c..00000000 Binary files a/public/textures/create/cut_tuff_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_tuff_wall.png b/public/textures/create/cut_tuff_wall.png deleted file mode 100644 index 942e7dad..00000000 Binary files a/public/textures/create/cut_tuff_wall.png and /dev/null differ diff --git a/public/textures/create/cut_veridium.png b/public/textures/create/cut_veridium.png deleted file mode 100644 index 0521d899..00000000 Binary files a/public/textures/create/cut_veridium.png and /dev/null differ diff --git a/public/textures/create/cut_veridium_brick_slab.png b/public/textures/create/cut_veridium_brick_slab.png deleted file mode 100644 index d80f3379..00000000 Binary files a/public/textures/create/cut_veridium_brick_slab.png and /dev/null differ diff --git a/public/textures/create/cut_veridium_brick_stairs.png b/public/textures/create/cut_veridium_brick_stairs.png deleted file mode 100644 index de90d05b..00000000 Binary files a/public/textures/create/cut_veridium_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_veridium_brick_wall.png b/public/textures/create/cut_veridium_brick_wall.png deleted file mode 100644 index f5bc1a58..00000000 Binary files a/public/textures/create/cut_veridium_brick_wall.png and /dev/null differ diff --git a/public/textures/create/cut_veridium_bricks.png b/public/textures/create/cut_veridium_bricks.png deleted file mode 100644 index 4e9aacdb..00000000 Binary files a/public/textures/create/cut_veridium_bricks.png and /dev/null differ diff --git a/public/textures/create/cut_veridium_slab.png b/public/textures/create/cut_veridium_slab.png deleted file mode 100644 index d3028b2c..00000000 Binary files a/public/textures/create/cut_veridium_slab.png and /dev/null differ diff --git a/public/textures/create/cut_veridium_stairs.png b/public/textures/create/cut_veridium_stairs.png deleted file mode 100644 index 30d8d43a..00000000 Binary files a/public/textures/create/cut_veridium_stairs.png and /dev/null differ diff --git a/public/textures/create/cut_veridium_wall.png b/public/textures/create/cut_veridium_wall.png deleted file mode 100644 index 5010c963..00000000 Binary files a/public/textures/create/cut_veridium_wall.png and /dev/null differ diff --git a/public/textures/create/dark_oak_window.png b/public/textures/create/dark_oak_window.png deleted file mode 100644 index ab2ec2a3..00000000 Binary files a/public/textures/create/dark_oak_window.png and /dev/null differ diff --git a/public/textures/create/dark_oak_window_pane.png b/public/textures/create/dark_oak_window_pane.png deleted file mode 100644 index 3193382c..00000000 Binary files a/public/textures/create/dark_oak_window_pane.png and /dev/null differ diff --git a/public/textures/create/deepslate_pillar.png b/public/textures/create/deepslate_pillar.png deleted file mode 100644 index 14066dca..00000000 Binary files a/public/textures/create/deepslate_pillar.png and /dev/null differ diff --git a/public/textures/create/deepslate_zinc_ore.png b/public/textures/create/deepslate_zinc_ore.png deleted file mode 100644 index 453cd6f9..00000000 Binary files a/public/textures/create/deepslate_zinc_ore.png and /dev/null differ diff --git a/public/textures/create/deployer.png b/public/textures/create/deployer.png deleted file mode 100644 index 90790cc6..00000000 Binary files a/public/textures/create/deployer.png and /dev/null differ diff --git a/public/textures/create/depot.png b/public/textures/create/depot.png deleted file mode 100644 index 9473679b..00000000 Binary files a/public/textures/create/depot.png and /dev/null differ diff --git a/public/textures/create/desk_bell.png b/public/textures/create/desk_bell.png deleted file mode 100644 index 3fd0416e..00000000 Binary files a/public/textures/create/desk_bell.png and /dev/null differ diff --git a/public/textures/create/diorite_pillar.png b/public/textures/create/diorite_pillar.png deleted file mode 100644 index 1d671dc0..00000000 Binary files a/public/textures/create/diorite_pillar.png and /dev/null differ diff --git a/public/textures/create/display_board.png b/public/textures/create/display_board.png deleted file mode 100644 index 679ec391..00000000 Binary files a/public/textures/create/display_board.png and /dev/null differ diff --git a/public/textures/create/display_link.png b/public/textures/create/display_link.png deleted file mode 100644 index 83d60056..00000000 Binary files a/public/textures/create/display_link.png and /dev/null differ diff --git a/public/textures/create/dough.png b/public/textures/create/dough.png deleted file mode 100644 index 7777ed02..00000000 Binary files a/public/textures/create/dough.png and /dev/null differ diff --git a/public/textures/create/dripstone_pillar.png b/public/textures/create/dripstone_pillar.png deleted file mode 100644 index 0871081b..00000000 Binary files a/public/textures/create/dripstone_pillar.png and /dev/null differ diff --git a/public/textures/create/electron_tube.png b/public/textures/create/electron_tube.png deleted file mode 100644 index 1161090a..00000000 Binary files a/public/textures/create/electron_tube.png and /dev/null differ diff --git a/public/textures/create/elevator_pulley.png b/public/textures/create/elevator_pulley.png deleted file mode 100644 index 40e0963f..00000000 Binary files a/public/textures/create/elevator_pulley.png and /dev/null differ diff --git a/public/textures/create/empty_blaze_burner.png b/public/textures/create/empty_blaze_burner.png deleted file mode 100644 index 9eddddb4..00000000 Binary files a/public/textures/create/empty_blaze_burner.png and /dev/null differ diff --git a/public/textures/create/empty_schematic.png b/public/textures/create/empty_schematic.png deleted file mode 100644 index a0d2b399..00000000 Binary files a/public/textures/create/empty_schematic.png and /dev/null differ diff --git a/public/textures/create/encased_chain_drive.png b/public/textures/create/encased_chain_drive.png deleted file mode 100644 index e56b6023..00000000 Binary files a/public/textures/create/encased_chain_drive.png and /dev/null differ diff --git a/public/textures/create/encased_fan.png b/public/textures/create/encased_fan.png deleted file mode 100644 index 15cea0ec..00000000 Binary files a/public/textures/create/encased_fan.png and /dev/null differ diff --git a/public/textures/create/experience_block.png b/public/textures/create/experience_block.png deleted file mode 100644 index 683c54e4..00000000 Binary files a/public/textures/create/experience_block.png and /dev/null differ diff --git a/public/textures/create/experience_nugget.png b/public/textures/create/experience_nugget.png deleted file mode 100644 index deb61090..00000000 Binary files a/public/textures/create/experience_nugget.png and /dev/null differ diff --git a/public/textures/create/exposed_copper_shingle_slab.png b/public/textures/create/exposed_copper_shingle_slab.png deleted file mode 100644 index dfbeea5c..00000000 Binary files a/public/textures/create/exposed_copper_shingle_slab.png and /dev/null differ diff --git a/public/textures/create/exposed_copper_shingle_stairs.png b/public/textures/create/exposed_copper_shingle_stairs.png deleted file mode 100644 index 0bbda0fb..00000000 Binary files a/public/textures/create/exposed_copper_shingle_stairs.png and /dev/null differ diff --git a/public/textures/create/exposed_copper_shingles.png b/public/textures/create/exposed_copper_shingles.png deleted file mode 100644 index 9440b338..00000000 Binary files a/public/textures/create/exposed_copper_shingles.png and /dev/null differ diff --git a/public/textures/create/exposed_copper_tile_slab.png b/public/textures/create/exposed_copper_tile_slab.png deleted file mode 100644 index f84f2604..00000000 Binary files a/public/textures/create/exposed_copper_tile_slab.png and /dev/null differ diff --git a/public/textures/create/exposed_copper_tile_stairs.png b/public/textures/create/exposed_copper_tile_stairs.png deleted file mode 100644 index 3300a270..00000000 Binary files a/public/textures/create/exposed_copper_tile_stairs.png and /dev/null differ diff --git a/public/textures/create/exposed_copper_tiles.png b/public/textures/create/exposed_copper_tiles.png deleted file mode 100644 index 4c19ee28..00000000 Binary files a/public/textures/create/exposed_copper_tiles.png and /dev/null differ diff --git a/public/textures/create/extendo_grip.png b/public/textures/create/extendo_grip.png deleted file mode 100644 index 137f15e9..00000000 Binary files a/public/textures/create/extendo_grip.png and /dev/null differ diff --git a/public/textures/create/factory_gauge.png b/public/textures/create/factory_gauge.png deleted file mode 100644 index 628c9811..00000000 Binary files a/public/textures/create/factory_gauge.png and /dev/null differ diff --git a/public/textures/create/filter.png b/public/textures/create/filter.png deleted file mode 100644 index 0edc0002..00000000 Binary files a/public/textures/create/filter.png and /dev/null differ diff --git a/public/textures/create/fluid_pipe.png b/public/textures/create/fluid_pipe.png deleted file mode 100644 index 47b12488..00000000 Binary files a/public/textures/create/fluid_pipe.png and /dev/null differ diff --git a/public/textures/create/fluid_tank.png b/public/textures/create/fluid_tank.png deleted file mode 100644 index 7d455244..00000000 Binary files a/public/textures/create/fluid_tank.png and /dev/null differ diff --git a/public/textures/create/fluid_valve.png b/public/textures/create/fluid_valve.png deleted file mode 100644 index 61057cf2..00000000 Binary files a/public/textures/create/fluid_valve.png and /dev/null differ diff --git a/public/textures/create/flywheel.png b/public/textures/create/flywheel.png deleted file mode 100644 index 1c08894f..00000000 Binary files a/public/textures/create/flywheel.png and /dev/null differ diff --git a/public/textures/create/framed_glass.png b/public/textures/create/framed_glass.png deleted file mode 100644 index c8fc875c..00000000 Binary files a/public/textures/create/framed_glass.png and /dev/null differ diff --git a/public/textures/create/framed_glass_door.png b/public/textures/create/framed_glass_door.png deleted file mode 100644 index b8db007b..00000000 Binary files a/public/textures/create/framed_glass_door.png and /dev/null differ diff --git a/public/textures/create/framed_glass_pane.png b/public/textures/create/framed_glass_pane.png deleted file mode 100644 index 8d64a083..00000000 Binary files a/public/textures/create/framed_glass_pane.png and /dev/null differ diff --git a/public/textures/create/framed_glass_trapdoor.png b/public/textures/create/framed_glass_trapdoor.png deleted file mode 100644 index 28b89585..00000000 Binary files a/public/textures/create/framed_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/create/gantry_carriage.png b/public/textures/create/gantry_carriage.png deleted file mode 100644 index 99238155..00000000 Binary files a/public/textures/create/gantry_carriage.png and /dev/null differ diff --git a/public/textures/create/gantry_shaft.png b/public/textures/create/gantry_shaft.png deleted file mode 100644 index 3a3c5a9c..00000000 Binary files a/public/textures/create/gantry_shaft.png and /dev/null differ diff --git a/public/textures/create/gearbox.png b/public/textures/create/gearbox.png deleted file mode 100644 index 6794f66c..00000000 Binary files a/public/textures/create/gearbox.png and /dev/null differ diff --git a/public/textures/create/gearshift.png b/public/textures/create/gearshift.png deleted file mode 100644 index c56873cf..00000000 Binary files a/public/textures/create/gearshift.png and /dev/null differ diff --git a/public/textures/create/goggles.png b/public/textures/create/goggles.png deleted file mode 100644 index 3b0aa92b..00000000 Binary files a/public/textures/create/goggles.png and /dev/null differ diff --git a/public/textures/create/golden_sheet.png b/public/textures/create/golden_sheet.png deleted file mode 100644 index 1281b2a8..00000000 Binary files a/public/textures/create/golden_sheet.png and /dev/null differ diff --git a/public/textures/create/granite_pillar.png b/public/textures/create/granite_pillar.png deleted file mode 100644 index 44449479..00000000 Binary files a/public/textures/create/granite_pillar.png and /dev/null differ diff --git a/public/textures/create/hand_crank.png b/public/textures/create/hand_crank.png deleted file mode 100644 index 8c35c034..00000000 Binary files a/public/textures/create/hand_crank.png and /dev/null differ diff --git a/public/textures/create/handheld_worldshaper.png b/public/textures/create/handheld_worldshaper.png deleted file mode 100644 index d4999253..00000000 Binary files a/public/textures/create/handheld_worldshaper.png and /dev/null differ diff --git a/public/textures/create/haunted_bell.png b/public/textures/create/haunted_bell.png deleted file mode 100644 index e8667414..00000000 Binary files a/public/textures/create/haunted_bell.png and /dev/null differ diff --git a/public/textures/create/honey_bucket.png b/public/textures/create/honey_bucket.png deleted file mode 100644 index e538b101..00000000 Binary files a/public/textures/create/honey_bucket.png and /dev/null differ diff --git a/public/textures/create/honeyed_apple.png b/public/textures/create/honeyed_apple.png deleted file mode 100644 index 036158d7..00000000 Binary files a/public/textures/create/honeyed_apple.png and /dev/null differ diff --git a/public/textures/create/horizontal_framed_glass.png b/public/textures/create/horizontal_framed_glass.png deleted file mode 100644 index c8a0fdc8..00000000 Binary files a/public/textures/create/horizontal_framed_glass.png and /dev/null differ diff --git a/public/textures/create/horizontal_framed_glass_pane.png b/public/textures/create/horizontal_framed_glass_pane.png deleted file mode 100644 index d9a0d9d4..00000000 Binary files a/public/textures/create/horizontal_framed_glass_pane.png and /dev/null differ diff --git a/public/textures/create/hose_pulley.png b/public/textures/create/hose_pulley.png deleted file mode 100644 index 4819a5d0..00000000 Binary files a/public/textures/create/hose_pulley.png and /dev/null differ diff --git a/public/textures/create/industrial_iron_block.png b/public/textures/create/industrial_iron_block.png deleted file mode 100644 index ba58e77b..00000000 Binary files a/public/textures/create/industrial_iron_block.png and /dev/null differ diff --git a/public/textures/create/industrial_iron_window.png b/public/textures/create/industrial_iron_window.png deleted file mode 100644 index 8fe5b78c..00000000 Binary files a/public/textures/create/industrial_iron_window.png and /dev/null differ diff --git a/public/textures/create/industrial_iron_window_pane.png b/public/textures/create/industrial_iron_window_pane.png deleted file mode 100644 index 9f4e066a..00000000 Binary files a/public/textures/create/industrial_iron_window_pane.png and /dev/null differ diff --git a/public/textures/create/iron_sheet.png b/public/textures/create/iron_sheet.png deleted file mode 100644 index 4b8558d5..00000000 Binary files a/public/textures/create/iron_sheet.png and /dev/null differ diff --git a/public/textures/create/item_drain.png b/public/textures/create/item_drain.png deleted file mode 100644 index 6365fdd9..00000000 Binary files a/public/textures/create/item_drain.png and /dev/null differ diff --git a/public/textures/create/item_hatch.png b/public/textures/create/item_hatch.png deleted file mode 100644 index 12fead9a..00000000 Binary files a/public/textures/create/item_hatch.png and /dev/null differ diff --git a/public/textures/create/item_vault.png b/public/textures/create/item_vault.png deleted file mode 100644 index cfadcbff..00000000 Binary files a/public/textures/create/item_vault.png and /dev/null differ diff --git a/public/textures/create/jungle_window.png b/public/textures/create/jungle_window.png deleted file mode 100644 index d6542306..00000000 Binary files a/public/textures/create/jungle_window.png and /dev/null differ diff --git a/public/textures/create/jungle_window_pane.png b/public/textures/create/jungle_window_pane.png deleted file mode 100644 index a04aa1f2..00000000 Binary files a/public/textures/create/jungle_window_pane.png and /dev/null differ diff --git a/public/textures/create/large_cogwheel.png b/public/textures/create/large_cogwheel.png deleted file mode 100644 index 4cef6ff1..00000000 Binary files a/public/textures/create/large_cogwheel.png and /dev/null differ diff --git a/public/textures/create/large_water_wheel.png b/public/textures/create/large_water_wheel.png deleted file mode 100644 index 3c8cb3a3..00000000 Binary files a/public/textures/create/large_water_wheel.png and /dev/null differ diff --git a/public/textures/create/layered_andesite.png b/public/textures/create/layered_andesite.png deleted file mode 100644 index e0903054..00000000 Binary files a/public/textures/create/layered_andesite.png and /dev/null differ diff --git a/public/textures/create/layered_asurine.png b/public/textures/create/layered_asurine.png deleted file mode 100644 index 9180c60e..00000000 Binary files a/public/textures/create/layered_asurine.png and /dev/null differ diff --git a/public/textures/create/layered_calcite.png b/public/textures/create/layered_calcite.png deleted file mode 100644 index 013a7a75..00000000 Binary files a/public/textures/create/layered_calcite.png and /dev/null differ diff --git a/public/textures/create/layered_crimsite.png b/public/textures/create/layered_crimsite.png deleted file mode 100644 index 14c4076c..00000000 Binary files a/public/textures/create/layered_crimsite.png and /dev/null differ diff --git a/public/textures/create/layered_deepslate.png b/public/textures/create/layered_deepslate.png deleted file mode 100644 index 7af45b39..00000000 Binary files a/public/textures/create/layered_deepslate.png and /dev/null differ diff --git a/public/textures/create/layered_diorite.png b/public/textures/create/layered_diorite.png deleted file mode 100644 index b99211d7..00000000 Binary files a/public/textures/create/layered_diorite.png and /dev/null differ diff --git a/public/textures/create/layered_dripstone.png b/public/textures/create/layered_dripstone.png deleted file mode 100644 index 9959896c..00000000 Binary files a/public/textures/create/layered_dripstone.png and /dev/null differ diff --git a/public/textures/create/layered_granite.png b/public/textures/create/layered_granite.png deleted file mode 100644 index ccbfaabf..00000000 Binary files a/public/textures/create/layered_granite.png and /dev/null differ diff --git a/public/textures/create/layered_limestone.png b/public/textures/create/layered_limestone.png deleted file mode 100644 index f8065661..00000000 Binary files a/public/textures/create/layered_limestone.png and /dev/null differ diff --git a/public/textures/create/layered_ochrum.png b/public/textures/create/layered_ochrum.png deleted file mode 100644 index 31ab762f..00000000 Binary files a/public/textures/create/layered_ochrum.png and /dev/null differ diff --git a/public/textures/create/layered_scorchia.png b/public/textures/create/layered_scorchia.png deleted file mode 100644 index 65140c71..00000000 Binary files a/public/textures/create/layered_scorchia.png and /dev/null differ diff --git a/public/textures/create/layered_scoria.png b/public/textures/create/layered_scoria.png deleted file mode 100644 index ecaa3344..00000000 Binary files a/public/textures/create/layered_scoria.png and /dev/null differ diff --git a/public/textures/create/layered_tuff.png b/public/textures/create/layered_tuff.png deleted file mode 100644 index e886f15f..00000000 Binary files a/public/textures/create/layered_tuff.png and /dev/null differ diff --git a/public/textures/create/layered_veridium.png b/public/textures/create/layered_veridium.png deleted file mode 100644 index 2acf2c0e..00000000 Binary files a/public/textures/create/layered_veridium.png and /dev/null differ diff --git a/public/textures/create/limestone.png b/public/textures/create/limestone.png deleted file mode 100644 index 6173aff9..00000000 Binary files a/public/textures/create/limestone.png and /dev/null differ diff --git a/public/textures/create/limestone_pillar.png b/public/textures/create/limestone_pillar.png deleted file mode 100644 index b9fd1911..00000000 Binary files a/public/textures/create/limestone_pillar.png and /dev/null differ diff --git a/public/textures/create/linear_chassis.png b/public/textures/create/linear_chassis.png deleted file mode 100644 index b55df524..00000000 Binary files a/public/textures/create/linear_chassis.png and /dev/null differ diff --git a/public/textures/create/linked_controller.png b/public/textures/create/linked_controller.png deleted file mode 100644 index ddaac678..00000000 Binary files a/public/textures/create/linked_controller.png and /dev/null differ diff --git a/public/textures/create/mangrove_window.png b/public/textures/create/mangrove_window.png deleted file mode 100644 index 60bfc869..00000000 Binary files a/public/textures/create/mangrove_window.png and /dev/null differ diff --git a/public/textures/create/mangrove_window_pane.png b/public/textures/create/mangrove_window_pane.png deleted file mode 100644 index 43015757..00000000 Binary files a/public/textures/create/mangrove_window_pane.png and /dev/null differ diff --git a/public/textures/create/mechanical_arm.png b/public/textures/create/mechanical_arm.png deleted file mode 100644 index 59cc13cb..00000000 Binary files a/public/textures/create/mechanical_arm.png and /dev/null differ diff --git a/public/textures/create/mechanical_bearing.png b/public/textures/create/mechanical_bearing.png deleted file mode 100644 index be48b8b6..00000000 Binary files a/public/textures/create/mechanical_bearing.png and /dev/null differ diff --git a/public/textures/create/mechanical_crafter.png b/public/textures/create/mechanical_crafter.png deleted file mode 100644 index c2e024e2..00000000 Binary files a/public/textures/create/mechanical_crafter.png and /dev/null differ diff --git a/public/textures/create/mechanical_drill.png b/public/textures/create/mechanical_drill.png deleted file mode 100644 index 84420dbe..00000000 Binary files a/public/textures/create/mechanical_drill.png and /dev/null differ diff --git a/public/textures/create/mechanical_harvester.png b/public/textures/create/mechanical_harvester.png deleted file mode 100644 index 3a98cbd7..00000000 Binary files a/public/textures/create/mechanical_harvester.png and /dev/null differ diff --git a/public/textures/create/mechanical_mixer.png b/public/textures/create/mechanical_mixer.png deleted file mode 100644 index 161f8ebd..00000000 Binary files a/public/textures/create/mechanical_mixer.png and /dev/null differ diff --git a/public/textures/create/mechanical_piston.png b/public/textures/create/mechanical_piston.png deleted file mode 100644 index b27d4273..00000000 Binary files a/public/textures/create/mechanical_piston.png and /dev/null differ diff --git a/public/textures/create/mechanical_plough.png b/public/textures/create/mechanical_plough.png deleted file mode 100644 index 021a8230..00000000 Binary files a/public/textures/create/mechanical_plough.png and /dev/null differ diff --git a/public/textures/create/mechanical_press.png b/public/textures/create/mechanical_press.png deleted file mode 100644 index d1df07e6..00000000 Binary files a/public/textures/create/mechanical_press.png and /dev/null differ diff --git a/public/textures/create/mechanical_pump.png b/public/textures/create/mechanical_pump.png deleted file mode 100644 index be523120..00000000 Binary files a/public/textures/create/mechanical_pump.png and /dev/null differ diff --git a/public/textures/create/mechanical_roller.png b/public/textures/create/mechanical_roller.png deleted file mode 100644 index 7d622739..00000000 Binary files a/public/textures/create/mechanical_roller.png and /dev/null differ diff --git a/public/textures/create/mechanical_saw.png b/public/textures/create/mechanical_saw.png deleted file mode 100644 index a6f37230..00000000 Binary files a/public/textures/create/mechanical_saw.png and /dev/null differ diff --git a/public/textures/create/metal_bracket.png b/public/textures/create/metal_bracket.png deleted file mode 100644 index 1955f220..00000000 Binary files a/public/textures/create/metal_bracket.png and /dev/null differ diff --git a/public/textures/create/metal_girder.png b/public/textures/create/metal_girder.png deleted file mode 100644 index 875d0392..00000000 Binary files a/public/textures/create/metal_girder.png and /dev/null differ diff --git a/public/textures/create/millstone.png b/public/textures/create/millstone.png deleted file mode 100644 index 4f490ebe..00000000 Binary files a/public/textures/create/millstone.png and /dev/null differ diff --git a/public/textures/create/minecart_coupling.png b/public/textures/create/minecart_coupling.png deleted file mode 100644 index dc558b97..00000000 Binary files a/public/textures/create/minecart_coupling.png and /dev/null differ diff --git a/public/textures/create/netherite_backtank__{'create__banktank_air'__900}.png b/public/textures/create/netherite_backtank__{'create__banktank_air'__900}.png deleted file mode 100644 index 8610c037..00000000 Binary files a/public/textures/create/netherite_backtank__{'create__banktank_air'__900}.png and /dev/null differ diff --git a/public/textures/create/netherite_diving_boots.png b/public/textures/create/netherite_diving_boots.png deleted file mode 100644 index 35d112b7..00000000 Binary files a/public/textures/create/netherite_diving_boots.png and /dev/null differ diff --git a/public/textures/create/netherite_diving_helmet.png b/public/textures/create/netherite_diving_helmet.png deleted file mode 100644 index bdb90469..00000000 Binary files a/public/textures/create/netherite_diving_helmet.png and /dev/null differ diff --git a/public/textures/create/nixie_tube.png b/public/textures/create/nixie_tube.png deleted file mode 100644 index 078167bc..00000000 Binary files a/public/textures/create/nixie_tube.png and /dev/null differ diff --git a/public/textures/create/nozzle.png b/public/textures/create/nozzle.png deleted file mode 100644 index f8a8af93..00000000 Binary files a/public/textures/create/nozzle.png and /dev/null differ diff --git a/public/textures/create/oak_window.png b/public/textures/create/oak_window.png deleted file mode 100644 index c27b1037..00000000 Binary files a/public/textures/create/oak_window.png and /dev/null differ diff --git a/public/textures/create/oak_window_pane.png b/public/textures/create/oak_window_pane.png deleted file mode 100644 index e1295359..00000000 Binary files a/public/textures/create/oak_window_pane.png and /dev/null differ diff --git a/public/textures/create/ochrum.png b/public/textures/create/ochrum.png deleted file mode 100644 index aa7520f5..00000000 Binary files a/public/textures/create/ochrum.png and /dev/null differ diff --git a/public/textures/create/ochrum_pillar.png b/public/textures/create/ochrum_pillar.png deleted file mode 100644 index aca44afd..00000000 Binary files a/public/textures/create/ochrum_pillar.png and /dev/null differ diff --git a/public/textures/create/ornate_iron_window.png b/public/textures/create/ornate_iron_window.png deleted file mode 100644 index ccec015e..00000000 Binary files a/public/textures/create/ornate_iron_window.png and /dev/null differ diff --git a/public/textures/create/ornate_iron_window_pane.png b/public/textures/create/ornate_iron_window_pane.png deleted file mode 100644 index 068aa686..00000000 Binary files a/public/textures/create/ornate_iron_window_pane.png and /dev/null differ diff --git a/public/textures/create/oxidized_copper_shingle_slab.png b/public/textures/create/oxidized_copper_shingle_slab.png deleted file mode 100644 index 66957dcc..00000000 Binary files a/public/textures/create/oxidized_copper_shingle_slab.png and /dev/null differ diff --git a/public/textures/create/oxidized_copper_shingle_stairs.png b/public/textures/create/oxidized_copper_shingle_stairs.png deleted file mode 100644 index 79ece7a6..00000000 Binary files a/public/textures/create/oxidized_copper_shingle_stairs.png and /dev/null differ diff --git a/public/textures/create/oxidized_copper_shingles.png b/public/textures/create/oxidized_copper_shingles.png deleted file mode 100644 index 034b6841..00000000 Binary files a/public/textures/create/oxidized_copper_shingles.png and /dev/null differ diff --git a/public/textures/create/oxidized_copper_tile_slab.png b/public/textures/create/oxidized_copper_tile_slab.png deleted file mode 100644 index 35323db7..00000000 Binary files a/public/textures/create/oxidized_copper_tile_slab.png and /dev/null differ diff --git a/public/textures/create/oxidized_copper_tile_stairs.png b/public/textures/create/oxidized_copper_tile_stairs.png deleted file mode 100644 index 64f7c69f..00000000 Binary files a/public/textures/create/oxidized_copper_tile_stairs.png and /dev/null differ diff --git a/public/textures/create/oxidized_copper_tiles.png b/public/textures/create/oxidized_copper_tiles.png deleted file mode 100644 index cde16509..00000000 Binary files a/public/textures/create/oxidized_copper_tiles.png and /dev/null differ diff --git a/public/textures/create/package_filter.png b/public/textures/create/package_filter.png deleted file mode 100644 index e26791b7..00000000 Binary files a/public/textures/create/package_filter.png and /dev/null differ diff --git a/public/textures/create/package_frogport.png b/public/textures/create/package_frogport.png deleted file mode 100644 index 3fd88deb..00000000 Binary files a/public/textures/create/package_frogport.png and /dev/null differ diff --git a/public/textures/create/packager.png b/public/textures/create/packager.png deleted file mode 100644 index 211eb661..00000000 Binary files a/public/textures/create/packager.png and /dev/null differ diff --git a/public/textures/create/peculiar_bell.png b/public/textures/create/peculiar_bell.png deleted file mode 100644 index 3aec3f3c..00000000 Binary files a/public/textures/create/peculiar_bell.png and /dev/null differ diff --git a/public/textures/create/piston_extension_pole.png b/public/textures/create/piston_extension_pole.png deleted file mode 100644 index 4b6f458c..00000000 Binary files a/public/textures/create/piston_extension_pole.png and /dev/null differ diff --git a/public/textures/create/placard.png b/public/textures/create/placard.png deleted file mode 100644 index 27d06ad9..00000000 Binary files a/public/textures/create/placard.png and /dev/null differ diff --git a/public/textures/create/polished_cut_andesite.png b/public/textures/create/polished_cut_andesite.png deleted file mode 100644 index 166c471d..00000000 Binary files a/public/textures/create/polished_cut_andesite.png and /dev/null differ diff --git a/public/textures/create/polished_cut_andesite_slab.png b/public/textures/create/polished_cut_andesite_slab.png deleted file mode 100644 index c0a1b3e6..00000000 Binary files a/public/textures/create/polished_cut_andesite_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_andesite_stairs.png b/public/textures/create/polished_cut_andesite_stairs.png deleted file mode 100644 index 222cb138..00000000 Binary files a/public/textures/create/polished_cut_andesite_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_andesite_wall.png b/public/textures/create/polished_cut_andesite_wall.png deleted file mode 100644 index 10930110..00000000 Binary files a/public/textures/create/polished_cut_andesite_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_asurine.png b/public/textures/create/polished_cut_asurine.png deleted file mode 100644 index 4689cace..00000000 Binary files a/public/textures/create/polished_cut_asurine.png and /dev/null differ diff --git a/public/textures/create/polished_cut_asurine_slab.png b/public/textures/create/polished_cut_asurine_slab.png deleted file mode 100644 index 7885df14..00000000 Binary files a/public/textures/create/polished_cut_asurine_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_asurine_stairs.png b/public/textures/create/polished_cut_asurine_stairs.png deleted file mode 100644 index 7f992b65..00000000 Binary files a/public/textures/create/polished_cut_asurine_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_asurine_wall.png b/public/textures/create/polished_cut_asurine_wall.png deleted file mode 100644 index c438fb98..00000000 Binary files a/public/textures/create/polished_cut_asurine_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_calcite.png b/public/textures/create/polished_cut_calcite.png deleted file mode 100644 index 300cddb8..00000000 Binary files a/public/textures/create/polished_cut_calcite.png and /dev/null differ diff --git a/public/textures/create/polished_cut_calcite_slab.png b/public/textures/create/polished_cut_calcite_slab.png deleted file mode 100644 index 1fbe2b85..00000000 Binary files a/public/textures/create/polished_cut_calcite_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_calcite_stairs.png b/public/textures/create/polished_cut_calcite_stairs.png deleted file mode 100644 index 500ee378..00000000 Binary files a/public/textures/create/polished_cut_calcite_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_calcite_wall.png b/public/textures/create/polished_cut_calcite_wall.png deleted file mode 100644 index 0a3a919a..00000000 Binary files a/public/textures/create/polished_cut_calcite_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_crimsite.png b/public/textures/create/polished_cut_crimsite.png deleted file mode 100644 index 823847ab..00000000 Binary files a/public/textures/create/polished_cut_crimsite.png and /dev/null differ diff --git a/public/textures/create/polished_cut_crimsite_slab.png b/public/textures/create/polished_cut_crimsite_slab.png deleted file mode 100644 index 85624d76..00000000 Binary files a/public/textures/create/polished_cut_crimsite_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_crimsite_stairs.png b/public/textures/create/polished_cut_crimsite_stairs.png deleted file mode 100644 index b0c28a77..00000000 Binary files a/public/textures/create/polished_cut_crimsite_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_crimsite_wall.png b/public/textures/create/polished_cut_crimsite_wall.png deleted file mode 100644 index 533c6c01..00000000 Binary files a/public/textures/create/polished_cut_crimsite_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_deepslate.png b/public/textures/create/polished_cut_deepslate.png deleted file mode 100644 index 652fc1bf..00000000 Binary files a/public/textures/create/polished_cut_deepslate.png and /dev/null differ diff --git a/public/textures/create/polished_cut_deepslate_slab.png b/public/textures/create/polished_cut_deepslate_slab.png deleted file mode 100644 index 821e79d6..00000000 Binary files a/public/textures/create/polished_cut_deepslate_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_deepslate_stairs.png b/public/textures/create/polished_cut_deepslate_stairs.png deleted file mode 100644 index fa70cee6..00000000 Binary files a/public/textures/create/polished_cut_deepslate_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_deepslate_wall.png b/public/textures/create/polished_cut_deepslate_wall.png deleted file mode 100644 index a2befe15..00000000 Binary files a/public/textures/create/polished_cut_deepslate_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_diorite.png b/public/textures/create/polished_cut_diorite.png deleted file mode 100644 index 47fb9bf7..00000000 Binary files a/public/textures/create/polished_cut_diorite.png and /dev/null differ diff --git a/public/textures/create/polished_cut_diorite_slab.png b/public/textures/create/polished_cut_diorite_slab.png deleted file mode 100644 index 00f7378e..00000000 Binary files a/public/textures/create/polished_cut_diorite_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_diorite_stairs.png b/public/textures/create/polished_cut_diorite_stairs.png deleted file mode 100644 index 408c9fc0..00000000 Binary files a/public/textures/create/polished_cut_diorite_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_diorite_wall.png b/public/textures/create/polished_cut_diorite_wall.png deleted file mode 100644 index 2638e3a6..00000000 Binary files a/public/textures/create/polished_cut_diorite_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_dripstone.png b/public/textures/create/polished_cut_dripstone.png deleted file mode 100644 index 1bc21023..00000000 Binary files a/public/textures/create/polished_cut_dripstone.png and /dev/null differ diff --git a/public/textures/create/polished_cut_dripstone_slab.png b/public/textures/create/polished_cut_dripstone_slab.png deleted file mode 100644 index 5323757e..00000000 Binary files a/public/textures/create/polished_cut_dripstone_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_dripstone_stairs.png b/public/textures/create/polished_cut_dripstone_stairs.png deleted file mode 100644 index b89d2298..00000000 Binary files a/public/textures/create/polished_cut_dripstone_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_dripstone_wall.png b/public/textures/create/polished_cut_dripstone_wall.png deleted file mode 100644 index 8ad14556..00000000 Binary files a/public/textures/create/polished_cut_dripstone_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_granite.png b/public/textures/create/polished_cut_granite.png deleted file mode 100644 index a0659435..00000000 Binary files a/public/textures/create/polished_cut_granite.png and /dev/null differ diff --git a/public/textures/create/polished_cut_granite_slab.png b/public/textures/create/polished_cut_granite_slab.png deleted file mode 100644 index a4d3c540..00000000 Binary files a/public/textures/create/polished_cut_granite_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_granite_stairs.png b/public/textures/create/polished_cut_granite_stairs.png deleted file mode 100644 index 60bb411b..00000000 Binary files a/public/textures/create/polished_cut_granite_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_granite_wall.png b/public/textures/create/polished_cut_granite_wall.png deleted file mode 100644 index 714b963f..00000000 Binary files a/public/textures/create/polished_cut_granite_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_limestone.png b/public/textures/create/polished_cut_limestone.png deleted file mode 100644 index e1f64468..00000000 Binary files a/public/textures/create/polished_cut_limestone.png and /dev/null differ diff --git a/public/textures/create/polished_cut_limestone_slab.png b/public/textures/create/polished_cut_limestone_slab.png deleted file mode 100644 index 590f2d00..00000000 Binary files a/public/textures/create/polished_cut_limestone_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_limestone_stairs.png b/public/textures/create/polished_cut_limestone_stairs.png deleted file mode 100644 index 81a5de7e..00000000 Binary files a/public/textures/create/polished_cut_limestone_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_limestone_wall.png b/public/textures/create/polished_cut_limestone_wall.png deleted file mode 100644 index 1287c6cc..00000000 Binary files a/public/textures/create/polished_cut_limestone_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_ochrum.png b/public/textures/create/polished_cut_ochrum.png deleted file mode 100644 index 4cec4aec..00000000 Binary files a/public/textures/create/polished_cut_ochrum.png and /dev/null differ diff --git a/public/textures/create/polished_cut_ochrum_slab.png b/public/textures/create/polished_cut_ochrum_slab.png deleted file mode 100644 index f2dfdb19..00000000 Binary files a/public/textures/create/polished_cut_ochrum_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_ochrum_stairs.png b/public/textures/create/polished_cut_ochrum_stairs.png deleted file mode 100644 index 300b1fd9..00000000 Binary files a/public/textures/create/polished_cut_ochrum_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_ochrum_wall.png b/public/textures/create/polished_cut_ochrum_wall.png deleted file mode 100644 index 90a523a8..00000000 Binary files a/public/textures/create/polished_cut_ochrum_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_scorchia.png b/public/textures/create/polished_cut_scorchia.png deleted file mode 100644 index 8bb9c91b..00000000 Binary files a/public/textures/create/polished_cut_scorchia.png and /dev/null differ diff --git a/public/textures/create/polished_cut_scorchia_slab.png b/public/textures/create/polished_cut_scorchia_slab.png deleted file mode 100644 index 2f28a27b..00000000 Binary files a/public/textures/create/polished_cut_scorchia_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_scorchia_stairs.png b/public/textures/create/polished_cut_scorchia_stairs.png deleted file mode 100644 index c8a1efbc..00000000 Binary files a/public/textures/create/polished_cut_scorchia_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_scorchia_wall.png b/public/textures/create/polished_cut_scorchia_wall.png deleted file mode 100644 index 60a7852c..00000000 Binary files a/public/textures/create/polished_cut_scorchia_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_scoria.png b/public/textures/create/polished_cut_scoria.png deleted file mode 100644 index 8c886bb7..00000000 Binary files a/public/textures/create/polished_cut_scoria.png and /dev/null differ diff --git a/public/textures/create/polished_cut_scoria_slab.png b/public/textures/create/polished_cut_scoria_slab.png deleted file mode 100644 index 4f8bface..00000000 Binary files a/public/textures/create/polished_cut_scoria_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_scoria_stairs.png b/public/textures/create/polished_cut_scoria_stairs.png deleted file mode 100644 index 9e101ecd..00000000 Binary files a/public/textures/create/polished_cut_scoria_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_scoria_wall.png b/public/textures/create/polished_cut_scoria_wall.png deleted file mode 100644 index b086d691..00000000 Binary files a/public/textures/create/polished_cut_scoria_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_tuff.png b/public/textures/create/polished_cut_tuff.png deleted file mode 100644 index 8979b85c..00000000 Binary files a/public/textures/create/polished_cut_tuff.png and /dev/null differ diff --git a/public/textures/create/polished_cut_tuff_slab.png b/public/textures/create/polished_cut_tuff_slab.png deleted file mode 100644 index b0d4bab0..00000000 Binary files a/public/textures/create/polished_cut_tuff_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_tuff_stairs.png b/public/textures/create/polished_cut_tuff_stairs.png deleted file mode 100644 index b9657a59..00000000 Binary files a/public/textures/create/polished_cut_tuff_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_tuff_wall.png b/public/textures/create/polished_cut_tuff_wall.png deleted file mode 100644 index 364d801f..00000000 Binary files a/public/textures/create/polished_cut_tuff_wall.png and /dev/null differ diff --git a/public/textures/create/polished_cut_veridium.png b/public/textures/create/polished_cut_veridium.png deleted file mode 100644 index 6db1918f..00000000 Binary files a/public/textures/create/polished_cut_veridium.png and /dev/null differ diff --git a/public/textures/create/polished_cut_veridium_slab.png b/public/textures/create/polished_cut_veridium_slab.png deleted file mode 100644 index 551b703d..00000000 Binary files a/public/textures/create/polished_cut_veridium_slab.png and /dev/null differ diff --git a/public/textures/create/polished_cut_veridium_stairs.png b/public/textures/create/polished_cut_veridium_stairs.png deleted file mode 100644 index dfaef21b..00000000 Binary files a/public/textures/create/polished_cut_veridium_stairs.png and /dev/null differ diff --git a/public/textures/create/polished_cut_veridium_wall.png b/public/textures/create/polished_cut_veridium_wall.png deleted file mode 100644 index b12380b7..00000000 Binary files a/public/textures/create/polished_cut_veridium_wall.png and /dev/null differ diff --git a/public/textures/create/polished_rose_quartz.png b/public/textures/create/polished_rose_quartz.png deleted file mode 100644 index f0e4b1ff..00000000 Binary files a/public/textures/create/polished_rose_quartz.png and /dev/null differ diff --git a/public/textures/create/portable_fluid_interface.png b/public/textures/create/portable_fluid_interface.png deleted file mode 100644 index 84b33d4e..00000000 Binary files a/public/textures/create/portable_fluid_interface.png and /dev/null differ diff --git a/public/textures/create/portable_storage_interface.png b/public/textures/create/portable_storage_interface.png deleted file mode 100644 index 9d5c2287..00000000 Binary files a/public/textures/create/portable_storage_interface.png and /dev/null differ diff --git a/public/textures/create/potato_cannon.png b/public/textures/create/potato_cannon.png deleted file mode 100644 index de1422c7..00000000 Binary files a/public/textures/create/potato_cannon.png and /dev/null differ diff --git a/public/textures/create/powdered_obsidian.png b/public/textures/create/powdered_obsidian.png deleted file mode 100644 index 0ae83c3f..00000000 Binary files a/public/textures/create/powdered_obsidian.png and /dev/null differ diff --git a/public/textures/create/powered_latch.png b/public/textures/create/powered_latch.png deleted file mode 100644 index 96487de7..00000000 Binary files a/public/textures/create/powered_latch.png and /dev/null differ diff --git a/public/textures/create/powered_toggle_latch.png b/public/textures/create/powered_toggle_latch.png deleted file mode 100644 index 5877520a..00000000 Binary files a/public/textures/create/powered_toggle_latch.png and /dev/null differ diff --git a/public/textures/create/precision_mechanism.png b/public/textures/create/precision_mechanism.png deleted file mode 100644 index e441f2e0..00000000 Binary files a/public/textures/create/precision_mechanism.png and /dev/null differ diff --git a/public/textures/create/propeller.png b/public/textures/create/propeller.png deleted file mode 100644 index b47d4f3e..00000000 Binary files a/public/textures/create/propeller.png and /dev/null differ diff --git a/public/textures/create/pulp.png b/public/textures/create/pulp.png deleted file mode 100644 index c1ece36f..00000000 Binary files a/public/textures/create/pulp.png and /dev/null differ diff --git a/public/textures/create/pulse_extender.png b/public/textures/create/pulse_extender.png deleted file mode 100644 index 6411c6c9..00000000 Binary files a/public/textures/create/pulse_extender.png and /dev/null differ diff --git a/public/textures/create/pulse_repeater.png b/public/textures/create/pulse_repeater.png deleted file mode 100644 index 212b3377..00000000 Binary files a/public/textures/create/pulse_repeater.png and /dev/null differ diff --git a/public/textures/create/pulse_timer.png b/public/textures/create/pulse_timer.png deleted file mode 100644 index b522cdb3..00000000 Binary files a/public/textures/create/pulse_timer.png and /dev/null differ diff --git a/public/textures/create/radial_chassis.png b/public/textures/create/radial_chassis.png deleted file mode 100644 index 6108caaa..00000000 Binary files a/public/textures/create/radial_chassis.png and /dev/null differ diff --git a/public/textures/create/railway_casing.png b/public/textures/create/railway_casing.png deleted file mode 100644 index 7195f7f9..00000000 Binary files a/public/textures/create/railway_casing.png and /dev/null differ diff --git a/public/textures/create/raw_zinc.png b/public/textures/create/raw_zinc.png deleted file mode 100644 index b00917d8..00000000 Binary files a/public/textures/create/raw_zinc.png and /dev/null differ diff --git a/public/textures/create/raw_zinc_block.png b/public/textures/create/raw_zinc_block.png deleted file mode 100644 index 642185eb..00000000 Binary files a/public/textures/create/raw_zinc_block.png and /dev/null differ diff --git a/public/textures/create/red_sand_paper.png b/public/textures/create/red_sand_paper.png deleted file mode 100644 index 0f74b4e9..00000000 Binary files a/public/textures/create/red_sand_paper.png and /dev/null differ diff --git a/public/textures/create/red_seat.png b/public/textures/create/red_seat.png deleted file mode 100644 index 1de555cf..00000000 Binary files a/public/textures/create/red_seat.png and /dev/null differ diff --git a/public/textures/create/red_table_cloth.png b/public/textures/create/red_table_cloth.png deleted file mode 100644 index 573b90c7..00000000 Binary files a/public/textures/create/red_table_cloth.png and /dev/null differ diff --git a/public/textures/create/redstone_contact.png b/public/textures/create/redstone_contact.png deleted file mode 100644 index a7227808..00000000 Binary files a/public/textures/create/redstone_contact.png and /dev/null differ diff --git a/public/textures/create/redstone_link.png b/public/textures/create/redstone_link.png deleted file mode 100644 index db0f9a29..00000000 Binary files a/public/textures/create/redstone_link.png and /dev/null differ diff --git a/public/textures/create/redstone_requester.png b/public/textures/create/redstone_requester.png deleted file mode 100644 index 035b310e..00000000 Binary files a/public/textures/create/redstone_requester.png and /dev/null differ diff --git a/public/textures/create/repackager.png b/public/textures/create/repackager.png deleted file mode 100644 index fc9e8b01..00000000 Binary files a/public/textures/create/repackager.png and /dev/null differ diff --git a/public/textures/create/rope_pulley.png b/public/textures/create/rope_pulley.png deleted file mode 100644 index 23b73b4b..00000000 Binary files a/public/textures/create/rope_pulley.png and /dev/null differ diff --git a/public/textures/create/rose_quartz.png b/public/textures/create/rose_quartz.png deleted file mode 100644 index 6f1c17a4..00000000 Binary files a/public/textures/create/rose_quartz.png and /dev/null differ diff --git a/public/textures/create/rose_quartz_block.png b/public/textures/create/rose_quartz_block.png deleted file mode 100644 index d709857d..00000000 Binary files a/public/textures/create/rose_quartz_block.png and /dev/null differ diff --git a/public/textures/create/rose_quartz_lamp.png b/public/textures/create/rose_quartz_lamp.png deleted file mode 100644 index 6423bc53..00000000 Binary files a/public/textures/create/rose_quartz_lamp.png and /dev/null differ diff --git a/public/textures/create/rose_quartz_tiles.png b/public/textures/create/rose_quartz_tiles.png deleted file mode 100644 index 76d2fe50..00000000 Binary files a/public/textures/create/rose_quartz_tiles.png and /dev/null differ diff --git a/public/textures/create/rotation_speed_controller.png b/public/textures/create/rotation_speed_controller.png deleted file mode 100644 index 4cb7c5c7..00000000 Binary files a/public/textures/create/rotation_speed_controller.png and /dev/null differ diff --git a/public/textures/create/sail_frame.png b/public/textures/create/sail_frame.png deleted file mode 100644 index ae9848b0..00000000 Binary files a/public/textures/create/sail_frame.png and /dev/null differ diff --git a/public/textures/create/sand_paper.png b/public/textures/create/sand_paper.png deleted file mode 100644 index c23a1668..00000000 Binary files a/public/textures/create/sand_paper.png and /dev/null differ diff --git a/public/textures/create/schedule.png b/public/textures/create/schedule.png deleted file mode 100644 index 28e982cb..00000000 Binary files a/public/textures/create/schedule.png and /dev/null differ diff --git a/public/textures/create/schematic_and_quill.png b/public/textures/create/schematic_and_quill.png deleted file mode 100644 index 8b1499e5..00000000 Binary files a/public/textures/create/schematic_and_quill.png and /dev/null differ diff --git a/public/textures/create/schematic_table.png b/public/textures/create/schematic_table.png deleted file mode 100644 index 74baae09..00000000 Binary files a/public/textures/create/schematic_table.png and /dev/null differ diff --git a/public/textures/create/schematicannon.png b/public/textures/create/schematicannon.png deleted file mode 100644 index ff7392a9..00000000 Binary files a/public/textures/create/schematicannon.png and /dev/null differ diff --git a/public/textures/create/scorchia.png b/public/textures/create/scorchia.png deleted file mode 100644 index d01d3bbf..00000000 Binary files a/public/textures/create/scorchia.png and /dev/null differ diff --git a/public/textures/create/scorchia_pillar.png b/public/textures/create/scorchia_pillar.png deleted file mode 100644 index a84d14b5..00000000 Binary files a/public/textures/create/scorchia_pillar.png and /dev/null differ diff --git a/public/textures/create/scoria.png b/public/textures/create/scoria.png deleted file mode 100644 index 7227b0eb..00000000 Binary files a/public/textures/create/scoria.png and /dev/null differ diff --git a/public/textures/create/scoria_pillar.png b/public/textures/create/scoria_pillar.png deleted file mode 100644 index 0a2bf057..00000000 Binary files a/public/textures/create/scoria_pillar.png and /dev/null differ diff --git a/public/textures/create/secondary_linear_chassis.png b/public/textures/create/secondary_linear_chassis.png deleted file mode 100644 index dd0835f6..00000000 Binary files a/public/textures/create/secondary_linear_chassis.png and /dev/null differ diff --git a/public/textures/create/sequenced_gearshift.png b/public/textures/create/sequenced_gearshift.png deleted file mode 100644 index 7f76eabe..00000000 Binary files a/public/textures/create/sequenced_gearshift.png and /dev/null differ diff --git a/public/textures/create/shaft.png b/public/textures/create/shaft.png deleted file mode 100644 index b371625d..00000000 Binary files a/public/textures/create/shaft.png and /dev/null differ diff --git a/public/textures/create/small_andesite_brick_slab.png b/public/textures/create/small_andesite_brick_slab.png deleted file mode 100644 index c850f0a8..00000000 Binary files a/public/textures/create/small_andesite_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_andesite_brick_stairs.png b/public/textures/create/small_andesite_brick_stairs.png deleted file mode 100644 index 00d00ae0..00000000 Binary files a/public/textures/create/small_andesite_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_andesite_brick_wall.png b/public/textures/create/small_andesite_brick_wall.png deleted file mode 100644 index 52dc6ff0..00000000 Binary files a/public/textures/create/small_andesite_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_andesite_bricks.png b/public/textures/create/small_andesite_bricks.png deleted file mode 100644 index f005791a..00000000 Binary files a/public/textures/create/small_andesite_bricks.png and /dev/null differ diff --git a/public/textures/create/small_asurine_brick_slab.png b/public/textures/create/small_asurine_brick_slab.png deleted file mode 100644 index 965457aa..00000000 Binary files a/public/textures/create/small_asurine_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_asurine_brick_stairs.png b/public/textures/create/small_asurine_brick_stairs.png deleted file mode 100644 index 35eeaf00..00000000 Binary files a/public/textures/create/small_asurine_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_asurine_brick_wall.png b/public/textures/create/small_asurine_brick_wall.png deleted file mode 100644 index a21caa78..00000000 Binary files a/public/textures/create/small_asurine_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_asurine_bricks.png b/public/textures/create/small_asurine_bricks.png deleted file mode 100644 index dd4ab52a..00000000 Binary files a/public/textures/create/small_asurine_bricks.png and /dev/null differ diff --git a/public/textures/create/small_calcite_brick_slab.png b/public/textures/create/small_calcite_brick_slab.png deleted file mode 100644 index 0ec23ddb..00000000 Binary files a/public/textures/create/small_calcite_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_calcite_brick_stairs.png b/public/textures/create/small_calcite_brick_stairs.png deleted file mode 100644 index a612ec84..00000000 Binary files a/public/textures/create/small_calcite_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_calcite_brick_wall.png b/public/textures/create/small_calcite_brick_wall.png deleted file mode 100644 index 11d18098..00000000 Binary files a/public/textures/create/small_calcite_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_calcite_bricks.png b/public/textures/create/small_calcite_bricks.png deleted file mode 100644 index fe8afb26..00000000 Binary files a/public/textures/create/small_calcite_bricks.png and /dev/null differ diff --git a/public/textures/create/small_crimsite_brick_slab.png b/public/textures/create/small_crimsite_brick_slab.png deleted file mode 100644 index b7777422..00000000 Binary files a/public/textures/create/small_crimsite_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_crimsite_brick_stairs.png b/public/textures/create/small_crimsite_brick_stairs.png deleted file mode 100644 index 52c18b3d..00000000 Binary files a/public/textures/create/small_crimsite_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_crimsite_brick_wall.png b/public/textures/create/small_crimsite_brick_wall.png deleted file mode 100644 index 532856b2..00000000 Binary files a/public/textures/create/small_crimsite_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_crimsite_bricks.png b/public/textures/create/small_crimsite_bricks.png deleted file mode 100644 index 58430303..00000000 Binary files a/public/textures/create/small_crimsite_bricks.png and /dev/null differ diff --git a/public/textures/create/small_deepslate_brick_slab.png b/public/textures/create/small_deepslate_brick_slab.png deleted file mode 100644 index 87434c6f..00000000 Binary files a/public/textures/create/small_deepslate_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_deepslate_brick_stairs.png b/public/textures/create/small_deepslate_brick_stairs.png deleted file mode 100644 index a33bb0fb..00000000 Binary files a/public/textures/create/small_deepslate_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_deepslate_brick_wall.png b/public/textures/create/small_deepslate_brick_wall.png deleted file mode 100644 index ac5921b3..00000000 Binary files a/public/textures/create/small_deepslate_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_deepslate_bricks.png b/public/textures/create/small_deepslate_bricks.png deleted file mode 100644 index 09a4e210..00000000 Binary files a/public/textures/create/small_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/create/small_diorite_brick_slab.png b/public/textures/create/small_diorite_brick_slab.png deleted file mode 100644 index 8ed0393c..00000000 Binary files a/public/textures/create/small_diorite_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_diorite_brick_stairs.png b/public/textures/create/small_diorite_brick_stairs.png deleted file mode 100644 index 1469f727..00000000 Binary files a/public/textures/create/small_diorite_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_diorite_brick_wall.png b/public/textures/create/small_diorite_brick_wall.png deleted file mode 100644 index d7d347c4..00000000 Binary files a/public/textures/create/small_diorite_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_diorite_bricks.png b/public/textures/create/small_diorite_bricks.png deleted file mode 100644 index afc80e4f..00000000 Binary files a/public/textures/create/small_diorite_bricks.png and /dev/null differ diff --git a/public/textures/create/small_dripstone_brick_slab.png b/public/textures/create/small_dripstone_brick_slab.png deleted file mode 100644 index 5a6aaa5a..00000000 Binary files a/public/textures/create/small_dripstone_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_dripstone_brick_stairs.png b/public/textures/create/small_dripstone_brick_stairs.png deleted file mode 100644 index ff4885bc..00000000 Binary files a/public/textures/create/small_dripstone_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_dripstone_brick_wall.png b/public/textures/create/small_dripstone_brick_wall.png deleted file mode 100644 index f9dac36f..00000000 Binary files a/public/textures/create/small_dripstone_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_dripstone_bricks.png b/public/textures/create/small_dripstone_bricks.png deleted file mode 100644 index ba0ea2ff..00000000 Binary files a/public/textures/create/small_dripstone_bricks.png and /dev/null differ diff --git a/public/textures/create/small_granite_brick_slab.png b/public/textures/create/small_granite_brick_slab.png deleted file mode 100644 index e6ef3e86..00000000 Binary files a/public/textures/create/small_granite_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_granite_brick_stairs.png b/public/textures/create/small_granite_brick_stairs.png deleted file mode 100644 index 6e6038f0..00000000 Binary files a/public/textures/create/small_granite_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_granite_brick_wall.png b/public/textures/create/small_granite_brick_wall.png deleted file mode 100644 index 625c1dda..00000000 Binary files a/public/textures/create/small_granite_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_granite_bricks.png b/public/textures/create/small_granite_bricks.png deleted file mode 100644 index 3e6fb167..00000000 Binary files a/public/textures/create/small_granite_bricks.png and /dev/null differ diff --git a/public/textures/create/small_limestone_brick_slab.png b/public/textures/create/small_limestone_brick_slab.png deleted file mode 100644 index 35f2221c..00000000 Binary files a/public/textures/create/small_limestone_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_limestone_brick_stairs.png b/public/textures/create/small_limestone_brick_stairs.png deleted file mode 100644 index b7a8d8a6..00000000 Binary files a/public/textures/create/small_limestone_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_limestone_brick_wall.png b/public/textures/create/small_limestone_brick_wall.png deleted file mode 100644 index 36786152..00000000 Binary files a/public/textures/create/small_limestone_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_limestone_bricks.png b/public/textures/create/small_limestone_bricks.png deleted file mode 100644 index 69a1e332..00000000 Binary files a/public/textures/create/small_limestone_bricks.png and /dev/null differ diff --git a/public/textures/create/small_ochrum_brick_slab.png b/public/textures/create/small_ochrum_brick_slab.png deleted file mode 100644 index 19bda686..00000000 Binary files a/public/textures/create/small_ochrum_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_ochrum_brick_stairs.png b/public/textures/create/small_ochrum_brick_stairs.png deleted file mode 100644 index 39be608c..00000000 Binary files a/public/textures/create/small_ochrum_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_ochrum_brick_wall.png b/public/textures/create/small_ochrum_brick_wall.png deleted file mode 100644 index cbe15dc5..00000000 Binary files a/public/textures/create/small_ochrum_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_ochrum_bricks.png b/public/textures/create/small_ochrum_bricks.png deleted file mode 100644 index 4de90b58..00000000 Binary files a/public/textures/create/small_ochrum_bricks.png and /dev/null differ diff --git a/public/textures/create/small_rose_quartz_tiles.png b/public/textures/create/small_rose_quartz_tiles.png deleted file mode 100644 index fbbebbf2..00000000 Binary files a/public/textures/create/small_rose_quartz_tiles.png and /dev/null differ diff --git a/public/textures/create/small_scorchia_brick_slab.png b/public/textures/create/small_scorchia_brick_slab.png deleted file mode 100644 index 313aa656..00000000 Binary files a/public/textures/create/small_scorchia_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_scorchia_brick_stairs.png b/public/textures/create/small_scorchia_brick_stairs.png deleted file mode 100644 index e0113db6..00000000 Binary files a/public/textures/create/small_scorchia_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_scorchia_brick_wall.png b/public/textures/create/small_scorchia_brick_wall.png deleted file mode 100644 index 16717d25..00000000 Binary files a/public/textures/create/small_scorchia_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_scorchia_bricks.png b/public/textures/create/small_scorchia_bricks.png deleted file mode 100644 index 1ec91056..00000000 Binary files a/public/textures/create/small_scorchia_bricks.png and /dev/null differ diff --git a/public/textures/create/small_scoria_brick_slab.png b/public/textures/create/small_scoria_brick_slab.png deleted file mode 100644 index ae0190e2..00000000 Binary files a/public/textures/create/small_scoria_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_scoria_brick_stairs.png b/public/textures/create/small_scoria_brick_stairs.png deleted file mode 100644 index 54428a6e..00000000 Binary files a/public/textures/create/small_scoria_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_scoria_brick_wall.png b/public/textures/create/small_scoria_brick_wall.png deleted file mode 100644 index 542a500b..00000000 Binary files a/public/textures/create/small_scoria_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_scoria_bricks.png b/public/textures/create/small_scoria_bricks.png deleted file mode 100644 index ed601962..00000000 Binary files a/public/textures/create/small_scoria_bricks.png and /dev/null differ diff --git a/public/textures/create/small_tuff_brick_slab.png b/public/textures/create/small_tuff_brick_slab.png deleted file mode 100644 index d7c2bbf5..00000000 Binary files a/public/textures/create/small_tuff_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_tuff_brick_stairs.png b/public/textures/create/small_tuff_brick_stairs.png deleted file mode 100644 index 1d24f83e..00000000 Binary files a/public/textures/create/small_tuff_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_tuff_brick_wall.png b/public/textures/create/small_tuff_brick_wall.png deleted file mode 100644 index 875eca1d..00000000 Binary files a/public/textures/create/small_tuff_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_tuff_bricks.png b/public/textures/create/small_tuff_bricks.png deleted file mode 100644 index eac1c3e1..00000000 Binary files a/public/textures/create/small_tuff_bricks.png and /dev/null differ diff --git a/public/textures/create/small_veridium_brick_slab.png b/public/textures/create/small_veridium_brick_slab.png deleted file mode 100644 index 85639697..00000000 Binary files a/public/textures/create/small_veridium_brick_slab.png and /dev/null differ diff --git a/public/textures/create/small_veridium_brick_stairs.png b/public/textures/create/small_veridium_brick_stairs.png deleted file mode 100644 index b4db5d75..00000000 Binary files a/public/textures/create/small_veridium_brick_stairs.png and /dev/null differ diff --git a/public/textures/create/small_veridium_brick_wall.png b/public/textures/create/small_veridium_brick_wall.png deleted file mode 100644 index 98bf28dc..00000000 Binary files a/public/textures/create/small_veridium_brick_wall.png and /dev/null differ diff --git a/public/textures/create/small_veridium_bricks.png b/public/textures/create/small_veridium_bricks.png deleted file mode 100644 index 605346b8..00000000 Binary files a/public/textures/create/small_veridium_bricks.png and /dev/null differ diff --git a/public/textures/create/smart_chute.png b/public/textures/create/smart_chute.png deleted file mode 100644 index f3f804c8..00000000 Binary files a/public/textures/create/smart_chute.png and /dev/null differ diff --git a/public/textures/create/smart_fluid_pipe.png b/public/textures/create/smart_fluid_pipe.png deleted file mode 100644 index 260b0f10..00000000 Binary files a/public/textures/create/smart_fluid_pipe.png and /dev/null differ diff --git a/public/textures/create/speedometer.png b/public/textures/create/speedometer.png deleted file mode 100644 index 69fdec71..00000000 Binary files a/public/textures/create/speedometer.png and /dev/null differ diff --git a/public/textures/create/spout.png b/public/textures/create/spout.png deleted file mode 100644 index 273016dc..00000000 Binary files a/public/textures/create/spout.png and /dev/null differ diff --git a/public/textures/create/spruce_window.png b/public/textures/create/spruce_window.png deleted file mode 100644 index 632682b6..00000000 Binary files a/public/textures/create/spruce_window.png and /dev/null differ diff --git a/public/textures/create/spruce_window_pane.png b/public/textures/create/spruce_window_pane.png deleted file mode 100644 index 871d2188..00000000 Binary files a/public/textures/create/spruce_window_pane.png and /dev/null differ diff --git a/public/textures/create/steam_engine.png b/public/textures/create/steam_engine.png deleted file mode 100644 index cd801cf0..00000000 Binary files a/public/textures/create/steam_engine.png and /dev/null differ diff --git a/public/textures/create/steam_whistle.png b/public/textures/create/steam_whistle.png deleted file mode 100644 index 4aeb8cd9..00000000 Binary files a/public/textures/create/steam_whistle.png and /dev/null differ diff --git a/public/textures/create/sticker.png b/public/textures/create/sticker.png deleted file mode 100644 index 884b0223..00000000 Binary files a/public/textures/create/sticker.png and /dev/null differ diff --git a/public/textures/create/sticky_mechanical_piston.png b/public/textures/create/sticky_mechanical_piston.png deleted file mode 100644 index 52679894..00000000 Binary files a/public/textures/create/sticky_mechanical_piston.png and /dev/null differ diff --git a/public/textures/create/stock_link.png b/public/textures/create/stock_link.png deleted file mode 100644 index 35477034..00000000 Binary files a/public/textures/create/stock_link.png and /dev/null differ diff --git a/public/textures/create/stock_ticker.png b/public/textures/create/stock_ticker.png deleted file mode 100644 index 4b5e733e..00000000 Binary files a/public/textures/create/stock_ticker.png and /dev/null differ diff --git a/public/textures/create/stockpile_switch.png b/public/textures/create/stockpile_switch.png deleted file mode 100644 index 7204a385..00000000 Binary files a/public/textures/create/stockpile_switch.png and /dev/null differ diff --git a/public/textures/create/stressometer.png b/public/textures/create/stressometer.png deleted file mode 100644 index bba35e07..00000000 Binary files a/public/textures/create/stressometer.png and /dev/null differ diff --git a/public/textures/create/sturdy_sheet.png b/public/textures/create/sturdy_sheet.png deleted file mode 100644 index 20ca6d5b..00000000 Binary files a/public/textures/create/sturdy_sheet.png and /dev/null differ diff --git a/public/textures/create/super_glue.png b/public/textures/create/super_glue.png deleted file mode 100644 index 09dba998..00000000 Binary files a/public/textures/create/super_glue.png and /dev/null differ diff --git a/public/textures/create/sweet_roll.png b/public/textures/create/sweet_roll.png deleted file mode 100644 index bb50a6ba..00000000 Binary files a/public/textures/create/sweet_roll.png and /dev/null differ diff --git a/public/textures/create/tiled_glass.png b/public/textures/create/tiled_glass.png deleted file mode 100644 index f6c0f5ad..00000000 Binary files a/public/textures/create/tiled_glass.png and /dev/null differ diff --git a/public/textures/create/tiled_glass_pane.png b/public/textures/create/tiled_glass_pane.png deleted file mode 100644 index d78cbf65..00000000 Binary files a/public/textures/create/tiled_glass_pane.png and /dev/null differ diff --git a/public/textures/create/track.png b/public/textures/create/track.png deleted file mode 100644 index be5b0c96..00000000 Binary files a/public/textures/create/track.png and /dev/null differ diff --git a/public/textures/create/track_observer.png b/public/textures/create/track_observer.png deleted file mode 100644 index 14d301d9..00000000 Binary files a/public/textures/create/track_observer.png and /dev/null differ diff --git a/public/textures/create/track_signal.png b/public/textures/create/track_signal.png deleted file mode 100644 index d07f327f..00000000 Binary files a/public/textures/create/track_signal.png and /dev/null differ diff --git a/public/textures/create/track_station.png b/public/textures/create/track_station.png deleted file mode 100644 index dc78b59a..00000000 Binary files a/public/textures/create/track_station.png and /dev/null differ diff --git a/public/textures/create/train_door.png b/public/textures/create/train_door.png deleted file mode 100644 index bcb40aaf..00000000 Binary files a/public/textures/create/train_door.png and /dev/null differ diff --git a/public/textures/create/train_trapdoor.png b/public/textures/create/train_trapdoor.png deleted file mode 100644 index 53bb4c55..00000000 Binary files a/public/textures/create/train_trapdoor.png and /dev/null differ diff --git a/public/textures/create/transmitter.png b/public/textures/create/transmitter.png deleted file mode 100644 index 4163a822..00000000 Binary files a/public/textures/create/transmitter.png and /dev/null differ diff --git a/public/textures/create/tree_fertilizer.png b/public/textures/create/tree_fertilizer.png deleted file mode 100644 index 2de3800d..00000000 Binary files a/public/textures/create/tree_fertilizer.png and /dev/null differ diff --git a/public/textures/create/tuff_pillar.png b/public/textures/create/tuff_pillar.png deleted file mode 100644 index 4ef30aa7..00000000 Binary files a/public/textures/create/tuff_pillar.png and /dev/null differ diff --git a/public/textures/create/turntable.png b/public/textures/create/turntable.png deleted file mode 100644 index 87b3d489..00000000 Binary files a/public/textures/create/turntable.png and /dev/null differ diff --git a/public/textures/create/veridium.png b/public/textures/create/veridium.png deleted file mode 100644 index 85e9e47f..00000000 Binary files a/public/textures/create/veridium.png and /dev/null differ diff --git a/public/textures/create/veridium_pillar.png b/public/textures/create/veridium_pillar.png deleted file mode 100644 index bf9a7268..00000000 Binary files a/public/textures/create/veridium_pillar.png and /dev/null differ diff --git a/public/textures/create/vertical_framed_glass.png b/public/textures/create/vertical_framed_glass.png deleted file mode 100644 index 7a4bafe2..00000000 Binary files a/public/textures/create/vertical_framed_glass.png and /dev/null differ diff --git a/public/textures/create/vertical_framed_glass_pane.png b/public/textures/create/vertical_framed_glass_pane.png deleted file mode 100644 index 888b31b8..00000000 Binary files a/public/textures/create/vertical_framed_glass_pane.png and /dev/null differ diff --git a/public/textures/create/vertical_gearbox.png b/public/textures/create/vertical_gearbox.png deleted file mode 100644 index a1e5f5d2..00000000 Binary files a/public/textures/create/vertical_gearbox.png and /dev/null differ diff --git a/public/textures/create/wand_of_symmetry.png b/public/textures/create/wand_of_symmetry.png deleted file mode 100644 index 40251a8a..00000000 Binary files a/public/textures/create/wand_of_symmetry.png and /dev/null differ diff --git a/public/textures/create/warped_window.png b/public/textures/create/warped_window.png deleted file mode 100644 index 4f088f69..00000000 Binary files a/public/textures/create/warped_window.png and /dev/null differ diff --git a/public/textures/create/warped_window_pane.png b/public/textures/create/warped_window_pane.png deleted file mode 100644 index 4704bf3f..00000000 Binary files a/public/textures/create/warped_window_pane.png and /dev/null differ diff --git a/public/textures/create/water_wheel.png b/public/textures/create/water_wheel.png deleted file mode 100644 index d1d15252..00000000 Binary files a/public/textures/create/water_wheel.png and /dev/null differ diff --git a/public/textures/create/waxed_copper_shingle_slab.png b/public/textures/create/waxed_copper_shingle_slab.png deleted file mode 100644 index 3f5a853c..00000000 Binary files a/public/textures/create/waxed_copper_shingle_slab.png and /dev/null differ diff --git a/public/textures/create/waxed_copper_shingle_stairs.png b/public/textures/create/waxed_copper_shingle_stairs.png deleted file mode 100644 index 7ac53255..00000000 Binary files a/public/textures/create/waxed_copper_shingle_stairs.png and /dev/null differ diff --git a/public/textures/create/waxed_copper_shingles.png b/public/textures/create/waxed_copper_shingles.png deleted file mode 100644 index 6da0ce63..00000000 Binary files a/public/textures/create/waxed_copper_shingles.png and /dev/null differ diff --git a/public/textures/create/waxed_copper_tile_slab.png b/public/textures/create/waxed_copper_tile_slab.png deleted file mode 100644 index 5d3090f9..00000000 Binary files a/public/textures/create/waxed_copper_tile_slab.png and /dev/null differ diff --git a/public/textures/create/waxed_copper_tile_stairs.png b/public/textures/create/waxed_copper_tile_stairs.png deleted file mode 100644 index 1493bb57..00000000 Binary files a/public/textures/create/waxed_copper_tile_stairs.png and /dev/null differ diff --git a/public/textures/create/waxed_copper_tiles.png b/public/textures/create/waxed_copper_tiles.png deleted file mode 100644 index 8f102fad..00000000 Binary files a/public/textures/create/waxed_copper_tiles.png and /dev/null differ diff --git a/public/textures/create/waxed_exposed_copper_shingle_slab.png b/public/textures/create/waxed_exposed_copper_shingle_slab.png deleted file mode 100644 index dfbeea5c..00000000 Binary files a/public/textures/create/waxed_exposed_copper_shingle_slab.png and /dev/null differ diff --git a/public/textures/create/waxed_exposed_copper_shingle_stairs.png b/public/textures/create/waxed_exposed_copper_shingle_stairs.png deleted file mode 100644 index 0bbda0fb..00000000 Binary files a/public/textures/create/waxed_exposed_copper_shingle_stairs.png and /dev/null differ diff --git a/public/textures/create/waxed_exposed_copper_shingles.png b/public/textures/create/waxed_exposed_copper_shingles.png deleted file mode 100644 index 9440b338..00000000 Binary files a/public/textures/create/waxed_exposed_copper_shingles.png and /dev/null differ diff --git a/public/textures/create/waxed_exposed_copper_tile_slab.png b/public/textures/create/waxed_exposed_copper_tile_slab.png deleted file mode 100644 index f84f2604..00000000 Binary files a/public/textures/create/waxed_exposed_copper_tile_slab.png and /dev/null differ diff --git a/public/textures/create/waxed_exposed_copper_tile_stairs.png b/public/textures/create/waxed_exposed_copper_tile_stairs.png deleted file mode 100644 index 3300a270..00000000 Binary files a/public/textures/create/waxed_exposed_copper_tile_stairs.png and /dev/null differ diff --git a/public/textures/create/waxed_exposed_copper_tiles.png b/public/textures/create/waxed_exposed_copper_tiles.png deleted file mode 100644 index 4c19ee28..00000000 Binary files a/public/textures/create/waxed_exposed_copper_tiles.png and /dev/null differ diff --git a/public/textures/create/waxed_oxidized_copper_shingle_slab.png b/public/textures/create/waxed_oxidized_copper_shingle_slab.png deleted file mode 100644 index 66957dcc..00000000 Binary files a/public/textures/create/waxed_oxidized_copper_shingle_slab.png and /dev/null differ diff --git a/public/textures/create/waxed_oxidized_copper_shingle_stairs.png b/public/textures/create/waxed_oxidized_copper_shingle_stairs.png deleted file mode 100644 index 79ece7a6..00000000 Binary files a/public/textures/create/waxed_oxidized_copper_shingle_stairs.png and /dev/null differ diff --git a/public/textures/create/waxed_oxidized_copper_shingles.png b/public/textures/create/waxed_oxidized_copper_shingles.png deleted file mode 100644 index 034b6841..00000000 Binary files a/public/textures/create/waxed_oxidized_copper_shingles.png and /dev/null differ diff --git a/public/textures/create/waxed_oxidized_copper_tile_slab.png b/public/textures/create/waxed_oxidized_copper_tile_slab.png deleted file mode 100644 index 35323db7..00000000 Binary files a/public/textures/create/waxed_oxidized_copper_tile_slab.png and /dev/null differ diff --git a/public/textures/create/waxed_oxidized_copper_tile_stairs.png b/public/textures/create/waxed_oxidized_copper_tile_stairs.png deleted file mode 100644 index 64f7c69f..00000000 Binary files a/public/textures/create/waxed_oxidized_copper_tile_stairs.png and /dev/null differ diff --git a/public/textures/create/waxed_oxidized_copper_tiles.png b/public/textures/create/waxed_oxidized_copper_tiles.png deleted file mode 100644 index cde16509..00000000 Binary files a/public/textures/create/waxed_oxidized_copper_tiles.png and /dev/null differ diff --git a/public/textures/create/waxed_weathered_copper_shingle_slab.png b/public/textures/create/waxed_weathered_copper_shingle_slab.png deleted file mode 100644 index f54dbc0e..00000000 Binary files a/public/textures/create/waxed_weathered_copper_shingle_slab.png and /dev/null differ diff --git a/public/textures/create/waxed_weathered_copper_shingle_stairs.png b/public/textures/create/waxed_weathered_copper_shingle_stairs.png deleted file mode 100644 index 5d0537b4..00000000 Binary files a/public/textures/create/waxed_weathered_copper_shingle_stairs.png and /dev/null differ diff --git a/public/textures/create/waxed_weathered_copper_shingles.png b/public/textures/create/waxed_weathered_copper_shingles.png deleted file mode 100644 index 4def1f62..00000000 Binary files a/public/textures/create/waxed_weathered_copper_shingles.png and /dev/null differ diff --git a/public/textures/create/waxed_weathered_copper_tile_slab.png b/public/textures/create/waxed_weathered_copper_tile_slab.png deleted file mode 100644 index 4443ab6a..00000000 Binary files a/public/textures/create/waxed_weathered_copper_tile_slab.png and /dev/null differ diff --git a/public/textures/create/waxed_weathered_copper_tile_stairs.png b/public/textures/create/waxed_weathered_copper_tile_stairs.png deleted file mode 100644 index af7815a6..00000000 Binary files a/public/textures/create/waxed_weathered_copper_tile_stairs.png and /dev/null differ diff --git a/public/textures/create/waxed_weathered_copper_tiles.png b/public/textures/create/waxed_weathered_copper_tiles.png deleted file mode 100644 index 9ff66fea..00000000 Binary files a/public/textures/create/waxed_weathered_copper_tiles.png and /dev/null differ diff --git a/public/textures/create/weathered_copper_shingle_slab.png b/public/textures/create/weathered_copper_shingle_slab.png deleted file mode 100644 index f54dbc0e..00000000 Binary files a/public/textures/create/weathered_copper_shingle_slab.png and /dev/null differ diff --git a/public/textures/create/weathered_copper_shingle_stairs.png b/public/textures/create/weathered_copper_shingle_stairs.png deleted file mode 100644 index 5d0537b4..00000000 Binary files a/public/textures/create/weathered_copper_shingle_stairs.png and /dev/null differ diff --git a/public/textures/create/weathered_copper_shingles.png b/public/textures/create/weathered_copper_shingles.png deleted file mode 100644 index 4def1f62..00000000 Binary files a/public/textures/create/weathered_copper_shingles.png and /dev/null differ diff --git a/public/textures/create/weathered_copper_tile_slab.png b/public/textures/create/weathered_copper_tile_slab.png deleted file mode 100644 index 4443ab6a..00000000 Binary files a/public/textures/create/weathered_copper_tile_slab.png and /dev/null differ diff --git a/public/textures/create/weathered_copper_tile_stairs.png b/public/textures/create/weathered_copper_tile_stairs.png deleted file mode 100644 index af7815a6..00000000 Binary files a/public/textures/create/weathered_copper_tile_stairs.png and /dev/null differ diff --git a/public/textures/create/weathered_copper_tiles.png b/public/textures/create/weathered_copper_tiles.png deleted file mode 100644 index 9ff66fea..00000000 Binary files a/public/textures/create/weathered_copper_tiles.png and /dev/null differ diff --git a/public/textures/create/weathered_iron_block.png b/public/textures/create/weathered_iron_block.png deleted file mode 100644 index 0246facd..00000000 Binary files a/public/textures/create/weathered_iron_block.png and /dev/null differ diff --git a/public/textures/create/weathered_iron_window.png b/public/textures/create/weathered_iron_window.png deleted file mode 100644 index cdc685a6..00000000 Binary files a/public/textures/create/weathered_iron_window.png and /dev/null differ diff --git a/public/textures/create/weathered_iron_window_pane.png b/public/textures/create/weathered_iron_window_pane.png deleted file mode 100644 index d814f444..00000000 Binary files a/public/textures/create/weathered_iron_window_pane.png and /dev/null differ diff --git a/public/textures/create/weighted_ejector.png b/public/textures/create/weighted_ejector.png deleted file mode 100644 index a78b36f3..00000000 Binary files a/public/textures/create/weighted_ejector.png and /dev/null differ diff --git a/public/textures/create/wheat_flour.png b/public/textures/create/wheat_flour.png deleted file mode 100644 index 64fffbc7..00000000 Binary files a/public/textures/create/wheat_flour.png and /dev/null differ diff --git a/public/textures/create/whisk.png b/public/textures/create/whisk.png deleted file mode 100644 index d38b7e3b..00000000 Binary files a/public/textures/create/whisk.png and /dev/null differ diff --git a/public/textures/create/white_postbox.png b/public/textures/create/white_postbox.png deleted file mode 100644 index 81086823..00000000 Binary files a/public/textures/create/white_postbox.png and /dev/null differ diff --git a/public/textures/create/white_sail.png b/public/textures/create/white_sail.png deleted file mode 100644 index 19599811..00000000 Binary files a/public/textures/create/white_sail.png and /dev/null differ diff --git a/public/textures/create/windmill_bearing.png b/public/textures/create/windmill_bearing.png deleted file mode 100644 index f12eb7f0..00000000 Binary files a/public/textures/create/windmill_bearing.png and /dev/null differ diff --git a/public/textures/create/wooden_bracket.png b/public/textures/create/wooden_bracket.png deleted file mode 100644 index 8c7b3b80..00000000 Binary files a/public/textures/create/wooden_bracket.png and /dev/null differ diff --git a/public/textures/create/wrench.png b/public/textures/create/wrench.png deleted file mode 100644 index 6000b91a..00000000 Binary files a/public/textures/create/wrench.png and /dev/null differ diff --git a/public/textures/create/zinc_block.png b/public/textures/create/zinc_block.png deleted file mode 100644 index a2b73762..00000000 Binary files a/public/textures/create/zinc_block.png and /dev/null differ diff --git a/public/textures/create/zinc_ingot.png b/public/textures/create/zinc_ingot.png deleted file mode 100644 index 54957983..00000000 Binary files a/public/textures/create/zinc_ingot.png and /dev/null differ diff --git a/public/textures/create/zinc_nugget.png b/public/textures/create/zinc_nugget.png deleted file mode 100644 index 69037227..00000000 Binary files a/public/textures/create/zinc_nugget.png and /dev/null differ diff --git a/public/textures/create/zinc_ore.png b/public/textures/create/zinc_ore.png deleted file mode 100644 index 129bfaca..00000000 Binary files a/public/textures/create/zinc_ore.png and /dev/null differ diff --git a/public/textures/create_connected/brake.png b/public/textures/create_connected/brake.png deleted file mode 100644 index 2a6e5ab1..00000000 Binary files a/public/textures/create_connected/brake.png and /dev/null differ diff --git a/public/textures/create_connected/brass_gearbox.png b/public/textures/create_connected/brass_gearbox.png deleted file mode 100644 index 324a5e02..00000000 Binary files a/public/textures/create_connected/brass_gearbox.png and /dev/null differ diff --git a/public/textures/create_connected/centrifugal_clutch.png b/public/textures/create_connected/centrifugal_clutch.png deleted file mode 100644 index 1a920354..00000000 Binary files a/public/textures/create_connected/centrifugal_clutch.png and /dev/null differ diff --git a/public/textures/create_connected/charged_kinetic_battery.png b/public/textures/create_connected/charged_kinetic_battery.png deleted file mode 100644 index a87e97a7..00000000 Binary files a/public/textures/create_connected/charged_kinetic_battery.png and /dev/null differ diff --git a/public/textures/create_connected/control_chip.png b/public/textures/create_connected/control_chip.png deleted file mode 100644 index 3a6c5cbc..00000000 Binary files a/public/textures/create_connected/control_chip.png and /dev/null differ diff --git a/public/textures/create_connected/copycat_beam.png b/public/textures/create_connected/copycat_beam.png deleted file mode 100644 index 6cc385ee..00000000 Binary files a/public/textures/create_connected/copycat_beam.png and /dev/null differ diff --git a/public/textures/create_connected/copycat_block.png b/public/textures/create_connected/copycat_block.png deleted file mode 100644 index 699e0e21..00000000 Binary files a/public/textures/create_connected/copycat_block.png and /dev/null differ diff --git a/public/textures/create_connected/copycat_board.png b/public/textures/create_connected/copycat_board.png deleted file mode 100644 index 73510054..00000000 Binary files a/public/textures/create_connected/copycat_board.png and /dev/null differ diff --git a/public/textures/create_connected/copycat_box.png b/public/textures/create_connected/copycat_box.png deleted file mode 100644 index 80dcb757..00000000 Binary files a/public/textures/create_connected/copycat_box.png and /dev/null differ diff --git a/public/textures/create_connected/copycat_catwalk.png b/public/textures/create_connected/copycat_catwalk.png deleted file mode 100644 index 068bb55b..00000000 Binary files a/public/textures/create_connected/copycat_catwalk.png and /dev/null differ diff --git a/public/textures/create_connected/copycat_fence.png b/public/textures/create_connected/copycat_fence.png deleted file mode 100644 index fcefeebf..00000000 Binary files a/public/textures/create_connected/copycat_fence.png and /dev/null differ diff --git a/public/textures/create_connected/copycat_fence_gate.png b/public/textures/create_connected/copycat_fence_gate.png deleted file mode 100644 index 62f9afb5..00000000 Binary files a/public/textures/create_connected/copycat_fence_gate.png and /dev/null differ diff --git a/public/textures/create_connected/copycat_slab.png b/public/textures/create_connected/copycat_slab.png deleted file mode 100644 index 4a3480e3..00000000 Binary files a/public/textures/create_connected/copycat_slab.png and /dev/null differ diff --git a/public/textures/create_connected/copycat_stairs.png b/public/textures/create_connected/copycat_stairs.png deleted file mode 100644 index 996eadb8..00000000 Binary files a/public/textures/create_connected/copycat_stairs.png and /dev/null differ diff --git a/public/textures/create_connected/copycat_vertical_step.png b/public/textures/create_connected/copycat_vertical_step.png deleted file mode 100644 index 1502f734..00000000 Binary files a/public/textures/create_connected/copycat_vertical_step.png and /dev/null differ diff --git a/public/textures/create_connected/copycat_wall.png b/public/textures/create_connected/copycat_wall.png deleted file mode 100644 index 89d81ec2..00000000 Binary files a/public/textures/create_connected/copycat_wall.png and /dev/null differ diff --git a/public/textures/create_connected/crank_wheel.png b/public/textures/create_connected/crank_wheel.png deleted file mode 100644 index 31f0fa25..00000000 Binary files a/public/textures/create_connected/crank_wheel.png and /dev/null differ diff --git a/public/textures/create_connected/creative_fluid_vessel.png b/public/textures/create_connected/creative_fluid_vessel.png deleted file mode 100644 index 3242cb73..00000000 Binary files a/public/textures/create_connected/creative_fluid_vessel.png and /dev/null differ diff --git a/public/textures/create_connected/cross_connector.png b/public/textures/create_connected/cross_connector.png deleted file mode 100644 index 3205effe..00000000 Binary files a/public/textures/create_connected/cross_connector.png and /dev/null differ diff --git a/public/textures/create_connected/empty_fan_catalyst.png b/public/textures/create_connected/empty_fan_catalyst.png deleted file mode 100644 index 36193392..00000000 Binary files a/public/textures/create_connected/empty_fan_catalyst.png and /dev/null differ diff --git a/public/textures/create_connected/encased_chain_cogwheel.png b/public/textures/create_connected/encased_chain_cogwheel.png deleted file mode 100644 index db807589..00000000 Binary files a/public/textures/create_connected/encased_chain_cogwheel.png and /dev/null differ diff --git a/public/textures/create_connected/fan_blasting_catalyst.png b/public/textures/create_connected/fan_blasting_catalyst.png deleted file mode 100644 index ac07ee91..00000000 Binary files a/public/textures/create_connected/fan_blasting_catalyst.png and /dev/null differ diff --git a/public/textures/create_connected/fan_ending_catalyst_dragon_head.png b/public/textures/create_connected/fan_ending_catalyst_dragon_head.png deleted file mode 100644 index fff5d8fd..00000000 Binary files a/public/textures/create_connected/fan_ending_catalyst_dragon_head.png and /dev/null differ diff --git a/public/textures/create_connected/fan_ending_catalyst_dragons_breath.png b/public/textures/create_connected/fan_ending_catalyst_dragons_breath.png deleted file mode 100644 index 7ecad9d3..00000000 Binary files a/public/textures/create_connected/fan_ending_catalyst_dragons_breath.png and /dev/null differ diff --git a/public/textures/create_connected/fan_freezing_catalyst.png b/public/textures/create_connected/fan_freezing_catalyst.png deleted file mode 100644 index c68bebd0..00000000 Binary files a/public/textures/create_connected/fan_freezing_catalyst.png and /dev/null differ diff --git a/public/textures/create_connected/fan_haunting_catalyst.png b/public/textures/create_connected/fan_haunting_catalyst.png deleted file mode 100644 index 0544b907..00000000 Binary files a/public/textures/create_connected/fan_haunting_catalyst.png and /dev/null differ diff --git a/public/textures/create_connected/fan_sanding_catalyst.png b/public/textures/create_connected/fan_sanding_catalyst.png deleted file mode 100644 index 9d7d3322..00000000 Binary files a/public/textures/create_connected/fan_sanding_catalyst.png and /dev/null differ diff --git a/public/textures/create_connected/fan_smoking_catalyst.png b/public/textures/create_connected/fan_smoking_catalyst.png deleted file mode 100644 index 7135cc37..00000000 Binary files a/public/textures/create_connected/fan_smoking_catalyst.png and /dev/null differ diff --git a/public/textures/create_connected/fan_splashing_catalyst.png b/public/textures/create_connected/fan_splashing_catalyst.png deleted file mode 100644 index ae991c5f..00000000 Binary files a/public/textures/create_connected/fan_splashing_catalyst.png and /dev/null differ diff --git a/public/textures/create_connected/fluid_vessel.png b/public/textures/create_connected/fluid_vessel.png deleted file mode 100644 index 939c0b83..00000000 Binary files a/public/textures/create_connected/fluid_vessel.png and /dev/null differ diff --git a/public/textures/create_connected/freewheel_clutch.png b/public/textures/create_connected/freewheel_clutch.png deleted file mode 100644 index 7c1e7d6d..00000000 Binary files a/public/textures/create_connected/freewheel_clutch.png and /dev/null differ diff --git a/public/textures/create_connected/inventory_access_port.png b/public/textures/create_connected/inventory_access_port.png deleted file mode 100644 index 638a9002..00000000 Binary files a/public/textures/create_connected/inventory_access_port.png and /dev/null differ diff --git a/public/textures/create_connected/inventory_bridge.png b/public/textures/create_connected/inventory_bridge.png deleted file mode 100644 index ae12ecb4..00000000 Binary files a/public/textures/create_connected/inventory_bridge.png and /dev/null differ diff --git a/public/textures/create_connected/inverted_clutch.png b/public/textures/create_connected/inverted_clutch.png deleted file mode 100644 index 6ccee985..00000000 Binary files a/public/textures/create_connected/inverted_clutch.png and /dev/null differ diff --git a/public/textures/create_connected/inverted_gearshift.png b/public/textures/create_connected/inverted_gearshift.png deleted file mode 100644 index 222bbfdb..00000000 Binary files a/public/textures/create_connected/inverted_gearshift.png and /dev/null differ diff --git a/public/textures/create_connected/item_silo.png b/public/textures/create_connected/item_silo.png deleted file mode 100644 index 568da6a9..00000000 Binary files a/public/textures/create_connected/item_silo.png and /dev/null differ diff --git a/public/textures/create_connected/kinetic_battery.png b/public/textures/create_connected/kinetic_battery.png deleted file mode 100644 index 88ce01f9..00000000 Binary files a/public/textures/create_connected/kinetic_battery.png and /dev/null differ diff --git a/public/textures/create_connected/kinetic_bridge.png b/public/textures/create_connected/kinetic_bridge.png deleted file mode 100644 index 48046971..00000000 Binary files a/public/textures/create_connected/kinetic_bridge.png and /dev/null differ diff --git a/public/textures/create_connected/large_crank_wheel.png b/public/textures/create_connected/large_crank_wheel.png deleted file mode 100644 index 5952286d..00000000 Binary files a/public/textures/create_connected/large_crank_wheel.png and /dev/null differ diff --git a/public/textures/create_connected/linked_transmitter.png b/public/textures/create_connected/linked_transmitter.png deleted file mode 100644 index 07ef0767..00000000 Binary files a/public/textures/create_connected/linked_transmitter.png and /dev/null differ diff --git a/public/textures/create_connected/music_disc_elevator.png b/public/textures/create_connected/music_disc_elevator.png deleted file mode 100644 index 41d31f97..00000000 Binary files a/public/textures/create_connected/music_disc_elevator.png and /dev/null differ diff --git a/public/textures/create_connected/music_disc_interlude.png b/public/textures/create_connected/music_disc_interlude.png deleted file mode 100644 index 503a0eae..00000000 Binary files a/public/textures/create_connected/music_disc_interlude.png and /dev/null differ diff --git a/public/textures/create_connected/overstress_clutch.png b/public/textures/create_connected/overstress_clutch.png deleted file mode 100644 index 14cfbd4f..00000000 Binary files a/public/textures/create_connected/overstress_clutch.png and /dev/null differ diff --git a/public/textures/create_connected/parallel_gearbox.png b/public/textures/create_connected/parallel_gearbox.png deleted file mode 100644 index bcae9945..00000000 Binary files a/public/textures/create_connected/parallel_gearbox.png and /dev/null differ diff --git a/public/textures/create_connected/redstone_link_wildcard.png b/public/textures/create_connected/redstone_link_wildcard.png deleted file mode 100644 index 924aadd3..00000000 Binary files a/public/textures/create_connected/redstone_link_wildcard.png and /dev/null differ diff --git a/public/textures/create_connected/sequenced_pulse_generator.png b/public/textures/create_connected/sequenced_pulse_generator.png deleted file mode 100644 index 4fb2cf09..00000000 Binary files a/public/textures/create_connected/sequenced_pulse_generator.png and /dev/null differ diff --git a/public/textures/create_connected/shear_pin.png b/public/textures/create_connected/shear_pin.png deleted file mode 100644 index e92b578d..00000000 Binary files a/public/textures/create_connected/shear_pin.png and /dev/null differ diff --git a/public/textures/create_connected/six_way_gearbox.png b/public/textures/create_connected/six_way_gearbox.png deleted file mode 100644 index 35889adc..00000000 Binary files a/public/textures/create_connected/six_way_gearbox.png and /dev/null differ diff --git a/public/textures/create_connected/vertical_brass_gearbox.png b/public/textures/create_connected/vertical_brass_gearbox.png deleted file mode 100644 index b50b492f..00000000 Binary files a/public/textures/create_connected/vertical_brass_gearbox.png and /dev/null differ diff --git a/public/textures/create_connected/vertical_parallel_gearbox.png b/public/textures/create_connected/vertical_parallel_gearbox.png deleted file mode 100644 index 672f78bf..00000000 Binary files a/public/textures/create_connected/vertical_parallel_gearbox.png and /dev/null differ diff --git a/public/textures/create_connected/vertical_six_way_gearbox.png b/public/textures/create_connected/vertical_six_way_gearbox.png deleted file mode 100644 index 155238ff..00000000 Binary files a/public/textures/create_connected/vertical_six_way_gearbox.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/black_dye_bucket.png b/public/textures/create_dragons_plus/black_dye_bucket.png deleted file mode 100644 index e1ecbc3f..00000000 Binary files a/public/textures/create_dragons_plus/black_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/blaze_upgrade_smithing_template.png b/public/textures/create_dragons_plus/blaze_upgrade_smithing_template.png deleted file mode 100644 index 65058ac4..00000000 Binary files a/public/textures/create_dragons_plus/blaze_upgrade_smithing_template.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/blue_dye_bucket.png b/public/textures/create_dragons_plus/blue_dye_bucket.png deleted file mode 100644 index 49fb5d70..00000000 Binary files a/public/textures/create_dragons_plus/blue_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/brown_dye_bucket.png b/public/textures/create_dragons_plus/brown_dye_bucket.png deleted file mode 100644 index e5d829fb..00000000 Binary files a/public/textures/create_dragons_plus/brown_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/cyan_dye_bucket.png b/public/textures/create_dragons_plus/cyan_dye_bucket.png deleted file mode 100644 index 9603995e..00000000 Binary files a/public/textures/create_dragons_plus/cyan_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/dragon_breath_bucket.png b/public/textures/create_dragons_plus/dragon_breath_bucket.png deleted file mode 100644 index 23474478..00000000 Binary files a/public/textures/create_dragons_plus/dragon_breath_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/fluid_hatch.png b/public/textures/create_dragons_plus/fluid_hatch.png deleted file mode 100644 index a57d1bf9..00000000 Binary files a/public/textures/create_dragons_plus/fluid_hatch.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/gray_dye_bucket.png b/public/textures/create_dragons_plus/gray_dye_bucket.png deleted file mode 100644 index a4184a1e..00000000 Binary files a/public/textures/create_dragons_plus/gray_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/green_dye_bucket.png b/public/textures/create_dragons_plus/green_dye_bucket.png deleted file mode 100644 index 0e3a37f4..00000000 Binary files a/public/textures/create_dragons_plus/green_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/light_blue_dye_bucket.png b/public/textures/create_dragons_plus/light_blue_dye_bucket.png deleted file mode 100644 index 4709f4a0..00000000 Binary files a/public/textures/create_dragons_plus/light_blue_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/light_gray_dye_bucket.png b/public/textures/create_dragons_plus/light_gray_dye_bucket.png deleted file mode 100644 index 5e6f10c6..00000000 Binary files a/public/textures/create_dragons_plus/light_gray_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/lime_dye_bucket.png b/public/textures/create_dragons_plus/lime_dye_bucket.png deleted file mode 100644 index 017a6942..00000000 Binary files a/public/textures/create_dragons_plus/lime_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/magenta_dye_bucket.png b/public/textures/create_dragons_plus/magenta_dye_bucket.png deleted file mode 100644 index f2bfeaa3..00000000 Binary files a/public/textures/create_dragons_plus/magenta_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/orange_dye_bucket.png b/public/textures/create_dragons_plus/orange_dye_bucket.png deleted file mode 100644 index 250b4611..00000000 Binary files a/public/textures/create_dragons_plus/orange_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/pink_dye_bucket.png b/public/textures/create_dragons_plus/pink_dye_bucket.png deleted file mode 100644 index 9041d6d6..00000000 Binary files a/public/textures/create_dragons_plus/pink_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/purple_dye_bucket.png b/public/textures/create_dragons_plus/purple_dye_bucket.png deleted file mode 100644 index 7e5f2613..00000000 Binary files a/public/textures/create_dragons_plus/purple_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/red_dye_bucket.png b/public/textures/create_dragons_plus/red_dye_bucket.png deleted file mode 100644 index 8f4a654a..00000000 Binary files a/public/textures/create_dragons_plus/red_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/white_dye_bucket.png b/public/textures/create_dragons_plus/white_dye_bucket.png deleted file mode 100644 index f3fd38a6..00000000 Binary files a/public/textures/create_dragons_plus/white_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_dragons_plus/yellow_dye_bucket.png b/public/textures/create_dragons_plus/yellow_dye_bucket.png deleted file mode 100644 index fb709337..00000000 Binary files a/public/textures/create_dragons_plus/yellow_dye_bucket.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/blaze_enchanter.png b/public/textures/create_enchantment_industry/blaze_enchanter.png deleted file mode 100644 index 5e2752ef..00000000 Binary files a/public/textures/create_enchantment_industry/blaze_enchanter.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/blaze_forger.png b/public/textures/create_enchantment_industry/blaze_forger.png deleted file mode 100644 index d8b274fe..00000000 Binary files a/public/textures/create_enchantment_industry/blaze_forger.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/enchanting_template.png b/public/textures/create_enchantment_industry/enchanting_template.png deleted file mode 100644 index bfb543e5..00000000 Binary files a/public/textures/create_enchantment_industry/enchanting_template.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/experience_bucket.png b/public/textures/create_enchantment_industry/experience_bucket.png deleted file mode 100644 index 780c445f..00000000 Binary files a/public/textures/create_enchantment_industry/experience_bucket.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/experience_cake.png b/public/textures/create_enchantment_industry/experience_cake.png deleted file mode 100644 index 68189d3b..00000000 Binary files a/public/textures/create_enchantment_industry/experience_cake.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/experience_cake_slice.png b/public/textures/create_enchantment_industry/experience_cake_slice.png deleted file mode 100644 index 3d45b219..00000000 Binary files a/public/textures/create_enchantment_industry/experience_cake_slice.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/experience_hatch.png b/public/textures/create_enchantment_industry/experience_hatch.png deleted file mode 100644 index 4c55919a..00000000 Binary files a/public/textures/create_enchantment_industry/experience_hatch.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/experience_lantern.png b/public/textures/create_enchantment_industry/experience_lantern.png deleted file mode 100644 index a7ec2e36..00000000 Binary files a/public/textures/create_enchantment_industry/experience_lantern.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/mechanical_grindstone.png b/public/textures/create_enchantment_industry/mechanical_grindstone.png deleted file mode 100644 index acf57ce5..00000000 Binary files a/public/textures/create_enchantment_industry/mechanical_grindstone.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/printer.png b/public/textures/create_enchantment_industry/printer.png deleted file mode 100644 index 6922b5dd..00000000 Binary files a/public/textures/create_enchantment_industry/printer.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/super_enchanting_template.png b/public/textures/create_enchantment_industry/super_enchanting_template.png deleted file mode 100644 index 0ce77257..00000000 Binary files a/public/textures/create_enchantment_industry/super_enchanting_template.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/super_experience_block.png b/public/textures/create_enchantment_industry/super_experience_block.png deleted file mode 100644 index eaa9ad58..00000000 Binary files a/public/textures/create_enchantment_industry/super_experience_block.png and /dev/null differ diff --git a/public/textures/create_enchantment_industry/super_experience_nugget.png b/public/textures/create_enchantment_industry/super_experience_nugget.png deleted file mode 100644 index 2e33103c..00000000 Binary files a/public/textures/create_enchantment_industry/super_experience_nugget.png and /dev/null differ diff --git a/public/textures/create_integrated_farming/chicken_roost.png b/public/textures/create_integrated_farming/chicken_roost.png deleted file mode 100644 index 9ec31f41..00000000 Binary files a/public/textures/create_integrated_farming/chicken_roost.png and /dev/null differ diff --git a/public/textures/create_integrated_farming/fishing_net.png b/public/textures/create_integrated_farming/fishing_net.png deleted file mode 100644 index 70c5a832..00000000 Binary files a/public/textures/create_integrated_farming/fishing_net.png and /dev/null differ diff --git a/public/textures/create_integrated_farming/roost.png b/public/textures/create_integrated_farming/roost.png deleted file mode 100644 index daeda06e..00000000 Binary files a/public/textures/create_integrated_farming/roost.png and /dev/null differ diff --git a/public/textures/createaddition/alternator.png b/public/textures/createaddition/alternator.png deleted file mode 100644 index 78e60755..00000000 Binary files a/public/textures/createaddition/alternator.png and /dev/null differ diff --git a/public/textures/createaddition/barbed_wire.png b/public/textures/createaddition/barbed_wire.png deleted file mode 100644 index 64b0598f..00000000 Binary files a/public/textures/createaddition/barbed_wire.png and /dev/null differ diff --git a/public/textures/createaddition/bioethanol_bucket.png b/public/textures/createaddition/bioethanol_bucket.png deleted file mode 100644 index 1408ac2c..00000000 Binary files a/public/textures/createaddition/bioethanol_bucket.png and /dev/null differ diff --git a/public/textures/createaddition/biomass_pellet.png b/public/textures/createaddition/biomass_pellet.png deleted file mode 100644 index 1d6e2108..00000000 Binary files a/public/textures/createaddition/biomass_pellet.png and /dev/null differ diff --git a/public/textures/createaddition/biomass_pellet_block.png b/public/textures/createaddition/biomass_pellet_block.png deleted file mode 100644 index f87c2e85..00000000 Binary files a/public/textures/createaddition/biomass_pellet_block.png and /dev/null differ diff --git a/public/textures/createaddition/brass_rod.png b/public/textures/createaddition/brass_rod.png deleted file mode 100644 index 638ed778..00000000 Binary files a/public/textures/createaddition/brass_rod.png and /dev/null differ diff --git a/public/textures/createaddition/capacitor.png b/public/textures/createaddition/capacitor.png deleted file mode 100644 index d97ab5ed..00000000 Binary files a/public/textures/createaddition/capacitor.png and /dev/null differ diff --git a/public/textures/createaddition/chocolate_cake.png b/public/textures/createaddition/chocolate_cake.png deleted file mode 100644 index f5b19549..00000000 Binary files a/public/textures/createaddition/chocolate_cake.png and /dev/null differ diff --git a/public/textures/createaddition/connector.png b/public/textures/createaddition/connector.png deleted file mode 100644 index 715514f4..00000000 Binary files a/public/textures/createaddition/connector.png and /dev/null differ diff --git a/public/textures/createaddition/copper_rod.png b/public/textures/createaddition/copper_rod.png deleted file mode 100644 index cc589dab..00000000 Binary files a/public/textures/createaddition/copper_rod.png and /dev/null differ diff --git a/public/textures/createaddition/copper_spool.png b/public/textures/createaddition/copper_spool.png deleted file mode 100644 index 478fc9cb..00000000 Binary files a/public/textures/createaddition/copper_spool.png and /dev/null differ diff --git a/public/textures/createaddition/copper_wire.png b/public/textures/createaddition/copper_wire.png deleted file mode 100644 index ea583d43..00000000 Binary files a/public/textures/createaddition/copper_wire.png and /dev/null differ diff --git a/public/textures/createaddition/creative_energy.png b/public/textures/createaddition/creative_energy.png deleted file mode 100644 index b4bd8660..00000000 Binary files a/public/textures/createaddition/creative_energy.png and /dev/null differ diff --git a/public/textures/createaddition/diamond_grit.png b/public/textures/createaddition/diamond_grit.png deleted file mode 100644 index 076092a9..00000000 Binary files a/public/textures/createaddition/diamond_grit.png and /dev/null differ diff --git a/public/textures/createaddition/diamond_grit_sandpaper.png b/public/textures/createaddition/diamond_grit_sandpaper.png deleted file mode 100644 index f79c433a..00000000 Binary files a/public/textures/createaddition/diamond_grit_sandpaper.png and /dev/null differ diff --git a/public/textures/createaddition/digital_adapter.png b/public/textures/createaddition/digital_adapter.png deleted file mode 100644 index e43442cc..00000000 Binary files a/public/textures/createaddition/digital_adapter.png and /dev/null differ diff --git a/public/textures/createaddition/electric_motor.png b/public/textures/createaddition/electric_motor.png deleted file mode 100644 index 15bd73f7..00000000 Binary files a/public/textures/createaddition/electric_motor.png and /dev/null differ diff --git a/public/textures/createaddition/electrum_amulet.png b/public/textures/createaddition/electrum_amulet.png deleted file mode 100644 index c99c74c8..00000000 Binary files a/public/textures/createaddition/electrum_amulet.png and /dev/null differ diff --git a/public/textures/createaddition/electrum_block.png b/public/textures/createaddition/electrum_block.png deleted file mode 100644 index 753defd6..00000000 Binary files a/public/textures/createaddition/electrum_block.png and /dev/null differ diff --git a/public/textures/createaddition/electrum_ingot.png b/public/textures/createaddition/electrum_ingot.png deleted file mode 100644 index 174117b7..00000000 Binary files a/public/textures/createaddition/electrum_ingot.png and /dev/null differ diff --git a/public/textures/createaddition/electrum_nugget.png b/public/textures/createaddition/electrum_nugget.png deleted file mode 100644 index 2ab9c9a4..00000000 Binary files a/public/textures/createaddition/electrum_nugget.png and /dev/null differ diff --git a/public/textures/createaddition/electrum_rod.png b/public/textures/createaddition/electrum_rod.png deleted file mode 100644 index 7ec1e3d9..00000000 Binary files a/public/textures/createaddition/electrum_rod.png and /dev/null differ diff --git a/public/textures/createaddition/electrum_sheet.png b/public/textures/createaddition/electrum_sheet.png deleted file mode 100644 index 87b82cf0..00000000 Binary files a/public/textures/createaddition/electrum_sheet.png and /dev/null differ diff --git a/public/textures/createaddition/electrum_spool.png b/public/textures/createaddition/electrum_spool.png deleted file mode 100644 index 1b4de92e..00000000 Binary files a/public/textures/createaddition/electrum_spool.png and /dev/null differ diff --git a/public/textures/createaddition/electrum_wire.png b/public/textures/createaddition/electrum_wire.png deleted file mode 100644 index 03b0d8d1..00000000 Binary files a/public/textures/createaddition/electrum_wire.png and /dev/null differ diff --git a/public/textures/createaddition/festive_spool.png b/public/textures/createaddition/festive_spool.png deleted file mode 100644 index 0660d019..00000000 Binary files a/public/textures/createaddition/festive_spool.png and /dev/null differ diff --git a/public/textures/createaddition/gold_rod.png b/public/textures/createaddition/gold_rod.png deleted file mode 100644 index 24055a6e..00000000 Binary files a/public/textures/createaddition/gold_rod.png and /dev/null differ diff --git a/public/textures/createaddition/gold_spool.png b/public/textures/createaddition/gold_spool.png deleted file mode 100644 index 2bf345b7..00000000 Binary files a/public/textures/createaddition/gold_spool.png and /dev/null differ diff --git a/public/textures/createaddition/gold_wire.png b/public/textures/createaddition/gold_wire.png deleted file mode 100644 index ea43bc06..00000000 Binary files a/public/textures/createaddition/gold_wire.png and /dev/null differ diff --git a/public/textures/createaddition/honey_cake.png b/public/textures/createaddition/honey_cake.png deleted file mode 100644 index 12c264a0..00000000 Binary files a/public/textures/createaddition/honey_cake.png and /dev/null differ diff --git a/public/textures/createaddition/iron_rod.png b/public/textures/createaddition/iron_rod.png deleted file mode 100644 index 09bef288..00000000 Binary files a/public/textures/createaddition/iron_rod.png and /dev/null differ diff --git a/public/textures/createaddition/iron_wire.png b/public/textures/createaddition/iron_wire.png deleted file mode 100644 index c41b85be..00000000 Binary files a/public/textures/createaddition/iron_wire.png and /dev/null differ diff --git a/public/textures/createaddition/large_connector.png b/public/textures/createaddition/large_connector.png deleted file mode 100644 index 442f3699..00000000 Binary files a/public/textures/createaddition/large_connector.png and /dev/null differ diff --git a/public/textures/createaddition/modular_accumulator.png b/public/textures/createaddition/modular_accumulator.png deleted file mode 100644 index ee86cb61..00000000 Binary files a/public/textures/createaddition/modular_accumulator.png and /dev/null differ diff --git a/public/textures/createaddition/portable_energy_interface.png b/public/textures/createaddition/portable_energy_interface.png deleted file mode 100644 index 29aa705d..00000000 Binary files a/public/textures/createaddition/portable_energy_interface.png and /dev/null differ diff --git a/public/textures/createaddition/redstone_relay.png b/public/textures/createaddition/redstone_relay.png deleted file mode 100644 index 16165c28..00000000 Binary files a/public/textures/createaddition/redstone_relay.png and /dev/null differ diff --git a/public/textures/createaddition/rolling_mill.png b/public/textures/createaddition/rolling_mill.png deleted file mode 100644 index 699aa7c3..00000000 Binary files a/public/textures/createaddition/rolling_mill.png and /dev/null differ diff --git a/public/textures/createaddition/seed_oil_bucket.png b/public/textures/createaddition/seed_oil_bucket.png deleted file mode 100644 index a5fa59e7..00000000 Binary files a/public/textures/createaddition/seed_oil_bucket.png and /dev/null differ diff --git a/public/textures/createaddition/small_light_connector.png b/public/textures/createaddition/small_light_connector.png deleted file mode 100644 index dcef8223..00000000 Binary files a/public/textures/createaddition/small_light_connector.png and /dev/null differ diff --git a/public/textures/createaddition/spool.png b/public/textures/createaddition/spool.png deleted file mode 100644 index 822cf282..00000000 Binary files a/public/textures/createaddition/spool.png and /dev/null differ diff --git a/public/textures/createaddition/straw.png b/public/textures/createaddition/straw.png deleted file mode 100644 index 2e10fda1..00000000 Binary files a/public/textures/createaddition/straw.png and /dev/null differ diff --git a/public/textures/createaddition/tesla_coil.png b/public/textures/createaddition/tesla_coil.png deleted file mode 100644 index 646fff80..00000000 Binary files a/public/textures/createaddition/tesla_coil.png and /dev/null differ diff --git a/public/textures/createaddition/zinc_sheet.png b/public/textures/createaddition/zinc_sheet.png deleted file mode 100644 index ea7bb828..00000000 Binary files a/public/textures/createaddition/zinc_sheet.png and /dev/null differ diff --git a/public/textures/createstockbridge/ae_bridge.png b/public/textures/createstockbridge/ae_bridge.png deleted file mode 100644 index b2ef32c1..00000000 Binary files a/public/textures/createstockbridge/ae_bridge.png and /dev/null differ diff --git a/public/textures/delivery_director/package_rewriter.png b/public/textures/delivery_director/package_rewriter.png deleted file mode 100644 index 586f81c8..00000000 Binary files a/public/textures/delivery_director/package_rewriter.png and /dev/null differ diff --git a/public/textures/dummmmmmy/target_dummy.png b/public/textures/dummmmmmy/target_dummy.png deleted file mode 100644 index 4af4c132..00000000 Binary files a/public/textures/dummmmmmy/target_dummy.png and /dev/null differ diff --git a/public/textures/enchantinginfuser/advanced_enchanting_infuser.png b/public/textures/enchantinginfuser/advanced_enchanting_infuser.png deleted file mode 100644 index 08dd54fb..00000000 Binary files a/public/textures/enchantinginfuser/advanced_enchanting_infuser.png and /dev/null differ diff --git a/public/textures/enchantinginfuser/enchanting_infuser.png b/public/textures/enchantinginfuser/enchanting_infuser.png deleted file mode 100644 index 35e67040..00000000 Binary files a/public/textures/enchantinginfuser/enchanting_infuser.png and /dev/null differ diff --git a/public/textures/endersdelight/amberveil.png b/public/textures/endersdelight/amberveil.png deleted file mode 100644 index 8ce96023..00000000 Binary files a/public/textures/endersdelight/amberveil.png and /dev/null differ diff --git a/public/textures/endersdelight/amberveil_stew.png b/public/textures/endersdelight/amberveil_stew.png deleted file mode 100644 index 946610d8..00000000 Binary files a/public/textures/endersdelight/amberveil_stew.png and /dev/null differ diff --git a/public/textures/endersdelight/amberveiled_curry.png b/public/textures/endersdelight/amberveiled_curry.png deleted file mode 100644 index 5346ca5d..00000000 Binary files a/public/textures/endersdelight/amberveiled_curry.png and /dev/null differ diff --git a/public/textures/endersdelight/chicken_curry.png b/public/textures/endersdelight/chicken_curry.png deleted file mode 100644 index 731b44e8..00000000 Binary files a/public/textures/endersdelight/chicken_curry.png and /dev/null differ diff --git a/public/textures/endersdelight/chorus_crate.png b/public/textures/endersdelight/chorus_crate.png deleted file mode 100644 index 7bdebd8e..00000000 Binary files a/public/textures/endersdelight/chorus_crate.png and /dev/null differ diff --git a/public/textures/endersdelight/chorus_juice.png b/public/textures/endersdelight/chorus_juice.png deleted file mode 100644 index 4185576b..00000000 Binary files a/public/textures/endersdelight/chorus_juice.png and /dev/null differ diff --git a/public/textures/endersdelight/chorus_pie.png b/public/textures/endersdelight/chorus_pie.png deleted file mode 100644 index 2a21deb5..00000000 Binary files a/public/textures/endersdelight/chorus_pie.png and /dev/null differ diff --git a/public/textures/endersdelight/chorus_pie_slice.png b/public/textures/endersdelight/chorus_pie_slice.png deleted file mode 100644 index 44c1e582..00000000 Binary files a/public/textures/endersdelight/chorus_pie_slice.png and /dev/null differ diff --git a/public/textures/endersdelight/chorus_stew.png b/public/textures/endersdelight/chorus_stew.png deleted file mode 100644 index 2908abb4..00000000 Binary files a/public/textures/endersdelight/chorus_stew.png and /dev/null differ diff --git a/public/textures/endersdelight/chorusflame.png b/public/textures/endersdelight/chorusflame.png deleted file mode 100644 index 80cd5104..00000000 Binary files a/public/textures/endersdelight/chorusflame.png and /dev/null differ diff --git a/public/textures/endersdelight/crawling_sandwich.png b/public/textures/endersdelight/crawling_sandwich.png deleted file mode 100644 index 9522fc2b..00000000 Binary files a/public/textures/endersdelight/crawling_sandwich.png and /dev/null differ diff --git a/public/textures/endersdelight/crispy_skewer.png b/public/textures/endersdelight/crispy_skewer.png deleted file mode 100644 index afc3d450..00000000 Binary files a/public/textures/endersdelight/crispy_skewer.png and /dev/null differ diff --git a/public/textures/endersdelight/ender_paella.png b/public/textures/endersdelight/ender_paella.png deleted file mode 100644 index 7414ae80..00000000 Binary files a/public/textures/endersdelight/ender_paella.png and /dev/null differ diff --git a/public/textures/endersdelight/ender_shard.png b/public/textures/endersdelight/ender_shard.png deleted file mode 100644 index a2756525..00000000 Binary files a/public/textures/endersdelight/ender_shard.png and /dev/null differ diff --git a/public/textures/endersdelight/enderman_sight.png b/public/textures/endersdelight/enderman_sight.png deleted file mode 100644 index 5be60856..00000000 Binary files a/public/textures/endersdelight/enderman_sight.png and /dev/null differ diff --git a/public/textures/endersdelight/endermite_stew.png b/public/textures/endersdelight/endermite_stew.png deleted file mode 100644 index bb9a2acd..00000000 Binary files a/public/textures/endersdelight/endermite_stew.png and /dev/null differ diff --git a/public/textures/endersdelight/endstone_stove.png b/public/textures/endersdelight/endstone_stove.png deleted file mode 100644 index 8f48603a..00000000 Binary files a/public/textures/endersdelight/endstone_stove.png and /dev/null differ diff --git a/public/textures/endersdelight/ethereal_saffron.png b/public/textures/endersdelight/ethereal_saffron.png deleted file mode 100644 index f8544492..00000000 Binary files a/public/textures/endersdelight/ethereal_saffron.png and /dev/null differ diff --git a/public/textures/endersdelight/mite_crust.png b/public/textures/endersdelight/mite_crust.png deleted file mode 100644 index fd7ad62d..00000000 Binary files a/public/textures/endersdelight/mite_crust.png and /dev/null differ diff --git a/public/textures/endersdelight/pearl_pasta.png b/public/textures/endersdelight/pearl_pasta.png deleted file mode 100644 index 68771eca..00000000 Binary files a/public/textures/endersdelight/pearl_pasta.png and /dev/null differ diff --git a/public/textures/endersdelight/shulker_bowl.png b/public/textures/endersdelight/shulker_bowl.png deleted file mode 100644 index dc6ea717..00000000 Binary files a/public/textures/endersdelight/shulker_bowl.png and /dev/null differ diff --git a/public/textures/endersdelight/shulker_filet.png b/public/textures/endersdelight/shulker_filet.png deleted file mode 100644 index cfae8c63..00000000 Binary files a/public/textures/endersdelight/shulker_filet.png and /dev/null differ diff --git a/public/textures/endersdelight/shulker_mollusk.png b/public/textures/endersdelight/shulker_mollusk.png deleted file mode 100644 index df472081..00000000 Binary files a/public/textures/endersdelight/shulker_mollusk.png and /dev/null differ diff --git a/public/textures/endersdelight/sight_fragments.png b/public/textures/endersdelight/sight_fragments.png deleted file mode 100644 index 62960e46..00000000 Binary files a/public/textures/endersdelight/sight_fragments.png and /dev/null differ diff --git a/public/textures/endersdelight/steak_fries.png b/public/textures/endersdelight/steak_fries.png deleted file mode 100644 index e88b70d2..00000000 Binary files a/public/textures/endersdelight/steak_fries.png and /dev/null differ diff --git a/public/textures/endersdelight/strange_eclair.png b/public/textures/endersdelight/strange_eclair.png deleted file mode 100644 index c12ef45e..00000000 Binary files a/public/textures/endersdelight/strange_eclair.png and /dev/null differ diff --git a/public/textures/endersdelight/stuffed_shulker.png b/public/textures/endersdelight/stuffed_shulker.png deleted file mode 100644 index 5fc471e9..00000000 Binary files a/public/textures/endersdelight/stuffed_shulker.png and /dev/null differ diff --git a/public/textures/endersdelight/stuffed_shulker_bowl.png b/public/textures/endersdelight/stuffed_shulker_bowl.png deleted file mode 100644 index 67369863..00000000 Binary files a/public/textures/endersdelight/stuffed_shulker_bowl.png and /dev/null differ diff --git a/public/textures/endersdelight/twisted_cereal.png b/public/textures/endersdelight/twisted_cereal.png deleted file mode 100644 index 25f610b9..00000000 Binary files a/public/textures/endersdelight/twisted_cereal.png and /dev/null differ diff --git a/public/textures/endersdelight/uncanny_cookies.png b/public/textures/endersdelight/uncanny_cookies.png deleted file mode 100644 index b59c557f..00000000 Binary files a/public/textures/endersdelight/uncanny_cookies.png and /dev/null differ diff --git a/public/textures/endersdelight/veil_of_flames_risotto.png b/public/textures/endersdelight/veil_of_flames_risotto.png deleted file mode 100644 index 3592103d..00000000 Binary files a/public/textures/endersdelight/veil_of_flames_risotto.png and /dev/null differ diff --git a/public/textures/endersdelight/voidpepper.png b/public/textures/endersdelight/voidpepper.png deleted file mode 100644 index fcb68aa1..00000000 Binary files a/public/textures/endersdelight/voidpepper.png and /dev/null differ diff --git a/public/textures/ends_delight/assorted_salad.png b/public/textures/ends_delight/assorted_salad.png deleted file mode 100644 index ea59677f..00000000 Binary files a/public/textures/ends_delight/assorted_salad.png and /dev/null differ diff --git a/public/textures/ends_delight/bubble_tea.png b/public/textures/ends_delight/bubble_tea.png deleted file mode 100644 index ec045d04..00000000 Binary files a/public/textures/ends_delight/bubble_tea.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_cookie.png b/public/textures/ends_delight/chorus_cookie.png deleted file mode 100644 index 872aff40..00000000 Binary files a/public/textures/ends_delight/chorus_cookie.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_flower_pie.png b/public/textures/ends_delight/chorus_flower_pie.png deleted file mode 100644 index 0a9fe9bc..00000000 Binary files a/public/textures/ends_delight/chorus_flower_pie.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_flower_tea.png b/public/textures/ends_delight/chorus_flower_tea.png deleted file mode 100644 index eee9f634..00000000 Binary files a/public/textures/ends_delight/chorus_flower_tea.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_fruit_crate.png b/public/textures/ends_delight/chorus_fruit_crate.png deleted file mode 100644 index f438aab0..00000000 Binary files a/public/textures/ends_delight/chorus_fruit_crate.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_fruit_grain.png b/public/textures/ends_delight/chorus_fruit_grain.png deleted file mode 100644 index 427c87b2..00000000 Binary files a/public/textures/ends_delight/chorus_fruit_grain.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_fruit_milk_tea.png b/public/textures/ends_delight/chorus_fruit_milk_tea.png deleted file mode 100644 index afc438a5..00000000 Binary files a/public/textures/ends_delight/chorus_fruit_milk_tea.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_fruit_pie.png b/public/textures/ends_delight/chorus_fruit_pie.png deleted file mode 100644 index b20a5ee9..00000000 Binary files a/public/textures/ends_delight/chorus_fruit_pie.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_fruit_pie_slice.png b/public/textures/ends_delight/chorus_fruit_pie_slice.png deleted file mode 100644 index 868116bc..00000000 Binary files a/public/textures/ends_delight/chorus_fruit_pie_slice.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_fruit_popsicle.png b/public/textures/ends_delight/chorus_fruit_popsicle.png deleted file mode 100644 index b850fd80..00000000 Binary files a/public/textures/ends_delight/chorus_fruit_popsicle.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_fruit_wine.png b/public/textures/ends_delight/chorus_fruit_wine.png deleted file mode 100644 index b9fb0ff4..00000000 Binary files a/public/textures/ends_delight/chorus_fruit_wine.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_sauce.png b/public/textures/ends_delight/chorus_sauce.png deleted file mode 100644 index 0e537cf0..00000000 Binary files a/public/textures/ends_delight/chorus_sauce.png and /dev/null differ diff --git a/public/textures/ends_delight/chorus_succulent.png b/public/textures/ends_delight/chorus_succulent.png deleted file mode 100644 index 465f0474..00000000 Binary files a/public/textures/ends_delight/chorus_succulent.png and /dev/null differ diff --git a/public/textures/ends_delight/dragon_breath_and_chorus_soup.png b/public/textures/ends_delight/dragon_breath_and_chorus_soup.png deleted file mode 100644 index c60fcd1b..00000000 Binary files a/public/textures/ends_delight/dragon_breath_and_chorus_soup.png and /dev/null differ diff --git a/public/textures/ends_delight/dragon_breath_soda.png b/public/textures/ends_delight/dragon_breath_soda.png deleted file mode 100644 index 3e2dc40d..00000000 Binary files a/public/textures/ends_delight/dragon_breath_soda.png and /dev/null differ diff --git a/public/textures/ends_delight/dragon_egg_shell_knife.png b/public/textures/ends_delight/dragon_egg_shell_knife.png deleted file mode 100644 index ae61e518..00000000 Binary files a/public/textures/ends_delight/dragon_egg_shell_knife.png and /dev/null differ diff --git a/public/textures/ends_delight/dragon_leg.png b/public/textures/ends_delight/dragon_leg.png deleted file mode 100644 index da1df351..00000000 Binary files a/public/textures/ends_delight/dragon_leg.png and /dev/null differ diff --git a/public/textures/ends_delight/dragon_leg_with_sauce.png b/public/textures/ends_delight/dragon_leg_with_sauce.png deleted file mode 100644 index fa46de99..00000000 Binary files a/public/textures/ends_delight/dragon_leg_with_sauce.png and /dev/null differ diff --git a/public/textures/ends_delight/dragon_leg_with_sauce_block.png b/public/textures/ends_delight/dragon_leg_with_sauce_block.png deleted file mode 100644 index 4af308be..00000000 Binary files a/public/textures/ends_delight/dragon_leg_with_sauce_block.png and /dev/null differ diff --git a/public/textures/ends_delight/dragon_meat_stew.png b/public/textures/ends_delight/dragon_meat_stew.png deleted file mode 100644 index ed41bcdd..00000000 Binary files a/public/textures/ends_delight/dragon_meat_stew.png and /dev/null differ diff --git a/public/textures/ends_delight/dragon_meat_stew_block.png b/public/textures/ends_delight/dragon_meat_stew_block.png deleted file mode 100644 index 25bd6915..00000000 Binary files a/public/textures/ends_delight/dragon_meat_stew_block.png and /dev/null differ diff --git a/public/textures/ends_delight/dragon_tooth.png b/public/textures/ends_delight/dragon_tooth.png deleted file mode 100644 index 93589fcf..00000000 Binary files a/public/textures/ends_delight/dragon_tooth.png and /dev/null differ diff --git a/public/textures/ends_delight/dragon_tooth_knife.png b/public/textures/ends_delight/dragon_tooth_knife.png deleted file mode 100644 index b99d2161..00000000 Binary files a/public/textures/ends_delight/dragon_tooth_knife.png and /dev/null differ diff --git a/public/textures/ends_delight/dried_chorus_flower.png b/public/textures/ends_delight/dried_chorus_flower.png deleted file mode 100644 index 15f19e76..00000000 Binary files a/public/textures/ends_delight/dried_chorus_flower.png and /dev/null differ diff --git a/public/textures/ends_delight/dried_endermite_meat.png b/public/textures/ends_delight/dried_endermite_meat.png deleted file mode 100644 index 3e1e194d..00000000 Binary files a/public/textures/ends_delight/dried_endermite_meat.png and /dev/null differ diff --git a/public/textures/ends_delight/end_barbecue_stick.png b/public/textures/ends_delight/end_barbecue_stick.png deleted file mode 100644 index ed54fcaa..00000000 Binary files a/public/textures/ends_delight/end_barbecue_stick.png and /dev/null differ diff --git a/public/textures/ends_delight/end_mixed_salad.png b/public/textures/ends_delight/end_mixed_salad.png deleted file mode 100644 index d3ee8e87..00000000 Binary files a/public/textures/ends_delight/end_mixed_salad.png and /dev/null differ diff --git a/public/textures/ends_delight/end_stone_knife.png b/public/textures/ends_delight/end_stone_knife.png deleted file mode 100644 index 887e10bf..00000000 Binary files a/public/textures/ends_delight/end_stone_knife.png and /dev/null differ diff --git a/public/textures/ends_delight/end_stove.png b/public/textures/ends_delight/end_stove.png deleted file mode 100644 index b6bd2dbe..00000000 Binary files a/public/textures/ends_delight/end_stove.png and /dev/null differ diff --git a/public/textures/ends_delight/ender_bamboo_rice.png b/public/textures/ends_delight/ender_bamboo_rice.png deleted file mode 100644 index c2848cb5..00000000 Binary files a/public/textures/ends_delight/ender_bamboo_rice.png and /dev/null differ diff --git a/public/textures/ends_delight/ender_congee.png b/public/textures/ends_delight/ender_congee.png deleted file mode 100644 index 129619ca..00000000 Binary files a/public/textures/ends_delight/ender_congee.png and /dev/null differ diff --git a/public/textures/ends_delight/ender_noodle.png b/public/textures/ends_delight/ender_noodle.png deleted file mode 100644 index 863ded3d..00000000 Binary files a/public/textures/ends_delight/ender_noodle.png and /dev/null differ diff --git a/public/textures/ends_delight/ender_pearl_grain.png b/public/textures/ends_delight/ender_pearl_grain.png deleted file mode 100644 index dd70b375..00000000 Binary files a/public/textures/ends_delight/ender_pearl_grain.png and /dev/null differ diff --git a/public/textures/ends_delight/ender_sausage.png b/public/textures/ends_delight/ender_sausage.png deleted file mode 100644 index d1ba7665..00000000 Binary files a/public/textures/ends_delight/ender_sausage.png and /dev/null differ diff --git a/public/textures/ends_delight/enderman_gristle.png b/public/textures/ends_delight/enderman_gristle.png deleted file mode 100644 index 88d2b9c3..00000000 Binary files a/public/textures/ends_delight/enderman_gristle.png and /dev/null differ diff --git a/public/textures/ends_delight/enderman_gristle_stew.png b/public/textures/ends_delight/enderman_gristle_stew.png deleted file mode 100644 index d173b973..00000000 Binary files a/public/textures/ends_delight/enderman_gristle_stew.png and /dev/null differ diff --git a/public/textures/ends_delight/fried_dragon_egg.png b/public/textures/ends_delight/fried_dragon_egg.png deleted file mode 100644 index 7e56bf64..00000000 Binary files a/public/textures/ends_delight/fried_dragon_egg.png and /dev/null differ diff --git a/public/textures/ends_delight/grilled_shulker.png b/public/textures/ends_delight/grilled_shulker.png deleted file mode 100644 index 47b7e522..00000000 Binary files a/public/textures/ends_delight/grilled_shulker.png and /dev/null differ diff --git a/public/textures/ends_delight/grilled_shulker_block.png b/public/textures/ends_delight/grilled_shulker_block.png deleted file mode 100644 index be013470..00000000 Binary files a/public/textures/ends_delight/grilled_shulker_block.png and /dev/null differ diff --git a/public/textures/ends_delight/half_dragon_egg_shell.png b/public/textures/ends_delight/half_dragon_egg_shell.png deleted file mode 100644 index 307362ab..00000000 Binary files a/public/textures/ends_delight/half_dragon_egg_shell.png and /dev/null differ diff --git a/public/textures/ends_delight/liquid_dragon_egg.png b/public/textures/ends_delight/liquid_dragon_egg.png deleted file mode 100644 index e56cfaf6..00000000 Binary files a/public/textures/ends_delight/liquid_dragon_egg.png and /dev/null differ diff --git a/public/textures/ends_delight/non_hatchable_dragon_egg.png b/public/textures/ends_delight/non_hatchable_dragon_egg.png deleted file mode 100644 index 33ef247a..00000000 Binary files a/public/textures/ends_delight/non_hatchable_dragon_egg.png and /dev/null differ diff --git a/public/textures/ends_delight/purpur_knife.png b/public/textures/ends_delight/purpur_knife.png deleted file mode 100644 index 77dc41dc..00000000 Binary files a/public/textures/ends_delight/purpur_knife.png and /dev/null differ diff --git a/public/textures/ends_delight/raw_dragon_meat.png b/public/textures/ends_delight/raw_dragon_meat.png deleted file mode 100644 index ff3cc49b..00000000 Binary files a/public/textures/ends_delight/raw_dragon_meat.png and /dev/null differ diff --git a/public/textures/ends_delight/raw_dragon_meat_cuts.png b/public/textures/ends_delight/raw_dragon_meat_cuts.png deleted file mode 100644 index 7d5cfd3c..00000000 Binary files a/public/textures/ends_delight/raw_dragon_meat_cuts.png and /dev/null differ diff --git a/public/textures/ends_delight/raw_ender_mite_meat.png b/public/textures/ends_delight/raw_ender_mite_meat.png deleted file mode 100644 index fbb02de4..00000000 Binary files a/public/textures/ends_delight/raw_ender_mite_meat.png and /dev/null differ diff --git a/public/textures/ends_delight/raw_ender_sausage.png b/public/textures/ends_delight/raw_ender_sausage.png deleted file mode 100644 index 8ef19586..00000000 Binary files a/public/textures/ends_delight/raw_ender_sausage.png and /dev/null differ diff --git a/public/textures/ends_delight/roasted_dragon_meat.png b/public/textures/ends_delight/roasted_dragon_meat.png deleted file mode 100644 index e27a83dc..00000000 Binary files a/public/textures/ends_delight/roasted_dragon_meat.png and /dev/null differ diff --git a/public/textures/ends_delight/roasted_dragon_meat_cuts.png b/public/textures/ends_delight/roasted_dragon_meat_cuts.png deleted file mode 100644 index 783f721a..00000000 Binary files a/public/textures/ends_delight/roasted_dragon_meat_cuts.png and /dev/null differ diff --git a/public/textures/ends_delight/roasted_dragon_steak.png b/public/textures/ends_delight/roasted_dragon_steak.png deleted file mode 100644 index 30bb6a2c..00000000 Binary files a/public/textures/ends_delight/roasted_dragon_steak.png and /dev/null differ diff --git a/public/textures/ends_delight/roasted_shulker_meat.png b/public/textures/ends_delight/roasted_shulker_meat.png deleted file mode 100644 index a7f70636..00000000 Binary files a/public/textures/ends_delight/roasted_shulker_meat.png and /dev/null differ diff --git a/public/textures/ends_delight/roasted_shulker_meat_slice.png b/public/textures/ends_delight/roasted_shulker_meat_slice.png deleted file mode 100644 index d48024cf..00000000 Binary files a/public/textures/ends_delight/roasted_shulker_meat_slice.png and /dev/null differ diff --git a/public/textures/ends_delight/shulker_meat.png b/public/textures/ends_delight/shulker_meat.png deleted file mode 100644 index c3fb4baf..00000000 Binary files a/public/textures/ends_delight/shulker_meat.png and /dev/null differ diff --git a/public/textures/ends_delight/shulker_meat_slice.png b/public/textures/ends_delight/shulker_meat_slice.png deleted file mode 100644 index 17cc6703..00000000 Binary files a/public/textures/ends_delight/shulker_meat_slice.png and /dev/null differ diff --git a/public/textures/ends_delight/shulker_omelette.png b/public/textures/ends_delight/shulker_omelette.png deleted file mode 100644 index caa0f480..00000000 Binary files a/public/textures/ends_delight/shulker_omelette.png and /dev/null differ diff --git a/public/textures/ends_delight/shulker_omelette_mixture.png b/public/textures/ends_delight/shulker_omelette_mixture.png deleted file mode 100644 index 2d9aeaf0..00000000 Binary files a/public/textures/ends_delight/shulker_omelette_mixture.png and /dev/null differ diff --git a/public/textures/ends_delight/shulker_soup.png b/public/textures/ends_delight/shulker_soup.png deleted file mode 100644 index 19cfffda..00000000 Binary files a/public/textures/ends_delight/shulker_soup.png and /dev/null differ diff --git a/public/textures/ends_delight/smoked_dragon_leg.png b/public/textures/ends_delight/smoked_dragon_leg.png deleted file mode 100644 index ac19df73..00000000 Binary files a/public/textures/ends_delight/smoked_dragon_leg.png and /dev/null differ diff --git a/public/textures/ends_delight/steamed_dragon_egg.png b/public/textures/ends_delight/steamed_dragon_egg.png deleted file mode 100644 index 1c458f88..00000000 Binary files a/public/textures/ends_delight/steamed_dragon_egg.png and /dev/null differ diff --git a/public/textures/ends_delight/steamed_dragon_egg_block.png b/public/textures/ends_delight/steamed_dragon_egg_block.png deleted file mode 100644 index 2b6a938e..00000000 Binary files a/public/textures/ends_delight/steamed_dragon_egg_block.png and /dev/null differ diff --git a/public/textures/ends_delight/stir_fried_shulker_meat.png b/public/textures/ends_delight/stir_fried_shulker_meat.png deleted file mode 100644 index f130fffc..00000000 Binary files a/public/textures/ends_delight/stir_fried_shulker_meat.png and /dev/null differ diff --git a/public/textures/ends_delight/stuffed_rice_cake.png b/public/textures/ends_delight/stuffed_rice_cake.png deleted file mode 100644 index 475dbd06..00000000 Binary files a/public/textures/ends_delight/stuffed_rice_cake.png and /dev/null differ diff --git a/public/textures/explorerscompass/explorerscompass.png b/public/textures/explorerscompass/explorerscompass.png deleted file mode 100644 index 5041d385..00000000 Binary files a/public/textures/explorerscompass/explorerscompass.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/baked_ginger_bread_ma.png b/public/textures/farmers_delight_christmas_editio/baked_ginger_bread_ma.png deleted file mode 100644 index 3427f263..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/baked_ginger_bread_ma.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/baked_gingerbread_circle.png b/public/textures/farmers_delight_christmas_editio/baked_gingerbread_circle.png deleted file mode 100644 index 4cff4ed5..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/baked_gingerbread_circle.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/baked_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/baked_gingerbread_star.png deleted file mode 100644 index 222968af..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/baked_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/baked_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/baked_gingerbread_tree.png deleted file mode 100644 index 2aca4128..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/baked_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/black_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/black_frosted_gingerbread_cookie.png deleted file mode 100644 index 28ba9705..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/black_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/black_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/black_gingerbread_man.png deleted file mode 100644 index d0473e55..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/black_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/black_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/black_gingerbread_star.png deleted file mode 100644 index ac92d740..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/black_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/black_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/black_gingerbread_tree.png deleted file mode 100644 index 83867cac..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/black_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/black_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/black_royal_frosting.png deleted file mode 100644 index 47686e7d..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/black_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/black_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/black_sugar_cookie.png deleted file mode 100644 index 6eb41c05..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/black_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/blue_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/blue_frosted_gingerbread_cookie.png deleted file mode 100644 index e0f4ae91..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/blue_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/blue_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/blue_gingerbread_man.png deleted file mode 100644 index 278598da..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/blue_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/blue_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/blue_gingerbread_star.png deleted file mode 100644 index 56893267..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/blue_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/blue_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/blue_gingerbread_tree.png deleted file mode 100644 index fa7c6912..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/blue_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/blue_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/blue_sugar_cookie.png deleted file mode 100644 index 1473df7c..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/blue_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/brown_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/brown_frosted_gingerbread_cookie.png deleted file mode 100644 index f97a386c..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/brown_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/brown_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/brown_gingerbread_man.png deleted file mode 100644 index c9cb7d43..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/brown_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/brown_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/brown_gingerbread_star.png deleted file mode 100644 index 86aae864..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/brown_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/brown_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/brown_gingerbread_tree.png deleted file mode 100644 index 13d2c8be..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/brown_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/brown_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/brown_royal_frosting.png deleted file mode 100644 index 830038ef..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/brown_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/brown_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/brown_sugar_cookie.png deleted file mode 100644 index f1e2aa94..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/brown_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/candy_cane.png b/public/textures/farmers_delight_christmas_editio/candy_cane.png deleted file mode 100644 index fd53a5dc..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/candy_cane.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/candy_cane_and_chocolate_chip_ice_cream.png b/public/textures/farmers_delight_christmas_editio/candy_cane_and_chocolate_chip_ice_cream.png deleted file mode 100644 index 5f0e0a63..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/candy_cane_and_chocolate_chip_ice_cream.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/candy_cane_bit_ice_cream.png b/public/textures/farmers_delight_christmas_editio/candy_cane_bit_ice_cream.png deleted file mode 100644 index 63bdec34..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/candy_cane_bit_ice_cream.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/chocolate_bar.png b/public/textures/farmers_delight_christmas_editio/chocolate_bar.png deleted file mode 100644 index 4e6117ab..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/chocolate_bar.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/chocolate_chip_ice_cream.png b/public/textures/farmers_delight_christmas_editio/chocolate_chip_ice_cream.png deleted file mode 100644 index d656fcdf..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/chocolate_chip_ice_cream.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/chocolate_coin.png b/public/textures/farmers_delight_christmas_editio/chocolate_coin.png deleted file mode 100644 index 96e7043e..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/chocolate_coin.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/cinnamon.png b/public/textures/farmers_delight_christmas_editio/cinnamon.png deleted file mode 100644 index 392e0725..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/cinnamon.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/cinnamon_eggnog.png b/public/textures/farmers_delight_christmas_editio/cinnamon_eggnog.png deleted file mode 100644 index f93db5d0..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/cinnamon_eggnog.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/circle_cookie_cutter.png b/public/textures/farmers_delight_christmas_editio/circle_cookie_cutter.png deleted file mode 100644 index 2605f1c4..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/circle_cookie_cutter.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/coin_wrapper.png b/public/textures/farmers_delight_christmas_editio/coin_wrapper.png deleted file mode 100644 index 8b89c389..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/coin_wrapper.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/cream_cheese_and_berry_log.png b/public/textures/farmers_delight_christmas_editio/cream_cheese_and_berry_log.png deleted file mode 100644 index c7642e88..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/cream_cheese_and_berry_log.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/cream_cheese_and_berry_log_slice.png b/public/textures/farmers_delight_christmas_editio/cream_cheese_and_berry_log_slice.png deleted file mode 100644 index 737e98c7..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/cream_cheese_and_berry_log_slice.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/crushed_candy_cane.png b/public/textures/farmers_delight_christmas_editio/crushed_candy_cane.png deleted file mode 100644 index 8b2f90b9..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/crushed_candy_cane.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/cyan_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/cyan_frosted_gingerbread_cookie.png deleted file mode 100644 index 1ece02e7..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/cyan_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/cyan_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/cyan_gingerbread_man.png deleted file mode 100644 index 74a61b48..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/cyan_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/cyan_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/cyan_gingerbread_star.png deleted file mode 100644 index 2a22e837..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/cyan_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/cyan_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/cyan_gingerbread_tree.png deleted file mode 100644 index 54183a25..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/cyan_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/cyan_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/cyan_royal_frosting.png deleted file mode 100644 index bac64cbd..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/cyan_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/cyan_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/cyan_sugar_cookie.png deleted file mode 100644 index d350d5dc..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/cyan_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/eggnog.png b/public/textures/farmers_delight_christmas_editio/eggnog.png deleted file mode 100644 index bb5627fb..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/eggnog.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_circle.png b/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_circle.png deleted file mode 100644 index d8bd3f9d..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_circle.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_man.png deleted file mode 100644 index a0f7f41c..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_star.png deleted file mode 100644 index 96e1f738..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_tree.png deleted file mode 100644 index bdd3e804..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/frosted_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/gray_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/gray_frosted_gingerbread_cookie.png deleted file mode 100644 index bddb1410..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/gray_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/gray_frosting.png b/public/textures/farmers_delight_christmas_editio/gray_frosting.png deleted file mode 100644 index 411fece3..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/gray_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/gray_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/gray_gingerbread_man.png deleted file mode 100644 index b9ede467..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/gray_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/gray_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/gray_gingerbread_star.png deleted file mode 100644 index 27c78433..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/gray_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/gray_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/gray_gingerbread_tree.png deleted file mode 100644 index 7b1d9cd2..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/gray_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/gray_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/gray_sugar_cookie.png deleted file mode 100644 index 81ead91b..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/gray_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/green_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/green_frosted_gingerbread_cookie.png deleted file mode 100644 index ccde64b8..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/green_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/green_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/green_gingerbread_man.png deleted file mode 100644 index 59494e53..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/green_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/green_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/green_gingerbread_star.png deleted file mode 100644 index 032aed9f..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/green_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/green_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/green_gingerbread_tree.png deleted file mode 100644 index c1efe6b5..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/green_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/green_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/green_royal_frosting.png deleted file mode 100644 index f439e723..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/green_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/green_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/green_sugar_cookie.png deleted file mode 100644 index 70b20f7a..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/green_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows.png b/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows.png deleted file mode 100644 index 88dffaa6..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows_and_candy_cane.png b/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows_and_candy_cane.png deleted file mode 100644 index 31af941d..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows_and_candy_cane.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows_and_cinnamon.png b/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows_and_cinnamon.png deleted file mode 100644 index faedd4cd..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows_and_cinnamon.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows_and_peppermint.png b/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows_and_peppermint.png deleted file mode 100644 index 1cb1cfa1..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/hot_cocoa_with_marshmallows_and_peppermint.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_blue_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/light_blue_frosted_gingerbread_cookie.png deleted file mode 100644 index 31dad7ff..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_blue_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_blue_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/light_blue_gingerbread_man.png deleted file mode 100644 index f4c3e5d5..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_blue_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_blue_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/light_blue_gingerbread_star.png deleted file mode 100644 index 0236c048..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_blue_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_blue_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/light_blue_gingerbread_tree.png deleted file mode 100644 index 41a81603..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_blue_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_blue_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/light_blue_royal_frosting.png deleted file mode 100644 index 96c96445..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_blue_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_blue_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/light_blue_sugar_cookie.png deleted file mode 100644 index ec0a684e..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_blue_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_gray_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/light_gray_frosted_gingerbread_cookie.png deleted file mode 100644 index e7b401ed..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_gray_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_gray_frosting.png b/public/textures/farmers_delight_christmas_editio/light_gray_frosting.png deleted file mode 100644 index b418edac..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_gray_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_gray_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/light_gray_gingerbread_man.png deleted file mode 100644 index 2d63bf4b..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_gray_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_gray_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/light_gray_gingerbread_star.png deleted file mode 100644 index 7f6dac43..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_gray_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_gray_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/light_gray_gingerbread_tree.png deleted file mode 100644 index 1db9f1cb..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_gray_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/light_gray_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/light_gray_sugar_cookie.png deleted file mode 100644 index 17a1b47a..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/light_gray_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/lime_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/lime_frosted_gingerbread_cookie.png deleted file mode 100644 index 9da06e55..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/lime_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/lime_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/lime_gingerbread_man.png deleted file mode 100644 index 8beb2def..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/lime_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/lime_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/lime_gingerbread_star.png deleted file mode 100644 index 13549259..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/lime_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/lime_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/lime_gingerbread_tree.png deleted file mode 100644 index e0f0cacc..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/lime_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/lime_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/lime_royal_frosting.png deleted file mode 100644 index 2b7fbe93..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/lime_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/lime_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/lime_sugar_cookie.png deleted file mode 100644 index 661b475d..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/lime_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/magenta_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/magenta_frosted_gingerbread_cookie.png deleted file mode 100644 index fbcfa4df..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/magenta_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/magenta_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/magenta_gingerbread_man.png deleted file mode 100644 index 7659a28b..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/magenta_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/magenta_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/magenta_gingerbread_star.png deleted file mode 100644 index 89e07847..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/magenta_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/magenta_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/magenta_gingerbread_tree.png deleted file mode 100644 index 5719925a..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/magenta_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/magenta_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/magenta_royal_frosting.png deleted file mode 100644 index 4d929dbe..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/magenta_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/magenta_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/magenta_sugar_cookie.png deleted file mode 100644 index c6a7d363..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/magenta_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/man_cutter.png b/public/textures/farmers_delight_christmas_editio/man_cutter.png deleted file mode 100644 index 75abd106..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/man_cutter.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/marshmallow.png b/public/textures/farmers_delight_christmas_editio/marshmallow.png deleted file mode 100644 index 250eab64..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/marshmallow.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/orange_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/orange_frosted_gingerbread_cookie.png deleted file mode 100644 index 9bb9d1d6..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/orange_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/orange_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/orange_gingerbread_man.png deleted file mode 100644 index 35f4c3b9..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/orange_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/orange_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/orange_gingerbread_star.png deleted file mode 100644 index ef70abbd..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/orange_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/orange_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/orange_gingerbread_tree.png deleted file mode 100644 index 3289a8cc..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/orange_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/orange_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/orange_royal_frosting.png deleted file mode 100644 index 26ace090..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/orange_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/orange_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/orange_sugar_cookie.png deleted file mode 100644 index bed43987..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/orange_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/pink_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/pink_frosted_gingerbread_cookie.png deleted file mode 100644 index 1e0000fd..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/pink_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/pink_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/pink_gingerbread_man.png deleted file mode 100644 index a97fa686..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/pink_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/pink_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/pink_gingerbread_star.png deleted file mode 100644 index 6f2d146a..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/pink_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/pink_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/pink_gingerbread_tree.png deleted file mode 100644 index cebe17e0..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/pink_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/pink_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/pink_royal_frosting.png deleted file mode 100644 index 22a73d9a..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/pink_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/pink_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/pink_sugar_cookie.png deleted file mode 100644 index c6df4805..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/pink_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/purple_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/purple_frosted_gingerbread_cookie.png deleted file mode 100644 index 8e2217c5..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/purple_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/purple_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/purple_gingerbread_man.png deleted file mode 100644 index 76c8eaf7..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/purple_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/purple_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/purple_gingerbread_star.png deleted file mode 100644 index ffa4d3c7..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/purple_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/purple_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/purple_gingerbread_tree.png deleted file mode 100644 index c556a29f..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/purple_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/purple_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/purple_royal_frosting.png deleted file mode 100644 index 5851b480..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/purple_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/purplesugarcookie.png b/public/textures/farmers_delight_christmas_editio/purplesugarcookie.png deleted file mode 100644 index 16141cb3..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/purplesugarcookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/raw_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/raw_gingerbread_cookie.png deleted file mode 100644 index 98fa90d4..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/raw_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/raw_gingerbread_dough.png b/public/textures/farmers_delight_christmas_editio/raw_gingerbread_dough.png deleted file mode 100644 index cd0df6ae..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/raw_gingerbread_dough.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/raw_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/raw_gingerbread_man.png deleted file mode 100644 index 60707450..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/raw_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/raw_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/raw_gingerbread_star.png deleted file mode 100644 index b7bc5f58..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/raw_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/raw_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/raw_gingerbread_tree.png deleted file mode 100644 index 1ae248fa..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/raw_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/red_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/red_frosted_gingerbread_cookie.png deleted file mode 100644 index 6e033fd9..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/red_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/red_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/red_gingerbread_man.png deleted file mode 100644 index 249597f8..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/red_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/red_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/red_gingerbread_star.png deleted file mode 100644 index 7cd4f522..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/red_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/red_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/red_gingerbread_tree.png deleted file mode 100644 index 0bfd8e23..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/red_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/red_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/red_sugar_cookie.png deleted file mode 100644 index 8e4eb662..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/red_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/royal_frosting_blue.png b/public/textures/farmers_delight_christmas_editio/royal_frosting_blue.png deleted file mode 100644 index 71314924..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/royal_frosting_blue.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/royal_frosting_red.png b/public/textures/farmers_delight_christmas_editio/royal_frosting_red.png deleted file mode 100644 index c95cae7e..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/royal_frosting_red.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/star_cookie_cutter.png b/public/textures/farmers_delight_christmas_editio/star_cookie_cutter.png deleted file mode 100644 index 517e38c3..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/star_cookie_cutter.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/sugar_cookie.png deleted file mode 100644 index caac987c..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/tree_cookie_cutter.png b/public/textures/farmers_delight_christmas_editio/tree_cookie_cutter.png deleted file mode 100644 index fe891e42..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/tree_cookie_cutter.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/vannila_ice_cream.png b/public/textures/farmers_delight_christmas_editio/vannila_ice_cream.png deleted file mode 100644 index 0f250727..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/vannila_ice_cream.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/white_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/white_frosted_gingerbread_cookie.png deleted file mode 100644 index 0ad716e5..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/white_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/white_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/white_gingerbread_man.png deleted file mode 100644 index c82cacda..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/white_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/white_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/white_gingerbread_star.png deleted file mode 100644 index dc1e5817..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/white_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/white_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/white_royal_frosting.png deleted file mode 100644 index 8e6dcaa5..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/white_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/white_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/white_sugar_cookie.png deleted file mode 100644 index f3e9fd8c..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/white_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/wrapped_chocolate_coin.png b/public/textures/farmers_delight_christmas_editio/wrapped_chocolate_coin.png deleted file mode 100644 index b5848997..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/wrapped_chocolate_coin.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/yellow_frosted_gingerbread_cookie.png b/public/textures/farmers_delight_christmas_editio/yellow_frosted_gingerbread_cookie.png deleted file mode 100644 index 11950533..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/yellow_frosted_gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/yellow_gingerbread_man.png b/public/textures/farmers_delight_christmas_editio/yellow_gingerbread_man.png deleted file mode 100644 index 7732a850..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/yellow_gingerbread_man.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/yellow_gingerbread_star.png b/public/textures/farmers_delight_christmas_editio/yellow_gingerbread_star.png deleted file mode 100644 index 67056d1e..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/yellow_gingerbread_star.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/yellow_gingerbread_tree.png b/public/textures/farmers_delight_christmas_editio/yellow_gingerbread_tree.png deleted file mode 100644 index b70ae22b..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/yellow_gingerbread_tree.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/yellow_royal_frosting.png b/public/textures/farmers_delight_christmas_editio/yellow_royal_frosting.png deleted file mode 100644 index 2ff12a0a..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/yellow_royal_frosting.png and /dev/null differ diff --git a/public/textures/farmers_delight_christmas_editio/yellow_sugar_cookie.png b/public/textures/farmers_delight_christmas_editio/yellow_sugar_cookie.png deleted file mode 100644 index 483bcf66..00000000 Binary files a/public/textures/farmers_delight_christmas_editio/yellow_sugar_cookie.png and /dev/null differ diff --git a/public/textures/farmersdelight/acacia_cabinet.png b/public/textures/farmersdelight/acacia_cabinet.png deleted file mode 100644 index 78acf0ff..00000000 Binary files a/public/textures/farmersdelight/acacia_cabinet.png and /dev/null differ diff --git a/public/textures/farmersdelight/apple_cider.png b/public/textures/farmersdelight/apple_cider.png deleted file mode 100644 index b41ecfca..00000000 Binary files a/public/textures/farmersdelight/apple_cider.png and /dev/null differ diff --git a/public/textures/farmersdelight/apple_pie.png b/public/textures/farmersdelight/apple_pie.png deleted file mode 100644 index f3a3d8ab..00000000 Binary files a/public/textures/farmersdelight/apple_pie.png and /dev/null differ diff --git a/public/textures/farmersdelight/apple_pie_slice.png b/public/textures/farmersdelight/apple_pie_slice.png deleted file mode 100644 index ae536d69..00000000 Binary files a/public/textures/farmersdelight/apple_pie_slice.png and /dev/null differ diff --git a/public/textures/farmersdelight/bacon.png b/public/textures/farmersdelight/bacon.png deleted file mode 100644 index 025469a5..00000000 Binary files a/public/textures/farmersdelight/bacon.png and /dev/null differ diff --git a/public/textures/farmersdelight/bacon_and_eggs.png b/public/textures/farmersdelight/bacon_and_eggs.png deleted file mode 100644 index ba78a79d..00000000 Binary files a/public/textures/farmersdelight/bacon_and_eggs.png and /dev/null differ diff --git a/public/textures/farmersdelight/bacon_sandwich.png b/public/textures/farmersdelight/bacon_sandwich.png deleted file mode 100644 index fd2e08c5..00000000 Binary files a/public/textures/farmersdelight/bacon_sandwich.png and /dev/null differ diff --git a/public/textures/farmersdelight/baked_cod_stew.png b/public/textures/farmersdelight/baked_cod_stew.png deleted file mode 100644 index 982b5788..00000000 Binary files a/public/textures/farmersdelight/baked_cod_stew.png and /dev/null differ diff --git a/public/textures/farmersdelight/bamboo_cabinet.png b/public/textures/farmersdelight/bamboo_cabinet.png deleted file mode 100644 index be729eb3..00000000 Binary files a/public/textures/farmersdelight/bamboo_cabinet.png and /dev/null differ diff --git a/public/textures/farmersdelight/barbecue_stick.png b/public/textures/farmersdelight/barbecue_stick.png deleted file mode 100644 index af340bb8..00000000 Binary files a/public/textures/farmersdelight/barbecue_stick.png and /dev/null differ diff --git a/public/textures/farmersdelight/basket.png b/public/textures/farmersdelight/basket.png deleted file mode 100644 index 9975d190..00000000 Binary files a/public/textures/farmersdelight/basket.png and /dev/null differ diff --git a/public/textures/farmersdelight/beef_patty.png b/public/textures/farmersdelight/beef_patty.png deleted file mode 100644 index b7e0586c..00000000 Binary files a/public/textures/farmersdelight/beef_patty.png and /dev/null differ diff --git a/public/textures/farmersdelight/beef_stew.png b/public/textures/farmersdelight/beef_stew.png deleted file mode 100644 index 7b857fa0..00000000 Binary files a/public/textures/farmersdelight/beef_stew.png and /dev/null differ diff --git a/public/textures/farmersdelight/beetroot_crate.png b/public/textures/farmersdelight/beetroot_crate.png deleted file mode 100644 index 31478732..00000000 Binary files a/public/textures/farmersdelight/beetroot_crate.png and /dev/null differ diff --git a/public/textures/farmersdelight/birch_cabinet.png b/public/textures/farmersdelight/birch_cabinet.png deleted file mode 100644 index a9f41360..00000000 Binary files a/public/textures/farmersdelight/birch_cabinet.png and /dev/null differ diff --git a/public/textures/farmersdelight/black_canvas_sign.png b/public/textures/farmersdelight/black_canvas_sign.png deleted file mode 100644 index bfa3caa7..00000000 Binary files a/public/textures/farmersdelight/black_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/black_hanging_canvas_sign.png b/public/textures/farmersdelight/black_hanging_canvas_sign.png deleted file mode 100644 index 580070fa..00000000 Binary files a/public/textures/farmersdelight/black_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/blue_canvas_sign.png b/public/textures/farmersdelight/blue_canvas_sign.png deleted file mode 100644 index 262d5065..00000000 Binary files a/public/textures/farmersdelight/blue_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/blue_hanging_canvas_sign.png b/public/textures/farmersdelight/blue_hanging_canvas_sign.png deleted file mode 100644 index e6c15432..00000000 Binary files a/public/textures/farmersdelight/blue_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/bone_broth.png b/public/textures/farmersdelight/bone_broth.png deleted file mode 100644 index a11ccb58..00000000 Binary files a/public/textures/farmersdelight/bone_broth.png and /dev/null differ diff --git a/public/textures/farmersdelight/brown_canvas_sign.png b/public/textures/farmersdelight/brown_canvas_sign.png deleted file mode 100644 index 0d63ede6..00000000 Binary files a/public/textures/farmersdelight/brown_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/brown_hanging_canvas_sign.png b/public/textures/farmersdelight/brown_hanging_canvas_sign.png deleted file mode 100644 index 15e0680a..00000000 Binary files a/public/textures/farmersdelight/brown_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/brown_mushroom_colony.png b/public/textures/farmersdelight/brown_mushroom_colony.png deleted file mode 100644 index 347a7e88..00000000 Binary files a/public/textures/farmersdelight/brown_mushroom_colony.png and /dev/null differ diff --git a/public/textures/farmersdelight/cabbage.png b/public/textures/farmersdelight/cabbage.png deleted file mode 100644 index d37eda61..00000000 Binary files a/public/textures/farmersdelight/cabbage.png and /dev/null differ diff --git a/public/textures/farmersdelight/cabbage_crate.png b/public/textures/farmersdelight/cabbage_crate.png deleted file mode 100644 index b08dcf39..00000000 Binary files a/public/textures/farmersdelight/cabbage_crate.png and /dev/null differ diff --git a/public/textures/farmersdelight/cabbage_leaf.png b/public/textures/farmersdelight/cabbage_leaf.png deleted file mode 100644 index be5cb758..00000000 Binary files a/public/textures/farmersdelight/cabbage_leaf.png and /dev/null differ diff --git a/public/textures/farmersdelight/cabbage_rolls.png b/public/textures/farmersdelight/cabbage_rolls.png deleted file mode 100644 index a63c6f2f..00000000 Binary files a/public/textures/farmersdelight/cabbage_rolls.png and /dev/null differ diff --git a/public/textures/farmersdelight/cabbage_seeds.png b/public/textures/farmersdelight/cabbage_seeds.png deleted file mode 100644 index 2c78181b..00000000 Binary files a/public/textures/farmersdelight/cabbage_seeds.png and /dev/null differ diff --git a/public/textures/farmersdelight/cake_slice.png b/public/textures/farmersdelight/cake_slice.png deleted file mode 100644 index e0b9d42d..00000000 Binary files a/public/textures/farmersdelight/cake_slice.png and /dev/null differ diff --git a/public/textures/farmersdelight/canvas.png b/public/textures/farmersdelight/canvas.png deleted file mode 100644 index 3e3dad54..00000000 Binary files a/public/textures/farmersdelight/canvas.png and /dev/null differ diff --git a/public/textures/farmersdelight/canvas_rug.png b/public/textures/farmersdelight/canvas_rug.png deleted file mode 100644 index 0cec61e2..00000000 Binary files a/public/textures/farmersdelight/canvas_rug.png and /dev/null differ diff --git a/public/textures/farmersdelight/canvas_sign.png b/public/textures/farmersdelight/canvas_sign.png deleted file mode 100644 index 7c3df052..00000000 Binary files a/public/textures/farmersdelight/canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/carrot_crate.png b/public/textures/farmersdelight/carrot_crate.png deleted file mode 100644 index 43cd796d..00000000 Binary files a/public/textures/farmersdelight/carrot_crate.png and /dev/null differ diff --git a/public/textures/farmersdelight/cherry_cabinet.png b/public/textures/farmersdelight/cherry_cabinet.png deleted file mode 100644 index 4c7a3acc..00000000 Binary files a/public/textures/farmersdelight/cherry_cabinet.png and /dev/null differ diff --git a/public/textures/farmersdelight/chicken_cuts.png b/public/textures/farmersdelight/chicken_cuts.png deleted file mode 100644 index 512d47e1..00000000 Binary files a/public/textures/farmersdelight/chicken_cuts.png and /dev/null differ diff --git a/public/textures/farmersdelight/chicken_sandwich.png b/public/textures/farmersdelight/chicken_sandwich.png deleted file mode 100644 index 20c39dea..00000000 Binary files a/public/textures/farmersdelight/chicken_sandwich.png and /dev/null differ diff --git a/public/textures/farmersdelight/chicken_soup.png b/public/textures/farmersdelight/chicken_soup.png deleted file mode 100644 index bef6a912..00000000 Binary files a/public/textures/farmersdelight/chicken_soup.png and /dev/null differ diff --git a/public/textures/farmersdelight/chocolate_pie.png b/public/textures/farmersdelight/chocolate_pie.png deleted file mode 100644 index fa4f99f2..00000000 Binary files a/public/textures/farmersdelight/chocolate_pie.png and /dev/null differ diff --git a/public/textures/farmersdelight/chocolate_pie_slice.png b/public/textures/farmersdelight/chocolate_pie_slice.png deleted file mode 100644 index a3cc9cfc..00000000 Binary files a/public/textures/farmersdelight/chocolate_pie_slice.png and /dev/null differ diff --git a/public/textures/farmersdelight/cod_roll.png b/public/textures/farmersdelight/cod_roll.png deleted file mode 100644 index a91591cb..00000000 Binary files a/public/textures/farmersdelight/cod_roll.png and /dev/null differ diff --git a/public/textures/farmersdelight/cod_slice.png b/public/textures/farmersdelight/cod_slice.png deleted file mode 100644 index d01a4cbe..00000000 Binary files a/public/textures/farmersdelight/cod_slice.png and /dev/null differ diff --git a/public/textures/farmersdelight/cooked_bacon.png b/public/textures/farmersdelight/cooked_bacon.png deleted file mode 100644 index ba0cdffb..00000000 Binary files a/public/textures/farmersdelight/cooked_bacon.png and /dev/null differ diff --git a/public/textures/farmersdelight/cooked_chicken_cuts.png b/public/textures/farmersdelight/cooked_chicken_cuts.png deleted file mode 100644 index c08204b7..00000000 Binary files a/public/textures/farmersdelight/cooked_chicken_cuts.png and /dev/null differ diff --git a/public/textures/farmersdelight/cooked_cod_slice.png b/public/textures/farmersdelight/cooked_cod_slice.png deleted file mode 100644 index 1f64cf74..00000000 Binary files a/public/textures/farmersdelight/cooked_cod_slice.png and /dev/null differ diff --git a/public/textures/farmersdelight/cooked_mutton_chops.png b/public/textures/farmersdelight/cooked_mutton_chops.png deleted file mode 100644 index fe0b3f3a..00000000 Binary files a/public/textures/farmersdelight/cooked_mutton_chops.png and /dev/null differ diff --git a/public/textures/farmersdelight/cooked_rice.png b/public/textures/farmersdelight/cooked_rice.png deleted file mode 100644 index 42446c4e..00000000 Binary files a/public/textures/farmersdelight/cooked_rice.png and /dev/null differ diff --git a/public/textures/farmersdelight/cooked_salmon_slice.png b/public/textures/farmersdelight/cooked_salmon_slice.png deleted file mode 100644 index 94d4b011..00000000 Binary files a/public/textures/farmersdelight/cooked_salmon_slice.png and /dev/null differ diff --git a/public/textures/farmersdelight/cooking_pot.png b/public/textures/farmersdelight/cooking_pot.png deleted file mode 100644 index d24bc8d9..00000000 Binary files a/public/textures/farmersdelight/cooking_pot.png and /dev/null differ diff --git a/public/textures/farmersdelight/crimson_cabinet.png b/public/textures/farmersdelight/crimson_cabinet.png deleted file mode 100644 index 076dc821..00000000 Binary files a/public/textures/farmersdelight/crimson_cabinet.png and /dev/null differ diff --git a/public/textures/farmersdelight/cutting_board.png b/public/textures/farmersdelight/cutting_board.png deleted file mode 100644 index 16e11c26..00000000 Binary files a/public/textures/farmersdelight/cutting_board.png and /dev/null differ diff --git a/public/textures/farmersdelight/cyan_canvas_sign.png b/public/textures/farmersdelight/cyan_canvas_sign.png deleted file mode 100644 index 34724257..00000000 Binary files a/public/textures/farmersdelight/cyan_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/cyan_hanging_canvas_sign.png b/public/textures/farmersdelight/cyan_hanging_canvas_sign.png deleted file mode 100644 index 7a75460f..00000000 Binary files a/public/textures/farmersdelight/cyan_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/dark_oak_cabinet.png b/public/textures/farmersdelight/dark_oak_cabinet.png deleted file mode 100644 index 8692e3c8..00000000 Binary files a/public/textures/farmersdelight/dark_oak_cabinet.png and /dev/null differ diff --git a/public/textures/farmersdelight/diamond_knife.png b/public/textures/farmersdelight/diamond_knife.png deleted file mode 100644 index bc5c8a3f..00000000 Binary files a/public/textures/farmersdelight/diamond_knife.png and /dev/null differ diff --git a/public/textures/farmersdelight/dog_food.png b/public/textures/farmersdelight/dog_food.png deleted file mode 100644 index e54a87bb..00000000 Binary files a/public/textures/farmersdelight/dog_food.png and /dev/null differ diff --git a/public/textures/farmersdelight/dumplings.png b/public/textures/farmersdelight/dumplings.png deleted file mode 100644 index ab84a6b9..00000000 Binary files a/public/textures/farmersdelight/dumplings.png and /dev/null differ diff --git a/public/textures/farmersdelight/egg_sandwich.png b/public/textures/farmersdelight/egg_sandwich.png deleted file mode 100644 index b6e92641..00000000 Binary files a/public/textures/farmersdelight/egg_sandwich.png and /dev/null differ diff --git a/public/textures/farmersdelight/fish_stew.png b/public/textures/farmersdelight/fish_stew.png deleted file mode 100644 index ecc861ea..00000000 Binary files a/public/textures/farmersdelight/fish_stew.png and /dev/null differ diff --git a/public/textures/farmersdelight/flint_knife.png b/public/textures/farmersdelight/flint_knife.png deleted file mode 100644 index baf2fa32..00000000 Binary files a/public/textures/farmersdelight/flint_knife.png and /dev/null differ diff --git a/public/textures/farmersdelight/fried_egg.png b/public/textures/farmersdelight/fried_egg.png deleted file mode 100644 index f9d46a35..00000000 Binary files a/public/textures/farmersdelight/fried_egg.png and /dev/null differ diff --git a/public/textures/farmersdelight/fried_rice.png b/public/textures/farmersdelight/fried_rice.png deleted file mode 100644 index 4a479310..00000000 Binary files a/public/textures/farmersdelight/fried_rice.png and /dev/null differ diff --git a/public/textures/farmersdelight/fruit_salad.png b/public/textures/farmersdelight/fruit_salad.png deleted file mode 100644 index c463f358..00000000 Binary files a/public/textures/farmersdelight/fruit_salad.png and /dev/null differ diff --git a/public/textures/farmersdelight/full_tatami_mat.png b/public/textures/farmersdelight/full_tatami_mat.png deleted file mode 100644 index 67016de0..00000000 Binary files a/public/textures/farmersdelight/full_tatami_mat.png and /dev/null differ diff --git a/public/textures/farmersdelight/glow_berry_custard.png b/public/textures/farmersdelight/glow_berry_custard.png deleted file mode 100644 index 54f9710a..00000000 Binary files a/public/textures/farmersdelight/glow_berry_custard.png and /dev/null differ diff --git a/public/textures/farmersdelight/golden_knife.png b/public/textures/farmersdelight/golden_knife.png deleted file mode 100644 index c73db7d6..00000000 Binary files a/public/textures/farmersdelight/golden_knife.png and /dev/null differ diff --git a/public/textures/farmersdelight/gray_canvas_sign.png b/public/textures/farmersdelight/gray_canvas_sign.png deleted file mode 100644 index ce43af45..00000000 Binary files a/public/textures/farmersdelight/gray_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/gray_hanging_canvas_sign.png b/public/textures/farmersdelight/gray_hanging_canvas_sign.png deleted file mode 100644 index 167de660..00000000 Binary files a/public/textures/farmersdelight/gray_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/green_canvas_sign.png b/public/textures/farmersdelight/green_canvas_sign.png deleted file mode 100644 index ce93a44e..00000000 Binary files a/public/textures/farmersdelight/green_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/green_hanging_canvas_sign.png b/public/textures/farmersdelight/green_hanging_canvas_sign.png deleted file mode 100644 index 638d1a3d..00000000 Binary files a/public/textures/farmersdelight/green_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/grilled_salmon.png b/public/textures/farmersdelight/grilled_salmon.png deleted file mode 100644 index e07cb528..00000000 Binary files a/public/textures/farmersdelight/grilled_salmon.png and /dev/null differ diff --git a/public/textures/farmersdelight/half_tatami_mat.png b/public/textures/farmersdelight/half_tatami_mat.png deleted file mode 100644 index 0f4ea93e..00000000 Binary files a/public/textures/farmersdelight/half_tatami_mat.png and /dev/null differ diff --git a/public/textures/farmersdelight/ham.png b/public/textures/farmersdelight/ham.png deleted file mode 100644 index 5afdc71c..00000000 Binary files a/public/textures/farmersdelight/ham.png and /dev/null differ diff --git a/public/textures/farmersdelight/hamburger.png b/public/textures/farmersdelight/hamburger.png deleted file mode 100644 index 25419cda..00000000 Binary files a/public/textures/farmersdelight/hamburger.png and /dev/null differ diff --git a/public/textures/farmersdelight/hanging_canvas_sign.png b/public/textures/farmersdelight/hanging_canvas_sign.png deleted file mode 100644 index 49157165..00000000 Binary files a/public/textures/farmersdelight/hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/honey_cookie.png b/public/textures/farmersdelight/honey_cookie.png deleted file mode 100644 index b69ffe03..00000000 Binary files a/public/textures/farmersdelight/honey_cookie.png and /dev/null differ diff --git a/public/textures/farmersdelight/honey_glazed_ham.png b/public/textures/farmersdelight/honey_glazed_ham.png deleted file mode 100644 index b80a3ab1..00000000 Binary files a/public/textures/farmersdelight/honey_glazed_ham.png and /dev/null differ diff --git a/public/textures/farmersdelight/honey_glazed_ham_block.png b/public/textures/farmersdelight/honey_glazed_ham_block.png deleted file mode 100644 index 3e8acac1..00000000 Binary files a/public/textures/farmersdelight/honey_glazed_ham_block.png and /dev/null differ diff --git a/public/textures/farmersdelight/horse_feed.png b/public/textures/farmersdelight/horse_feed.png deleted file mode 100644 index e42b4f1b..00000000 Binary files a/public/textures/farmersdelight/horse_feed.png and /dev/null differ diff --git a/public/textures/farmersdelight/hot_cocoa.png b/public/textures/farmersdelight/hot_cocoa.png deleted file mode 100644 index 2e246497..00000000 Binary files a/public/textures/farmersdelight/hot_cocoa.png and /dev/null differ diff --git a/public/textures/farmersdelight/iron_knife.png b/public/textures/farmersdelight/iron_knife.png deleted file mode 100644 index 1707df37..00000000 Binary files a/public/textures/farmersdelight/iron_knife.png and /dev/null differ diff --git a/public/textures/farmersdelight/jungle_cabinet.png b/public/textures/farmersdelight/jungle_cabinet.png deleted file mode 100644 index 4e7fb1e9..00000000 Binary files a/public/textures/farmersdelight/jungle_cabinet.png and /dev/null differ diff --git a/public/textures/farmersdelight/kelp_roll.png b/public/textures/farmersdelight/kelp_roll.png deleted file mode 100644 index ff31d17c..00000000 Binary files a/public/textures/farmersdelight/kelp_roll.png and /dev/null differ diff --git a/public/textures/farmersdelight/kelp_roll_slice.png b/public/textures/farmersdelight/kelp_roll_slice.png deleted file mode 100644 index 5053a325..00000000 Binary files a/public/textures/farmersdelight/kelp_roll_slice.png and /dev/null differ diff --git a/public/textures/farmersdelight/light_blue_canvas_sign.png b/public/textures/farmersdelight/light_blue_canvas_sign.png deleted file mode 100644 index b070f1b3..00000000 Binary files a/public/textures/farmersdelight/light_blue_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/light_blue_hanging_canvas_sign.png b/public/textures/farmersdelight/light_blue_hanging_canvas_sign.png deleted file mode 100644 index 3b6cdabb..00000000 Binary files a/public/textures/farmersdelight/light_blue_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/light_gray_canvas_sign.png b/public/textures/farmersdelight/light_gray_canvas_sign.png deleted file mode 100644 index a6cb04f4..00000000 Binary files a/public/textures/farmersdelight/light_gray_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/light_gray_hanging_canvas_sign.png b/public/textures/farmersdelight/light_gray_hanging_canvas_sign.png deleted file mode 100644 index c5e8e6cf..00000000 Binary files a/public/textures/farmersdelight/light_gray_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/lime_canvas_sign.png b/public/textures/farmersdelight/lime_canvas_sign.png deleted file mode 100644 index 0eed1a24..00000000 Binary files a/public/textures/farmersdelight/lime_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/lime_hanging_canvas_sign.png b/public/textures/farmersdelight/lime_hanging_canvas_sign.png deleted file mode 100644 index cb15bb47..00000000 Binary files a/public/textures/farmersdelight/lime_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/magenta_canvas_sign.png b/public/textures/farmersdelight/magenta_canvas_sign.png deleted file mode 100644 index 5dd1cbc0..00000000 Binary files a/public/textures/farmersdelight/magenta_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/magenta_hanging_canvas_sign.png b/public/textures/farmersdelight/magenta_hanging_canvas_sign.png deleted file mode 100644 index 5195fe31..00000000 Binary files a/public/textures/farmersdelight/magenta_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/mangrove_cabinet.png b/public/textures/farmersdelight/mangrove_cabinet.png deleted file mode 100644 index 71e3f849..00000000 Binary files a/public/textures/farmersdelight/mangrove_cabinet.png and /dev/null differ diff --git a/public/textures/farmersdelight/melon_juice.png b/public/textures/farmersdelight/melon_juice.png deleted file mode 100644 index 5c57f976..00000000 Binary files a/public/textures/farmersdelight/melon_juice.png and /dev/null differ diff --git a/public/textures/farmersdelight/melon_popsicle.png b/public/textures/farmersdelight/melon_popsicle.png deleted file mode 100644 index b9b75447..00000000 Binary files a/public/textures/farmersdelight/melon_popsicle.png and /dev/null differ diff --git a/public/textures/farmersdelight/milk_bottle.png b/public/textures/farmersdelight/milk_bottle.png deleted file mode 100644 index 395c9ae7..00000000 Binary files a/public/textures/farmersdelight/milk_bottle.png and /dev/null differ diff --git a/public/textures/farmersdelight/minced_beef.png b/public/textures/farmersdelight/minced_beef.png deleted file mode 100644 index e06a32cf..00000000 Binary files a/public/textures/farmersdelight/minced_beef.png and /dev/null differ diff --git a/public/textures/farmersdelight/mixed_salad.png b/public/textures/farmersdelight/mixed_salad.png deleted file mode 100644 index e1c1c668..00000000 Binary files a/public/textures/farmersdelight/mixed_salad.png and /dev/null differ diff --git a/public/textures/farmersdelight/mushroom_rice.png b/public/textures/farmersdelight/mushroom_rice.png deleted file mode 100644 index e498d0e6..00000000 Binary files a/public/textures/farmersdelight/mushroom_rice.png and /dev/null differ diff --git a/public/textures/farmersdelight/mutton_chops.png b/public/textures/farmersdelight/mutton_chops.png deleted file mode 100644 index 14dc0f1e..00000000 Binary files a/public/textures/farmersdelight/mutton_chops.png and /dev/null differ diff --git a/public/textures/farmersdelight/mutton_wrap.png b/public/textures/farmersdelight/mutton_wrap.png deleted file mode 100644 index cad87376..00000000 Binary files a/public/textures/farmersdelight/mutton_wrap.png and /dev/null differ diff --git a/public/textures/farmersdelight/nether_salad.png b/public/textures/farmersdelight/nether_salad.png deleted file mode 100644 index f32d4139..00000000 Binary files a/public/textures/farmersdelight/nether_salad.png and /dev/null differ diff --git a/public/textures/farmersdelight/netherite_knife.png b/public/textures/farmersdelight/netherite_knife.png deleted file mode 100644 index 914034a6..00000000 Binary files a/public/textures/farmersdelight/netherite_knife.png and /dev/null differ diff --git a/public/textures/farmersdelight/noodle_soup.png b/public/textures/farmersdelight/noodle_soup.png deleted file mode 100644 index 29dfcbd7..00000000 Binary files a/public/textures/farmersdelight/noodle_soup.png and /dev/null differ diff --git a/public/textures/farmersdelight/oak_cabinet.png b/public/textures/farmersdelight/oak_cabinet.png deleted file mode 100644 index bcb5f573..00000000 Binary files a/public/textures/farmersdelight/oak_cabinet.png and /dev/null differ diff --git a/public/textures/farmersdelight/onion.png b/public/textures/farmersdelight/onion.png deleted file mode 100644 index 1d368953..00000000 Binary files a/public/textures/farmersdelight/onion.png and /dev/null differ diff --git a/public/textures/farmersdelight/onion_crate.png b/public/textures/farmersdelight/onion_crate.png deleted file mode 100644 index f4909d63..00000000 Binary files a/public/textures/farmersdelight/onion_crate.png and /dev/null differ diff --git a/public/textures/farmersdelight/orange_canvas_sign.png b/public/textures/farmersdelight/orange_canvas_sign.png deleted file mode 100644 index e9fe4b29..00000000 Binary files a/public/textures/farmersdelight/orange_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/orange_hanging_canvas_sign.png b/public/textures/farmersdelight/orange_hanging_canvas_sign.png deleted file mode 100644 index fa6f5827..00000000 Binary files a/public/textures/farmersdelight/orange_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/organic_compost.png b/public/textures/farmersdelight/organic_compost.png deleted file mode 100644 index be9de48c..00000000 Binary files a/public/textures/farmersdelight/organic_compost.png and /dev/null differ diff --git a/public/textures/farmersdelight/pasta_with_meatballs.png b/public/textures/farmersdelight/pasta_with_meatballs.png deleted file mode 100644 index c00cc302..00000000 Binary files a/public/textures/farmersdelight/pasta_with_meatballs.png and /dev/null differ diff --git a/public/textures/farmersdelight/pasta_with_mutton_chop.png b/public/textures/farmersdelight/pasta_with_mutton_chop.png deleted file mode 100644 index 99855af1..00000000 Binary files a/public/textures/farmersdelight/pasta_with_mutton_chop.png and /dev/null differ diff --git a/public/textures/farmersdelight/pie_crust.png b/public/textures/farmersdelight/pie_crust.png deleted file mode 100644 index 7291ca50..00000000 Binary files a/public/textures/farmersdelight/pie_crust.png and /dev/null differ diff --git a/public/textures/farmersdelight/pink_canvas_sign.png b/public/textures/farmersdelight/pink_canvas_sign.png deleted file mode 100644 index ed55ef90..00000000 Binary files a/public/textures/farmersdelight/pink_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/pink_hanging_canvas_sign.png b/public/textures/farmersdelight/pink_hanging_canvas_sign.png deleted file mode 100644 index fb29e72a..00000000 Binary files a/public/textures/farmersdelight/pink_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/potato_crate.png b/public/textures/farmersdelight/potato_crate.png deleted file mode 100644 index b320caa2..00000000 Binary files a/public/textures/farmersdelight/potato_crate.png and /dev/null differ diff --git a/public/textures/farmersdelight/pumpkin_slice.png b/public/textures/farmersdelight/pumpkin_slice.png deleted file mode 100644 index 91da70d8..00000000 Binary files a/public/textures/farmersdelight/pumpkin_slice.png and /dev/null differ diff --git a/public/textures/farmersdelight/pumpkin_soup.png b/public/textures/farmersdelight/pumpkin_soup.png deleted file mode 100644 index cc3a5bd4..00000000 Binary files a/public/textures/farmersdelight/pumpkin_soup.png and /dev/null differ diff --git a/public/textures/farmersdelight/purple_canvas_sign.png b/public/textures/farmersdelight/purple_canvas_sign.png deleted file mode 100644 index b63bc251..00000000 Binary files a/public/textures/farmersdelight/purple_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/purple_hanging_canvas_sign.png b/public/textures/farmersdelight/purple_hanging_canvas_sign.png deleted file mode 100644 index bd1673ab..00000000 Binary files a/public/textures/farmersdelight/purple_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/ratatouille.png b/public/textures/farmersdelight/ratatouille.png deleted file mode 100644 index dcba7160..00000000 Binary files a/public/textures/farmersdelight/ratatouille.png and /dev/null differ diff --git a/public/textures/farmersdelight/raw_pasta.png b/public/textures/farmersdelight/raw_pasta.png deleted file mode 100644 index 70df66df..00000000 Binary files a/public/textures/farmersdelight/raw_pasta.png and /dev/null differ diff --git a/public/textures/farmersdelight/red_canvas_sign.png b/public/textures/farmersdelight/red_canvas_sign.png deleted file mode 100644 index db88b73f..00000000 Binary files a/public/textures/farmersdelight/red_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/red_hanging_canvas_sign.png b/public/textures/farmersdelight/red_hanging_canvas_sign.png deleted file mode 100644 index fd0b75d9..00000000 Binary files a/public/textures/farmersdelight/red_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/red_mushroom_colony.png b/public/textures/farmersdelight/red_mushroom_colony.png deleted file mode 100644 index 2913d6b3..00000000 Binary files a/public/textures/farmersdelight/red_mushroom_colony.png and /dev/null differ diff --git a/public/textures/farmersdelight/rice.png b/public/textures/farmersdelight/rice.png deleted file mode 100644 index c98d5d26..00000000 Binary files a/public/textures/farmersdelight/rice.png and /dev/null differ diff --git a/public/textures/farmersdelight/rice_bag.png b/public/textures/farmersdelight/rice_bag.png deleted file mode 100644 index 055000cc..00000000 Binary files a/public/textures/farmersdelight/rice_bag.png and /dev/null differ diff --git a/public/textures/farmersdelight/rice_bale.png b/public/textures/farmersdelight/rice_bale.png deleted file mode 100644 index a7d206d7..00000000 Binary files a/public/textures/farmersdelight/rice_bale.png and /dev/null differ diff --git a/public/textures/farmersdelight/rice_panicle.png b/public/textures/farmersdelight/rice_panicle.png deleted file mode 100644 index 6e1c8815..00000000 Binary files a/public/textures/farmersdelight/rice_panicle.png and /dev/null differ diff --git a/public/textures/farmersdelight/rice_roll_medley_block.png b/public/textures/farmersdelight/rice_roll_medley_block.png deleted file mode 100644 index c303a4cf..00000000 Binary files a/public/textures/farmersdelight/rice_roll_medley_block.png and /dev/null differ diff --git a/public/textures/farmersdelight/rich_soil.png b/public/textures/farmersdelight/rich_soil.png deleted file mode 100644 index 95bb3931..00000000 Binary files a/public/textures/farmersdelight/rich_soil.png and /dev/null differ diff --git a/public/textures/farmersdelight/rich_soil_farmland.png b/public/textures/farmersdelight/rich_soil_farmland.png deleted file mode 100644 index d21ea24a..00000000 Binary files a/public/textures/farmersdelight/rich_soil_farmland.png and /dev/null differ diff --git a/public/textures/farmersdelight/roast_chicken.png b/public/textures/farmersdelight/roast_chicken.png deleted file mode 100644 index f10a2901..00000000 Binary files a/public/textures/farmersdelight/roast_chicken.png and /dev/null differ diff --git a/public/textures/farmersdelight/roast_chicken_block.png b/public/textures/farmersdelight/roast_chicken_block.png deleted file mode 100644 index f4c12d13..00000000 Binary files a/public/textures/farmersdelight/roast_chicken_block.png and /dev/null differ diff --git a/public/textures/farmersdelight/roasted_mutton_chops.png b/public/textures/farmersdelight/roasted_mutton_chops.png deleted file mode 100644 index 509ca1cd..00000000 Binary files a/public/textures/farmersdelight/roasted_mutton_chops.png and /dev/null differ diff --git a/public/textures/farmersdelight/rope.png b/public/textures/farmersdelight/rope.png deleted file mode 100644 index 20d05cf0..00000000 Binary files a/public/textures/farmersdelight/rope.png and /dev/null differ diff --git a/public/textures/farmersdelight/rotten_tomato.png b/public/textures/farmersdelight/rotten_tomato.png deleted file mode 100644 index b4f0ec04..00000000 Binary files a/public/textures/farmersdelight/rotten_tomato.png and /dev/null differ diff --git a/public/textures/farmersdelight/safety_net.png b/public/textures/farmersdelight/safety_net.png deleted file mode 100644 index eb5d1c6c..00000000 Binary files a/public/textures/farmersdelight/safety_net.png and /dev/null differ diff --git a/public/textures/farmersdelight/salmon_roll.png b/public/textures/farmersdelight/salmon_roll.png deleted file mode 100644 index 9f8cb46b..00000000 Binary files a/public/textures/farmersdelight/salmon_roll.png and /dev/null differ diff --git a/public/textures/farmersdelight/salmon_slice.png b/public/textures/farmersdelight/salmon_slice.png deleted file mode 100644 index 96303ce3..00000000 Binary files a/public/textures/farmersdelight/salmon_slice.png and /dev/null differ diff --git a/public/textures/farmersdelight/sandy_shrub.png b/public/textures/farmersdelight/sandy_shrub.png deleted file mode 100644 index df2867f7..00000000 Binary files a/public/textures/farmersdelight/sandy_shrub.png and /dev/null differ diff --git a/public/textures/farmersdelight/shepherds_pie.png b/public/textures/farmersdelight/shepherds_pie.png deleted file mode 100644 index 44d273d6..00000000 Binary files a/public/textures/farmersdelight/shepherds_pie.png and /dev/null differ diff --git a/public/textures/farmersdelight/shepherds_pie_block.png b/public/textures/farmersdelight/shepherds_pie_block.png deleted file mode 100644 index ab95c7e9..00000000 Binary files a/public/textures/farmersdelight/shepherds_pie_block.png and /dev/null differ diff --git a/public/textures/farmersdelight/skillet.png b/public/textures/farmersdelight/skillet.png deleted file mode 100644 index 7a19797e..00000000 Binary files a/public/textures/farmersdelight/skillet.png and /dev/null differ diff --git a/public/textures/farmersdelight/smoked_ham.png b/public/textures/farmersdelight/smoked_ham.png deleted file mode 100644 index c5e7106d..00000000 Binary files a/public/textures/farmersdelight/smoked_ham.png and /dev/null differ diff --git a/public/textures/farmersdelight/spruce_cabinet.png b/public/textures/farmersdelight/spruce_cabinet.png deleted file mode 100644 index 4853f916..00000000 Binary files a/public/textures/farmersdelight/spruce_cabinet.png and /dev/null differ diff --git a/public/textures/farmersdelight/squid_ink_pasta.png b/public/textures/farmersdelight/squid_ink_pasta.png deleted file mode 100644 index 90a8ded1..00000000 Binary files a/public/textures/farmersdelight/squid_ink_pasta.png and /dev/null differ diff --git a/public/textures/farmersdelight/steak_and_potatoes.png b/public/textures/farmersdelight/steak_and_potatoes.png deleted file mode 100644 index 79ce6229..00000000 Binary files a/public/textures/farmersdelight/steak_and_potatoes.png and /dev/null differ diff --git a/public/textures/farmersdelight/stove.png b/public/textures/farmersdelight/stove.png deleted file mode 100644 index 3028853f..00000000 Binary files a/public/textures/farmersdelight/stove.png and /dev/null differ diff --git a/public/textures/farmersdelight/straw.png b/public/textures/farmersdelight/straw.png deleted file mode 100644 index 5dd7cc67..00000000 Binary files a/public/textures/farmersdelight/straw.png and /dev/null differ diff --git a/public/textures/farmersdelight/straw_bale.png b/public/textures/farmersdelight/straw_bale.png deleted file mode 100644 index 15353c59..00000000 Binary files a/public/textures/farmersdelight/straw_bale.png and /dev/null differ diff --git a/public/textures/farmersdelight/stuffed_potato.png b/public/textures/farmersdelight/stuffed_potato.png deleted file mode 100644 index bfafc0f7..00000000 Binary files a/public/textures/farmersdelight/stuffed_potato.png and /dev/null differ diff --git a/public/textures/farmersdelight/stuffed_pumpkin.png b/public/textures/farmersdelight/stuffed_pumpkin.png deleted file mode 100644 index 5a85f85f..00000000 Binary files a/public/textures/farmersdelight/stuffed_pumpkin.png and /dev/null differ diff --git a/public/textures/farmersdelight/stuffed_pumpkin_block.png b/public/textures/farmersdelight/stuffed_pumpkin_block.png deleted file mode 100644 index 2008f58e..00000000 Binary files a/public/textures/farmersdelight/stuffed_pumpkin_block.png and /dev/null differ diff --git a/public/textures/farmersdelight/sweet_berry_cheesecake.png b/public/textures/farmersdelight/sweet_berry_cheesecake.png deleted file mode 100644 index 8dc42d2d..00000000 Binary files a/public/textures/farmersdelight/sweet_berry_cheesecake.png and /dev/null differ diff --git a/public/textures/farmersdelight/sweet_berry_cheesecake_slice.png b/public/textures/farmersdelight/sweet_berry_cheesecake_slice.png deleted file mode 100644 index b80c7695..00000000 Binary files a/public/textures/farmersdelight/sweet_berry_cheesecake_slice.png and /dev/null differ diff --git a/public/textures/farmersdelight/sweet_berry_cookie.png b/public/textures/farmersdelight/sweet_berry_cookie.png deleted file mode 100644 index 1e11e058..00000000 Binary files a/public/textures/farmersdelight/sweet_berry_cookie.png and /dev/null differ diff --git a/public/textures/farmersdelight/tatami.png b/public/textures/farmersdelight/tatami.png deleted file mode 100644 index a959870f..00000000 Binary files a/public/textures/farmersdelight/tatami.png and /dev/null differ diff --git a/public/textures/farmersdelight/tomato.png b/public/textures/farmersdelight/tomato.png deleted file mode 100644 index cf8fc6d4..00000000 Binary files a/public/textures/farmersdelight/tomato.png and /dev/null differ diff --git a/public/textures/farmersdelight/tomato_crate.png b/public/textures/farmersdelight/tomato_crate.png deleted file mode 100644 index 71e32c45..00000000 Binary files a/public/textures/farmersdelight/tomato_crate.png and /dev/null differ diff --git a/public/textures/farmersdelight/tomato_sauce.png b/public/textures/farmersdelight/tomato_sauce.png deleted file mode 100644 index 68e6619d..00000000 Binary files a/public/textures/farmersdelight/tomato_sauce.png and /dev/null differ diff --git a/public/textures/farmersdelight/tomato_seeds.png b/public/textures/farmersdelight/tomato_seeds.png deleted file mode 100644 index 5c24e020..00000000 Binary files a/public/textures/farmersdelight/tomato_seeds.png and /dev/null differ diff --git a/public/textures/farmersdelight/tree_bark.png b/public/textures/farmersdelight/tree_bark.png deleted file mode 100644 index 7bf90bee..00000000 Binary files a/public/textures/farmersdelight/tree_bark.png and /dev/null differ diff --git a/public/textures/farmersdelight/vegetable_noodles.png b/public/textures/farmersdelight/vegetable_noodles.png deleted file mode 100644 index 0c616dc9..00000000 Binary files a/public/textures/farmersdelight/vegetable_noodles.png and /dev/null differ diff --git a/public/textures/farmersdelight/vegetable_soup.png b/public/textures/farmersdelight/vegetable_soup.png deleted file mode 100644 index 3525d661..00000000 Binary files a/public/textures/farmersdelight/vegetable_soup.png and /dev/null differ diff --git a/public/textures/farmersdelight/warped_cabinet.png b/public/textures/farmersdelight/warped_cabinet.png deleted file mode 100644 index 35a2d4ee..00000000 Binary files a/public/textures/farmersdelight/warped_cabinet.png and /dev/null differ diff --git a/public/textures/farmersdelight/wheat_dough.png b/public/textures/farmersdelight/wheat_dough.png deleted file mode 100644 index 627c5f28..00000000 Binary files a/public/textures/farmersdelight/wheat_dough.png and /dev/null differ diff --git a/public/textures/farmersdelight/white_canvas_sign.png b/public/textures/farmersdelight/white_canvas_sign.png deleted file mode 100644 index ca8de774..00000000 Binary files a/public/textures/farmersdelight/white_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/white_hanging_canvas_sign.png b/public/textures/farmersdelight/white_hanging_canvas_sign.png deleted file mode 100644 index 24d0c052..00000000 Binary files a/public/textures/farmersdelight/white_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/wild_beetroots.png b/public/textures/farmersdelight/wild_beetroots.png deleted file mode 100644 index 6ede481a..00000000 Binary files a/public/textures/farmersdelight/wild_beetroots.png and /dev/null differ diff --git a/public/textures/farmersdelight/wild_cabbages.png b/public/textures/farmersdelight/wild_cabbages.png deleted file mode 100644 index 6c0c101e..00000000 Binary files a/public/textures/farmersdelight/wild_cabbages.png and /dev/null differ diff --git a/public/textures/farmersdelight/wild_carrots.png b/public/textures/farmersdelight/wild_carrots.png deleted file mode 100644 index a8036b4e..00000000 Binary files a/public/textures/farmersdelight/wild_carrots.png and /dev/null differ diff --git a/public/textures/farmersdelight/wild_onions.png b/public/textures/farmersdelight/wild_onions.png deleted file mode 100644 index eaaff24b..00000000 Binary files a/public/textures/farmersdelight/wild_onions.png and /dev/null differ diff --git a/public/textures/farmersdelight/wild_potatoes.png b/public/textures/farmersdelight/wild_potatoes.png deleted file mode 100644 index 8e28df26..00000000 Binary files a/public/textures/farmersdelight/wild_potatoes.png and /dev/null differ diff --git a/public/textures/farmersdelight/wild_rice.png b/public/textures/farmersdelight/wild_rice.png deleted file mode 100644 index 8630605c..00000000 Binary files a/public/textures/farmersdelight/wild_rice.png and /dev/null differ diff --git a/public/textures/farmersdelight/wild_tomatoes.png b/public/textures/farmersdelight/wild_tomatoes.png deleted file mode 100644 index 6fb1e4c8..00000000 Binary files a/public/textures/farmersdelight/wild_tomatoes.png and /dev/null differ diff --git a/public/textures/farmersdelight/yellow_canvas_sign.png b/public/textures/farmersdelight/yellow_canvas_sign.png deleted file mode 100644 index 44b19f9f..00000000 Binary files a/public/textures/farmersdelight/yellow_canvas_sign.png and /dev/null differ diff --git a/public/textures/farmersdelight/yellow_hanging_canvas_sign.png b/public/textures/farmersdelight/yellow_hanging_canvas_sign.png deleted file mode 100644 index 104780b8..00000000 Binary files a/public/textures/farmersdelight/yellow_hanging_canvas_sign.png and /dev/null differ diff --git a/public/textures/fireflybush/fireflybush.png b/public/textures/fireflybush/fireflybush.png deleted file mode 100644 index b0e7ea5a..00000000 Binary files a/public/textures/fireflybush/fireflybush.png and /dev/null differ diff --git a/public/textures/fireproofboats/crimson_boat.png b/public/textures/fireproofboats/crimson_boat.png deleted file mode 100644 index c8574db0..00000000 Binary files a/public/textures/fireproofboats/crimson_boat.png and /dev/null differ diff --git a/public/textures/fireproofboats/crimson_chest_boat.png b/public/textures/fireproofboats/crimson_chest_boat.png deleted file mode 100644 index 8739a6db..00000000 Binary files a/public/textures/fireproofboats/crimson_chest_boat.png and /dev/null differ diff --git a/public/textures/fireproofboats/warped_boat.png b/public/textures/fireproofboats/warped_boat.png deleted file mode 100644 index aab23422..00000000 Binary files a/public/textures/fireproofboats/warped_boat.png and /dev/null differ diff --git a/public/textures/fireproofboats/warped_chest_boat.png b/public/textures/fireproofboats/warped_chest_boat.png deleted file mode 100644 index 2b9def47..00000000 Binary files a/public/textures/fireproofboats/warped_chest_boat.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__beer.png b/public/textures/fluid/brewinandchewin__beer.png deleted file mode 100644 index 1957ea27..00000000 Binary files a/public/textures/fluid/brewinandchewin__beer.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__bloody_mary.png b/public/textures/fluid/brewinandchewin__bloody_mary.png deleted file mode 100644 index c10f0658..00000000 Binary files a/public/textures/fluid/brewinandchewin__bloody_mary.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__dread_nog.png b/public/textures/fluid/brewinandchewin__dread_nog.png deleted file mode 100644 index 41687f71..00000000 Binary files a/public/textures/fluid/brewinandchewin__dread_nog.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__egg_grog.png b/public/textures/fluid/brewinandchewin__egg_grog.png deleted file mode 100644 index 15d6f4e3..00000000 Binary files a/public/textures/fluid/brewinandchewin__egg_grog.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flaxen_cheese.png b/public/textures/fluid/brewinandchewin__flaxen_cheese.png deleted file mode 100644 index 35ea0b81..00000000 Binary files a/public/textures/fluid/brewinandchewin__flaxen_cheese.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_beer.png b/public/textures/fluid/brewinandchewin__flowing_beer.png deleted file mode 100644 index b5cb6610..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_beer.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_bloody_mary.png b/public/textures/fluid/brewinandchewin__flowing_bloody_mary.png deleted file mode 100644 index 7400cc28..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_bloody_mary.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_dread_nog.png b/public/textures/fluid/brewinandchewin__flowing_dread_nog.png deleted file mode 100644 index b895631f..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_dread_nog.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_egg_grog.png b/public/textures/fluid/brewinandchewin__flowing_egg_grog.png deleted file mode 100644 index 46bdb0cd..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_egg_grog.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_flaxen_cheese.png b/public/textures/fluid/brewinandchewin__flowing_flaxen_cheese.png deleted file mode 100644 index 75e31089..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_flaxen_cheese.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_glittering_grenadine.png b/public/textures/fluid/brewinandchewin__flowing_glittering_grenadine.png deleted file mode 100644 index 959c69f1..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_glittering_grenadine.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_honey.png b/public/textures/fluid/brewinandchewin__flowing_honey.png deleted file mode 100644 index 20c0b908..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_honey.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_kombucha.png b/public/textures/fluid/brewinandchewin__flowing_kombucha.png deleted file mode 100644 index c9f48c31..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_kombucha.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_mead.png b/public/textures/fluid/brewinandchewin__flowing_mead.png deleted file mode 100644 index 0fa743b1..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_mead.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_pale_jane.png b/public/textures/fluid/brewinandchewin__flowing_pale_jane.png deleted file mode 100644 index 1df4cbfc..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_pale_jane.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_red_rum.png b/public/textures/fluid/brewinandchewin__flowing_red_rum.png deleted file mode 100644 index 91ad403e..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_red_rum.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_rice_wine.png b/public/textures/fluid/brewinandchewin__flowing_rice_wine.png deleted file mode 100644 index 46bdb0cd..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_rice_wine.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_saccharine_rum.png b/public/textures/fluid/brewinandchewin__flowing_saccharine_rum.png deleted file mode 100644 index 500b290e..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_saccharine_rum.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_salty_folly.png b/public/textures/fluid/brewinandchewin__flowing_salty_folly.png deleted file mode 100644 index 16ff93f8..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_salty_folly.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_scarlet_cheese.png b/public/textures/fluid/brewinandchewin__flowing_scarlet_cheese.png deleted file mode 100644 index ae820706..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_scarlet_cheese.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_steel_toe_stout.png b/public/textures/fluid/brewinandchewin__flowing_steel_toe_stout.png deleted file mode 100644 index a142fa78..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_steel_toe_stout.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_strongroot_ale.png b/public/textures/fluid/brewinandchewin__flowing_strongroot_ale.png deleted file mode 100644 index e11da941..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_strongroot_ale.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_vodka.png b/public/textures/fluid/brewinandchewin__flowing_vodka.png deleted file mode 100644 index ab89cdfe..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_vodka.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__flowing_withering_dross.png b/public/textures/fluid/brewinandchewin__flowing_withering_dross.png deleted file mode 100644 index 32ddb9d2..00000000 Binary files a/public/textures/fluid/brewinandchewin__flowing_withering_dross.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__glittering_grenadine.png b/public/textures/fluid/brewinandchewin__glittering_grenadine.png deleted file mode 100644 index 77316583..00000000 Binary files a/public/textures/fluid/brewinandchewin__glittering_grenadine.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__honey.png b/public/textures/fluid/brewinandchewin__honey.png deleted file mode 100644 index 20c0b908..00000000 Binary files a/public/textures/fluid/brewinandchewin__honey.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__kombucha.png b/public/textures/fluid/brewinandchewin__kombucha.png deleted file mode 100644 index 9fd39fbd..00000000 Binary files a/public/textures/fluid/brewinandchewin__kombucha.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__mead.png b/public/textures/fluid/brewinandchewin__mead.png deleted file mode 100644 index 0fa743b1..00000000 Binary files a/public/textures/fluid/brewinandchewin__mead.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__pale_jane.png b/public/textures/fluid/brewinandchewin__pale_jane.png deleted file mode 100644 index ddaa3308..00000000 Binary files a/public/textures/fluid/brewinandchewin__pale_jane.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__red_rum.png b/public/textures/fluid/brewinandchewin__red_rum.png deleted file mode 100644 index 5f3d8b9a..00000000 Binary files a/public/textures/fluid/brewinandchewin__red_rum.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__rice_wine.png b/public/textures/fluid/brewinandchewin__rice_wine.png deleted file mode 100644 index 400a61e7..00000000 Binary files a/public/textures/fluid/brewinandchewin__rice_wine.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__saccharine_rum.png b/public/textures/fluid/brewinandchewin__saccharine_rum.png deleted file mode 100644 index 986483b7..00000000 Binary files a/public/textures/fluid/brewinandchewin__saccharine_rum.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__salty_folly.png b/public/textures/fluid/brewinandchewin__salty_folly.png deleted file mode 100644 index 3c12666c..00000000 Binary files a/public/textures/fluid/brewinandchewin__salty_folly.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__scarlet_cheese.png b/public/textures/fluid/brewinandchewin__scarlet_cheese.png deleted file mode 100644 index ae820706..00000000 Binary files a/public/textures/fluid/brewinandchewin__scarlet_cheese.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__steel_toe_stout.png b/public/textures/fluid/brewinandchewin__steel_toe_stout.png deleted file mode 100644 index d8729afa..00000000 Binary files a/public/textures/fluid/brewinandchewin__steel_toe_stout.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__strongroot_ale.png b/public/textures/fluid/brewinandchewin__strongroot_ale.png deleted file mode 100644 index e11da941..00000000 Binary files a/public/textures/fluid/brewinandchewin__strongroot_ale.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__vodka.png b/public/textures/fluid/brewinandchewin__vodka.png deleted file mode 100644 index ab89cdfe..00000000 Binary files a/public/textures/fluid/brewinandchewin__vodka.png and /dev/null differ diff --git a/public/textures/fluid/brewinandchewin__withering_dross.png b/public/textures/fluid/brewinandchewin__withering_dross.png deleted file mode 100644 index b37da224..00000000 Binary files a/public/textures/fluid/brewinandchewin__withering_dross.png and /dev/null differ diff --git a/public/textures/fluid/create__chocolate.png b/public/textures/fluid/create__chocolate.png deleted file mode 100644 index 30478fb4..00000000 Binary files a/public/textures/fluid/create__chocolate.png and /dev/null differ diff --git a/public/textures/fluid/create__flowing_chocolate.png b/public/textures/fluid/create__flowing_chocolate.png deleted file mode 100644 index 8900ca9b..00000000 Binary files a/public/textures/fluid/create__flowing_chocolate.png and /dev/null differ diff --git a/public/textures/fluid/create__flowing_honey.png b/public/textures/fluid/create__flowing_honey.png deleted file mode 100644 index f98bfc69..00000000 Binary files a/public/textures/fluid/create__flowing_honey.png and /dev/null differ diff --git a/public/textures/fluid/create__flowing_potion.png b/public/textures/fluid/create__flowing_potion.png deleted file mode 100644 index 62993390..00000000 Binary files a/public/textures/fluid/create__flowing_potion.png and /dev/null differ diff --git a/public/textures/fluid/create__flowing_tea.png b/public/textures/fluid/create__flowing_tea.png deleted file mode 100644 index bb0f6ad7..00000000 Binary files a/public/textures/fluid/create__flowing_tea.png and /dev/null differ diff --git a/public/textures/fluid/create__honey.png b/public/textures/fluid/create__honey.png deleted file mode 100644 index f98bfc69..00000000 Binary files a/public/textures/fluid/create__honey.png and /dev/null differ diff --git a/public/textures/fluid/create__potion.png b/public/textures/fluid/create__potion.png deleted file mode 100644 index eff613cc..00000000 Binary files a/public/textures/fluid/create__potion.png and /dev/null differ diff --git a/public/textures/fluid/create__tea.png b/public/textures/fluid/create__tea.png deleted file mode 100644 index e3427180..00000000 Binary files a/public/textures/fluid/create__tea.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__black_dye.png b/public/textures/fluid/create_dragons_plus__black_dye.png deleted file mode 100644 index 9ed78573..00000000 Binary files a/public/textures/fluid/create_dragons_plus__black_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__blue_dye.png b/public/textures/fluid/create_dragons_plus__blue_dye.png deleted file mode 100644 index 931874ba..00000000 Binary files a/public/textures/fluid/create_dragons_plus__blue_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__brown_dye.png b/public/textures/fluid/create_dragons_plus__brown_dye.png deleted file mode 100644 index 585bd9d8..00000000 Binary files a/public/textures/fluid/create_dragons_plus__brown_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__cyan_dye.png b/public/textures/fluid/create_dragons_plus__cyan_dye.png deleted file mode 100644 index 5330fb41..00000000 Binary files a/public/textures/fluid/create_dragons_plus__cyan_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__dragon_breath.png b/public/textures/fluid/create_dragons_plus__dragon_breath.png deleted file mode 100644 index ff6dd114..00000000 Binary files a/public/textures/fluid/create_dragons_plus__dragon_breath.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_black_dye.png b/public/textures/fluid/create_dragons_plus__flowing_black_dye.png deleted file mode 100644 index 9ed78573..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_black_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_blue_dye.png b/public/textures/fluid/create_dragons_plus__flowing_blue_dye.png deleted file mode 100644 index 7d90209a..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_blue_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_brown_dye.png b/public/textures/fluid/create_dragons_plus__flowing_brown_dye.png deleted file mode 100644 index dd4e0090..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_brown_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_cyan_dye.png b/public/textures/fluid/create_dragons_plus__flowing_cyan_dye.png deleted file mode 100644 index 3049dee6..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_cyan_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_dragon_breath.png b/public/textures/fluid/create_dragons_plus__flowing_dragon_breath.png deleted file mode 100644 index ff6dd114..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_dragon_breath.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_gray_dye.png b/public/textures/fluid/create_dragons_plus__flowing_gray_dye.png deleted file mode 100644 index f7dd3aa9..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_gray_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_green_dye.png b/public/textures/fluid/create_dragons_plus__flowing_green_dye.png deleted file mode 100644 index cb362e50..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_green_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_light_blue_dye.png b/public/textures/fluid/create_dragons_plus__flowing_light_blue_dye.png deleted file mode 100644 index 85096316..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_light_blue_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_light_gray_dye.png b/public/textures/fluid/create_dragons_plus__flowing_light_gray_dye.png deleted file mode 100644 index 2075fc79..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_light_gray_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_lime_dye.png b/public/textures/fluid/create_dragons_plus__flowing_lime_dye.png deleted file mode 100644 index d6a350c7..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_lime_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_magenta_dye.png b/public/textures/fluid/create_dragons_plus__flowing_magenta_dye.png deleted file mode 100644 index 8fc96652..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_magenta_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_orange_dye.png b/public/textures/fluid/create_dragons_plus__flowing_orange_dye.png deleted file mode 100644 index cd27d9c7..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_orange_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_pink_dye.png b/public/textures/fluid/create_dragons_plus__flowing_pink_dye.png deleted file mode 100644 index b197f503..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_pink_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_purple_dye.png b/public/textures/fluid/create_dragons_plus__flowing_purple_dye.png deleted file mode 100644 index 173a5dbe..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_purple_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_red_dye.png b/public/textures/fluid/create_dragons_plus__flowing_red_dye.png deleted file mode 100644 index 045106bb..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_red_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_white_dye.png b/public/textures/fluid/create_dragons_plus__flowing_white_dye.png deleted file mode 100644 index a5997e7d..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_white_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__flowing_yellow_dye.png b/public/textures/fluid/create_dragons_plus__flowing_yellow_dye.png deleted file mode 100644 index 34f3ce1b..00000000 Binary files a/public/textures/fluid/create_dragons_plus__flowing_yellow_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__gray_dye.png b/public/textures/fluid/create_dragons_plus__gray_dye.png deleted file mode 100644 index a5d02fb4..00000000 Binary files a/public/textures/fluid/create_dragons_plus__gray_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__green_dye.png b/public/textures/fluid/create_dragons_plus__green_dye.png deleted file mode 100644 index cb362e50..00000000 Binary files a/public/textures/fluid/create_dragons_plus__green_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__light_blue_dye.png b/public/textures/fluid/create_dragons_plus__light_blue_dye.png deleted file mode 100644 index e0556cc0..00000000 Binary files a/public/textures/fluid/create_dragons_plus__light_blue_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__light_gray_dye.png b/public/textures/fluid/create_dragons_plus__light_gray_dye.png deleted file mode 100644 index 11742392..00000000 Binary files a/public/textures/fluid/create_dragons_plus__light_gray_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__lime_dye.png b/public/textures/fluid/create_dragons_plus__lime_dye.png deleted file mode 100644 index e71a574e..00000000 Binary files a/public/textures/fluid/create_dragons_plus__lime_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__magenta_dye.png b/public/textures/fluid/create_dragons_plus__magenta_dye.png deleted file mode 100644 index 73deee04..00000000 Binary files a/public/textures/fluid/create_dragons_plus__magenta_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__orange_dye.png b/public/textures/fluid/create_dragons_plus__orange_dye.png deleted file mode 100644 index 5ba1365f..00000000 Binary files a/public/textures/fluid/create_dragons_plus__orange_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__pink_dye.png b/public/textures/fluid/create_dragons_plus__pink_dye.png deleted file mode 100644 index 00c9b3d1..00000000 Binary files a/public/textures/fluid/create_dragons_plus__pink_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__purple_dye.png b/public/textures/fluid/create_dragons_plus__purple_dye.png deleted file mode 100644 index 2dcc5525..00000000 Binary files a/public/textures/fluid/create_dragons_plus__purple_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__red_dye.png b/public/textures/fluid/create_dragons_plus__red_dye.png deleted file mode 100644 index 1e3d3fed..00000000 Binary files a/public/textures/fluid/create_dragons_plus__red_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__white_dye.png b/public/textures/fluid/create_dragons_plus__white_dye.png deleted file mode 100644 index 8266cd5d..00000000 Binary files a/public/textures/fluid/create_dragons_plus__white_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_dragons_plus__yellow_dye.png b/public/textures/fluid/create_dragons_plus__yellow_dye.png deleted file mode 100644 index 3b5e8a12..00000000 Binary files a/public/textures/fluid/create_dragons_plus__yellow_dye.png and /dev/null differ diff --git a/public/textures/fluid/create_enchantment_industry__experience.png b/public/textures/fluid/create_enchantment_industry__experience.png deleted file mode 100644 index 1f2f8363..00000000 Binary files a/public/textures/fluid/create_enchantment_industry__experience.png and /dev/null differ diff --git a/public/textures/fluid/create_enchantment_industry__flowing_experience.png b/public/textures/fluid/create_enchantment_industry__flowing_experience.png deleted file mode 100644 index 1f2f8363..00000000 Binary files a/public/textures/fluid/create_enchantment_industry__flowing_experience.png and /dev/null differ diff --git a/public/textures/fluid/createaddition__bioethanol.png b/public/textures/fluid/createaddition__bioethanol.png deleted file mode 100644 index 35a79878..00000000 Binary files a/public/textures/fluid/createaddition__bioethanol.png and /dev/null differ diff --git a/public/textures/fluid/createaddition__flowing_bioethanol.png b/public/textures/fluid/createaddition__flowing_bioethanol.png deleted file mode 100644 index 35a79878..00000000 Binary files a/public/textures/fluid/createaddition__flowing_bioethanol.png and /dev/null differ diff --git a/public/textures/fluid/createaddition__flowing_seed_oil.png b/public/textures/fluid/createaddition__flowing_seed_oil.png deleted file mode 100644 index 016b6d33..00000000 Binary files a/public/textures/fluid/createaddition__flowing_seed_oil.png and /dev/null differ diff --git a/public/textures/fluid/createaddition__seed_oil.png b/public/textures/fluid/createaddition__seed_oil.png deleted file mode 100644 index 016b6d33..00000000 Binary files a/public/textures/fluid/createaddition__seed_oil.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__acetaldehyde.png b/public/textures/fluid/immersiveengineering__acetaldehyde.png deleted file mode 100644 index ce1654f7..00000000 Binary files a/public/textures/fluid/immersiveengineering__acetaldehyde.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__acetaldehyde_flowing.png b/public/textures/fluid/immersiveengineering__acetaldehyde_flowing.png deleted file mode 100644 index a90847fc..00000000 Binary files a/public/textures/fluid/immersiveengineering__acetaldehyde_flowing.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__biodiesel.png b/public/textures/fluid/immersiveengineering__biodiesel.png deleted file mode 100644 index 42353317..00000000 Binary files a/public/textures/fluid/immersiveengineering__biodiesel.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__biodiesel_flowing.png b/public/textures/fluid/immersiveengineering__biodiesel_flowing.png deleted file mode 100644 index 391a50dd..00000000 Binary files a/public/textures/fluid/immersiveengineering__biodiesel_flowing.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__concrete.png b/public/textures/fluid/immersiveengineering__concrete.png deleted file mode 100644 index b89cc759..00000000 Binary files a/public/textures/fluid/immersiveengineering__concrete.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__concrete_flowing.png b/public/textures/fluid/immersiveengineering__concrete_flowing.png deleted file mode 100644 index 8c135bd2..00000000 Binary files a/public/textures/fluid/immersiveengineering__concrete_flowing.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__creosote.png b/public/textures/fluid/immersiveengineering__creosote.png deleted file mode 100644 index 75511b9d..00000000 Binary files a/public/textures/fluid/immersiveengineering__creosote.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__creosote_flowing.png b/public/textures/fluid/immersiveengineering__creosote_flowing.png deleted file mode 100644 index 0519305d..00000000 Binary files a/public/textures/fluid/immersiveengineering__creosote_flowing.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__ethanol.png b/public/textures/fluid/immersiveengineering__ethanol.png deleted file mode 100644 index c4329c13..00000000 Binary files a/public/textures/fluid/immersiveengineering__ethanol.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__ethanol_flowing.png b/public/textures/fluid/immersiveengineering__ethanol_flowing.png deleted file mode 100644 index a84864c1..00000000 Binary files a/public/textures/fluid/immersiveengineering__ethanol_flowing.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__herbicide.png b/public/textures/fluid/immersiveengineering__herbicide.png deleted file mode 100644 index 9175b231..00000000 Binary files a/public/textures/fluid/immersiveengineering__herbicide.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__herbicide_flowing.png b/public/textures/fluid/immersiveengineering__herbicide_flowing.png deleted file mode 100644 index b277d4b8..00000000 Binary files a/public/textures/fluid/immersiveengineering__herbicide_flowing.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__high_power_biodiesel.png b/public/textures/fluid/immersiveengineering__high_power_biodiesel.png deleted file mode 100644 index 9d64e525..00000000 Binary files a/public/textures/fluid/immersiveengineering__high_power_biodiesel.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__high_power_biodiesel_flowing.png b/public/textures/fluid/immersiveengineering__high_power_biodiesel_flowing.png deleted file mode 100644 index addbc840..00000000 Binary files a/public/textures/fluid/immersiveengineering__high_power_biodiesel_flowing.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__phenolic_resin.png b/public/textures/fluid/immersiveengineering__phenolic_resin.png deleted file mode 100644 index 763da4f9..00000000 Binary files a/public/textures/fluid/immersiveengineering__phenolic_resin.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__phenolic_resin_flowing.png b/public/textures/fluid/immersiveengineering__phenolic_resin_flowing.png deleted file mode 100644 index 763da4f9..00000000 Binary files a/public/textures/fluid/immersiveengineering__phenolic_resin_flowing.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__plantoil.png b/public/textures/fluid/immersiveengineering__plantoil.png deleted file mode 100644 index 817b0a35..00000000 Binary files a/public/textures/fluid/immersiveengineering__plantoil.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__plantoil_flowing.png b/public/textures/fluid/immersiveengineering__plantoil_flowing.png deleted file mode 100644 index a892c3ee..00000000 Binary files a/public/textures/fluid/immersiveengineering__plantoil_flowing.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__potion.png b/public/textures/fluid/immersiveengineering__potion.png deleted file mode 100644 index 72d55a74..00000000 Binary files a/public/textures/fluid/immersiveengineering__potion.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__redstone_acid.png b/public/textures/fluid/immersiveengineering__redstone_acid.png deleted file mode 100644 index f699faae..00000000 Binary files a/public/textures/fluid/immersiveengineering__redstone_acid.png and /dev/null differ diff --git a/public/textures/fluid/immersiveengineering__redstone_acid_flowing.png b/public/textures/fluid/immersiveengineering__redstone_acid_flowing.png deleted file mode 100644 index f699faae..00000000 Binary files a/public/textures/fluid/immersiveengineering__redstone_acid_flowing.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__brine.png b/public/textures/fluid/mekanism__brine.png deleted file mode 100644 index e0217fee..00000000 Binary files a/public/textures/fluid/mekanism__brine.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__chlorine.png b/public/textures/fluid/mekanism__chlorine.png deleted file mode 100644 index 5967803a..00000000 Binary files a/public/textures/fluid/mekanism__chlorine.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__ethene.png b/public/textures/fluid/mekanism__ethene.png deleted file mode 100644 index 3be5320b..00000000 Binary files a/public/textures/fluid/mekanism__ethene.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_brine.png b/public/textures/fluid/mekanism__flowing_brine.png deleted file mode 100644 index ff294b04..00000000 Binary files a/public/textures/fluid/mekanism__flowing_brine.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_chlorine.png b/public/textures/fluid/mekanism__flowing_chlorine.png deleted file mode 100644 index 5967803a..00000000 Binary files a/public/textures/fluid/mekanism__flowing_chlorine.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_ethene.png b/public/textures/fluid/mekanism__flowing_ethene.png deleted file mode 100644 index bdb5ca99..00000000 Binary files a/public/textures/fluid/mekanism__flowing_ethene.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_heavy_water.png b/public/textures/fluid/mekanism__flowing_heavy_water.png deleted file mode 100644 index 3bff7a9c..00000000 Binary files a/public/textures/fluid/mekanism__flowing_heavy_water.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_hydrofluoric_acid.png b/public/textures/fluid/mekanism__flowing_hydrofluoric_acid.png deleted file mode 100644 index 1e60bbda..00000000 Binary files a/public/textures/fluid/mekanism__flowing_hydrofluoric_acid.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_hydrogen.png b/public/textures/fluid/mekanism__flowing_hydrogen.png deleted file mode 100644 index fee0743c..00000000 Binary files a/public/textures/fluid/mekanism__flowing_hydrogen.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_hydrogen_chloride.png b/public/textures/fluid/mekanism__flowing_hydrogen_chloride.png deleted file mode 100644 index e345a078..00000000 Binary files a/public/textures/fluid/mekanism__flowing_hydrogen_chloride.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_lithium.png b/public/textures/fluid/mekanism__flowing_lithium.png deleted file mode 100644 index 1efce468..00000000 Binary files a/public/textures/fluid/mekanism__flowing_lithium.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_nutritional_paste.png b/public/textures/fluid/mekanism__flowing_nutritional_paste.png deleted file mode 100644 index c846bfab..00000000 Binary files a/public/textures/fluid/mekanism__flowing_nutritional_paste.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_oxygen.png b/public/textures/fluid/mekanism__flowing_oxygen.png deleted file mode 100644 index 3e33056b..00000000 Binary files a/public/textures/fluid/mekanism__flowing_oxygen.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_sodium.png b/public/textures/fluid/mekanism__flowing_sodium.png deleted file mode 100644 index ab7626b0..00000000 Binary files a/public/textures/fluid/mekanism__flowing_sodium.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_steam.png b/public/textures/fluid/mekanism__flowing_steam.png deleted file mode 100644 index cef687df..00000000 Binary files a/public/textures/fluid/mekanism__flowing_steam.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_sulfur_dioxide.png b/public/textures/fluid/mekanism__flowing_sulfur_dioxide.png deleted file mode 100644 index 6c2c72b1..00000000 Binary files a/public/textures/fluid/mekanism__flowing_sulfur_dioxide.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_sulfur_trioxide.png b/public/textures/fluid/mekanism__flowing_sulfur_trioxide.png deleted file mode 100644 index 763d0ded..00000000 Binary files a/public/textures/fluid/mekanism__flowing_sulfur_trioxide.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_sulfuric_acid.png b/public/textures/fluid/mekanism__flowing_sulfuric_acid.png deleted file mode 100644 index 7ea6a13d..00000000 Binary files a/public/textures/fluid/mekanism__flowing_sulfuric_acid.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_superheated_sodium.png b/public/textures/fluid/mekanism__flowing_superheated_sodium.png deleted file mode 100644 index 4c17cb2b..00000000 Binary files a/public/textures/fluid/mekanism__flowing_superheated_sodium.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_uranium_hexafluoride.png b/public/textures/fluid/mekanism__flowing_uranium_hexafluoride.png deleted file mode 100644 index f863de6c..00000000 Binary files a/public/textures/fluid/mekanism__flowing_uranium_hexafluoride.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__flowing_uranium_oxide.png b/public/textures/fluid/mekanism__flowing_uranium_oxide.png deleted file mode 100644 index 8cd50eff..00000000 Binary files a/public/textures/fluid/mekanism__flowing_uranium_oxide.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__heavy_water.png b/public/textures/fluid/mekanism__heavy_water.png deleted file mode 100644 index f67b0c30..00000000 Binary files a/public/textures/fluid/mekanism__heavy_water.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__hydrofluoric_acid.png b/public/textures/fluid/mekanism__hydrofluoric_acid.png deleted file mode 100644 index 6e3dd32a..00000000 Binary files a/public/textures/fluid/mekanism__hydrofluoric_acid.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__hydrogen.png b/public/textures/fluid/mekanism__hydrogen.png deleted file mode 100644 index cef687df..00000000 Binary files a/public/textures/fluid/mekanism__hydrogen.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__hydrogen_chloride.png b/public/textures/fluid/mekanism__hydrogen_chloride.png deleted file mode 100644 index 392e5e47..00000000 Binary files a/public/textures/fluid/mekanism__hydrogen_chloride.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__lithium.png b/public/textures/fluid/mekanism__lithium.png deleted file mode 100644 index d1f2f253..00000000 Binary files a/public/textures/fluid/mekanism__lithium.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__nutritional_paste.png b/public/textures/fluid/mekanism__nutritional_paste.png deleted file mode 100644 index 7294f928..00000000 Binary files a/public/textures/fluid/mekanism__nutritional_paste.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__oxygen.png b/public/textures/fluid/mekanism__oxygen.png deleted file mode 100644 index 23436843..00000000 Binary files a/public/textures/fluid/mekanism__oxygen.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__sodium.png b/public/textures/fluid/mekanism__sodium.png deleted file mode 100644 index 864e7ca5..00000000 Binary files a/public/textures/fluid/mekanism__sodium.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__steam.png b/public/textures/fluid/mekanism__steam.png deleted file mode 100644 index 2b242a5c..00000000 Binary files a/public/textures/fluid/mekanism__steam.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__sulfur_dioxide.png b/public/textures/fluid/mekanism__sulfur_dioxide.png deleted file mode 100644 index 08753b45..00000000 Binary files a/public/textures/fluid/mekanism__sulfur_dioxide.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__sulfur_trioxide.png b/public/textures/fluid/mekanism__sulfur_trioxide.png deleted file mode 100644 index 5ab3221c..00000000 Binary files a/public/textures/fluid/mekanism__sulfur_trioxide.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__sulfuric_acid.png b/public/textures/fluid/mekanism__sulfuric_acid.png deleted file mode 100644 index 7ea6a13d..00000000 Binary files a/public/textures/fluid/mekanism__sulfuric_acid.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__superheated_sodium.png b/public/textures/fluid/mekanism__superheated_sodium.png deleted file mode 100644 index 4c17cb2b..00000000 Binary files a/public/textures/fluid/mekanism__superheated_sodium.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__uranium_hexafluoride.png b/public/textures/fluid/mekanism__uranium_hexafluoride.png deleted file mode 100644 index 31ee121b..00000000 Binary files a/public/textures/fluid/mekanism__uranium_hexafluoride.png and /dev/null differ diff --git a/public/textures/fluid/mekanism__uranium_oxide.png b/public/textures/fluid/mekanism__uranium_oxide.png deleted file mode 100644 index 1d0e28a5..00000000 Binary files a/public/textures/fluid/mekanism__uranium_oxide.png and /dev/null differ diff --git a/public/textures/fluid/mekanismgenerators__bioethanol.png b/public/textures/fluid/mekanismgenerators__bioethanol.png deleted file mode 100644 index ee2896d7..00000000 Binary files a/public/textures/fluid/mekanismgenerators__bioethanol.png and /dev/null differ diff --git a/public/textures/fluid/mekanismgenerators__deuterium.png b/public/textures/fluid/mekanismgenerators__deuterium.png deleted file mode 100644 index 82c1aed9..00000000 Binary files a/public/textures/fluid/mekanismgenerators__deuterium.png and /dev/null differ diff --git a/public/textures/fluid/mekanismgenerators__flowing_bioethanol.png b/public/textures/fluid/mekanismgenerators__flowing_bioethanol.png deleted file mode 100644 index 9e1f8c1f..00000000 Binary files a/public/textures/fluid/mekanismgenerators__flowing_bioethanol.png and /dev/null differ diff --git a/public/textures/fluid/mekanismgenerators__flowing_deuterium.png b/public/textures/fluid/mekanismgenerators__flowing_deuterium.png deleted file mode 100644 index f5ae700a..00000000 Binary files a/public/textures/fluid/mekanismgenerators__flowing_deuterium.png and /dev/null differ diff --git a/public/textures/fluid/mekanismgenerators__flowing_fusion_fuel.png b/public/textures/fluid/mekanismgenerators__flowing_fusion_fuel.png deleted file mode 100644 index 4af05dbd..00000000 Binary files a/public/textures/fluid/mekanismgenerators__flowing_fusion_fuel.png and /dev/null differ diff --git a/public/textures/fluid/mekanismgenerators__flowing_tritium.png b/public/textures/fluid/mekanismgenerators__flowing_tritium.png deleted file mode 100644 index 3f936a92..00000000 Binary files a/public/textures/fluid/mekanismgenerators__flowing_tritium.png and /dev/null differ diff --git a/public/textures/fluid/mekanismgenerators__fusion_fuel.png b/public/textures/fluid/mekanismgenerators__fusion_fuel.png deleted file mode 100644 index 75ba868f..00000000 Binary files a/public/textures/fluid/mekanismgenerators__fusion_fuel.png and /dev/null differ diff --git a/public/textures/fluid/mekanismgenerators__tritium.png b/public/textures/fluid/mekanismgenerators__tritium.png deleted file mode 100644 index e32e513c..00000000 Binary files a/public/textures/fluid/mekanismgenerators__tritium.png and /dev/null differ diff --git a/public/textures/fluid/minecraft__empty.png b/public/textures/fluid/minecraft__empty.png deleted file mode 100644 index e38512b1..00000000 Binary files a/public/textures/fluid/minecraft__empty.png and /dev/null differ diff --git a/public/textures/fluid/minecraft__flowing_lava.png b/public/textures/fluid/minecraft__flowing_lava.png deleted file mode 100644 index ea437cf3..00000000 Binary files a/public/textures/fluid/minecraft__flowing_lava.png and /dev/null differ diff --git a/public/textures/fluid/minecraft__flowing_milk.png b/public/textures/fluid/minecraft__flowing_milk.png deleted file mode 100644 index e851e1c6..00000000 Binary files a/public/textures/fluid/minecraft__flowing_milk.png and /dev/null differ diff --git a/public/textures/fluid/minecraft__flowing_water.png b/public/textures/fluid/minecraft__flowing_water.png deleted file mode 100644 index 42e26e4e..00000000 Binary files a/public/textures/fluid/minecraft__flowing_water.png and /dev/null differ diff --git a/public/textures/fluid/minecraft__lava.png b/public/textures/fluid/minecraft__lava.png deleted file mode 100644 index ba152503..00000000 Binary files a/public/textures/fluid/minecraft__lava.png and /dev/null differ diff --git a/public/textures/fluid/minecraft__milk.png b/public/textures/fluid/minecraft__milk.png deleted file mode 100644 index e851e1c6..00000000 Binary files a/public/textures/fluid/minecraft__milk.png and /dev/null differ diff --git a/public/textures/fluid/minecraft__water.png b/public/textures/fluid/minecraft__water.png deleted file mode 100644 index b12ded66..00000000 Binary files a/public/textures/fluid/minecraft__water.png and /dev/null differ diff --git a/public/textures/fluid/sophisticatedcore__xp_flowing.png b/public/textures/fluid/sophisticatedcore__xp_flowing.png deleted file mode 100644 index 9e1f1b4a..00000000 Binary files a/public/textures/fluid/sophisticatedcore__xp_flowing.png and /dev/null differ diff --git a/public/textures/fluid/sophisticatedcore__xp_still.png b/public/textures/fluid/sophisticatedcore__xp_still.png deleted file mode 100644 index 9e1f1b4a..00000000 Binary files a/public/textures/fluid/sophisticatedcore__xp_still.png and /dev/null differ diff --git a/public/textures/guardvillagers/guard_spawn_egg.png b/public/textures/guardvillagers/guard_spawn_egg.png deleted file mode 100644 index a1e8875b..00000000 Binary files a/public/textures/guardvillagers/guard_spawn_egg.png and /dev/null differ diff --git a/public/textures/guardvillagers/illusioner_spawn_egg.png b/public/textures/guardvillagers/illusioner_spawn_egg.png deleted file mode 100644 index e5ec941b..00000000 Binary files a/public/textures/guardvillagers/illusioner_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/alchemist_spawn_egg.png b/public/textures/illagerinvasion/alchemist_spawn_egg.png deleted file mode 100644 index 7f76c9f4..00000000 Binary files a/public/textures/illagerinvasion/alchemist_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/archivist_spawn_egg.png b/public/textures/illagerinvasion/archivist_spawn_egg.png deleted file mode 100644 index 3455f25b..00000000 Binary files a/public/textures/illagerinvasion/archivist_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/basher_spawn_egg.png b/public/textures/illagerinvasion/basher_spawn_egg.png deleted file mode 100644 index af33401e..00000000 Binary files a/public/textures/illagerinvasion/basher_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/firecaller_spawn_egg.png b/public/textures/illagerinvasion/firecaller_spawn_egg.png deleted file mode 100644 index 5a3a058c..00000000 Binary files a/public/textures/illagerinvasion/firecaller_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/hallowed_gem.png b/public/textures/illagerinvasion/hallowed_gem.png deleted file mode 100644 index a476f682..00000000 Binary files a/public/textures/illagerinvasion/hallowed_gem.png and /dev/null differ diff --git a/public/textures/illagerinvasion/horn_of_sight.png b/public/textures/illagerinvasion/horn_of_sight.png deleted file mode 100644 index 39c659fd..00000000 Binary files a/public/textures/illagerinvasion/horn_of_sight.png and /dev/null differ diff --git a/public/textures/illagerinvasion/illusionary_dust.png b/public/textures/illagerinvasion/illusionary_dust.png deleted file mode 100644 index 3ed84a08..00000000 Binary files a/public/textures/illagerinvasion/illusionary_dust.png and /dev/null differ diff --git a/public/textures/illagerinvasion/illusioner_spawn_egg.png b/public/textures/illagerinvasion/illusioner_spawn_egg.png deleted file mode 100644 index f2787f76..00000000 Binary files a/public/textures/illagerinvasion/illusioner_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/imbuing_table.png b/public/textures/illagerinvasion/imbuing_table.png deleted file mode 100644 index ba62c5a1..00000000 Binary files a/public/textures/illagerinvasion/imbuing_table.png and /dev/null differ diff --git a/public/textures/illagerinvasion/inquisitor_spawn_egg.png b/public/textures/illagerinvasion/inquisitor_spawn_egg.png deleted file mode 100644 index 562dcb29..00000000 Binary files a/public/textures/illagerinvasion/inquisitor_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/invoker_spawn_egg.png b/public/textures/illagerinvasion/invoker_spawn_egg.png deleted file mode 100644 index 79d3beee..00000000 Binary files a/public/textures/illagerinvasion/invoker_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/lost_candle.png b/public/textures/illagerinvasion/lost_candle.png deleted file mode 100644 index 2a335ef8..00000000 Binary files a/public/textures/illagerinvasion/lost_candle.png and /dev/null differ diff --git a/public/textures/illagerinvasion/magical_fire_charge.png b/public/textures/illagerinvasion/magical_fire_charge.png deleted file mode 100644 index 21b57f33..00000000 Binary files a/public/textures/illagerinvasion/magical_fire_charge.png and /dev/null differ diff --git a/public/textures/illagerinvasion/marauder_spawn_egg.png b/public/textures/illagerinvasion/marauder_spawn_egg.png deleted file mode 100644 index bc194e04..00000000 Binary files a/public/textures/illagerinvasion/marauder_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/necromancer_spawn_egg.png b/public/textures/illagerinvasion/necromancer_spawn_egg.png deleted file mode 100644 index bfc19370..00000000 Binary files a/public/textures/illagerinvasion/necromancer_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/platinum_chunk.png b/public/textures/illagerinvasion/platinum_chunk.png deleted file mode 100644 index 3a5bf951..00000000 Binary files a/public/textures/illagerinvasion/platinum_chunk.png and /dev/null differ diff --git a/public/textures/illagerinvasion/platinum_infused_hatchet.png b/public/textures/illagerinvasion/platinum_infused_hatchet.png deleted file mode 100644 index ef228135..00000000 Binary files a/public/textures/illagerinvasion/platinum_infused_hatchet.png and /dev/null differ diff --git a/public/textures/illagerinvasion/platinum_sheet.png b/public/textures/illagerinvasion/platinum_sheet.png deleted file mode 100644 index 8404f62b..00000000 Binary files a/public/textures/illagerinvasion/platinum_sheet.png and /dev/null differ diff --git a/public/textures/illagerinvasion/primal_essence.png b/public/textures/illagerinvasion/primal_essence.png deleted file mode 100644 index cb22836f..00000000 Binary files a/public/textures/illagerinvasion/primal_essence.png and /dev/null differ diff --git a/public/textures/illagerinvasion/provoker_spawn_egg.png b/public/textures/illagerinvasion/provoker_spawn_egg.png deleted file mode 100644 index 072ee6c7..00000000 Binary files a/public/textures/illagerinvasion/provoker_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/sorcerer_spawn_egg.png b/public/textures/illagerinvasion/sorcerer_spawn_egg.png deleted file mode 100644 index a096b4ab..00000000 Binary files a/public/textures/illagerinvasion/sorcerer_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/surrendered_spawn_egg.png b/public/textures/illagerinvasion/surrendered_spawn_egg.png deleted file mode 100644 index 7f378d6e..00000000 Binary files a/public/textures/illagerinvasion/surrendered_spawn_egg.png and /dev/null differ diff --git a/public/textures/illagerinvasion/unusual_dust.png b/public/textures/illagerinvasion/unusual_dust.png deleted file mode 100644 index 84163cfe..00000000 Binary files a/public/textures/illagerinvasion/unusual_dust.png and /dev/null differ diff --git a/public/textures/immersiveengineering/acetaldehyde_bucket.png b/public/textures/immersiveengineering/acetaldehyde_bucket.png deleted file mode 100644 index ad4d60a3..00000000 Binary files a/public/textures/immersiveengineering/acetaldehyde_bucket.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alloybrick.png b/public/textures/immersiveengineering/alloybrick.png deleted file mode 100644 index 3067147f..00000000 Binary files a/public/textures/immersiveengineering/alloybrick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alu_catwalk.png b/public/textures/immersiveengineering/alu_catwalk.png deleted file mode 100644 index e283d748..00000000 Binary files a/public/textures/immersiveengineering/alu_catwalk.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alu_catwalk_stairs.png b/public/textures/immersiveengineering/alu_catwalk_stairs.png deleted file mode 100644 index 4a5f63af..00000000 Binary files a/public/textures/immersiveengineering/alu_catwalk_stairs.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alu_fence.png b/public/textures/immersiveengineering/alu_fence.png deleted file mode 100644 index 9a78096f..00000000 Binary files a/public/textures/immersiveengineering/alu_fence.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alu_fence_gate.png b/public/textures/immersiveengineering/alu_fence_gate.png deleted file mode 100644 index c12035e5..00000000 Binary files a/public/textures/immersiveengineering/alu_fence_gate.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alu_post.png b/public/textures/immersiveengineering/alu_post.png deleted file mode 100644 index 49e4f6fc..00000000 Binary files a/public/textures/immersiveengineering/alu_post.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alu_scaffolding_grate_top.png b/public/textures/immersiveengineering/alu_scaffolding_grate_top.png deleted file mode 100644 index 8e9e5558..00000000 Binary files a/public/textures/immersiveengineering/alu_scaffolding_grate_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alu_scaffolding_standard.png b/public/textures/immersiveengineering/alu_scaffolding_standard.png deleted file mode 100644 index 5f00d94c..00000000 Binary files a/public/textures/immersiveengineering/alu_scaffolding_standard.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alu_scaffolding_wooden_top.png b/public/textures/immersiveengineering/alu_scaffolding_wooden_top.png deleted file mode 100644 index 52bb34c0..00000000 Binary files a/public/textures/immersiveengineering/alu_scaffolding_wooden_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alu_slope.png b/public/textures/immersiveengineering/alu_slope.png deleted file mode 100644 index 1a3321a1..00000000 Binary files a/public/textures/immersiveengineering/alu_slope.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alu_wallmount.png b/public/textures/immersiveengineering/alu_wallmount.png deleted file mode 100644 index 91001e2f..00000000 Binary files a/public/textures/immersiveengineering/alu_wallmount.png and /dev/null differ diff --git a/public/textures/immersiveengineering/alu_window.png b/public/textures/immersiveengineering/alu_window.png deleted file mode 100644 index eed146ad..00000000 Binary files a/public/textures/immersiveengineering/alu_window.png and /dev/null differ diff --git a/public/textures/immersiveengineering/aluminum_hanging_sign.png b/public/textures/immersiveengineering/aluminum_hanging_sign.png deleted file mode 100644 index 2cf33785..00000000 Binary files a/public/textures/immersiveengineering/aluminum_hanging_sign.png and /dev/null differ diff --git a/public/textures/immersiveengineering/aluminum_sign.png b/public/textures/immersiveengineering/aluminum_sign.png deleted file mode 100644 index 8fd8100f..00000000 Binary files a/public/textures/immersiveengineering/aluminum_sign.png and /dev/null differ diff --git a/public/textures/immersiveengineering/armor_faraday_boots.png b/public/textures/immersiveengineering/armor_faraday_boots.png deleted file mode 100644 index 3067580d..00000000 Binary files a/public/textures/immersiveengineering/armor_faraday_boots.png and /dev/null differ diff --git a/public/textures/immersiveengineering/armor_faraday_chestplate.png b/public/textures/immersiveengineering/armor_faraday_chestplate.png deleted file mode 100644 index 248a56f1..00000000 Binary files a/public/textures/immersiveengineering/armor_faraday_chestplate.png and /dev/null differ diff --git a/public/textures/immersiveengineering/armor_faraday_helmet.png b/public/textures/immersiveengineering/armor_faraday_helmet.png deleted file mode 100644 index cddc9dcc..00000000 Binary files a/public/textures/immersiveengineering/armor_faraday_helmet.png and /dev/null differ diff --git a/public/textures/immersiveengineering/armor_faraday_leggings.png b/public/textures/immersiveengineering/armor_faraday_leggings.png deleted file mode 100644 index e73da965..00000000 Binary files a/public/textures/immersiveengineering/armor_faraday_leggings.png and /dev/null differ diff --git a/public/textures/immersiveengineering/armor_steel_boots.png b/public/textures/immersiveengineering/armor_steel_boots.png deleted file mode 100644 index 88bf2cac..00000000 Binary files a/public/textures/immersiveengineering/armor_steel_boots.png and /dev/null differ diff --git a/public/textures/immersiveengineering/armor_steel_chestplate.png b/public/textures/immersiveengineering/armor_steel_chestplate.png deleted file mode 100644 index 7abab734..00000000 Binary files a/public/textures/immersiveengineering/armor_steel_chestplate.png and /dev/null differ diff --git a/public/textures/immersiveengineering/armor_steel_helmet.png b/public/textures/immersiveengineering/armor_steel_helmet.png deleted file mode 100644 index 2011bff4..00000000 Binary files a/public/textures/immersiveengineering/armor_steel_helmet.png and /dev/null differ diff --git a/public/textures/immersiveengineering/armor_steel_leggings.png b/public/textures/immersiveengineering/armor_steel_leggings.png deleted file mode 100644 index 6648d18a..00000000 Binary files a/public/textures/immersiveengineering/armor_steel_leggings.png and /dev/null differ diff --git a/public/textures/immersiveengineering/axe_steel.png b/public/textures/immersiveengineering/axe_steel.png deleted file mode 100644 index 3d9d3803..00000000 Binary files a/public/textures/immersiveengineering/axe_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/balloon.png b/public/textures/immersiveengineering/balloon.png deleted file mode 100644 index a4dc71f9..00000000 Binary files a/public/textures/immersiveengineering/balloon.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bannerpattern_bevels.png b/public/textures/immersiveengineering/bannerpattern_bevels.png deleted file mode 100644 index ac141e3f..00000000 Binary files a/public/textures/immersiveengineering/bannerpattern_bevels.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bannerpattern_hammer.png b/public/textures/immersiveengineering/bannerpattern_hammer.png deleted file mode 100644 index 9ad45eb1..00000000 Binary files a/public/textures/immersiveengineering/bannerpattern_hammer.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bannerpattern_ornate.png b/public/textures/immersiveengineering/bannerpattern_ornate.png deleted file mode 100644 index 7059ab67..00000000 Binary files a/public/textures/immersiveengineering/bannerpattern_ornate.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bannerpattern_screwdriver.png b/public/textures/immersiveengineering/bannerpattern_screwdriver.png deleted file mode 100644 index 0c5cc7b3..00000000 Binary files a/public/textures/immersiveengineering/bannerpattern_screwdriver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bannerpattern_treated_wood.png b/public/textures/immersiveengineering/bannerpattern_treated_wood.png deleted file mode 100644 index 2699eea1..00000000 Binary files a/public/textures/immersiveengineering/bannerpattern_treated_wood.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bannerpattern_warning.png b/public/textures/immersiveengineering/bannerpattern_warning.png deleted file mode 100644 index 1bdb0500..00000000 Binary files a/public/textures/immersiveengineering/bannerpattern_warning.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bannerpattern_windmill.png b/public/textures/immersiveengineering/bannerpattern_windmill.png deleted file mode 100644 index 78539799..00000000 Binary files a/public/textures/immersiveengineering/bannerpattern_windmill.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bannerpattern_wirecutter.png b/public/textures/immersiveengineering/bannerpattern_wirecutter.png deleted file mode 100644 index 41d0e75a..00000000 Binary files a/public/textures/immersiveengineering/bannerpattern_wirecutter.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bannerpattern_wolf.png b/public/textures/immersiveengineering/bannerpattern_wolf.png deleted file mode 100644 index 83926a6a..00000000 Binary files a/public/textures/immersiveengineering/bannerpattern_wolf.png and /dev/null differ diff --git a/public/textures/immersiveengineering/basic_engineering.png b/public/textures/immersiveengineering/basic_engineering.png deleted file mode 100644 index 3291d256..00000000 Binary files a/public/textures/immersiveengineering/basic_engineering.png and /dev/null differ diff --git a/public/textures/immersiveengineering/biodiesel_bucket.png b/public/textures/immersiveengineering/biodiesel_bucket.png deleted file mode 100644 index 94fde593..00000000 Binary files a/public/textures/immersiveengineering/biodiesel_bucket.png and /dev/null differ diff --git a/public/textures/immersiveengineering/blastbrick.png b/public/textures/immersiveengineering/blastbrick.png deleted file mode 100644 index 9641a918..00000000 Binary files a/public/textures/immersiveengineering/blastbrick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/blastbrick_reinforced.png b/public/textures/immersiveengineering/blastbrick_reinforced.png deleted file mode 100644 index 55564745..00000000 Binary files a/public/textures/immersiveengineering/blastbrick_reinforced.png and /dev/null differ diff --git a/public/textures/immersiveengineering/blastfurnace_preheater.png b/public/textures/immersiveengineering/blastfurnace_preheater.png deleted file mode 100644 index 4e34abb7..00000000 Binary files a/public/textures/immersiveengineering/blastfurnace_preheater.png and /dev/null differ diff --git a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'automatons'}.png b/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'automatons'}.png deleted file mode 100644 index af099768..00000000 Binary files a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'automatons'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'bannerpatterns'}.png b/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'bannerpatterns'}.png deleted file mode 100644 index af099768..00000000 Binary files a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'bannerpatterns'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'bullet'}.png b/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'bullet'}.png deleted file mode 100644 index af099768..00000000 Binary files a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'bullet'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'components'}.png b/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'components'}.png deleted file mode 100644 index af099768..00000000 Binary files a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'components'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'molds'}.png b/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'molds'}.png deleted file mode 100644 index af099768..00000000 Binary files a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'molds'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'specialBullet'}.png b/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'specialBullet'}.png deleted file mode 100644 index af099768..00000000 Binary files a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'specialBullet'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'warning_sign'}.png b/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'warning_sign'}.png deleted file mode 100644 index af099768..00000000 Binary files a/public/textures/immersiveengineering/blueprint__{'immersiveengineering__blueprint'__'warning_sign'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/blueprint_shelf.png b/public/textures/immersiveengineering/blueprint_shelf.png deleted file mode 100644 index 0d7b7088..00000000 Binary files a/public/textures/immersiveengineering/blueprint_shelf.png and /dev/null differ diff --git a/public/textures/immersiveengineering/breaker_switch.png b/public/textures/immersiveengineering/breaker_switch.png deleted file mode 100644 index dba259cf..00000000 Binary files a/public/textures/immersiveengineering/breaker_switch.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bullet_armor_piercing.png b/public/textures/immersiveengineering/bullet_armor_piercing.png deleted file mode 100644 index 9b791448..00000000 Binary files a/public/textures/immersiveengineering/bullet_armor_piercing.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bullet_buckshot.png b/public/textures/immersiveengineering/bullet_buckshot.png deleted file mode 100644 index 7c372a45..00000000 Binary files a/public/textures/immersiveengineering/bullet_buckshot.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bullet_casull.png b/public/textures/immersiveengineering/bullet_casull.png deleted file mode 100644 index 1fc07781..00000000 Binary files a/public/textures/immersiveengineering/bullet_casull.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bullet_dragons_breath.png b/public/textures/immersiveengineering/bullet_dragons_breath.png deleted file mode 100644 index 343f2ced..00000000 Binary files a/public/textures/immersiveengineering/bullet_dragons_breath.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bullet_firework.png b/public/textures/immersiveengineering/bullet_firework.png deleted file mode 100644 index e57f84c1..00000000 Binary files a/public/textures/immersiveengineering/bullet_firework.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bullet_flare.png b/public/textures/immersiveengineering/bullet_flare.png deleted file mode 100644 index 3a4fe64f..00000000 Binary files a/public/textures/immersiveengineering/bullet_flare.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bullet_he.png b/public/textures/immersiveengineering/bullet_he.png deleted file mode 100644 index 125106b8..00000000 Binary files a/public/textures/immersiveengineering/bullet_he.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bullet_homing.png b/public/textures/immersiveengineering/bullet_homing.png deleted file mode 100644 index 8728dfdf..00000000 Binary files a/public/textures/immersiveengineering/bullet_homing.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bullet_potion.png b/public/textures/immersiveengineering/bullet_potion.png deleted file mode 100644 index 43966b54..00000000 Binary files a/public/textures/immersiveengineering/bullet_potion.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bullet_silver.png b/public/textures/immersiveengineering/bullet_silver.png deleted file mode 100644 index 27e519c7..00000000 Binary files a/public/textures/immersiveengineering/bullet_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bullet_wolfpack.png b/public/textures/immersiveengineering/bullet_wolfpack.png deleted file mode 100644 index 7fe3f666..00000000 Binary files a/public/textures/immersiveengineering/bullet_wolfpack.png and /dev/null differ diff --git a/public/textures/immersiveengineering/bulwark_spawn_egg.png b/public/textures/immersiveengineering/bulwark_spawn_egg.png deleted file mode 100644 index eba2fad2..00000000 Binary files a/public/textures/immersiveengineering/bulwark_spawn_egg.png and /dev/null differ diff --git a/public/textures/immersiveengineering/buzzsaw.png b/public/textures/immersiveengineering/buzzsaw.png deleted file mode 100644 index 0f361829..00000000 Binary files a/public/textures/immersiveengineering/buzzsaw.png and /dev/null differ diff --git a/public/textures/immersiveengineering/cagelamp.png b/public/textures/immersiveengineering/cagelamp.png deleted file mode 100644 index 806293be..00000000 Binary files a/public/textures/immersiveengineering/cagelamp.png and /dev/null differ diff --git a/public/textures/immersiveengineering/capacitor_creative.png b/public/textures/immersiveengineering/capacitor_creative.png deleted file mode 100644 index 872ad0dc..00000000 Binary files a/public/textures/immersiveengineering/capacitor_creative.png and /dev/null differ diff --git a/public/textures/immersiveengineering/capacitor_hv.png b/public/textures/immersiveengineering/capacitor_hv.png deleted file mode 100644 index 8993535a..00000000 Binary files a/public/textures/immersiveengineering/capacitor_hv.png and /dev/null differ diff --git a/public/textures/immersiveengineering/capacitor_lv.png b/public/textures/immersiveengineering/capacitor_lv.png deleted file mode 100644 index ade50e63..00000000 Binary files a/public/textures/immersiveengineering/capacitor_lv.png and /dev/null differ diff --git a/public/textures/immersiveengineering/capacitor_mv.png b/public/textures/immersiveengineering/capacitor_mv.png deleted file mode 100644 index 9b66bc85..00000000 Binary files a/public/textures/immersiveengineering/capacitor_mv.png and /dev/null differ diff --git a/public/textures/immersiveengineering/charging_station.png b/public/textures/immersiveengineering/charging_station.png deleted file mode 100644 index 86f3b020..00000000 Binary files a/public/textures/immersiveengineering/charging_station.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chemthrower.png b/public/textures/immersiveengineering/chemthrower.png deleted file mode 100644 index a3d61da6..00000000 Binary files a/public/textures/immersiveengineering/chemthrower.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_aluminum.png b/public/textures/immersiveengineering/chute_aluminum.png deleted file mode 100644 index 1462d464..00000000 Binary files a/public/textures/immersiveengineering/chute_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_black.png b/public/textures/immersiveengineering/chute_colored_black.png deleted file mode 100644 index b46ff10c..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_black.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_blue.png b/public/textures/immersiveengineering/chute_colored_blue.png deleted file mode 100644 index 568215df..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_blue.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_brown.png b/public/textures/immersiveengineering/chute_colored_brown.png deleted file mode 100644 index d7ec0b05..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_brown.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_cyan.png b/public/textures/immersiveengineering/chute_colored_cyan.png deleted file mode 100644 index 4bc5dc55..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_cyan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_gray.png b/public/textures/immersiveengineering/chute_colored_gray.png deleted file mode 100644 index 753371a9..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_gray.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_green.png b/public/textures/immersiveengineering/chute_colored_green.png deleted file mode 100644 index 36adc3a6..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_green.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_light_blue.png b/public/textures/immersiveengineering/chute_colored_light_blue.png deleted file mode 100644 index be85e26c..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_light_blue.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_light_gray.png b/public/textures/immersiveengineering/chute_colored_light_gray.png deleted file mode 100644 index 677d77ea..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_light_gray.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_lime.png b/public/textures/immersiveengineering/chute_colored_lime.png deleted file mode 100644 index 1822ce2e..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_lime.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_magenta.png b/public/textures/immersiveengineering/chute_colored_magenta.png deleted file mode 100644 index d9972780..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_magenta.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_orange.png b/public/textures/immersiveengineering/chute_colored_orange.png deleted file mode 100644 index bc7547bc..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_orange.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_pink.png b/public/textures/immersiveengineering/chute_colored_pink.png deleted file mode 100644 index b54569b4..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_pink.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_purple.png b/public/textures/immersiveengineering/chute_colored_purple.png deleted file mode 100644 index cb6df80a..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_purple.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_red.png b/public/textures/immersiveengineering/chute_colored_red.png deleted file mode 100644 index f3017d64..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_red.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_white.png b/public/textures/immersiveengineering/chute_colored_white.png deleted file mode 100644 index debcb8e3..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_white.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_colored_yellow.png b/public/textures/immersiveengineering/chute_colored_yellow.png deleted file mode 100644 index 05e5008e..00000000 Binary files a/public/textures/immersiveengineering/chute_colored_yellow.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_copper.png b/public/textures/immersiveengineering/chute_copper.png deleted file mode 100644 index 37700918..00000000 Binary files a/public/textures/immersiveengineering/chute_copper.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_iron.png b/public/textures/immersiveengineering/chute_iron.png deleted file mode 100644 index a8e0e632..00000000 Binary files a/public/textures/immersiveengineering/chute_iron.png and /dev/null differ diff --git a/public/textures/immersiveengineering/chute_steel.png b/public/textures/immersiveengineering/chute_steel.png deleted file mode 100644 index 34627e30..00000000 Binary files a/public/textures/immersiveengineering/chute_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/circuit_board.png b/public/textures/immersiveengineering/circuit_board.png deleted file mode 100644 index d78e7844..00000000 Binary files a/public/textures/immersiveengineering/circuit_board.png and /dev/null differ diff --git a/public/textures/immersiveengineering/circuit_table.png b/public/textures/immersiveengineering/circuit_table.png deleted file mode 100644 index d502c06b..00000000 Binary files a/public/textures/immersiveengineering/circuit_table.png and /dev/null differ diff --git a/public/textures/immersiveengineering/clinker_brick.png b/public/textures/immersiveengineering/clinker_brick.png deleted file mode 100644 index 4bc8c6d9..00000000 Binary files a/public/textures/immersiveengineering/clinker_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/clinker_brick_quoin.png b/public/textures/immersiveengineering/clinker_brick_quoin.png deleted file mode 100644 index 26189d48..00000000 Binary files a/public/textures/immersiveengineering/clinker_brick_quoin.png and /dev/null differ diff --git a/public/textures/immersiveengineering/clinker_brick_sill.png b/public/textures/immersiveengineering/clinker_brick_sill.png deleted file mode 100644 index f8801fae..00000000 Binary files a/public/textures/immersiveengineering/clinker_brick_sill.png and /dev/null differ diff --git a/public/textures/immersiveengineering/cloche.png b/public/textures/immersiveengineering/cloche.png deleted file mode 100644 index 34035cea..00000000 Binary files a/public/textures/immersiveengineering/cloche.png and /dev/null differ diff --git a/public/textures/immersiveengineering/coal_coke.png b/public/textures/immersiveengineering/coal_coke.png deleted file mode 100644 index 25fccc91..00000000 Binary files a/public/textures/immersiveengineering/coal_coke.png and /dev/null differ diff --git a/public/textures/immersiveengineering/coil_hv.png b/public/textures/immersiveengineering/coil_hv.png deleted file mode 100644 index e54930ef..00000000 Binary files a/public/textures/immersiveengineering/coil_hv.png and /dev/null differ diff --git a/public/textures/immersiveengineering/coil_lv.png b/public/textures/immersiveengineering/coil_lv.png deleted file mode 100644 index 9b8fd95f..00000000 Binary files a/public/textures/immersiveengineering/coil_lv.png and /dev/null differ diff --git a/public/textures/immersiveengineering/coil_mv.png b/public/textures/immersiveengineering/coil_mv.png deleted file mode 100644 index 9b843fd0..00000000 Binary files a/public/textures/immersiveengineering/coil_mv.png and /dev/null differ diff --git a/public/textures/immersiveengineering/coke.png b/public/textures/immersiveengineering/coke.png deleted file mode 100644 index 8b8506e8..00000000 Binary files a/public/textures/immersiveengineering/coke.png and /dev/null differ diff --git a/public/textures/immersiveengineering/cokebrick.png b/public/textures/immersiveengineering/cokebrick.png deleted file mode 100644 index ae49d0e7..00000000 Binary files a/public/textures/immersiveengineering/cokebrick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/commando_spawn_egg.png b/public/textures/immersiveengineering/commando_spawn_egg.png deleted file mode 100644 index 30346d92..00000000 Binary files a/public/textures/immersiveengineering/commando_spawn_egg.png and /dev/null differ diff --git a/public/textures/immersiveengineering/component_electronic.png b/public/textures/immersiveengineering/component_electronic.png deleted file mode 100644 index 958c063c..00000000 Binary files a/public/textures/immersiveengineering/component_electronic.png and /dev/null differ diff --git a/public/textures/immersiveengineering/component_electronic_adv.png b/public/textures/immersiveengineering/component_electronic_adv.png deleted file mode 100644 index 1656092a..00000000 Binary files a/public/textures/immersiveengineering/component_electronic_adv.png and /dev/null differ diff --git a/public/textures/immersiveengineering/component_iron.png b/public/textures/immersiveengineering/component_iron.png deleted file mode 100644 index 7a135b14..00000000 Binary files a/public/textures/immersiveengineering/component_iron.png and /dev/null differ diff --git a/public/textures/immersiveengineering/component_steel.png b/public/textures/immersiveengineering/component_steel.png deleted file mode 100644 index 845548f8..00000000 Binary files a/public/textures/immersiveengineering/component_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete.png b/public/textures/immersiveengineering/concrete.png deleted file mode 100644 index 006fb741..00000000 Binary files a/public/textures/immersiveengineering/concrete.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_brick.png b/public/textures/immersiveengineering/concrete_brick.png deleted file mode 100644 index 7b67fdf5..00000000 Binary files a/public/textures/immersiveengineering/concrete_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_brick_cracked.png b/public/textures/immersiveengineering/concrete_brick_cracked.png deleted file mode 100644 index 700f0ba5..00000000 Binary files a/public/textures/immersiveengineering/concrete_brick_cracked.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_bucket.png b/public/textures/immersiveengineering/concrete_bucket.png deleted file mode 100644 index 97323a5e..00000000 Binary files a/public/textures/immersiveengineering/concrete_bucket.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_chiseled.png b/public/textures/immersiveengineering/concrete_chiseled.png deleted file mode 100644 index bf998e30..00000000 Binary files a/public/textures/immersiveengineering/concrete_chiseled.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_leaded.png b/public/textures/immersiveengineering/concrete_leaded.png deleted file mode 100644 index 032cc415..00000000 Binary files a/public/textures/immersiveengineering/concrete_leaded.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_pillar.png b/public/textures/immersiveengineering/concrete_pillar.png deleted file mode 100644 index f0557779..00000000 Binary files a/public/textures/immersiveengineering/concrete_pillar.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_quarter.png b/public/textures/immersiveengineering/concrete_quarter.png deleted file mode 100644 index cca0bc05..00000000 Binary files a/public/textures/immersiveengineering/concrete_quarter.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_reinforced.png b/public/textures/immersiveengineering/concrete_reinforced.png deleted file mode 100644 index f83c93de..00000000 Binary files a/public/textures/immersiveengineering/concrete_reinforced.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_reinforced_tile.png b/public/textures/immersiveengineering/concrete_reinforced_tile.png deleted file mode 100644 index a5638d94..00000000 Binary files a/public/textures/immersiveengineering/concrete_reinforced_tile.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_sheet.png b/public/textures/immersiveengineering/concrete_sheet.png deleted file mode 100644 index ebc6ca12..00000000 Binary files a/public/textures/immersiveengineering/concrete_sheet.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_sprayed.png b/public/textures/immersiveengineering/concrete_sprayed.png deleted file mode 100644 index 5e3a4c41..00000000 Binary files a/public/textures/immersiveengineering/concrete_sprayed.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_three_quarter.png b/public/textures/immersiveengineering/concrete_three_quarter.png deleted file mode 100644 index 53b16822..00000000 Binary files a/public/textures/immersiveengineering/concrete_three_quarter.png and /dev/null differ diff --git a/public/textures/immersiveengineering/concrete_tile.png b/public/textures/immersiveengineering/concrete_tile.png deleted file mode 100644 index e4c7a291..00000000 Binary files a/public/textures/immersiveengineering/concrete_tile.png and /dev/null differ diff --git a/public/textures/immersiveengineering/connector_bundled.png b/public/textures/immersiveengineering/connector_bundled.png deleted file mode 100644 index d9437cc3..00000000 Binary files a/public/textures/immersiveengineering/connector_bundled.png and /dev/null differ diff --git a/public/textures/immersiveengineering/connector_hv.png b/public/textures/immersiveengineering/connector_hv.png deleted file mode 100644 index e0b8b6ca..00000000 Binary files a/public/textures/immersiveengineering/connector_hv.png and /dev/null differ diff --git a/public/textures/immersiveengineering/connector_hv_relay.png b/public/textures/immersiveengineering/connector_hv_relay.png deleted file mode 100644 index 2432a05c..00000000 Binary files a/public/textures/immersiveengineering/connector_hv_relay.png and /dev/null differ diff --git a/public/textures/immersiveengineering/connector_lv.png b/public/textures/immersiveengineering/connector_lv.png deleted file mode 100644 index 6855d30a..00000000 Binary files a/public/textures/immersiveengineering/connector_lv.png and /dev/null differ diff --git a/public/textures/immersiveengineering/connector_lv_relay.png b/public/textures/immersiveengineering/connector_lv_relay.png deleted file mode 100644 index c1a292fc..00000000 Binary files a/public/textures/immersiveengineering/connector_lv_relay.png and /dev/null differ diff --git a/public/textures/immersiveengineering/connector_mv.png b/public/textures/immersiveengineering/connector_mv.png deleted file mode 100644 index 97f5c8e1..00000000 Binary files a/public/textures/immersiveengineering/connector_mv.png and /dev/null differ diff --git a/public/textures/immersiveengineering/connector_mv_relay.png b/public/textures/immersiveengineering/connector_mv_relay.png deleted file mode 100644 index 8fcb86e1..00000000 Binary files a/public/textures/immersiveengineering/connector_mv_relay.png and /dev/null differ diff --git a/public/textures/immersiveengineering/connector_probe.png b/public/textures/immersiveengineering/connector_probe.png deleted file mode 100644 index cbe4ea20..00000000 Binary files a/public/textures/immersiveengineering/connector_probe.png and /dev/null differ diff --git a/public/textures/immersiveengineering/connector_redstone.png b/public/textures/immersiveengineering/connector_redstone.png deleted file mode 100644 index 00185346..00000000 Binary files a/public/textures/immersiveengineering/connector_redstone.png and /dev/null differ diff --git a/public/textures/immersiveengineering/connector_structural.png b/public/textures/immersiveengineering/connector_structural.png deleted file mode 100644 index 9d27a82b..00000000 Binary files a/public/textures/immersiveengineering/connector_structural.png and /dev/null differ diff --git a/public/textures/immersiveengineering/conveyor_basic.png b/public/textures/immersiveengineering/conveyor_basic.png deleted file mode 100644 index e7b6c7e5..00000000 Binary files a/public/textures/immersiveengineering/conveyor_basic.png and /dev/null differ diff --git a/public/textures/immersiveengineering/conveyor_basic__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png b/public/textures/immersiveengineering/conveyor_basic__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png deleted file mode 100644 index c2664101..00000000 Binary files a/public/textures/immersiveengineering/conveyor_basic__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/conveyor_dropper.png b/public/textures/immersiveengineering/conveyor_dropper.png deleted file mode 100644 index b3df0389..00000000 Binary files a/public/textures/immersiveengineering/conveyor_dropper.png and /dev/null differ diff --git a/public/textures/immersiveengineering/conveyor_dropper__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png b/public/textures/immersiveengineering/conveyor_dropper__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png deleted file mode 100644 index d896374d..00000000 Binary files a/public/textures/immersiveengineering/conveyor_dropper__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/conveyor_extract.png b/public/textures/immersiveengineering/conveyor_extract.png deleted file mode 100644 index 87340e92..00000000 Binary files a/public/textures/immersiveengineering/conveyor_extract.png and /dev/null differ diff --git a/public/textures/immersiveengineering/conveyor_extract__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png b/public/textures/immersiveengineering/conveyor_extract__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png deleted file mode 100644 index f64df0d2..00000000 Binary files a/public/textures/immersiveengineering/conveyor_extract__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/conveyor_redstone.png b/public/textures/immersiveengineering/conveyor_redstone.png deleted file mode 100644 index b76039dd..00000000 Binary files a/public/textures/immersiveengineering/conveyor_redstone.png and /dev/null differ diff --git a/public/textures/immersiveengineering/conveyor_splitter.png b/public/textures/immersiveengineering/conveyor_splitter.png deleted file mode 100644 index 0ca1b966..00000000 Binary files a/public/textures/immersiveengineering/conveyor_splitter.png and /dev/null differ diff --git a/public/textures/immersiveengineering/conveyor_splitter__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png b/public/textures/immersiveengineering/conveyor_splitter__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png deleted file mode 100644 index b2eae6ba..00000000 Binary files a/public/textures/immersiveengineering/conveyor_splitter__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/conveyor_vertical.png b/public/textures/immersiveengineering/conveyor_vertical.png deleted file mode 100644 index e1a1ce79..00000000 Binary files a/public/textures/immersiveengineering/conveyor_vertical.png and /dev/null differ diff --git a/public/textures/immersiveengineering/conveyor_vertical__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png b/public/textures/immersiveengineering/conveyor_vertical__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png deleted file mode 100644 index 44e163bc..00000000 Binary files a/public/textures/immersiveengineering/conveyor_vertical__{'immersiveengineering__default_cover'__'immersiveengineering__steel_scaffolding_standard'}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/coresample.png b/public/textures/immersiveengineering/coresample.png deleted file mode 100644 index 1d80f463..00000000 Binary files a/public/textures/immersiveengineering/coresample.png and /dev/null differ diff --git a/public/textures/immersiveengineering/craftingtable.png b/public/textures/immersiveengineering/craftingtable.png deleted file mode 100644 index ebf94f1d..00000000 Binary files a/public/textures/immersiveengineering/craftingtable.png and /dev/null differ diff --git a/public/textures/immersiveengineering/crate.png b/public/textures/immersiveengineering/crate.png deleted file mode 100644 index 80b8528b..00000000 Binary files a/public/textures/immersiveengineering/crate.png and /dev/null differ diff --git a/public/textures/immersiveengineering/creosote_bucket.png b/public/textures/immersiveengineering/creosote_bucket.png deleted file mode 100644 index 7beb386f..00000000 Binary files a/public/textures/immersiveengineering/creosote_bucket.png and /dev/null differ diff --git a/public/textures/immersiveengineering/current_transformer.png b/public/textures/immersiveengineering/current_transformer.png deleted file mode 100644 index 30d6f5f4..00000000 Binary files a/public/textures/immersiveengineering/current_transformer.png and /dev/null differ diff --git a/public/textures/immersiveengineering/cushion.png b/public/textures/immersiveengineering/cushion.png deleted file mode 100644 index f9b19bc9..00000000 Binary files a/public/textures/immersiveengineering/cushion.png and /dev/null differ diff --git a/public/textures/immersiveengineering/deepslate_ore_aluminum.png b/public/textures/immersiveengineering/deepslate_ore_aluminum.png deleted file mode 100644 index 8bb7961f..00000000 Binary files a/public/textures/immersiveengineering/deepslate_ore_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/deepslate_ore_lead.png b/public/textures/immersiveengineering/deepslate_ore_lead.png deleted file mode 100644 index b7c6975b..00000000 Binary files a/public/textures/immersiveengineering/deepslate_ore_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/deepslate_ore_nickel.png b/public/textures/immersiveengineering/deepslate_ore_nickel.png deleted file mode 100644 index 58974060..00000000 Binary files a/public/textures/immersiveengineering/deepslate_ore_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/deepslate_ore_silver.png b/public/textures/immersiveengineering/deepslate_ore_silver.png deleted file mode 100644 index 01e2f0a4..00000000 Binary files a/public/textures/immersiveengineering/deepslate_ore_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/deepslate_ore_uranium.png b/public/textures/immersiveengineering/deepslate_ore_uranium.png deleted file mode 100644 index a8c327fa..00000000 Binary files a/public/textures/immersiveengineering/deepslate_ore_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/drill.png b/public/textures/immersiveengineering/drill.png deleted file mode 100644 index 14cd79c2..00000000 Binary files a/public/textures/immersiveengineering/drill.png and /dev/null differ diff --git a/public/textures/immersiveengineering/drillhead_iron.png b/public/textures/immersiveengineering/drillhead_iron.png deleted file mode 100644 index 8d478102..00000000 Binary files a/public/textures/immersiveengineering/drillhead_iron.png and /dev/null differ diff --git a/public/textures/immersiveengineering/drillhead_steel.png b/public/textures/immersiveengineering/drillhead_steel.png deleted file mode 100644 index 2013a8ff..00000000 Binary files a/public/textures/immersiveengineering/drillhead_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/duroplast.png b/public/textures/immersiveengineering/duroplast.png deleted file mode 100644 index 74761e87..00000000 Binary files a/public/textures/immersiveengineering/duroplast.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_aluminum.png b/public/textures/immersiveengineering/dust_aluminum.png deleted file mode 100644 index 2c46aa2e..00000000 Binary files a/public/textures/immersiveengineering/dust_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_coke.png b/public/textures/immersiveengineering/dust_coke.png deleted file mode 100644 index 4d6ac59d..00000000 Binary files a/public/textures/immersiveengineering/dust_coke.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_constantan.png b/public/textures/immersiveengineering/dust_constantan.png deleted file mode 100644 index 61deef63..00000000 Binary files a/public/textures/immersiveengineering/dust_constantan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_copper.png b/public/textures/immersiveengineering/dust_copper.png deleted file mode 100644 index 632276aa..00000000 Binary files a/public/textures/immersiveengineering/dust_copper.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_electrum.png b/public/textures/immersiveengineering/dust_electrum.png deleted file mode 100644 index 54153f3e..00000000 Binary files a/public/textures/immersiveengineering/dust_electrum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_gold.png b/public/textures/immersiveengineering/dust_gold.png deleted file mode 100644 index ed442cf0..00000000 Binary files a/public/textures/immersiveengineering/dust_gold.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_hop_graphite.png b/public/textures/immersiveengineering/dust_hop_graphite.png deleted file mode 100644 index d2650843..00000000 Binary files a/public/textures/immersiveengineering/dust_hop_graphite.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_iron.png b/public/textures/immersiveengineering/dust_iron.png deleted file mode 100644 index 99e70816..00000000 Binary files a/public/textures/immersiveengineering/dust_iron.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_lead.png b/public/textures/immersiveengineering/dust_lead.png deleted file mode 100644 index 67ca58ad..00000000 Binary files a/public/textures/immersiveengineering/dust_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_nickel.png b/public/textures/immersiveengineering/dust_nickel.png deleted file mode 100644 index 8983d14a..00000000 Binary files a/public/textures/immersiveengineering/dust_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_saltpeter.png b/public/textures/immersiveengineering/dust_saltpeter.png deleted file mode 100644 index d5b268ea..00000000 Binary files a/public/textures/immersiveengineering/dust_saltpeter.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_silver.png b/public/textures/immersiveengineering/dust_silver.png deleted file mode 100644 index cebddaba..00000000 Binary files a/public/textures/immersiveengineering/dust_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_steel.png b/public/textures/immersiveengineering/dust_steel.png deleted file mode 100644 index 3c1cb835..00000000 Binary files a/public/textures/immersiveengineering/dust_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_sulfur.png b/public/textures/immersiveengineering/dust_sulfur.png deleted file mode 100644 index c83b07f5..00000000 Binary files a/public/textures/immersiveengineering/dust_sulfur.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_uranium.png b/public/textures/immersiveengineering/dust_uranium.png deleted file mode 100644 index 1ab44824..00000000 Binary files a/public/textures/immersiveengineering/dust_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dust_wood.png b/public/textures/immersiveengineering/dust_wood.png deleted file mode 100644 index 68d00ea4..00000000 Binary files a/public/textures/immersiveengineering/dust_wood.png and /dev/null differ diff --git a/public/textures/immersiveengineering/dynamo.png b/public/textures/immersiveengineering/dynamo.png deleted file mode 100644 index a9e59d8e..00000000 Binary files a/public/textures/immersiveengineering/dynamo.png and /dev/null differ diff --git a/public/textures/immersiveengineering/earmuffs.png b/public/textures/immersiveengineering/earmuffs.png deleted file mode 100644 index 26333f3b..00000000 Binary files a/public/textures/immersiveengineering/earmuffs.png and /dev/null differ diff --git a/public/textures/immersiveengineering/electric_lantern.png b/public/textures/immersiveengineering/electric_lantern.png deleted file mode 100644 index 91670967..00000000 Binary files a/public/textures/immersiveengineering/electric_lantern.png and /dev/null differ diff --git a/public/textures/immersiveengineering/electromagnet.png b/public/textures/immersiveengineering/electromagnet.png deleted file mode 100644 index 5fd4c364..00000000 Binary files a/public/textures/immersiveengineering/electromagnet.png and /dev/null differ diff --git a/public/textures/immersiveengineering/electron_tube.png b/public/textures/immersiveengineering/electron_tube.png deleted file mode 100644 index 36fdf0a5..00000000 Binary files a/public/textures/immersiveengineering/electron_tube.png and /dev/null differ diff --git a/public/textures/immersiveengineering/empty_casing.png b/public/textures/immersiveengineering/empty_casing.png deleted file mode 100644 index 41d5f890..00000000 Binary files a/public/textures/immersiveengineering/empty_casing.png and /dev/null differ diff --git a/public/textures/immersiveengineering/empty_shell.png b/public/textures/immersiveengineering/empty_shell.png deleted file mode 100644 index 3d65bfb8..00000000 Binary files a/public/textures/immersiveengineering/empty_shell.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ersatz_leather.png b/public/textures/immersiveengineering/ersatz_leather.png deleted file mode 100644 index fd7e4c32..00000000 Binary files a/public/textures/immersiveengineering/ersatz_leather.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ethanol_bucket.png b/public/textures/immersiveengineering/ethanol_bucket.png deleted file mode 100644 index 464e8640..00000000 Binary files a/public/textures/immersiveengineering/ethanol_bucket.png and /dev/null differ diff --git a/public/textures/immersiveengineering/fertilizer.png b/public/textures/immersiveengineering/fertilizer.png deleted file mode 100644 index 900c5ca2..00000000 Binary files a/public/textures/immersiveengineering/fertilizer.png and /dev/null differ diff --git a/public/textures/immersiveengineering/fiberboard.png b/public/textures/immersiveengineering/fiberboard.png deleted file mode 100644 index efa4d4a0..00000000 Binary files a/public/textures/immersiveengineering/fiberboard.png and /dev/null differ diff --git a/public/textures/immersiveengineering/floodlight.png b/public/textures/immersiveengineering/floodlight.png deleted file mode 100644 index d1d60ed6..00000000 Binary files a/public/textures/immersiveengineering/floodlight.png and /dev/null differ diff --git a/public/textures/immersiveengineering/fluid_pipe.png b/public/textures/immersiveengineering/fluid_pipe.png deleted file mode 100644 index 8b7ed0da..00000000 Binary files a/public/textures/immersiveengineering/fluid_pipe.png and /dev/null differ diff --git a/public/textures/immersiveengineering/fluid_placer.png b/public/textures/immersiveengineering/fluid_placer.png deleted file mode 100644 index a2f1fe16..00000000 Binary files a/public/textures/immersiveengineering/fluid_placer.png and /dev/null differ diff --git a/public/textures/immersiveengineering/fluid_pump.png b/public/textures/immersiveengineering/fluid_pump.png deleted file mode 100644 index 301a9977..00000000 Binary files a/public/textures/immersiveengineering/fluid_pump.png and /dev/null differ diff --git a/public/textures/immersiveengineering/fluid_sorter.png b/public/textures/immersiveengineering/fluid_sorter.png deleted file mode 100644 index 8770a241..00000000 Binary files a/public/textures/immersiveengineering/fluid_sorter.png and /dev/null differ diff --git a/public/textures/immersiveengineering/fluorescent_tube.png b/public/textures/immersiveengineering/fluorescent_tube.png deleted file mode 100644 index e5e3f5da..00000000 Binary files a/public/textures/immersiveengineering/fluorescent_tube.png and /dev/null differ diff --git a/public/textures/immersiveengineering/furnace_heater.png b/public/textures/immersiveengineering/furnace_heater.png deleted file mode 100644 index ccb6618c..00000000 Binary files a/public/textures/immersiveengineering/furnace_heater.png and /dev/null differ diff --git a/public/textures/immersiveengineering/fusilier_spawn_egg.png b/public/textures/immersiveengineering/fusilier_spawn_egg.png deleted file mode 100644 index dcfbe86d..00000000 Binary files a/public/textures/immersiveengineering/fusilier_spawn_egg.png and /dev/null differ diff --git a/public/textures/immersiveengineering/generator.png b/public/textures/immersiveengineering/generator.png deleted file mode 100644 index 7a4fe1ca..00000000 Binary files a/public/textures/immersiveengineering/generator.png and /dev/null differ diff --git a/public/textures/immersiveengineering/glider.png b/public/textures/immersiveengineering/glider.png deleted file mode 100644 index 74f4bd8f..00000000 Binary files a/public/textures/immersiveengineering/glider.png and /dev/null differ diff --git a/public/textures/immersiveengineering/graphite_electrode.png b/public/textures/immersiveengineering/graphite_electrode.png deleted file mode 100644 index 0e363d06..00000000 Binary files a/public/textures/immersiveengineering/graphite_electrode.png and /dev/null differ diff --git a/public/textures/immersiveengineering/grindingdisk.png b/public/textures/immersiveengineering/grindingdisk.png deleted file mode 100644 index cf42157a..00000000 Binary files a/public/textures/immersiveengineering/grindingdisk.png and /dev/null differ diff --git a/public/textures/immersiveengineering/grit_sand.png b/public/textures/immersiveengineering/grit_sand.png deleted file mode 100644 index 1b7e7465..00000000 Binary files a/public/textures/immersiveengineering/grit_sand.png and /dev/null differ diff --git a/public/textures/immersiveengineering/gunpart_barrel.png b/public/textures/immersiveengineering/gunpart_barrel.png deleted file mode 100644 index f0df5b1d..00000000 Binary files a/public/textures/immersiveengineering/gunpart_barrel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/gunpart_drum.png b/public/textures/immersiveengineering/gunpart_drum.png deleted file mode 100644 index 5fa7c71d..00000000 Binary files a/public/textures/immersiveengineering/gunpart_drum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/gunpart_hammer.png b/public/textures/immersiveengineering/gunpart_hammer.png deleted file mode 100644 index b0488e32..00000000 Binary files a/public/textures/immersiveengineering/gunpart_hammer.png and /dev/null differ diff --git a/public/textures/immersiveengineering/gunpowder_barrel.png b/public/textures/immersiveengineering/gunpowder_barrel.png deleted file mode 100644 index 980be971..00000000 Binary files a/public/textures/immersiveengineering/gunpowder_barrel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/hammer.png b/public/textures/immersiveengineering/hammer.png deleted file mode 100644 index 5e19b05e..00000000 Binary files a/public/textures/immersiveengineering/hammer.png and /dev/null differ diff --git a/public/textures/immersiveengineering/heavy_engineering.png b/public/textures/immersiveengineering/heavy_engineering.png deleted file mode 100644 index 66e6ba6b..00000000 Binary files a/public/textures/immersiveengineering/heavy_engineering.png and /dev/null differ diff --git a/public/textures/immersiveengineering/hemp_fabric.png b/public/textures/immersiveengineering/hemp_fabric.png deleted file mode 100644 index 7179bdae..00000000 Binary files a/public/textures/immersiveengineering/hemp_fabric.png and /dev/null differ diff --git a/public/textures/immersiveengineering/hemp_fiber.png b/public/textures/immersiveengineering/hemp_fiber.png deleted file mode 100644 index 68daa1b8..00000000 Binary files a/public/textures/immersiveengineering/hemp_fiber.png and /dev/null differ diff --git a/public/textures/immersiveengineering/hempcrete.png b/public/textures/immersiveengineering/hempcrete.png deleted file mode 100644 index b88fb0c0..00000000 Binary files a/public/textures/immersiveengineering/hempcrete.png and /dev/null differ diff --git a/public/textures/immersiveengineering/hempcrete_brick.png b/public/textures/immersiveengineering/hempcrete_brick.png deleted file mode 100644 index 44b8333b..00000000 Binary files a/public/textures/immersiveengineering/hempcrete_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/hempcrete_brick_cracked.png b/public/textures/immersiveengineering/hempcrete_brick_cracked.png deleted file mode 100644 index fa2c019c..00000000 Binary files a/public/textures/immersiveengineering/hempcrete_brick_cracked.png and /dev/null differ diff --git a/public/textures/immersiveengineering/hempcrete_chiseled.png b/public/textures/immersiveengineering/hempcrete_chiseled.png deleted file mode 100644 index 2a50624a..00000000 Binary files a/public/textures/immersiveengineering/hempcrete_chiseled.png and /dev/null differ diff --git a/public/textures/immersiveengineering/hempcrete_pillar.png b/public/textures/immersiveengineering/hempcrete_pillar.png deleted file mode 100644 index ad2698b2..00000000 Binary files a/public/textures/immersiveengineering/hempcrete_pillar.png and /dev/null differ diff --git a/public/textures/immersiveengineering/herbicide_bucket.png b/public/textures/immersiveengineering/herbicide_bucket.png deleted file mode 100644 index 461961aa..00000000 Binary files a/public/textures/immersiveengineering/herbicide_bucket.png and /dev/null differ diff --git a/public/textures/immersiveengineering/high_power_biodiesel_bucket.png b/public/textures/immersiveengineering/high_power_biodiesel_bucket.png deleted file mode 100644 index 94fde593..00000000 Binary files a/public/textures/immersiveengineering/high_power_biodiesel_bucket.png and /dev/null differ diff --git a/public/textures/immersiveengineering/hoe_steel.png b/public/textures/immersiveengineering/hoe_steel.png deleted file mode 100644 index d43b0100..00000000 Binary files a/public/textures/immersiveengineering/hoe_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ingot_aluminum.png b/public/textures/immersiveengineering/ingot_aluminum.png deleted file mode 100644 index 866dab50..00000000 Binary files a/public/textures/immersiveengineering/ingot_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ingot_constantan.png b/public/textures/immersiveengineering/ingot_constantan.png deleted file mode 100644 index 2e13c20d..00000000 Binary files a/public/textures/immersiveengineering/ingot_constantan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ingot_electrum.png b/public/textures/immersiveengineering/ingot_electrum.png deleted file mode 100644 index b793436c..00000000 Binary files a/public/textures/immersiveengineering/ingot_electrum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ingot_hop_graphite.png b/public/textures/immersiveengineering/ingot_hop_graphite.png deleted file mode 100644 index efa6ad02..00000000 Binary files a/public/textures/immersiveengineering/ingot_hop_graphite.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ingot_lead.png b/public/textures/immersiveengineering/ingot_lead.png deleted file mode 100644 index 53867ad8..00000000 Binary files a/public/textures/immersiveengineering/ingot_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ingot_nickel.png b/public/textures/immersiveengineering/ingot_nickel.png deleted file mode 100644 index a62bb7aa..00000000 Binary files a/public/textures/immersiveengineering/ingot_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ingot_silver.png b/public/textures/immersiveengineering/ingot_silver.png deleted file mode 100644 index 67c23af2..00000000 Binary files a/public/textures/immersiveengineering/ingot_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ingot_steel.png b/public/textures/immersiveengineering/ingot_steel.png deleted file mode 100644 index 5366a8ac..00000000 Binary files a/public/textures/immersiveengineering/ingot_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ingot_uranium.png b/public/textures/immersiveengineering/ingot_uranium.png deleted file mode 100644 index 722a0a1e..00000000 Binary files a/public/textures/immersiveengineering/ingot_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/insulating_glass.png b/public/textures/immersiveengineering/insulating_glass.png deleted file mode 100644 index 3bedf4da..00000000 Binary files a/public/textures/immersiveengineering/insulating_glass.png and /dev/null differ diff --git a/public/textures/immersiveengineering/item_batcher.png b/public/textures/immersiveengineering/item_batcher.png deleted file mode 100644 index 517951d2..00000000 Binary files a/public/textures/immersiveengineering/item_batcher.png and /dev/null differ diff --git a/public/textures/immersiveengineering/jerrycan.png b/public/textures/immersiveengineering/jerrycan.png deleted file mode 100644 index 4ae7f562..00000000 Binary files a/public/textures/immersiveengineering/jerrycan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/lantern.png b/public/textures/immersiveengineering/lantern.png deleted file mode 100644 index 8d3aa1d3..00000000 Binary files a/public/textures/immersiveengineering/lantern.png and /dev/null differ diff --git a/public/textures/immersiveengineering/light_bulb.png b/public/textures/immersiveengineering/light_bulb.png deleted file mode 100644 index 439e1241..00000000 Binary files a/public/textures/immersiveengineering/light_bulb.png and /dev/null differ diff --git a/public/textures/immersiveengineering/light_engineering.png b/public/textures/immersiveengineering/light_engineering.png deleted file mode 100644 index 444f3128..00000000 Binary files a/public/textures/immersiveengineering/light_engineering.png and /dev/null differ diff --git a/public/textures/immersiveengineering/logic_circuit.png b/public/textures/immersiveengineering/logic_circuit.png deleted file mode 100644 index 92bf7f4e..00000000 Binary files a/public/textures/immersiveengineering/logic_circuit.png and /dev/null differ diff --git a/public/textures/immersiveengineering/logic_unit.png b/public/textures/immersiveengineering/logic_unit.png deleted file mode 100644 index 179ecbc5..00000000 Binary files a/public/textures/immersiveengineering/logic_unit.png and /dev/null differ diff --git a/public/textures/immersiveengineering/machine_interface.png b/public/textures/immersiveengineering/machine_interface.png deleted file mode 100644 index 7f1277a2..00000000 Binary files a/public/textures/immersiveengineering/machine_interface.png and /dev/null differ diff --git a/public/textures/immersiveengineering/maintenance_kit.png b/public/textures/immersiveengineering/maintenance_kit.png deleted file mode 100644 index 591fd733..00000000 Binary files a/public/textures/immersiveengineering/maintenance_kit.png and /dev/null differ diff --git a/public/textures/immersiveengineering/manual.png b/public/textures/immersiveengineering/manual.png deleted file mode 100644 index a87f1034..00000000 Binary files a/public/textures/immersiveengineering/manual.png and /dev/null differ diff --git a/public/textures/immersiveengineering/metal_barrel.png b/public/textures/immersiveengineering/metal_barrel.png deleted file mode 100644 index bf748c68..00000000 Binary files a/public/textures/immersiveengineering/metal_barrel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/metal_ladder_alu.png b/public/textures/immersiveengineering/metal_ladder_alu.png deleted file mode 100644 index 029c8f7b..00000000 Binary files a/public/textures/immersiveengineering/metal_ladder_alu.png and /dev/null differ diff --git a/public/textures/immersiveengineering/metal_ladder_none.png b/public/textures/immersiveengineering/metal_ladder_none.png deleted file mode 100644 index 4694320b..00000000 Binary files a/public/textures/immersiveengineering/metal_ladder_none.png and /dev/null differ diff --git a/public/textures/immersiveengineering/metal_ladder_steel.png b/public/textures/immersiveengineering/metal_ladder_steel.png deleted file mode 100644 index 40949088..00000000 Binary files a/public/textures/immersiveengineering/metal_ladder_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/minecart_metalbarrel.png b/public/textures/immersiveengineering/minecart_metalbarrel.png deleted file mode 100644 index 20263503..00000000 Binary files a/public/textures/immersiveengineering/minecart_metalbarrel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/minecart_reinforcedcrate.png b/public/textures/immersiveengineering/minecart_reinforcedcrate.png deleted file mode 100644 index 3a743b49..00000000 Binary files a/public/textures/immersiveengineering/minecart_reinforcedcrate.png and /dev/null differ diff --git a/public/textures/immersiveengineering/minecart_woodenbarrel.png b/public/textures/immersiveengineering/minecart_woodenbarrel.png deleted file mode 100644 index b08a9825..00000000 Binary files a/public/textures/immersiveengineering/minecart_woodenbarrel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/minecart_woodencrate.png b/public/textures/immersiveengineering/minecart_woodencrate.png deleted file mode 100644 index c4dabde0..00000000 Binary files a/public/textures/immersiveengineering/minecart_woodencrate.png and /dev/null differ diff --git a/public/textures/immersiveengineering/mold_bullet_casing.png b/public/textures/immersiveengineering/mold_bullet_casing.png deleted file mode 100644 index 8f607460..00000000 Binary files a/public/textures/immersiveengineering/mold_bullet_casing.png and /dev/null differ diff --git a/public/textures/immersiveengineering/mold_gear.png b/public/textures/immersiveengineering/mold_gear.png deleted file mode 100644 index 3be0e0e1..00000000 Binary files a/public/textures/immersiveengineering/mold_gear.png and /dev/null differ diff --git a/public/textures/immersiveengineering/mold_packing_4.png b/public/textures/immersiveengineering/mold_packing_4.png deleted file mode 100644 index 2882969d..00000000 Binary files a/public/textures/immersiveengineering/mold_packing_4.png and /dev/null differ diff --git a/public/textures/immersiveengineering/mold_packing_9.png b/public/textures/immersiveengineering/mold_packing_9.png deleted file mode 100644 index cb7f13c6..00000000 Binary files a/public/textures/immersiveengineering/mold_packing_9.png and /dev/null differ diff --git a/public/textures/immersiveengineering/mold_plate.png b/public/textures/immersiveengineering/mold_plate.png deleted file mode 100644 index 890eb9a6..00000000 Binary files a/public/textures/immersiveengineering/mold_plate.png and /dev/null differ diff --git a/public/textures/immersiveengineering/mold_rod.png b/public/textures/immersiveengineering/mold_rod.png deleted file mode 100644 index bd2ca440..00000000 Binary files a/public/textures/immersiveengineering/mold_rod.png and /dev/null differ diff --git a/public/textures/immersiveengineering/mold_unpacking.png b/public/textures/immersiveengineering/mold_unpacking.png deleted file mode 100644 index 5ce2ba2c..00000000 Binary files a/public/textures/immersiveengineering/mold_unpacking.png and /dev/null differ diff --git a/public/textures/immersiveengineering/mold_wire.png b/public/textures/immersiveengineering/mold_wire.png deleted file mode 100644 index 7fd46fe2..00000000 Binary files a/public/textures/immersiveengineering/mold_wire.png and /dev/null differ diff --git a/public/textures/immersiveengineering/nugget_aluminum.png b/public/textures/immersiveengineering/nugget_aluminum.png deleted file mode 100644 index 4d2789da..00000000 Binary files a/public/textures/immersiveengineering/nugget_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/nugget_constantan.png b/public/textures/immersiveengineering/nugget_constantan.png deleted file mode 100644 index 4fb19cae..00000000 Binary files a/public/textures/immersiveengineering/nugget_constantan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/nugget_copper.png b/public/textures/immersiveengineering/nugget_copper.png deleted file mode 100644 index 66ebce86..00000000 Binary files a/public/textures/immersiveengineering/nugget_copper.png and /dev/null differ diff --git a/public/textures/immersiveengineering/nugget_electrum.png b/public/textures/immersiveengineering/nugget_electrum.png deleted file mode 100644 index 8c0b1bd4..00000000 Binary files a/public/textures/immersiveengineering/nugget_electrum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/nugget_lead.png b/public/textures/immersiveengineering/nugget_lead.png deleted file mode 100644 index 00adaaf0..00000000 Binary files a/public/textures/immersiveengineering/nugget_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/nugget_netherite.png b/public/textures/immersiveengineering/nugget_netherite.png deleted file mode 100644 index 32223354..00000000 Binary files a/public/textures/immersiveengineering/nugget_netherite.png and /dev/null differ diff --git a/public/textures/immersiveengineering/nugget_nickel.png b/public/textures/immersiveengineering/nugget_nickel.png deleted file mode 100644 index d3aa9f5b..00000000 Binary files a/public/textures/immersiveengineering/nugget_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/nugget_silver.png b/public/textures/immersiveengineering/nugget_silver.png deleted file mode 100644 index bee7a4e1..00000000 Binary files a/public/textures/immersiveengineering/nugget_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/nugget_steel.png b/public/textures/immersiveengineering/nugget_steel.png deleted file mode 100644 index 7d94e42c..00000000 Binary files a/public/textures/immersiveengineering/nugget_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/nugget_uranium.png b/public/textures/immersiveengineering/nugget_uranium.png deleted file mode 100644 index b3d8ae8f..00000000 Binary files a/public/textures/immersiveengineering/nugget_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ore_aluminum.png b/public/textures/immersiveengineering/ore_aluminum.png deleted file mode 100644 index f0f10567..00000000 Binary files a/public/textures/immersiveengineering/ore_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ore_lead.png b/public/textures/immersiveengineering/ore_lead.png deleted file mode 100644 index 5c67cc61..00000000 Binary files a/public/textures/immersiveengineering/ore_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ore_nickel.png b/public/textures/immersiveengineering/ore_nickel.png deleted file mode 100644 index 372c5dfe..00000000 Binary files a/public/textures/immersiveengineering/ore_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ore_silver.png b/public/textures/immersiveengineering/ore_silver.png deleted file mode 100644 index 8dbe6b85..00000000 Binary files a/public/textures/immersiveengineering/ore_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/ore_uranium.png b/public/textures/immersiveengineering/ore_uranium.png deleted file mode 100644 index 0a3fe134..00000000 Binary files a/public/textures/immersiveengineering/ore_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/phenolic_resin_bucket.png b/public/textures/immersiveengineering/phenolic_resin_bucket.png deleted file mode 100644 index 51e95ed2..00000000 Binary files a/public/textures/immersiveengineering/phenolic_resin_bucket.png and /dev/null differ diff --git a/public/textures/immersiveengineering/pickaxe_steel.png b/public/textures/immersiveengineering/pickaxe_steel.png deleted file mode 100644 index 6bff9b0b..00000000 Binary files a/public/textures/immersiveengineering/pickaxe_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/pipe_valve.png b/public/textures/immersiveengineering/pipe_valve.png deleted file mode 100644 index 75fa9cb2..00000000 Binary files a/public/textures/immersiveengineering/pipe_valve.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plantoil_bucket.png b/public/textures/immersiveengineering/plantoil_bucket.png deleted file mode 100644 index 0513ee5b..00000000 Binary files a/public/textures/immersiveengineering/plantoil_bucket.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_aluminum.png b/public/textures/immersiveengineering/plate_aluminum.png deleted file mode 100644 index 7b7ec7ea..00000000 Binary files a/public/textures/immersiveengineering/plate_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_constantan.png b/public/textures/immersiveengineering/plate_constantan.png deleted file mode 100644 index 35afc6d2..00000000 Binary files a/public/textures/immersiveengineering/plate_constantan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_copper.png b/public/textures/immersiveengineering/plate_copper.png deleted file mode 100644 index 5f5ff733..00000000 Binary files a/public/textures/immersiveengineering/plate_copper.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_duroplast.png b/public/textures/immersiveengineering/plate_duroplast.png deleted file mode 100644 index f03404e8..00000000 Binary files a/public/textures/immersiveengineering/plate_duroplast.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_electrum.png b/public/textures/immersiveengineering/plate_electrum.png deleted file mode 100644 index 309a7908..00000000 Binary files a/public/textures/immersiveengineering/plate_electrum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_gold.png b/public/textures/immersiveengineering/plate_gold.png deleted file mode 100644 index a8277384..00000000 Binary files a/public/textures/immersiveengineering/plate_gold.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_hop_graphite.png b/public/textures/immersiveengineering/plate_hop_graphite.png deleted file mode 100644 index 67fbf04d..00000000 Binary files a/public/textures/immersiveengineering/plate_hop_graphite.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_iron.png b/public/textures/immersiveengineering/plate_iron.png deleted file mode 100644 index 0e8e8f92..00000000 Binary files a/public/textures/immersiveengineering/plate_iron.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_lead.png b/public/textures/immersiveengineering/plate_lead.png deleted file mode 100644 index 7b34c784..00000000 Binary files a/public/textures/immersiveengineering/plate_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_nickel.png b/public/textures/immersiveengineering/plate_nickel.png deleted file mode 100644 index a7947a05..00000000 Binary files a/public/textures/immersiveengineering/plate_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_silver.png b/public/textures/immersiveengineering/plate_silver.png deleted file mode 100644 index 92b5e52c..00000000 Binary files a/public/textures/immersiveengineering/plate_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_steel.png b/public/textures/immersiveengineering/plate_steel.png deleted file mode 100644 index d76a7279..00000000 Binary files a/public/textures/immersiveengineering/plate_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/plate_uranium.png b/public/textures/immersiveengineering/plate_uranium.png deleted file mode 100644 index 6b2f4a8e..00000000 Binary files a/public/textures/immersiveengineering/plate_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png deleted file mode 100644 index d58f8397..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png deleted file mode 100644 index d58f8397..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png deleted file mode 100644 index 1c90639e..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png deleted file mode 100644 index 461b8809..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png deleted file mode 100644 index 4420f626..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png deleted file mode 100644 index c6674fe2..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png deleted file mode 100644 index 0d0bcfc6..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png deleted file mode 100644 index 0985df4b..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png deleted file mode 100644 index 2e3b40a6..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png deleted file mode 100644 index f171ebe4..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png deleted file mode 100644 index 4420f626..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png deleted file mode 100644 index 2e3b40a6..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png deleted file mode 100644 index f171ebe4..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png deleted file mode 100644 index 3095b9d5..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png deleted file mode 100644 index e1327a9a..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png deleted file mode 100644 index 4a00dd52..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png deleted file mode 100644 index ec1e361b..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png deleted file mode 100644 index 5fa13d40..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png deleted file mode 100644 index bddc8f9a..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png deleted file mode 100644 index 37ae1fec..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png deleted file mode 100644 index c6a79020..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png deleted file mode 100644 index 0d6bf077..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png deleted file mode 100644 index 0e59d2ab..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png deleted file mode 100644 index d3ff6f55..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png deleted file mode 100644 index 461b8809..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png deleted file mode 100644 index 3ed2f046..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png deleted file mode 100644 index 09bdb655..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png deleted file mode 100644 index e1327a9a..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png deleted file mode 100644 index 4a00dd52..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png deleted file mode 100644 index ec1e361b..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png deleted file mode 100644 index 5fa13d40..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png deleted file mode 100644 index bddc8f9a..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png deleted file mode 100644 index c6674fe2..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png deleted file mode 100644 index 0d0bcfc6..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png deleted file mode 100644 index f171ebe4..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png deleted file mode 100644 index e1327a9a..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png deleted file mode 100644 index 4a00dd52..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png deleted file mode 100644 index 5fa13d40..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png deleted file mode 100644 index 0daba201..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png deleted file mode 100644 index 37ae1fec..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png deleted file mode 100644 index 9ddaa5aa..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png deleted file mode 100644 index 37ae1fec..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png deleted file mode 100644 index 49ff52a9..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png deleted file mode 100644 index c6a79020..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png deleted file mode 100644 index 0d6bf077..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png deleted file mode 100644 index 0e59d2ab..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png deleted file mode 100644 index ad57fa8f..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png b/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png deleted file mode 100644 index ed7e91fd..00000000 Binary files a/public/textures/immersiveengineering/potion_bucket__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png and /dev/null differ diff --git a/public/textures/immersiveengineering/powerpack.png b/public/textures/immersiveengineering/powerpack.png deleted file mode 100644 index 1f099b4c..00000000 Binary files a/public/textures/immersiveengineering/powerpack.png and /dev/null differ diff --git a/public/textures/immersiveengineering/radiator.png b/public/textures/immersiveengineering/radiator.png deleted file mode 100644 index 823d3da5..00000000 Binary files a/public/textures/immersiveengineering/radiator.png and /dev/null differ diff --git a/public/textures/immersiveengineering/railgun.png b/public/textures/immersiveengineering/railgun.png deleted file mode 100644 index 89f923fe..00000000 Binary files a/public/textures/immersiveengineering/railgun.png and /dev/null differ diff --git a/public/textures/immersiveengineering/raw_aluminum.png b/public/textures/immersiveengineering/raw_aluminum.png deleted file mode 100644 index c882e174..00000000 Binary files a/public/textures/immersiveengineering/raw_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/raw_block_aluminum.png b/public/textures/immersiveengineering/raw_block_aluminum.png deleted file mode 100644 index ef45af09..00000000 Binary files a/public/textures/immersiveengineering/raw_block_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/raw_block_lead.png b/public/textures/immersiveengineering/raw_block_lead.png deleted file mode 100644 index 26bd581d..00000000 Binary files a/public/textures/immersiveengineering/raw_block_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/raw_block_nickel.png b/public/textures/immersiveengineering/raw_block_nickel.png deleted file mode 100644 index 9f59f653..00000000 Binary files a/public/textures/immersiveengineering/raw_block_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/raw_block_silver.png b/public/textures/immersiveengineering/raw_block_silver.png deleted file mode 100644 index 08103fb1..00000000 Binary files a/public/textures/immersiveengineering/raw_block_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/raw_block_uranium.png b/public/textures/immersiveengineering/raw_block_uranium.png deleted file mode 100644 index b95e1aaa..00000000 Binary files a/public/textures/immersiveengineering/raw_block_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/raw_lead.png b/public/textures/immersiveengineering/raw_lead.png deleted file mode 100644 index b49ad374..00000000 Binary files a/public/textures/immersiveengineering/raw_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/raw_nickel.png b/public/textures/immersiveengineering/raw_nickel.png deleted file mode 100644 index c6d40437..00000000 Binary files a/public/textures/immersiveengineering/raw_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/raw_silver.png b/public/textures/immersiveengineering/raw_silver.png deleted file mode 100644 index 47197c6a..00000000 Binary files a/public/textures/immersiveengineering/raw_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/raw_uranium.png b/public/textures/immersiveengineering/raw_uranium.png deleted file mode 100644 index bdd869ec..00000000 Binary files a/public/textures/immersiveengineering/raw_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/razor_wire.png b/public/textures/immersiveengineering/razor_wire.png deleted file mode 100644 index 6eb643b3..00000000 Binary files a/public/textures/immersiveengineering/razor_wire.png and /dev/null differ diff --git a/public/textures/immersiveengineering/redstone_acid_bucket.png b/public/textures/immersiveengineering/redstone_acid_bucket.png deleted file mode 100644 index 1ac68591..00000000 Binary files a/public/textures/immersiveengineering/redstone_acid_bucket.png and /dev/null differ diff --git a/public/textures/immersiveengineering/redstone_breaker.png b/public/textures/immersiveengineering/redstone_breaker.png deleted file mode 100644 index 795c0536..00000000 Binary files a/public/textures/immersiveengineering/redstone_breaker.png and /dev/null differ diff --git a/public/textures/immersiveengineering/redstone_state_cell.png b/public/textures/immersiveengineering/redstone_state_cell.png deleted file mode 100644 index aaaa53e6..00000000 Binary files a/public/textures/immersiveengineering/redstone_state_cell.png and /dev/null differ diff --git a/public/textures/immersiveengineering/redstone_switchboard.png b/public/textures/immersiveengineering/redstone_switchboard.png deleted file mode 100644 index 661d9934..00000000 Binary files a/public/textures/immersiveengineering/redstone_switchboard.png and /dev/null differ diff --git a/public/textures/immersiveengineering/redstone_timer.png b/public/textures/immersiveengineering/redstone_timer.png deleted file mode 100644 index 77431b4b..00000000 Binary files a/public/textures/immersiveengineering/redstone_timer.png and /dev/null differ diff --git a/public/textures/immersiveengineering/reinforced_crate.png b/public/textures/immersiveengineering/reinforced_crate.png deleted file mode 100644 index 52d454b0..00000000 Binary files a/public/textures/immersiveengineering/reinforced_crate.png and /dev/null differ diff --git a/public/textures/immersiveengineering/reinforced_window.png b/public/textures/immersiveengineering/reinforced_window.png deleted file mode 100644 index d27d6b4d..00000000 Binary files a/public/textures/immersiveengineering/reinforced_window.png and /dev/null differ diff --git a/public/textures/immersiveengineering/resonanz_engineering.png b/public/textures/immersiveengineering/resonanz_engineering.png deleted file mode 100644 index b772cd53..00000000 Binary files a/public/textures/immersiveengineering/resonanz_engineering.png and /dev/null differ diff --git a/public/textures/immersiveengineering/revolver.png b/public/textures/immersiveengineering/revolver.png deleted file mode 100644 index b86d2c6d..00000000 Binary files a/public/textures/immersiveengineering/revolver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/robot_wolf.png b/public/textures/immersiveengineering/robot_wolf.png deleted file mode 100644 index 142bd112..00000000 Binary files a/public/textures/immersiveengineering/robot_wolf.png and /dev/null differ diff --git a/public/textures/immersiveengineering/rockcutter.png b/public/textures/immersiveengineering/rockcutter.png deleted file mode 100644 index 3834029e..00000000 Binary files a/public/textures/immersiveengineering/rockcutter.png and /dev/null differ diff --git a/public/textures/immersiveengineering/rs_engineering.png b/public/textures/immersiveengineering/rs_engineering.png deleted file mode 100644 index e77c40d7..00000000 Binary files a/public/textures/immersiveengineering/rs_engineering.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sample_drill.png b/public/textures/immersiveengineering/sample_drill.png deleted file mode 100644 index bb38ebba..00000000 Binary files a/public/textures/immersiveengineering/sample_drill.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sawblade.png b/public/textures/immersiveengineering/sawblade.png deleted file mode 100644 index 7d83c8b5..00000000 Binary files a/public/textures/immersiveengineering/sawblade.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sawdust.png b/public/textures/immersiveengineering/sawdust.png deleted file mode 100644 index 5208d15e..00000000 Binary files a/public/textures/immersiveengineering/sawdust.png and /dev/null differ diff --git a/public/textures/immersiveengineering/screwdriver.png b/public/textures/immersiveengineering/screwdriver.png deleted file mode 100644 index 73a9df40..00000000 Binary files a/public/textures/immersiveengineering/screwdriver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/seed.png b/public/textures/immersiveengineering/seed.png deleted file mode 100644 index 8364d37d..00000000 Binary files a/public/textures/immersiveengineering/seed.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_acepride.png b/public/textures/immersiveengineering/shader_acepride.png deleted file mode 100644 index ac9496ff..00000000 Binary files a/public/textures/immersiveengineering/shader_acepride.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_ancient.png b/public/textures/immersiveengineering/shader_ancient.png deleted file mode 100644 index 78f33a5e..00000000 Binary files a/public/textures/immersiveengineering/shader_ancient.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_angelsthesis.png b/public/textures/immersiveengineering/shader_angelsthesis.png deleted file mode 100644 index ff87bb0b..00000000 Binary files a/public/textures/immersiveengineering/shader_angelsthesis.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_argo.png b/public/textures/immersiveengineering/shader_argo.png deleted file mode 100644 index 1a0e444e..00000000 Binary files a/public/textures/immersiveengineering/shader_argo.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_astartes.png b/public/textures/immersiveengineering/shader_astartes.png deleted file mode 100644 index 6f5ffafe..00000000 Binary files a/public/textures/immersiveengineering/shader_astartes.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_bag_common.png b/public/textures/immersiveengineering/shader_bag_common.png deleted file mode 100644 index 7c24181b..00000000 Binary files a/public/textures/immersiveengineering/shader_bag_common.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_bag_epic.png b/public/textures/immersiveengineering/shader_bag_epic.png deleted file mode 100644 index cc7cd883..00000000 Binary files a/public/textures/immersiveengineering/shader_bag_epic.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_bag_immersiveengineering_masterwork.png b/public/textures/immersiveengineering/shader_bag_immersiveengineering_masterwork.png deleted file mode 100644 index 14bf70ed..00000000 Binary files a/public/textures/immersiveengineering/shader_bag_immersiveengineering_masterwork.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_bag_rare.png b/public/textures/immersiveengineering/shader_bag_rare.png deleted file mode 100644 index 15471386..00000000 Binary files a/public/textures/immersiveengineering/shader_bag_rare.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_bag_uncommon.png b/public/textures/immersiveengineering/shader_bag_uncommon.png deleted file mode 100644 index 0fdeb057..00000000 Binary files a/public/textures/immersiveengineering/shader_bag_uncommon.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_bipride.png b/public/textures/immersiveengineering/shader_bipride.png deleted file mode 100644 index 459c4cc7..00000000 Binary files a/public/textures/immersiveengineering/shader_bipride.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_chloris.png b/public/textures/immersiveengineering/shader_chloris.png deleted file mode 100644 index 14fe601a..00000000 Binary files a/public/textures/immersiveengineering/shader_chloris.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_crescentrose.png b/public/textures/immersiveengineering/shader_crescentrose.png deleted file mode 100644 index 45effa74..00000000 Binary files a/public/textures/immersiveengineering/shader_crescentrose.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_crimsonlotus.png b/public/textures/immersiveengineering/shader_crimsonlotus.png deleted file mode 100644 index 0023e197..00000000 Binary files a/public/textures/immersiveengineering/shader_crimsonlotus.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_darkfire.png b/public/textures/immersiveengineering/shader_darkfire.png deleted file mode 100644 index a6744ba3..00000000 Binary files a/public/textures/immersiveengineering/shader_darkfire.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_dominator.png b/public/textures/immersiveengineering/shader_dominator.png deleted file mode 100644 index 0643c5a0..00000000 Binary files a/public/textures/immersiveengineering/shader_dominator.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_dragonsbreath.png b/public/textures/immersiveengineering/shader_dragonsbreath.png deleted file mode 100644 index badeb363..00000000 Binary files a/public/textures/immersiveengineering/shader_dragonsbreath.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_enbypride.png b/public/textures/immersiveengineering/shader_enbypride.png deleted file mode 100644 index 869aa501..00000000 Binary files a/public/textures/immersiveengineering/shader_enbypride.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_erruption.png b/public/textures/immersiveengineering/shader_erruption.png deleted file mode 100644 index 61d52ce9..00000000 Binary files a/public/textures/immersiveengineering/shader_erruption.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_exia.png b/public/textures/immersiveengineering/shader_exia.png deleted file mode 100644 index 6a7f83ca..00000000 Binary files a/public/textures/immersiveengineering/shader_exia.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_eyas.png b/public/textures/immersiveengineering/shader_eyas.png deleted file mode 100644 index 210d70ce..00000000 Binary files a/public/textures/immersiveengineering/shader_eyas.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_felix.png b/public/textures/immersiveengineering/shader_felix.png deleted file mode 100644 index c3a9e91c..00000000 Binary files a/public/textures/immersiveengineering/shader_felix.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_fox.png b/public/textures/immersiveengineering/shader_fox.png deleted file mode 100644 index cbf56ae6..00000000 Binary files a/public/textures/immersiveengineering/shader_fox.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_gaypride.png b/public/textures/immersiveengineering/shader_gaypride.png deleted file mode 100644 index bf2eed56..00000000 Binary files a/public/textures/immersiveengineering/shader_gaypride.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_glacis.png b/public/textures/immersiveengineering/shader_glacis.png deleted file mode 100644 index ad983106..00000000 Binary files a/public/textures/immersiveengineering/shader_glacis.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_harrowed.png b/public/textures/immersiveengineering/shader_harrowed.png deleted file mode 100644 index 9cf9e466..00000000 Binary files a/public/textures/immersiveengineering/shader_harrowed.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_hawk.png b/public/textures/immersiveengineering/shader_hawk.png deleted file mode 100644 index 16701395..00000000 Binary files a/public/textures/immersiveengineering/shader_hawk.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_hollow.png b/public/textures/immersiveengineering/shader_hollow.png deleted file mode 100644 index 677b4269..00000000 Binary files a/public/textures/immersiveengineering/shader_hollow.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_ikelos.png b/public/textures/immersiveengineering/shader_ikelos.png deleted file mode 100644 index d3d01e7c..00000000 Binary files a/public/textures/immersiveengineering/shader_ikelos.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_kindled.png b/public/textures/immersiveengineering/shader_kindled.png deleted file mode 100644 index a6f08bee..00000000 Binary files a/public/textures/immersiveengineering/shader_kindled.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_lesbianpride.png b/public/textures/immersiveengineering/shader_lesbianpride.png deleted file mode 100644 index fb3792b3..00000000 Binary files a/public/textures/immersiveengineering/shader_lesbianpride.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_locus.png b/public/textures/immersiveengineering/shader_locus.png deleted file mode 100644 index ac1c9c42..00000000 Binary files a/public/textures/immersiveengineering/shader_locus.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_lususnaturae.png b/public/textures/immersiveengineering/shader_lususnaturae.png deleted file mode 100644 index 57dcf867..00000000 Binary files a/public/textures/immersiveengineering/shader_lususnaturae.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_magnum.png b/public/textures/immersiveengineering/shader_magnum.png deleted file mode 100644 index 0d4afc65..00000000 Binary files a/public/textures/immersiveengineering/shader_magnum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_massfusion.png b/public/textures/immersiveengineering/shader_massfusion.png deleted file mode 100644 index 230c6ec5..00000000 Binary files a/public/textures/immersiveengineering/shader_massfusion.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_matrix.png b/public/textures/immersiveengineering/shader_matrix.png deleted file mode 100644 index b154babe..00000000 Binary files a/public/textures/immersiveengineering/shader_matrix.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_microshark.png b/public/textures/immersiveengineering/shader_microshark.png deleted file mode 100644 index 12087fb5..00000000 Binary files a/public/textures/immersiveengineering/shader_microshark.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_milo.png b/public/textures/immersiveengineering/shader_milo.png deleted file mode 100644 index 93999f2f..00000000 Binary files a/public/textures/immersiveengineering/shader_milo.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_n7.png b/public/textures/immersiveengineering/shader_n7.png deleted file mode 100644 index 46393239..00000000 Binary files a/public/textures/immersiveengineering/shader_n7.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_netherforged.png b/public/textures/immersiveengineering/shader_netherforged.png deleted file mode 100644 index c71d111b..00000000 Binary files a/public/textures/immersiveengineering/shader_netherforged.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_normandy.png b/public/textures/immersiveengineering/shader_normandy.png deleted file mode 100644 index e8e8e198..00000000 Binary files a/public/textures/immersiveengineering/shader_normandy.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_omnitool.png b/public/textures/immersiveengineering/shader_omnitool.png deleted file mode 100644 index ad67b37a..00000000 Binary files a/public/textures/immersiveengineering/shader_omnitool.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_phoenix.png b/public/textures/immersiveengineering/shader_phoenix.png deleted file mode 100644 index 21023ebf..00000000 Binary files a/public/textures/immersiveengineering/shader_phoenix.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_qrow.png b/public/textures/immersiveengineering/shader_qrow.png deleted file mode 100644 index 3f1c9ba8..00000000 Binary files a/public/textures/immersiveengineering/shader_qrow.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_radiant.png b/public/textures/immersiveengineering/shader_radiant.png deleted file mode 100644 index 646885a2..00000000 Binary files a/public/textures/immersiveengineering/shader_radiant.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_regal.png b/public/textures/immersiveengineering/shader_regal.png deleted file mode 100644 index 1a3e3598..00000000 Binary files a/public/textures/immersiveengineering/shader_regal.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_rosequartz.png b/public/textures/immersiveengineering/shader_rosequartz.png deleted file mode 100644 index 3f89a199..00000000 Binary files a/public/textures/immersiveengineering/shader_rosequartz.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_sharkface.png b/public/textures/immersiveengineering/shader_sharkface.png deleted file mode 100644 index 0b7e5687..00000000 Binary files a/public/textures/immersiveengineering/shader_sharkface.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_sponsor.png b/public/textures/immersiveengineering/shader_sponsor.png deleted file mode 100644 index 17cfc393..00000000 Binary files a/public/textures/immersiveengineering/shader_sponsor.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_stormflower.png b/public/textures/immersiveengineering/shader_stormflower.png deleted file mode 100644 index 33b221cb..00000000 Binary files a/public/textures/immersiveengineering/shader_stormflower.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_sunstrike.png b/public/textures/immersiveengineering/shader_sunstrike.png deleted file mode 100644 index b17ace27..00000000 Binary files a/public/textures/immersiveengineering/shader_sunstrike.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_sutherland.png b/public/textures/immersiveengineering/shader_sutherland.png deleted file mode 100644 index 8aaaa281..00000000 Binary files a/public/textures/immersiveengineering/shader_sutherland.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_taken.png b/public/textures/immersiveengineering/shader_taken.png deleted file mode 100644 index a2f17ab9..00000000 Binary files a/public/textures/immersiveengineering/shader_taken.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_transpride.png b/public/textures/immersiveengineering/shader_transpride.png deleted file mode 100644 index d3212a44..00000000 Binary files a/public/textures/immersiveengineering/shader_transpride.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_trident.png b/public/textures/immersiveengineering/shader_trident.png deleted file mode 100644 index 24554034..00000000 Binary files a/public/textures/immersiveengineering/shader_trident.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_twili.png b/public/textures/immersiveengineering/shader_twili.png deleted file mode 100644 index b2aa392c..00000000 Binary files a/public/textures/immersiveengineering/shader_twili.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_usurper.png b/public/textures/immersiveengineering/shader_usurper.png deleted file mode 100644 index b3bf1ca9..00000000 Binary files a/public/textures/immersiveengineering/shader_usurper.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_vanguard.png b/public/textures/immersiveengineering/shader_vanguard.png deleted file mode 100644 index 3ad508a6..00000000 Binary files a/public/textures/immersiveengineering/shader_vanguard.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_vaulttec.png b/public/textures/immersiveengineering/shader_vaulttec.png deleted file mode 100644 index 1a066439..00000000 Binary files a/public/textures/immersiveengineering/shader_vaulttec.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_waaagh.png b/public/textures/immersiveengineering/shader_waaagh.png deleted file mode 100644 index c630c8f8..00000000 Binary files a/public/textures/immersiveengineering/shader_waaagh.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shader_warbird.png b/public/textures/immersiveengineering/shader_warbird.png deleted file mode 100644 index 59b5f0de..00000000 Binary files a/public/textures/immersiveengineering/shader_warbird.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_aluminum.png b/public/textures/immersiveengineering/sheetmetal_aluminum.png deleted file mode 100644 index 61ace32f..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_black.png b/public/textures/immersiveengineering/sheetmetal_colored_black.png deleted file mode 100644 index 914aa596..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_black.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_blue.png b/public/textures/immersiveengineering/sheetmetal_colored_blue.png deleted file mode 100644 index 9257edef..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_blue.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_brown.png b/public/textures/immersiveengineering/sheetmetal_colored_brown.png deleted file mode 100644 index a9961d53..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_brown.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_cyan.png b/public/textures/immersiveengineering/sheetmetal_colored_cyan.png deleted file mode 100644 index e420238b..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_cyan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_gray.png b/public/textures/immersiveengineering/sheetmetal_colored_gray.png deleted file mode 100644 index d51ceb03..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_gray.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_green.png b/public/textures/immersiveengineering/sheetmetal_colored_green.png deleted file mode 100644 index 63110c20..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_green.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_light_blue.png b/public/textures/immersiveengineering/sheetmetal_colored_light_blue.png deleted file mode 100644 index 7edd3d1c..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_light_blue.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_light_gray.png b/public/textures/immersiveengineering/sheetmetal_colored_light_gray.png deleted file mode 100644 index 6edb3f7a..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_light_gray.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_lime.png b/public/textures/immersiveengineering/sheetmetal_colored_lime.png deleted file mode 100644 index 53c29773..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_lime.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_magenta.png b/public/textures/immersiveengineering/sheetmetal_colored_magenta.png deleted file mode 100644 index ba0ec969..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_magenta.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_orange.png b/public/textures/immersiveengineering/sheetmetal_colored_orange.png deleted file mode 100644 index 077307ad..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_orange.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_pink.png b/public/textures/immersiveengineering/sheetmetal_colored_pink.png deleted file mode 100644 index 2b499052..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_pink.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_purple.png b/public/textures/immersiveengineering/sheetmetal_colored_purple.png deleted file mode 100644 index adda3180..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_purple.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_red.png b/public/textures/immersiveengineering/sheetmetal_colored_red.png deleted file mode 100644 index ffe769cc..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_red.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_white.png b/public/textures/immersiveengineering/sheetmetal_colored_white.png deleted file mode 100644 index 50a2c131..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_white.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_colored_yellow.png b/public/textures/immersiveengineering/sheetmetal_colored_yellow.png deleted file mode 100644 index a5b9db7c..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_colored_yellow.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_constantan.png b/public/textures/immersiveengineering/sheetmetal_constantan.png deleted file mode 100644 index 26a381ed..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_constantan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_copper.png b/public/textures/immersiveengineering/sheetmetal_copper.png deleted file mode 100644 index da19f254..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_copper.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_electrum.png b/public/textures/immersiveengineering/sheetmetal_electrum.png deleted file mode 100644 index 45d8a541..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_electrum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_gold.png b/public/textures/immersiveengineering/sheetmetal_gold.png deleted file mode 100644 index 10c4f9fd..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_gold.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_iron.png b/public/textures/immersiveengineering/sheetmetal_iron.png deleted file mode 100644 index f70ba84f..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_iron.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_lead.png b/public/textures/immersiveengineering/sheetmetal_lead.png deleted file mode 100644 index 7d7e89fa..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_nickel.png b/public/textures/immersiveengineering/sheetmetal_nickel.png deleted file mode 100644 index 8972c4cb..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_silver.png b/public/textures/immersiveengineering/sheetmetal_silver.png deleted file mode 100644 index 56b3b191..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_steel.png b/public/textures/immersiveengineering/sheetmetal_steel.png deleted file mode 100644 index e9133fe6..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sheetmetal_uranium.png b/public/textures/immersiveengineering/sheetmetal_uranium.png deleted file mode 100644 index 6937343f..00000000 Binary files a/public/textures/immersiveengineering/sheetmetal_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shield.png b/public/textures/immersiveengineering/shield.png deleted file mode 100644 index 85e84563..00000000 Binary files a/public/textures/immersiveengineering/shield.png and /dev/null differ diff --git a/public/textures/immersiveengineering/shovel_steel.png b/public/textures/immersiveengineering/shovel_steel.png deleted file mode 100644 index 995afca9..00000000 Binary files a/public/textures/immersiveengineering/shovel_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/siren.png b/public/textures/immersiveengineering/siren.png deleted file mode 100644 index 5c1acc17..00000000 Binary files a/public/textures/immersiveengineering/siren.png and /dev/null differ diff --git a/public/textures/immersiveengineering/skyhook.png b/public/textures/immersiveengineering/skyhook.png deleted file mode 100644 index c80d64a2..00000000 Binary files a/public/textures/immersiveengineering/skyhook.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_alloybrick.png b/public/textures/immersiveengineering/slab_alloybrick.png deleted file mode 100644 index 2b9014bc..00000000 Binary files a/public/textures/immersiveengineering/slab_alloybrick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_alu_scaffolding_grate_top.png b/public/textures/immersiveengineering/slab_alu_scaffolding_grate_top.png deleted file mode 100644 index a0addca9..00000000 Binary files a/public/textures/immersiveengineering/slab_alu_scaffolding_grate_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_alu_scaffolding_standard.png b/public/textures/immersiveengineering/slab_alu_scaffolding_standard.png deleted file mode 100644 index 31264089..00000000 Binary files a/public/textures/immersiveengineering/slab_alu_scaffolding_standard.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_alu_scaffolding_wooden_top.png b/public/textures/immersiveengineering/slab_alu_scaffolding_wooden_top.png deleted file mode 100644 index e4b3d2fc..00000000 Binary files a/public/textures/immersiveengineering/slab_alu_scaffolding_wooden_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_blastbrick.png b/public/textures/immersiveengineering/slab_blastbrick.png deleted file mode 100644 index 87cd1b99..00000000 Binary files a/public/textures/immersiveengineering/slab_blastbrick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_blastbrick_reinforced.png b/public/textures/immersiveengineering/slab_blastbrick_reinforced.png deleted file mode 100644 index ea197b65..00000000 Binary files a/public/textures/immersiveengineering/slab_blastbrick_reinforced.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_clinker_brick.png b/public/textures/immersiveengineering/slab_clinker_brick.png deleted file mode 100644 index a5c52025..00000000 Binary files a/public/textures/immersiveengineering/slab_clinker_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_coke.png b/public/textures/immersiveengineering/slab_coke.png deleted file mode 100644 index d7268a94..00000000 Binary files a/public/textures/immersiveengineering/slab_coke.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_cokebrick.png b/public/textures/immersiveengineering/slab_cokebrick.png deleted file mode 100644 index c245ea7e..00000000 Binary files a/public/textures/immersiveengineering/slab_cokebrick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_concrete.png b/public/textures/immersiveengineering/slab_concrete.png deleted file mode 100644 index 5a88bdab..00000000 Binary files a/public/textures/immersiveengineering/slab_concrete.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_concrete_brick.png b/public/textures/immersiveengineering/slab_concrete_brick.png deleted file mode 100644 index 10844234..00000000 Binary files a/public/textures/immersiveengineering/slab_concrete_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_concrete_leaded.png b/public/textures/immersiveengineering/slab_concrete_leaded.png deleted file mode 100644 index 1ec8c3c4..00000000 Binary files a/public/textures/immersiveengineering/slab_concrete_leaded.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_concrete_reinforced.png b/public/textures/immersiveengineering/slab_concrete_reinforced.png deleted file mode 100644 index 95b87bff..00000000 Binary files a/public/textures/immersiveengineering/slab_concrete_reinforced.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_concrete_reinforced_tile.png b/public/textures/immersiveengineering/slab_concrete_reinforced_tile.png deleted file mode 100644 index 909db07d..00000000 Binary files a/public/textures/immersiveengineering/slab_concrete_reinforced_tile.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_concrete_tile.png b/public/textures/immersiveengineering/slab_concrete_tile.png deleted file mode 100644 index e230248e..00000000 Binary files a/public/textures/immersiveengineering/slab_concrete_tile.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_hempcrete.png b/public/textures/immersiveengineering/slab_hempcrete.png deleted file mode 100644 index f8cc53e6..00000000 Binary files a/public/textures/immersiveengineering/slab_hempcrete.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_hempcrete_brick.png b/public/textures/immersiveengineering/slab_hempcrete_brick.png deleted file mode 100644 index 68bbc421..00000000 Binary files a/public/textures/immersiveengineering/slab_hempcrete_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_insulating_glass.png b/public/textures/immersiveengineering/slab_insulating_glass.png deleted file mode 100644 index 7aa39f11..00000000 Binary files a/public/textures/immersiveengineering/slab_insulating_glass.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_aluminum.png b/public/textures/immersiveengineering/slab_sheetmetal_aluminum.png deleted file mode 100644 index 5edfad6d..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_black.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_black.png deleted file mode 100644 index 74473059..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_black.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_blue.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_blue.png deleted file mode 100644 index 3b33b6b4..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_blue.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_brown.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_brown.png deleted file mode 100644 index c7309777..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_brown.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_cyan.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_cyan.png deleted file mode 100644 index f68eb466..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_cyan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_gray.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_gray.png deleted file mode 100644 index 8ccc065b..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_gray.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_green.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_green.png deleted file mode 100644 index 5e11debe..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_green.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_light_blue.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_light_blue.png deleted file mode 100644 index f5bfd0b7..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_light_blue.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_light_gray.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_light_gray.png deleted file mode 100644 index 6446c961..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_light_gray.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_lime.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_lime.png deleted file mode 100644 index 6c9bfdd2..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_lime.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_magenta.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_magenta.png deleted file mode 100644 index b0af8ba1..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_magenta.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_orange.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_orange.png deleted file mode 100644 index 1a264f28..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_orange.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_pink.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_pink.png deleted file mode 100644 index 5df9f4f0..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_pink.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_purple.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_purple.png deleted file mode 100644 index 22a6df9a..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_purple.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_red.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_red.png deleted file mode 100644 index 84e54805..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_red.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_white.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_white.png deleted file mode 100644 index 901180e0..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_white.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_colored_yellow.png b/public/textures/immersiveengineering/slab_sheetmetal_colored_yellow.png deleted file mode 100644 index 5a73192a..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_colored_yellow.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_constantan.png b/public/textures/immersiveengineering/slab_sheetmetal_constantan.png deleted file mode 100644 index 925a9aec..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_constantan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_copper.png b/public/textures/immersiveengineering/slab_sheetmetal_copper.png deleted file mode 100644 index d4966dbc..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_copper.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_electrum.png b/public/textures/immersiveengineering/slab_sheetmetal_electrum.png deleted file mode 100644 index 90cea96c..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_electrum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_gold.png b/public/textures/immersiveengineering/slab_sheetmetal_gold.png deleted file mode 100644 index 2eebbe93..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_gold.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_iron.png b/public/textures/immersiveengineering/slab_sheetmetal_iron.png deleted file mode 100644 index fed3a8c3..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_iron.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_lead.png b/public/textures/immersiveengineering/slab_sheetmetal_lead.png deleted file mode 100644 index b53cd771..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_nickel.png b/public/textures/immersiveengineering/slab_sheetmetal_nickel.png deleted file mode 100644 index d1913d38..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_silver.png b/public/textures/immersiveengineering/slab_sheetmetal_silver.png deleted file mode 100644 index f21b2711..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_steel.png b/public/textures/immersiveengineering/slab_sheetmetal_steel.png deleted file mode 100644 index acae8f52..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_sheetmetal_uranium.png b/public/textures/immersiveengineering/slab_sheetmetal_uranium.png deleted file mode 100644 index 1e985697..00000000 Binary files a/public/textures/immersiveengineering/slab_sheetmetal_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_slag_brick.png b/public/textures/immersiveengineering/slab_slag_brick.png deleted file mode 100644 index cb5d4dc6..00000000 Binary files a/public/textures/immersiveengineering/slab_slag_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_steel_scaffolding_grate_top.png b/public/textures/immersiveengineering/slab_steel_scaffolding_grate_top.png deleted file mode 100644 index 930f881e..00000000 Binary files a/public/textures/immersiveengineering/slab_steel_scaffolding_grate_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_steel_scaffolding_standard.png b/public/textures/immersiveengineering/slab_steel_scaffolding_standard.png deleted file mode 100644 index ff43148a..00000000 Binary files a/public/textures/immersiveengineering/slab_steel_scaffolding_standard.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_steel_scaffolding_wooden_top.png b/public/textures/immersiveengineering/slab_steel_scaffolding_wooden_top.png deleted file mode 100644 index c45f5e16..00000000 Binary files a/public/textures/immersiveengineering/slab_steel_scaffolding_wooden_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_storage_aluminum.png b/public/textures/immersiveengineering/slab_storage_aluminum.png deleted file mode 100644 index 191b0a32..00000000 Binary files a/public/textures/immersiveengineering/slab_storage_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_storage_constantan.png b/public/textures/immersiveengineering/slab_storage_constantan.png deleted file mode 100644 index ad3432d9..00000000 Binary files a/public/textures/immersiveengineering/slab_storage_constantan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_storage_electrum.png b/public/textures/immersiveengineering/slab_storage_electrum.png deleted file mode 100644 index 2e0e1083..00000000 Binary files a/public/textures/immersiveengineering/slab_storage_electrum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_storage_lead.png b/public/textures/immersiveengineering/slab_storage_lead.png deleted file mode 100644 index 45d63ca2..00000000 Binary files a/public/textures/immersiveengineering/slab_storage_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_storage_nickel.png b/public/textures/immersiveengineering/slab_storage_nickel.png deleted file mode 100644 index 514e9563..00000000 Binary files a/public/textures/immersiveengineering/slab_storage_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_storage_silver.png b/public/textures/immersiveengineering/slab_storage_silver.png deleted file mode 100644 index 3540862e..00000000 Binary files a/public/textures/immersiveengineering/slab_storage_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_storage_steel.png b/public/textures/immersiveengineering/slab_storage_steel.png deleted file mode 100644 index 022b6269..00000000 Binary files a/public/textures/immersiveengineering/slab_storage_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_storage_uranium.png b/public/textures/immersiveengineering/slab_storage_uranium.png deleted file mode 100644 index 4abd312e..00000000 Binary files a/public/textures/immersiveengineering/slab_storage_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_treated_wood_horizontal.png b/public/textures/immersiveengineering/slab_treated_wood_horizontal.png deleted file mode 100644 index e9985a6c..00000000 Binary files a/public/textures/immersiveengineering/slab_treated_wood_horizontal.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_treated_wood_packaged.png b/public/textures/immersiveengineering/slab_treated_wood_packaged.png deleted file mode 100644 index 6b4d2282..00000000 Binary files a/public/textures/immersiveengineering/slab_treated_wood_packaged.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slab_treated_wood_vertical.png b/public/textures/immersiveengineering/slab_treated_wood_vertical.png deleted file mode 100644 index 767282a0..00000000 Binary files a/public/textures/immersiveengineering/slab_treated_wood_vertical.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slag.png b/public/textures/immersiveengineering/slag.png deleted file mode 100644 index bc8cf584..00000000 Binary files a/public/textures/immersiveengineering/slag.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slag_brick.png b/public/textures/immersiveengineering/slag_brick.png deleted file mode 100644 index 05e4f2b3..00000000 Binary files a/public/textures/immersiveengineering/slag_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slag_glass.png b/public/textures/immersiveengineering/slag_glass.png deleted file mode 100644 index 7f2bc8f5..00000000 Binary files a/public/textures/immersiveengineering/slag_glass.png and /dev/null differ diff --git a/public/textures/immersiveengineering/slag_gravel.png b/public/textures/immersiveengineering/slag_gravel.png deleted file mode 100644 index 9e27a610..00000000 Binary files a/public/textures/immersiveengineering/slag_gravel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sorter.png b/public/textures/immersiveengineering/sorter.png deleted file mode 100644 index 176210b4..00000000 Binary files a/public/textures/immersiveengineering/sorter.png and /dev/null differ diff --git a/public/textures/immersiveengineering/speedloader.png b/public/textures/immersiveengineering/speedloader.png deleted file mode 100644 index 2990a16f..00000000 Binary files a/public/textures/immersiveengineering/speedloader.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_alu_scaffolding_grate_top.png b/public/textures/immersiveengineering/stairs_alu_scaffolding_grate_top.png deleted file mode 100644 index dd9e2d2e..00000000 Binary files a/public/textures/immersiveengineering/stairs_alu_scaffolding_grate_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_alu_scaffolding_standard.png b/public/textures/immersiveengineering/stairs_alu_scaffolding_standard.png deleted file mode 100644 index 0db07231..00000000 Binary files a/public/textures/immersiveengineering/stairs_alu_scaffolding_standard.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_alu_scaffolding_wooden_top.png b/public/textures/immersiveengineering/stairs_alu_scaffolding_wooden_top.png deleted file mode 100644 index 27c5692e..00000000 Binary files a/public/textures/immersiveengineering/stairs_alu_scaffolding_wooden_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_clinker_brick.png b/public/textures/immersiveengineering/stairs_clinker_brick.png deleted file mode 100644 index 1b421fb9..00000000 Binary files a/public/textures/immersiveengineering/stairs_clinker_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_concrete.png b/public/textures/immersiveengineering/stairs_concrete.png deleted file mode 100644 index 062ab885..00000000 Binary files a/public/textures/immersiveengineering/stairs_concrete.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_concrete_brick.png b/public/textures/immersiveengineering/stairs_concrete_brick.png deleted file mode 100644 index 47a86e74..00000000 Binary files a/public/textures/immersiveengineering/stairs_concrete_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_concrete_leaded.png b/public/textures/immersiveengineering/stairs_concrete_leaded.png deleted file mode 100644 index e91fb825..00000000 Binary files a/public/textures/immersiveengineering/stairs_concrete_leaded.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_concrete_tile.png b/public/textures/immersiveengineering/stairs_concrete_tile.png deleted file mode 100644 index 5a768caf..00000000 Binary files a/public/textures/immersiveengineering/stairs_concrete_tile.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_hempcrete.png b/public/textures/immersiveengineering/stairs_hempcrete.png deleted file mode 100644 index adef5192..00000000 Binary files a/public/textures/immersiveengineering/stairs_hempcrete.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_hempcrete_brick.png b/public/textures/immersiveengineering/stairs_hempcrete_brick.png deleted file mode 100644 index 4b0e0618..00000000 Binary files a/public/textures/immersiveengineering/stairs_hempcrete_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_slag_brick.png b/public/textures/immersiveengineering/stairs_slag_brick.png deleted file mode 100644 index 873f7821..00000000 Binary files a/public/textures/immersiveengineering/stairs_slag_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_steel_scaffolding_grate_top.png b/public/textures/immersiveengineering/stairs_steel_scaffolding_grate_top.png deleted file mode 100644 index 400c4ea3..00000000 Binary files a/public/textures/immersiveengineering/stairs_steel_scaffolding_grate_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_steel_scaffolding_standard.png b/public/textures/immersiveengineering/stairs_steel_scaffolding_standard.png deleted file mode 100644 index b29981f3..00000000 Binary files a/public/textures/immersiveengineering/stairs_steel_scaffolding_standard.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_steel_scaffolding_wooden_top.png b/public/textures/immersiveengineering/stairs_steel_scaffolding_wooden_top.png deleted file mode 100644 index b88d326a..00000000 Binary files a/public/textures/immersiveengineering/stairs_steel_scaffolding_wooden_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_treated_wood_horizontal.png b/public/textures/immersiveengineering/stairs_treated_wood_horizontal.png deleted file mode 100644 index 13d579cd..00000000 Binary files a/public/textures/immersiveengineering/stairs_treated_wood_horizontal.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_treated_wood_packaged.png b/public/textures/immersiveengineering/stairs_treated_wood_packaged.png deleted file mode 100644 index 55779d93..00000000 Binary files a/public/textures/immersiveengineering/stairs_treated_wood_packaged.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stairs_treated_wood_vertical.png b/public/textures/immersiveengineering/stairs_treated_wood_vertical.png deleted file mode 100644 index f14b5d9f..00000000 Binary files a/public/textures/immersiveengineering/stairs_treated_wood_vertical.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_catwalk.png b/public/textures/immersiveengineering/steel_catwalk.png deleted file mode 100644 index 49c998e8..00000000 Binary files a/public/textures/immersiveengineering/steel_catwalk.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_catwalk_stairs.png b/public/textures/immersiveengineering/steel_catwalk_stairs.png deleted file mode 100644 index d982b050..00000000 Binary files a/public/textures/immersiveengineering/steel_catwalk_stairs.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_door.png b/public/textures/immersiveengineering/steel_door.png deleted file mode 100644 index d7074278..00000000 Binary files a/public/textures/immersiveengineering/steel_door.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_fence.png b/public/textures/immersiveengineering/steel_fence.png deleted file mode 100644 index 3e8afe38..00000000 Binary files a/public/textures/immersiveengineering/steel_fence.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_fence_gate.png b/public/textures/immersiveengineering/steel_fence_gate.png deleted file mode 100644 index 7534141a..00000000 Binary files a/public/textures/immersiveengineering/steel_fence_gate.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_hanging_sign.png b/public/textures/immersiveengineering/steel_hanging_sign.png deleted file mode 100644 index af39e82c..00000000 Binary files a/public/textures/immersiveengineering/steel_hanging_sign.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_post.png b/public/textures/immersiveengineering/steel_post.png deleted file mode 100644 index a1d88e3b..00000000 Binary files a/public/textures/immersiveengineering/steel_post.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_scaffolding_grate_top.png b/public/textures/immersiveengineering/steel_scaffolding_grate_top.png deleted file mode 100644 index 47c7fc3e..00000000 Binary files a/public/textures/immersiveengineering/steel_scaffolding_grate_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_scaffolding_standard.png b/public/textures/immersiveengineering/steel_scaffolding_standard.png deleted file mode 100644 index 76d531bc..00000000 Binary files a/public/textures/immersiveengineering/steel_scaffolding_standard.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_scaffolding_wooden_top.png b/public/textures/immersiveengineering/steel_scaffolding_wooden_top.png deleted file mode 100644 index 9a821e2f..00000000 Binary files a/public/textures/immersiveengineering/steel_scaffolding_wooden_top.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_sign.png b/public/textures/immersiveengineering/steel_sign.png deleted file mode 100644 index ed963ddd..00000000 Binary files a/public/textures/immersiveengineering/steel_sign.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_slope.png b/public/textures/immersiveengineering/steel_slope.png deleted file mode 100644 index a4db3932..00000000 Binary files a/public/textures/immersiveengineering/steel_slope.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_trapdoor.png b/public/textures/immersiveengineering/steel_trapdoor.png deleted file mode 100644 index 4e80c1c5..00000000 Binary files a/public/textures/immersiveengineering/steel_trapdoor.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_wallmount.png b/public/textures/immersiveengineering/steel_wallmount.png deleted file mode 100644 index 3d67e6fc..00000000 Binary files a/public/textures/immersiveengineering/steel_wallmount.png and /dev/null differ diff --git a/public/textures/immersiveengineering/steel_window.png b/public/textures/immersiveengineering/steel_window.png deleted file mode 100644 index 7fb8d9ce..00000000 Binary files a/public/textures/immersiveengineering/steel_window.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stick_aluminum.png b/public/textures/immersiveengineering/stick_aluminum.png deleted file mode 100644 index 46c9808e..00000000 Binary files a/public/textures/immersiveengineering/stick_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stick_iron.png b/public/textures/immersiveengineering/stick_iron.png deleted file mode 100644 index eda4cc50..00000000 Binary files a/public/textures/immersiveengineering/stick_iron.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stick_netherite.png b/public/textures/immersiveengineering/stick_netherite.png deleted file mode 100644 index 1c0115bd..00000000 Binary files a/public/textures/immersiveengineering/stick_netherite.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stick_steel.png b/public/textures/immersiveengineering/stick_steel.png deleted file mode 100644 index 5e3250eb..00000000 Binary files a/public/textures/immersiveengineering/stick_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/stick_treated.png b/public/textures/immersiveengineering/stick_treated.png deleted file mode 100644 index cd533cdf..00000000 Binary files a/public/textures/immersiveengineering/stick_treated.png and /dev/null differ diff --git a/public/textures/immersiveengineering/storage_aluminum.png b/public/textures/immersiveengineering/storage_aluminum.png deleted file mode 100644 index 86f350d7..00000000 Binary files a/public/textures/immersiveengineering/storage_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/storage_constantan.png b/public/textures/immersiveengineering/storage_constantan.png deleted file mode 100644 index d0577850..00000000 Binary files a/public/textures/immersiveengineering/storage_constantan.png and /dev/null differ diff --git a/public/textures/immersiveengineering/storage_electrum.png b/public/textures/immersiveengineering/storage_electrum.png deleted file mode 100644 index 5eafba46..00000000 Binary files a/public/textures/immersiveengineering/storage_electrum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/storage_lead.png b/public/textures/immersiveengineering/storage_lead.png deleted file mode 100644 index d274aa3a..00000000 Binary files a/public/textures/immersiveengineering/storage_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/storage_nickel.png b/public/textures/immersiveengineering/storage_nickel.png deleted file mode 100644 index 1547c102..00000000 Binary files a/public/textures/immersiveengineering/storage_nickel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/storage_silver.png b/public/textures/immersiveengineering/storage_silver.png deleted file mode 100644 index 9cebeb35..00000000 Binary files a/public/textures/immersiveengineering/storage_silver.png and /dev/null differ diff --git a/public/textures/immersiveengineering/storage_steel.png b/public/textures/immersiveengineering/storage_steel.png deleted file mode 100644 index 2461bff8..00000000 Binary files a/public/textures/immersiveengineering/storage_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/storage_uranium.png b/public/textures/immersiveengineering/storage_uranium.png deleted file mode 100644 index 2d191eb7..00000000 Binary files a/public/textures/immersiveengineering/storage_uranium.png and /dev/null differ diff --git a/public/textures/immersiveengineering/strip_curtain.png b/public/textures/immersiveengineering/strip_curtain.png deleted file mode 100644 index 17e2d7ef..00000000 Binary files a/public/textures/immersiveengineering/strip_curtain.png and /dev/null differ diff --git a/public/textures/immersiveengineering/survey_tools.png b/public/textures/immersiveengineering/survey_tools.png deleted file mode 100644 index 53379085..00000000 Binary files a/public/textures/immersiveengineering/survey_tools.png and /dev/null differ diff --git a/public/textures/immersiveengineering/sword_steel.png b/public/textures/immersiveengineering/sword_steel.png deleted file mode 100644 index 6c3fce71..00000000 Binary files a/public/textures/immersiveengineering/sword_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/tesla_coil.png b/public/textures/immersiveengineering/tesla_coil.png deleted file mode 100644 index 787c41d4..00000000 Binary files a/public/textures/immersiveengineering/tesla_coil.png and /dev/null differ diff --git a/public/textures/immersiveengineering/thermoelectric_generator.png b/public/textures/immersiveengineering/thermoelectric_generator.png deleted file mode 100644 index 6ba481fc..00000000 Binary files a/public/textures/immersiveengineering/thermoelectric_generator.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolbox.png b/public/textures/immersiveengineering/toolbox.png deleted file mode 100644 index 828008ba..00000000 Binary files a/public/textures/immersiveengineering/toolbox.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_buzzsaw_spareblades.png b/public/textures/immersiveengineering/toolupgrade_buzzsaw_spareblades.png deleted file mode 100644 index f4323049..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_buzzsaw_spareblades.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_chemthrower_focus.png b/public/textures/immersiveengineering/toolupgrade_chemthrower_focus.png deleted file mode 100644 index f6a9bbef..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_chemthrower_focus.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_chemthrower_multitank.png b/public/textures/immersiveengineering/toolupgrade_chemthrower_multitank.png deleted file mode 100644 index 31061dd5..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_chemthrower_multitank.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_drill_capacity.png b/public/textures/immersiveengineering/toolupgrade_drill_capacity.png deleted file mode 100644 index f8e672fa..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_drill_capacity.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_drill_damage.png b/public/textures/immersiveengineering/toolupgrade_drill_damage.png deleted file mode 100644 index c1454d4d..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_drill_damage.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_drill_fortune.png b/public/textures/immersiveengineering/toolupgrade_drill_fortune.png deleted file mode 100644 index 0e6c3d7e..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_drill_fortune.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_drill_lube.png b/public/textures/immersiveengineering/toolupgrade_drill_lube.png deleted file mode 100644 index 22a653b8..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_drill_lube.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_drill_waterproof.png b/public/textures/immersiveengineering/toolupgrade_drill_waterproof.png deleted file mode 100644 index d60f4fe2..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_drill_waterproof.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_powerpack_antenna.png b/public/textures/immersiveengineering/toolupgrade_powerpack_antenna.png deleted file mode 100644 index 89ccceec..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_powerpack_antenna.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_powerpack_induction.png b/public/textures/immersiveengineering/toolupgrade_powerpack_induction.png deleted file mode 100644 index 246f56de..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_powerpack_induction.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_powerpack_magnet.png b/public/textures/immersiveengineering/toolupgrade_powerpack_magnet.png deleted file mode 100644 index 23dd68e9..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_powerpack_magnet.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_powerpack_tesla.png b/public/textures/immersiveengineering/toolupgrade_powerpack_tesla.png deleted file mode 100644 index 4ac70e79..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_powerpack_tesla.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_railgun_capacitors.png b/public/textures/immersiveengineering/toolupgrade_railgun_capacitors.png deleted file mode 100644 index 465addf6..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_railgun_capacitors.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_railgun_scope.png b/public/textures/immersiveengineering/toolupgrade_railgun_scope.png deleted file mode 100644 index 11d57a0b..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_railgun_scope.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_revolver_bayonet.png b/public/textures/immersiveengineering/toolupgrade_revolver_bayonet.png deleted file mode 100644 index fd14d531..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_revolver_bayonet.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_revolver_electro.png b/public/textures/immersiveengineering/toolupgrade_revolver_electro.png deleted file mode 100644 index 365fde1b..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_revolver_electro.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_revolver_magazine.png b/public/textures/immersiveengineering/toolupgrade_revolver_magazine.png deleted file mode 100644 index e59d2b14..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_revolver_magazine.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_shield_flash.png b/public/textures/immersiveengineering/toolupgrade_shield_flash.png deleted file mode 100644 index d15c2fb3..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_shield_flash.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_shield_magnet.png b/public/textures/immersiveengineering/toolupgrade_shield_magnet.png deleted file mode 100644 index 940acb25..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_shield_magnet.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_shield_shock.png b/public/textures/immersiveengineering/toolupgrade_shield_shock.png deleted file mode 100644 index 6d83a087..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_shield_shock.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_skyhook_insulation.png b/public/textures/immersiveengineering/toolupgrade_skyhook_insulation.png deleted file mode 100644 index 472fa40f..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_skyhook_insulation.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_skyhook_mace.png b/public/textures/immersiveengineering/toolupgrade_skyhook_mace.png deleted file mode 100644 index 13936ce6..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_skyhook_mace.png and /dev/null differ diff --git a/public/textures/immersiveengineering/toolupgrade_skyhook_slope.png b/public/textures/immersiveengineering/toolupgrade_skyhook_slope.png deleted file mode 100644 index d37936c6..00000000 Binary files a/public/textures/immersiveengineering/toolupgrade_skyhook_slope.png and /dev/null differ diff --git a/public/textures/immersiveengineering/transformer.png b/public/textures/immersiveengineering/transformer.png deleted file mode 100644 index 227dbf81..00000000 Binary files a/public/textures/immersiveengineering/transformer.png and /dev/null differ diff --git a/public/textures/immersiveengineering/transformer_hv.png b/public/textures/immersiveengineering/transformer_hv.png deleted file mode 100644 index c7f81aed..00000000 Binary files a/public/textures/immersiveengineering/transformer_hv.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_catwalk.png b/public/textures/immersiveengineering/treated_catwalk.png deleted file mode 100644 index 2b8d97d1..00000000 Binary files a/public/textures/immersiveengineering/treated_catwalk.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_catwalk_stairs.png b/public/textures/immersiveengineering/treated_catwalk_stairs.png deleted file mode 100644 index 4f9e643e..00000000 Binary files a/public/textures/immersiveengineering/treated_catwalk_stairs.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_door.png b/public/textures/immersiveengineering/treated_door.png deleted file mode 100644 index 1e0e0608..00000000 Binary files a/public/textures/immersiveengineering/treated_door.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_door_framed.png b/public/textures/immersiveengineering/treated_door_framed.png deleted file mode 100644 index f240fd10..00000000 Binary files a/public/textures/immersiveengineering/treated_door_framed.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_fence.png b/public/textures/immersiveengineering/treated_fence.png deleted file mode 100644 index 3bfabab2..00000000 Binary files a/public/textures/immersiveengineering/treated_fence.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_fence_gate.png b/public/textures/immersiveengineering/treated_fence_gate.png deleted file mode 100644 index 73f3b9a1..00000000 Binary files a/public/textures/immersiveengineering/treated_fence_gate.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_post.png b/public/textures/immersiveengineering/treated_post.png deleted file mode 100644 index 60281e08..00000000 Binary files a/public/textures/immersiveengineering/treated_post.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_scaffold.png b/public/textures/immersiveengineering/treated_scaffold.png deleted file mode 100644 index b477c87d..00000000 Binary files a/public/textures/immersiveengineering/treated_scaffold.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_trapdoor.png b/public/textures/immersiveengineering/treated_trapdoor.png deleted file mode 100644 index 488ee20b..00000000 Binary files a/public/textures/immersiveengineering/treated_trapdoor.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_trapdoor_framed.png b/public/textures/immersiveengineering/treated_trapdoor_framed.png deleted file mode 100644 index a5d40023..00000000 Binary files a/public/textures/immersiveengineering/treated_trapdoor_framed.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_wallmount.png b/public/textures/immersiveengineering/treated_wallmount.png deleted file mode 100644 index dfd5e7a6..00000000 Binary files a/public/textures/immersiveengineering/treated_wallmount.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_window.png b/public/textures/immersiveengineering/treated_window.png deleted file mode 100644 index 55743ac1..00000000 Binary files a/public/textures/immersiveengineering/treated_window.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_wood_hanging_sign.png b/public/textures/immersiveengineering/treated_wood_hanging_sign.png deleted file mode 100644 index bfae5d39..00000000 Binary files a/public/textures/immersiveengineering/treated_wood_hanging_sign.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_wood_horizontal.png b/public/textures/immersiveengineering/treated_wood_horizontal.png deleted file mode 100644 index 93ead853..00000000 Binary files a/public/textures/immersiveengineering/treated_wood_horizontal.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_wood_packaged.png b/public/textures/immersiveengineering/treated_wood_packaged.png deleted file mode 100644 index a27794f2..00000000 Binary files a/public/textures/immersiveengineering/treated_wood_packaged.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_wood_sign.png b/public/textures/immersiveengineering/treated_wood_sign.png deleted file mode 100644 index b201e677..00000000 Binary files a/public/textures/immersiveengineering/treated_wood_sign.png and /dev/null differ diff --git a/public/textures/immersiveengineering/treated_wood_vertical.png b/public/textures/immersiveengineering/treated_wood_vertical.png deleted file mode 100644 index 44412c2f..00000000 Binary files a/public/textures/immersiveengineering/treated_wood_vertical.png and /dev/null differ diff --git a/public/textures/immersiveengineering/turntable.png b/public/textures/immersiveengineering/turntable.png deleted file mode 100644 index b3c4d838..00000000 Binary files a/public/textures/immersiveengineering/turntable.png and /dev/null differ diff --git a/public/textures/immersiveengineering/turret_chem.png b/public/textures/immersiveengineering/turret_chem.png deleted file mode 100644 index 6225b7b5..00000000 Binary files a/public/textures/immersiveengineering/turret_chem.png and /dev/null differ diff --git a/public/textures/immersiveengineering/turret_gun.png b/public/textures/immersiveengineering/turret_gun.png deleted file mode 100644 index 45852196..00000000 Binary files a/public/textures/immersiveengineering/turret_gun.png and /dev/null differ diff --git a/public/textures/immersiveengineering/voltmeter.png b/public/textures/immersiveengineering/voltmeter.png deleted file mode 100644 index 862f4f76..00000000 Binary files a/public/textures/immersiveengineering/voltmeter.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wall_clinker_brick.png b/public/textures/immersiveengineering/wall_clinker_brick.png deleted file mode 100644 index 072e7e69..00000000 Binary files a/public/textures/immersiveengineering/wall_clinker_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wall_concrete.png b/public/textures/immersiveengineering/wall_concrete.png deleted file mode 100644 index adc904d0..00000000 Binary files a/public/textures/immersiveengineering/wall_concrete.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wall_concrete_brick.png b/public/textures/immersiveengineering/wall_concrete_brick.png deleted file mode 100644 index 43bf4695..00000000 Binary files a/public/textures/immersiveengineering/wall_concrete_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wall_concrete_leaded.png b/public/textures/immersiveengineering/wall_concrete_leaded.png deleted file mode 100644 index 89e058ff..00000000 Binary files a/public/textures/immersiveengineering/wall_concrete_leaded.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wall_concrete_tile.png b/public/textures/immersiveengineering/wall_concrete_tile.png deleted file mode 100644 index bfafda27..00000000 Binary files a/public/textures/immersiveengineering/wall_concrete_tile.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wall_hempcrete.png b/public/textures/immersiveengineering/wall_hempcrete.png deleted file mode 100644 index 25ceb9f2..00000000 Binary files a/public/textures/immersiveengineering/wall_hempcrete.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wall_hempcrete_brick.png b/public/textures/immersiveengineering/wall_hempcrete_brick.png deleted file mode 100644 index 9ba8d7b7..00000000 Binary files a/public/textures/immersiveengineering/wall_hempcrete_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wall_slag_brick.png b/public/textures/immersiveengineering/wall_slag_brick.png deleted file mode 100644 index f9f83988..00000000 Binary files a/public/textures/immersiveengineering/wall_slag_brick.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_arrow_double_down.png b/public/textures/immersiveengineering/warning_sign_arrow_double_down.png deleted file mode 100644 index e55bb731..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_arrow_double_down.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_arrow_double_left.png b/public/textures/immersiveengineering/warning_sign_arrow_double_left.png deleted file mode 100644 index 9fd0ff4d..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_arrow_double_left.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_arrow_double_right.png b/public/textures/immersiveengineering/warning_sign_arrow_double_right.png deleted file mode 100644 index 7a494932..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_arrow_double_right.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_arrow_double_up.png b/public/textures/immersiveengineering/warning_sign_arrow_double_up.png deleted file mode 100644 index be6ee8e6..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_arrow_double_up.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_arrow_down.png b/public/textures/immersiveengineering/warning_sign_arrow_down.png deleted file mode 100644 index 1395c498..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_arrow_down.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_arrow_left.png b/public/textures/immersiveengineering/warning_sign_arrow_left.png deleted file mode 100644 index 12780439..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_arrow_left.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_arrow_right.png b/public/textures/immersiveengineering/warning_sign_arrow_right.png deleted file mode 100644 index 8852c71e..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_arrow_right.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_arrow_up.png b/public/textures/immersiveengineering/warning_sign_arrow_up.png deleted file mode 100644 index 0bdfef53..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_arrow_up.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_attention.png b/public/textures/immersiveengineering/warning_sign_attention.png deleted file mode 100644 index 60e5b2f1..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_attention.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_cat.png b/public/textures/immersiveengineering/warning_sign_cat.png deleted file mode 100644 index 9d4bb40b..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_cat.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_cold.png b/public/textures/immersiveengineering/warning_sign_cold.png deleted file mode 100644 index 8487f2ef..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_cold.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_creeper.png b/public/textures/immersiveengineering/warning_sign_creeper.png deleted file mode 100644 index d13b5aca..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_creeper.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_ear_defenders.png b/public/textures/immersiveengineering/warning_sign_ear_defenders.png deleted file mode 100644 index 9e4af671..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_ear_defenders.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_electric.png b/public/textures/immersiveengineering/warning_sign_electric.png deleted file mode 100644 index ff1b58cd..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_electric.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_falling.png b/public/textures/immersiveengineering/warning_sign_falling.png deleted file mode 100644 index 917a2290..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_falling.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_fire.png b/public/textures/immersiveengineering/warning_sign_fire.png deleted file mode 100644 index a36c2571..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_fire.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_hot.png b/public/textures/immersiveengineering/warning_sign_hot.png deleted file mode 100644 index a4d4b437..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_hot.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_magnet.png b/public/textures/immersiveengineering/warning_sign_magnet.png deleted file mode 100644 index 089458ac..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_magnet.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_shrieker.png b/public/textures/immersiveengineering/warning_sign_shrieker.png deleted file mode 100644 index e60b7172..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_shrieker.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_sound.png b/public/textures/immersiveengineering/warning_sign_sound.png deleted file mode 100644 index 9ef7c6a4..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_sound.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_turret.png b/public/textures/immersiveengineering/warning_sign_turret.png deleted file mode 100644 index 7a076e9e..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_turret.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_villager.png b/public/textures/immersiveengineering/warning_sign_villager.png deleted file mode 100644 index cfc452cd..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_villager.png and /dev/null differ diff --git a/public/textures/immersiveengineering/warning_sign_warden.png b/public/textures/immersiveengineering/warning_sign_warden.png deleted file mode 100644 index 7c7f5a01..00000000 Binary files a/public/textures/immersiveengineering/warning_sign_warden.png and /dev/null differ diff --git a/public/textures/immersiveengineering/watermill.png b/public/textures/immersiveengineering/watermill.png deleted file mode 100644 index d77fcd91..00000000 Binary files a/public/textures/immersiveengineering/watermill.png and /dev/null differ diff --git a/public/textures/immersiveengineering/waterwheel_segment.png b/public/textures/immersiveengineering/waterwheel_segment.png deleted file mode 100644 index 57810a10..00000000 Binary files a/public/textures/immersiveengineering/waterwheel_segment.png and /dev/null differ diff --git a/public/textures/immersiveengineering/windmill.png b/public/textures/immersiveengineering/windmill.png deleted file mode 100644 index 76fae1c1..00000000 Binary files a/public/textures/immersiveengineering/windmill.png and /dev/null differ diff --git a/public/textures/immersiveengineering/windmill_blade.png b/public/textures/immersiveengineering/windmill_blade.png deleted file mode 100644 index f7c41401..00000000 Binary files a/public/textures/immersiveengineering/windmill_blade.png and /dev/null differ diff --git a/public/textures/immersiveengineering/windmill_sail.png b/public/textures/immersiveengineering/windmill_sail.png deleted file mode 100644 index 63e5f54a..00000000 Binary files a/public/textures/immersiveengineering/windmill_sail.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wire_aluminum.png b/public/textures/immersiveengineering/wire_aluminum.png deleted file mode 100644 index e69dfe6f..00000000 Binary files a/public/textures/immersiveengineering/wire_aluminum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wire_copper.png b/public/textures/immersiveengineering/wire_copper.png deleted file mode 100644 index 6d912855..00000000 Binary files a/public/textures/immersiveengineering/wire_copper.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wire_electrum.png b/public/textures/immersiveengineering/wire_electrum.png deleted file mode 100644 index 0117dc97..00000000 Binary files a/public/textures/immersiveengineering/wire_electrum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wire_lead.png b/public/textures/immersiveengineering/wire_lead.png deleted file mode 100644 index c2d36ca7..00000000 Binary files a/public/textures/immersiveengineering/wire_lead.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wire_steel.png b/public/textures/immersiveengineering/wire_steel.png deleted file mode 100644 index 31fa4ca9..00000000 Binary files a/public/textures/immersiveengineering/wire_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wirecoil_copper.png b/public/textures/immersiveengineering/wirecoil_copper.png deleted file mode 100644 index c57078aa..00000000 Binary files a/public/textures/immersiveengineering/wirecoil_copper.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wirecoil_copper_ins.png b/public/textures/immersiveengineering/wirecoil_copper_ins.png deleted file mode 100644 index 62b67b09..00000000 Binary files a/public/textures/immersiveengineering/wirecoil_copper_ins.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wirecoil_electrum.png b/public/textures/immersiveengineering/wirecoil_electrum.png deleted file mode 100644 index d2b5b103..00000000 Binary files a/public/textures/immersiveengineering/wirecoil_electrum.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wirecoil_electrum_ins.png b/public/textures/immersiveengineering/wirecoil_electrum_ins.png deleted file mode 100644 index f180e23c..00000000 Binary files a/public/textures/immersiveengineering/wirecoil_electrum_ins.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wirecoil_redstone.png b/public/textures/immersiveengineering/wirecoil_redstone.png deleted file mode 100644 index cc54ad93..00000000 Binary files a/public/textures/immersiveengineering/wirecoil_redstone.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wirecoil_steel.png b/public/textures/immersiveengineering/wirecoil_steel.png deleted file mode 100644 index d510e1cc..00000000 Binary files a/public/textures/immersiveengineering/wirecoil_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wirecoil_structure_rope.png b/public/textures/immersiveengineering/wirecoil_structure_rope.png deleted file mode 100644 index 61c06545..00000000 Binary files a/public/textures/immersiveengineering/wirecoil_structure_rope.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wirecoil_structure_steel.png b/public/textures/immersiveengineering/wirecoil_structure_steel.png deleted file mode 100644 index 2b831a7f..00000000 Binary files a/public/textures/immersiveengineering/wirecoil_structure_steel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wirecutter.png b/public/textures/immersiveengineering/wirecutter.png deleted file mode 100644 index 9ee93aad..00000000 Binary files a/public/textures/immersiveengineering/wirecutter.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wooden_barrel.png b/public/textures/immersiveengineering/wooden_barrel.png deleted file mode 100644 index 5821d6c3..00000000 Binary files a/public/textures/immersiveengineering/wooden_barrel.png and /dev/null differ diff --git a/public/textures/immersiveengineering/wooden_grip.png b/public/textures/immersiveengineering/wooden_grip.png deleted file mode 100644 index b2e8048d..00000000 Binary files a/public/textures/immersiveengineering/wooden_grip.png and /dev/null differ diff --git a/public/textures/immersiveengineering/workbench.png b/public/textures/immersiveengineering/workbench.png deleted file mode 100644 index 7c8c96e7..00000000 Binary files a/public/textures/immersiveengineering/workbench.png and /dev/null differ diff --git a/public/textures/iron_ender_chests/copper_ender_chest.png b/public/textures/iron_ender_chests/copper_ender_chest.png deleted file mode 100644 index 28df2a0f..00000000 Binary files a/public/textures/iron_ender_chests/copper_ender_chest.png and /dev/null differ diff --git a/public/textures/iron_ender_chests/diamond_ender_chest.png b/public/textures/iron_ender_chests/diamond_ender_chest.png deleted file mode 100644 index 83b5fd34..00000000 Binary files a/public/textures/iron_ender_chests/diamond_ender_chest.png and /dev/null differ diff --git a/public/textures/iron_ender_chests/emerald_ender_chest.png b/public/textures/iron_ender_chests/emerald_ender_chest.png deleted file mode 100644 index 1432c380..00000000 Binary files a/public/textures/iron_ender_chests/emerald_ender_chest.png and /dev/null differ diff --git a/public/textures/iron_ender_chests/gold_ender_chest.png b/public/textures/iron_ender_chests/gold_ender_chest.png deleted file mode 100644 index 4f01f6dd..00000000 Binary files a/public/textures/iron_ender_chests/gold_ender_chest.png and /dev/null differ diff --git a/public/textures/iron_ender_chests/iron_ender_chest.png b/public/textures/iron_ender_chests/iron_ender_chest.png deleted file mode 100644 index 300ff2f9..00000000 Binary files a/public/textures/iron_ender_chests/iron_ender_chest.png and /dev/null differ diff --git a/public/textures/iron_ender_chests/lapis_ender_chest.png b/public/textures/iron_ender_chests/lapis_ender_chest.png deleted file mode 100644 index 3351b606..00000000 Binary files a/public/textures/iron_ender_chests/lapis_ender_chest.png and /dev/null differ diff --git a/public/textures/iron_ender_chests/netherite_ender_chest.png b/public/textures/iron_ender_chests/netherite_ender_chest.png deleted file mode 100644 index e8f91311..00000000 Binary files a/public/textures/iron_ender_chests/netherite_ender_chest.png and /dev/null differ diff --git a/public/textures/iron_ender_chests/redstone_ender_chest.png b/public/textures/iron_ender_chests/redstone_ender_chest.png deleted file mode 100644 index 28fdb5a2..00000000 Binary files a/public/textures/iron_ender_chests/redstone_ender_chest.png and /dev/null differ diff --git a/public/textures/ironchest/copper_chest.png b/public/textures/ironchest/copper_chest.png deleted file mode 100644 index cd20f1ba..00000000 Binary files a/public/textures/ironchest/copper_chest.png and /dev/null differ diff --git a/public/textures/ironchest/copper_to_iron_chest_upgrade.png b/public/textures/ironchest/copper_to_iron_chest_upgrade.png deleted file mode 100644 index e0c26914..00000000 Binary files a/public/textures/ironchest/copper_to_iron_chest_upgrade.png and /dev/null differ diff --git a/public/textures/ironchest/crystal_chest.png b/public/textures/ironchest/crystal_chest.png deleted file mode 100644 index 7c7ffbfa..00000000 Binary files a/public/textures/ironchest/crystal_chest.png and /dev/null differ diff --git a/public/textures/ironchest/diamond_chest.png b/public/textures/ironchest/diamond_chest.png deleted file mode 100644 index 26d5e4cd..00000000 Binary files a/public/textures/ironchest/diamond_chest.png and /dev/null differ diff --git a/public/textures/ironchest/diamond_to_crystal_chest_upgrade.png b/public/textures/ironchest/diamond_to_crystal_chest_upgrade.png deleted file mode 100644 index 4fc1663e..00000000 Binary files a/public/textures/ironchest/diamond_to_crystal_chest_upgrade.png and /dev/null differ diff --git a/public/textures/ironchest/diamond_to_obsidian_chest_upgrade.png b/public/textures/ironchest/diamond_to_obsidian_chest_upgrade.png deleted file mode 100644 index 741005ea..00000000 Binary files a/public/textures/ironchest/diamond_to_obsidian_chest_upgrade.png and /dev/null differ diff --git a/public/textures/ironchest/dirt_chest.png b/public/textures/ironchest/dirt_chest.png deleted file mode 100644 index 22a283e3..00000000 Binary files a/public/textures/ironchest/dirt_chest.png and /dev/null differ diff --git a/public/textures/ironchest/gold_chest.png b/public/textures/ironchest/gold_chest.png deleted file mode 100644 index 62dded78..00000000 Binary files a/public/textures/ironchest/gold_chest.png and /dev/null differ diff --git a/public/textures/ironchest/gold_to_diamond_chest_upgrade.png b/public/textures/ironchest/gold_to_diamond_chest_upgrade.png deleted file mode 100644 index b46b83f1..00000000 Binary files a/public/textures/ironchest/gold_to_diamond_chest_upgrade.png and /dev/null differ diff --git a/public/textures/ironchest/iron_chest.png b/public/textures/ironchest/iron_chest.png deleted file mode 100644 index dc5e3b84..00000000 Binary files a/public/textures/ironchest/iron_chest.png and /dev/null differ diff --git a/public/textures/ironchest/iron_to_gold_chest_upgrade.png b/public/textures/ironchest/iron_to_gold_chest_upgrade.png deleted file mode 100644 index 92e02b58..00000000 Binary files a/public/textures/ironchest/iron_to_gold_chest_upgrade.png and /dev/null differ diff --git a/public/textures/ironchest/obsidian_chest.png b/public/textures/ironchest/obsidian_chest.png deleted file mode 100644 index 71c14e1a..00000000 Binary files a/public/textures/ironchest/obsidian_chest.png and /dev/null differ diff --git a/public/textures/ironchest/trapped_copper_chest.png b/public/textures/ironchest/trapped_copper_chest.png deleted file mode 100644 index 95bcc58c..00000000 Binary files a/public/textures/ironchest/trapped_copper_chest.png and /dev/null differ diff --git a/public/textures/ironchest/trapped_crystal_chest.png b/public/textures/ironchest/trapped_crystal_chest.png deleted file mode 100644 index 69f98aa6..00000000 Binary files a/public/textures/ironchest/trapped_crystal_chest.png and /dev/null differ diff --git a/public/textures/ironchest/trapped_diamond_chest.png b/public/textures/ironchest/trapped_diamond_chest.png deleted file mode 100644 index 68f5ce2f..00000000 Binary files a/public/textures/ironchest/trapped_diamond_chest.png and /dev/null differ diff --git a/public/textures/ironchest/trapped_dirt_chest.png b/public/textures/ironchest/trapped_dirt_chest.png deleted file mode 100644 index b929d3c7..00000000 Binary files a/public/textures/ironchest/trapped_dirt_chest.png and /dev/null differ diff --git a/public/textures/ironchest/trapped_gold_chest.png b/public/textures/ironchest/trapped_gold_chest.png deleted file mode 100644 index f1207f9b..00000000 Binary files a/public/textures/ironchest/trapped_gold_chest.png and /dev/null differ diff --git a/public/textures/ironchest/trapped_iron_chest.png b/public/textures/ironchest/trapped_iron_chest.png deleted file mode 100644 index 29f8077e..00000000 Binary files a/public/textures/ironchest/trapped_iron_chest.png and /dev/null differ diff --git a/public/textures/ironchest/trapped_obsidian_chest.png b/public/textures/ironchest/trapped_obsidian_chest.png deleted file mode 100644 index 1c113669..00000000 Binary files a/public/textures/ironchest/trapped_obsidian_chest.png and /dev/null differ diff --git a/public/textures/ironchest/wood_to_copper_chest_upgrade.png b/public/textures/ironchest/wood_to_copper_chest_upgrade.png deleted file mode 100644 index de5a1137..00000000 Binary files a/public/textures/ironchest/wood_to_copper_chest_upgrade.png and /dev/null differ diff --git a/public/textures/ironchest/wood_to_iron_chest_upgrade.png b/public/textures/ironchest/wood_to_iron_chest_upgrade.png deleted file mode 100644 index 68c23b88..00000000 Binary files a/public/textures/ironchest/wood_to_iron_chest_upgrade.png and /dev/null differ diff --git a/public/textures/luminous_monsters/cherry_skeleton_spawn_egg.png b/public/textures/luminous_monsters/cherry_skeleton_spawn_egg.png deleted file mode 100644 index 3c971419..00000000 Binary files a/public/textures/luminous_monsters/cherry_skeleton_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/cherry_zombie_spawn_egg.png b/public/textures/luminous_monsters/cherry_zombie_spawn_egg.png deleted file mode 100644 index bf76c95a..00000000 Binary files a/public/textures/luminous_monsters/cherry_zombie_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/crimson_walker_spawn_egg.png b/public/textures/luminous_monsters/crimson_walker_spawn_egg.png deleted file mode 100644 index 31ac5567..00000000 Binary files a/public/textures/luminous_monsters/crimson_walker_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/dark_oak_skeleton_spawn_egg.png b/public/textures/luminous_monsters/dark_oak_skeleton_spawn_egg.png deleted file mode 100644 index 6865fafc..00000000 Binary files a/public/textures/luminous_monsters/dark_oak_skeleton_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/dark_oak_zombie_spawn_egg.png b/public/textures/luminous_monsters/dark_oak_zombie_spawn_egg.png deleted file mode 100644 index 9cc58cf1..00000000 Binary files a/public/textures/luminous_monsters/dark_oak_zombie_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/glacial_skeleton_spawn_egg.png b/public/textures/luminous_monsters/glacial_skeleton_spawn_egg.png deleted file mode 100644 index 9a66bf06..00000000 Binary files a/public/textures/luminous_monsters/glacial_skeleton_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/glacial_zombie_spawn_egg.png b/public/textures/luminous_monsters/glacial_zombie_spawn_egg.png deleted file mode 100644 index 94db224b..00000000 Binary files a/public/textures/luminous_monsters/glacial_zombie_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/hollow_spawn_egg.png b/public/textures/luminous_monsters/hollow_spawn_egg.png deleted file mode 100644 index f5f1ccc8..00000000 Binary files a/public/textures/luminous_monsters/hollow_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/miner_skeleton_spawn_egg.png b/public/textures/luminous_monsters/miner_skeleton_spawn_egg.png deleted file mode 100644 index aaed654b..00000000 Binary files a/public/textures/luminous_monsters/miner_skeleton_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/miner_zombie_spawn_egg.png b/public/textures/luminous_monsters/miner_zombie_spawn_egg.png deleted file mode 100644 index f7b6b292..00000000 Binary files a/public/textures/luminous_monsters/miner_zombie_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/revenant_spawn_egg.png b/public/textures/luminous_monsters/revenant_spawn_egg.png deleted file mode 100644 index 2d3f4c73..00000000 Binary files a/public/textures/luminous_monsters/revenant_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/savanna_skeleton_spawn_egg.png b/public/textures/luminous_monsters/savanna_skeleton_spawn_egg.png deleted file mode 100644 index 3e4c6ee3..00000000 Binary files a/public/textures/luminous_monsters/savanna_skeleton_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/savanna_zombie_spawn_egg.png b/public/textures/luminous_monsters/savanna_zombie_spawn_egg.png deleted file mode 100644 index 3962fe51..00000000 Binary files a/public/textures/luminous_monsters/savanna_zombie_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/sunken_spawn_egg.png b/public/textures/luminous_monsters/sunken_spawn_egg.png deleted file mode 100644 index 0e75b9cb..00000000 Binary files a/public/textures/luminous_monsters/sunken_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/swamp_skeleton_spawn_egg.png b/public/textures/luminous_monsters/swamp_skeleton_spawn_egg.png deleted file mode 100644 index ef0cd449..00000000 Binary files a/public/textures/luminous_monsters/swamp_skeleton_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminous_monsters/swamp_zombie_spawn_egg.png b/public/textures/luminous_monsters/swamp_zombie_spawn_egg.png deleted file mode 100644 index 0ebc1634..00000000 Binary files a/public/textures/luminous_monsters/swamp_zombie_spawn_egg.png and /dev/null differ diff --git a/public/textures/luminoustag/decorative_tag.png b/public/textures/luminoustag/decorative_tag.png deleted file mode 100644 index bdb49597..00000000 Binary files a/public/textures/luminoustag/decorative_tag.png and /dev/null differ diff --git a/public/textures/mcwbridges/acacia_bridge_pier.png b/public/textures/mcwbridges/acacia_bridge_pier.png deleted file mode 100644 index 97480700..00000000 Binary files a/public/textures/mcwbridges/acacia_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/acacia_log_bridge_middle.png b/public/textures/mcwbridges/acacia_log_bridge_middle.png deleted file mode 100644 index e3244926..00000000 Binary files a/public/textures/mcwbridges/acacia_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbridges/acacia_log_bridge_stair.png b/public/textures/mcwbridges/acacia_log_bridge_stair.png deleted file mode 100644 index fbf71188..00000000 Binary files a/public/textures/mcwbridges/acacia_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/acacia_rail_bridge.png b/public/textures/mcwbridges/acacia_rail_bridge.png deleted file mode 100644 index 20c218dc..00000000 Binary files a/public/textures/mcwbridges/acacia_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/acacia_rope_bridge_stair.png b/public/textures/mcwbridges/acacia_rope_bridge_stair.png deleted file mode 100644 index d9a1ce32..00000000 Binary files a/public/textures/mcwbridges/acacia_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/andesite_bridge.png b/public/textures/mcwbridges/andesite_bridge.png deleted file mode 100644 index 6d0b48d9..00000000 Binary files a/public/textures/mcwbridges/andesite_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/andesite_bridge_pier.png b/public/textures/mcwbridges/andesite_bridge_pier.png deleted file mode 100644 index bf4a8274..00000000 Binary files a/public/textures/mcwbridges/andesite_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/andesite_bridge_stair.png b/public/textures/mcwbridges/andesite_bridge_stair.png deleted file mode 100644 index eb552b84..00000000 Binary files a/public/textures/mcwbridges/andesite_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/asian_red_bridge.png b/public/textures/mcwbridges/asian_red_bridge.png deleted file mode 100644 index 5977e100..00000000 Binary files a/public/textures/mcwbridges/asian_red_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/asian_red_bridge_pier.png b/public/textures/mcwbridges/asian_red_bridge_pier.png deleted file mode 100644 index a64c2c4e..00000000 Binary files a/public/textures/mcwbridges/asian_red_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/asian_red_bridge_stair.png b/public/textures/mcwbridges/asian_red_bridge_stair.png deleted file mode 100644 index 5e18bab6..00000000 Binary files a/public/textures/mcwbridges/asian_red_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_andesite_bridge.png b/public/textures/mcwbridges/balustrade_andesite_bridge.png deleted file mode 100644 index 4b87dc3c..00000000 Binary files a/public/textures/mcwbridges/balustrade_andesite_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_blackstone_bridge.png b/public/textures/mcwbridges/balustrade_blackstone_bridge.png deleted file mode 100644 index 3dcc306d..00000000 Binary files a/public/textures/mcwbridges/balustrade_blackstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_bricks_bridge.png b/public/textures/mcwbridges/balustrade_bricks_bridge.png deleted file mode 100644 index 5884a99e..00000000 Binary files a/public/textures/mcwbridges/balustrade_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_cobblestone_bridge.png b/public/textures/mcwbridges/balustrade_cobblestone_bridge.png deleted file mode 100644 index 16ecbb4d..00000000 Binary files a/public/textures/mcwbridges/balustrade_cobblestone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_deepslate_bricks_bridge.png b/public/textures/mcwbridges/balustrade_deepslate_bricks_bridge.png deleted file mode 100644 index 6d41276a..00000000 Binary files a/public/textures/mcwbridges/balustrade_deepslate_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_deepslate_tiles_bridge.png b/public/textures/mcwbridges/balustrade_deepslate_tiles_bridge.png deleted file mode 100644 index 9ba8e385..00000000 Binary files a/public/textures/mcwbridges/balustrade_deepslate_tiles_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_diorite_bridge.png b/public/textures/mcwbridges/balustrade_diorite_bridge.png deleted file mode 100644 index 9bda9a19..00000000 Binary files a/public/textures/mcwbridges/balustrade_diorite_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_end_stone_bricks_bridge.png b/public/textures/mcwbridges/balustrade_end_stone_bricks_bridge.png deleted file mode 100644 index 3bbb4ecf..00000000 Binary files a/public/textures/mcwbridges/balustrade_end_stone_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_granite_bridge.png b/public/textures/mcwbridges/balustrade_granite_bridge.png deleted file mode 100644 index 0f062827..00000000 Binary files a/public/textures/mcwbridges/balustrade_granite_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_mossy_cobblestone_bridge.png b/public/textures/mcwbridges/balustrade_mossy_cobblestone_bridge.png deleted file mode 100644 index a974599e..00000000 Binary files a/public/textures/mcwbridges/balustrade_mossy_cobblestone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_mossy_stone_bricks_bridge.png b/public/textures/mcwbridges/balustrade_mossy_stone_bricks_bridge.png deleted file mode 100644 index 1460a02f..00000000 Binary files a/public/textures/mcwbridges/balustrade_mossy_stone_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_mud_bricks_bridge.png b/public/textures/mcwbridges/balustrade_mud_bricks_bridge.png deleted file mode 100644 index 0d8d36ea..00000000 Binary files a/public/textures/mcwbridges/balustrade_mud_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_nether_bricks_bridge.png b/public/textures/mcwbridges/balustrade_nether_bricks_bridge.png deleted file mode 100644 index ed712657..00000000 Binary files a/public/textures/mcwbridges/balustrade_nether_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_orange_sandstone_bridge.png b/public/textures/mcwbridges/balustrade_orange_sandstone_bridge.png deleted file mode 100644 index 13c3aa3f..00000000 Binary files a/public/textures/mcwbridges/balustrade_orange_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_prismarine_bricks_bridge.png b/public/textures/mcwbridges/balustrade_prismarine_bricks_bridge.png deleted file mode 100644 index 0873d19d..00000000 Binary files a/public/textures/mcwbridges/balustrade_prismarine_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_sandstone_bridge.png b/public/textures/mcwbridges/balustrade_sandstone_bridge.png deleted file mode 100644 index 8b22d6b6..00000000 Binary files a/public/textures/mcwbridges/balustrade_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/balustrade_stone_bricks_bridge.png b/public/textures/mcwbridges/balustrade_stone_bricks_bridge.png deleted file mode 100644 index 8eca174e..00000000 Binary files a/public/textures/mcwbridges/balustrade_stone_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/bamboo_bridge.png b/public/textures/mcwbridges/bamboo_bridge.png deleted file mode 100644 index 5f72234e..00000000 Binary files a/public/textures/mcwbridges/bamboo_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/bamboo_bridge_pier.png b/public/textures/mcwbridges/bamboo_bridge_pier.png deleted file mode 100644 index cbb6b755..00000000 Binary files a/public/textures/mcwbridges/bamboo_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/bamboo_bridge_stair.png b/public/textures/mcwbridges/bamboo_bridge_stair.png deleted file mode 100644 index 165d7c00..00000000 Binary files a/public/textures/mcwbridges/bamboo_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/birch_bridge_pier.png b/public/textures/mcwbridges/birch_bridge_pier.png deleted file mode 100644 index 1572784a..00000000 Binary files a/public/textures/mcwbridges/birch_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/birch_log_bridge_middle.png b/public/textures/mcwbridges/birch_log_bridge_middle.png deleted file mode 100644 index b2ae3470..00000000 Binary files a/public/textures/mcwbridges/birch_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbridges/birch_log_bridge_stair.png b/public/textures/mcwbridges/birch_log_bridge_stair.png deleted file mode 100644 index bd149764..00000000 Binary files a/public/textures/mcwbridges/birch_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/birch_rail_bridge.png b/public/textures/mcwbridges/birch_rail_bridge.png deleted file mode 100644 index f3c1bd27..00000000 Binary files a/public/textures/mcwbridges/birch_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/birch_rope_bridge_stair.png b/public/textures/mcwbridges/birch_rope_bridge_stair.png deleted file mode 100644 index 8b615b89..00000000 Binary files a/public/textures/mcwbridges/birch_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/blackstone_bridge.png b/public/textures/mcwbridges/blackstone_bridge.png deleted file mode 100644 index a0fde42d..00000000 Binary files a/public/textures/mcwbridges/blackstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/blackstone_bridge_pier.png b/public/textures/mcwbridges/blackstone_bridge_pier.png deleted file mode 100644 index ec9b0a81..00000000 Binary files a/public/textures/mcwbridges/blackstone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/blackstone_bridge_stair.png b/public/textures/mcwbridges/blackstone_bridge_stair.png deleted file mode 100644 index 90958f43..00000000 Binary files a/public/textures/mcwbridges/blackstone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/brick_bridge.png b/public/textures/mcwbridges/brick_bridge.png deleted file mode 100644 index 507fcae0..00000000 Binary files a/public/textures/mcwbridges/brick_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/brick_bridge_pier.png b/public/textures/mcwbridges/brick_bridge_pier.png deleted file mode 100644 index 83828226..00000000 Binary files a/public/textures/mcwbridges/brick_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/brick_bridge_stair.png b/public/textures/mcwbridges/brick_bridge_stair.png deleted file mode 100644 index 2664f54a..00000000 Binary files a/public/textures/mcwbridges/brick_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/bridge_lantern.png b/public/textures/mcwbridges/bridge_lantern.png deleted file mode 100644 index 6a6c1738..00000000 Binary files a/public/textures/mcwbridges/bridge_lantern.png and /dev/null differ diff --git a/public/textures/mcwbridges/bridge_torch.png b/public/textures/mcwbridges/bridge_torch.png deleted file mode 100644 index 816a263b..00000000 Binary files a/public/textures/mcwbridges/bridge_torch.png and /dev/null differ diff --git a/public/textures/mcwbridges/cherry_bridge_pier.png b/public/textures/mcwbridges/cherry_bridge_pier.png deleted file mode 100644 index ba02f2a2..00000000 Binary files a/public/textures/mcwbridges/cherry_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/cherry_log_bridge_middle.png b/public/textures/mcwbridges/cherry_log_bridge_middle.png deleted file mode 100644 index cadb6ae9..00000000 Binary files a/public/textures/mcwbridges/cherry_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbridges/cherry_log_bridge_stair.png b/public/textures/mcwbridges/cherry_log_bridge_stair.png deleted file mode 100644 index 8624fd67..00000000 Binary files a/public/textures/mcwbridges/cherry_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/cherry_rail_bridge.png b/public/textures/mcwbridges/cherry_rail_bridge.png deleted file mode 100644 index 6a7aa666..00000000 Binary files a/public/textures/mcwbridges/cherry_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/cherry_rope_bridge_stair.png b/public/textures/mcwbridges/cherry_rope_bridge_stair.png deleted file mode 100644 index d3812035..00000000 Binary files a/public/textures/mcwbridges/cherry_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/cobblestone_bridge.png b/public/textures/mcwbridges/cobblestone_bridge.png deleted file mode 100644 index 39044fa0..00000000 Binary files a/public/textures/mcwbridges/cobblestone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/cobblestone_bridge_pier.png b/public/textures/mcwbridges/cobblestone_bridge_pier.png deleted file mode 100644 index d3924143..00000000 Binary files a/public/textures/mcwbridges/cobblestone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/cobblestone_bridge_stair.png b/public/textures/mcwbridges/cobblestone_bridge_stair.png deleted file mode 100644 index 85f1114e..00000000 Binary files a/public/textures/mcwbridges/cobblestone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/crimson_bridge_pier.png b/public/textures/mcwbridges/crimson_bridge_pier.png deleted file mode 100644 index b0a805c6..00000000 Binary files a/public/textures/mcwbridges/crimson_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/crimson_log_bridge_middle.png b/public/textures/mcwbridges/crimson_log_bridge_middle.png deleted file mode 100644 index 35f81146..00000000 Binary files a/public/textures/mcwbridges/crimson_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbridges/crimson_log_bridge_stair.png b/public/textures/mcwbridges/crimson_log_bridge_stair.png deleted file mode 100644 index a2d88346..00000000 Binary files a/public/textures/mcwbridges/crimson_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/crimson_rail_bridge.png b/public/textures/mcwbridges/crimson_rail_bridge.png deleted file mode 100644 index c0d8a300..00000000 Binary files a/public/textures/mcwbridges/crimson_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/crimson_rope_bridge_stair.png b/public/textures/mcwbridges/crimson_rope_bridge_stair.png deleted file mode 100644 index fa9e3306..00000000 Binary files a/public/textures/mcwbridges/crimson_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/dark_oak_bridge_pier.png b/public/textures/mcwbridges/dark_oak_bridge_pier.png deleted file mode 100644 index 4032f79a..00000000 Binary files a/public/textures/mcwbridges/dark_oak_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/dark_oak_log_bridge_middle.png b/public/textures/mcwbridges/dark_oak_log_bridge_middle.png deleted file mode 100644 index 25bacec4..00000000 Binary files a/public/textures/mcwbridges/dark_oak_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbridges/dark_oak_log_bridge_stair.png b/public/textures/mcwbridges/dark_oak_log_bridge_stair.png deleted file mode 100644 index cfe90947..00000000 Binary files a/public/textures/mcwbridges/dark_oak_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/dark_oak_rail_bridge.png b/public/textures/mcwbridges/dark_oak_rail_bridge.png deleted file mode 100644 index da2cb7dc..00000000 Binary files a/public/textures/mcwbridges/dark_oak_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/dark_oak_rope_bridge_stair.png b/public/textures/mcwbridges/dark_oak_rope_bridge_stair.png deleted file mode 100644 index 3761f2aa..00000000 Binary files a/public/textures/mcwbridges/dark_oak_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/deepslate_brick_bridge.png b/public/textures/mcwbridges/deepslate_brick_bridge.png deleted file mode 100644 index 69a879ca..00000000 Binary files a/public/textures/mcwbridges/deepslate_brick_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/deepslate_brick_bridge_pier.png b/public/textures/mcwbridges/deepslate_brick_bridge_pier.png deleted file mode 100644 index b024a808..00000000 Binary files a/public/textures/mcwbridges/deepslate_brick_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/deepslate_brick_bridge_stair.png b/public/textures/mcwbridges/deepslate_brick_bridge_stair.png deleted file mode 100644 index 87798921..00000000 Binary files a/public/textures/mcwbridges/deepslate_brick_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/deepslate_tile_bridge.png b/public/textures/mcwbridges/deepslate_tile_bridge.png deleted file mode 100644 index f562edfc..00000000 Binary files a/public/textures/mcwbridges/deepslate_tile_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/deepslate_tile_bridge_pier.png b/public/textures/mcwbridges/deepslate_tile_bridge_pier.png deleted file mode 100644 index d34dc0bb..00000000 Binary files a/public/textures/mcwbridges/deepslate_tile_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/deepslate_tile_bridge_stair.png b/public/textures/mcwbridges/deepslate_tile_bridge_stair.png deleted file mode 100644 index 6e604f2c..00000000 Binary files a/public/textures/mcwbridges/deepslate_tile_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/diorite_bridge.png b/public/textures/mcwbridges/diorite_bridge.png deleted file mode 100644 index 83306a66..00000000 Binary files a/public/textures/mcwbridges/diorite_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/diorite_bridge_pier.png b/public/textures/mcwbridges/diorite_bridge_pier.png deleted file mode 100644 index 629758c9..00000000 Binary files a/public/textures/mcwbridges/diorite_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/diorite_bridge_stair.png b/public/textures/mcwbridges/diorite_bridge_stair.png deleted file mode 100644 index ff10aa6a..00000000 Binary files a/public/textures/mcwbridges/diorite_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/dry_bamboo_bridge.png b/public/textures/mcwbridges/dry_bamboo_bridge.png deleted file mode 100644 index 56bb15ff..00000000 Binary files a/public/textures/mcwbridges/dry_bamboo_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/dry_bamboo_bridge_pier.png b/public/textures/mcwbridges/dry_bamboo_bridge_pier.png deleted file mode 100644 index 6f796c79..00000000 Binary files a/public/textures/mcwbridges/dry_bamboo_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/dry_bamboo_bridge_stair.png b/public/textures/mcwbridges/dry_bamboo_bridge_stair.png deleted file mode 100644 index 5e130bfd..00000000 Binary files a/public/textures/mcwbridges/dry_bamboo_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/end_stone_bricks_bridge.png b/public/textures/mcwbridges/end_stone_bricks_bridge.png deleted file mode 100644 index d80d0d21..00000000 Binary files a/public/textures/mcwbridges/end_stone_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/end_stone_bricks_bridge_pier.png b/public/textures/mcwbridges/end_stone_bricks_bridge_pier.png deleted file mode 100644 index 7e1c3fe7..00000000 Binary files a/public/textures/mcwbridges/end_stone_bricks_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/end_stone_bricks_bridge_stair.png b/public/textures/mcwbridges/end_stone_bricks_bridge_stair.png deleted file mode 100644 index 7d1c7b6a..00000000 Binary files a/public/textures/mcwbridges/end_stone_bricks_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/glass_bridge.png b/public/textures/mcwbridges/glass_bridge.png deleted file mode 100644 index 5a67872b..00000000 Binary files a/public/textures/mcwbridges/glass_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/glass_bridge_pier.png b/public/textures/mcwbridges/glass_bridge_pier.png deleted file mode 100644 index 10596dc7..00000000 Binary files a/public/textures/mcwbridges/glass_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/glass_bridge_stair.png b/public/textures/mcwbridges/glass_bridge_stair.png deleted file mode 100644 index 336a7d82..00000000 Binary files a/public/textures/mcwbridges/glass_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/granite_bridge.png b/public/textures/mcwbridges/granite_bridge.png deleted file mode 100644 index 65a49e13..00000000 Binary files a/public/textures/mcwbridges/granite_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/granite_bridge_pier.png b/public/textures/mcwbridges/granite_bridge_pier.png deleted file mode 100644 index 28f29e1d..00000000 Binary files a/public/textures/mcwbridges/granite_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/granite_bridge_stair.png b/public/textures/mcwbridges/granite_bridge_stair.png deleted file mode 100644 index 3b043396..00000000 Binary files a/public/textures/mcwbridges/granite_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/iron_bridge.png b/public/textures/mcwbridges/iron_bridge.png deleted file mode 100644 index 704a8a18..00000000 Binary files a/public/textures/mcwbridges/iron_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/iron_bridge_pier.png b/public/textures/mcwbridges/iron_bridge_pier.png deleted file mode 100644 index fb760345..00000000 Binary files a/public/textures/mcwbridges/iron_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/iron_bridge_stair.png b/public/textures/mcwbridges/iron_bridge_stair.png deleted file mode 100644 index 77cf290e..00000000 Binary files a/public/textures/mcwbridges/iron_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/jungle_bridge_pier.png b/public/textures/mcwbridges/jungle_bridge_pier.png deleted file mode 100644 index b26a9d39..00000000 Binary files a/public/textures/mcwbridges/jungle_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/jungle_log_bridge_middle.png b/public/textures/mcwbridges/jungle_log_bridge_middle.png deleted file mode 100644 index 95f03222..00000000 Binary files a/public/textures/mcwbridges/jungle_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbridges/jungle_log_bridge_stair.png b/public/textures/mcwbridges/jungle_log_bridge_stair.png deleted file mode 100644 index fbb191cc..00000000 Binary files a/public/textures/mcwbridges/jungle_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/jungle_rail_bridge.png b/public/textures/mcwbridges/jungle_rail_bridge.png deleted file mode 100644 index f6a734e2..00000000 Binary files a/public/textures/mcwbridges/jungle_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/jungle_rope_bridge_stair.png b/public/textures/mcwbridges/jungle_rope_bridge_stair.png deleted file mode 100644 index 4264240c..00000000 Binary files a/public/textures/mcwbridges/jungle_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/mangrove_bridge_pier.png b/public/textures/mcwbridges/mangrove_bridge_pier.png deleted file mode 100644 index 93b76333..00000000 Binary files a/public/textures/mcwbridges/mangrove_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/mangrove_log_bridge_middle.png b/public/textures/mcwbridges/mangrove_log_bridge_middle.png deleted file mode 100644 index 88c3ca6b..00000000 Binary files a/public/textures/mcwbridges/mangrove_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbridges/mangrove_log_bridge_stair.png b/public/textures/mcwbridges/mangrove_log_bridge_stair.png deleted file mode 100644 index db048f10..00000000 Binary files a/public/textures/mcwbridges/mangrove_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/mangrove_rail_bridge.png b/public/textures/mcwbridges/mangrove_rail_bridge.png deleted file mode 100644 index 6cbe820c..00000000 Binary files a/public/textures/mcwbridges/mangrove_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/mangrove_rope_bridge_stair.png b/public/textures/mcwbridges/mangrove_rope_bridge_stair.png deleted file mode 100644 index 2676f5eb..00000000 Binary files a/public/textures/mcwbridges/mangrove_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/mossy_cobblestone_bridge.png b/public/textures/mcwbridges/mossy_cobblestone_bridge.png deleted file mode 100644 index 79c93a84..00000000 Binary files a/public/textures/mcwbridges/mossy_cobblestone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/mossy_cobblestone_bridge_pier.png b/public/textures/mcwbridges/mossy_cobblestone_bridge_pier.png deleted file mode 100644 index 426638c2..00000000 Binary files a/public/textures/mcwbridges/mossy_cobblestone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/mossy_cobblestone_bridge_stair.png b/public/textures/mcwbridges/mossy_cobblestone_bridge_stair.png deleted file mode 100644 index 448e9585..00000000 Binary files a/public/textures/mcwbridges/mossy_cobblestone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/mossy_stone_brick_bridge.png b/public/textures/mcwbridges/mossy_stone_brick_bridge.png deleted file mode 100644 index 296c4ffb..00000000 Binary files a/public/textures/mcwbridges/mossy_stone_brick_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/mossy_stone_bridge_pier.png b/public/textures/mcwbridges/mossy_stone_bridge_pier.png deleted file mode 100644 index 3514491f..00000000 Binary files a/public/textures/mcwbridges/mossy_stone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/mossy_stone_bridge_stair.png b/public/textures/mcwbridges/mossy_stone_bridge_stair.png deleted file mode 100644 index b344d5d1..00000000 Binary files a/public/textures/mcwbridges/mossy_stone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/mud_brick_bridge.png b/public/textures/mcwbridges/mud_brick_bridge.png deleted file mode 100644 index 36cd0e63..00000000 Binary files a/public/textures/mcwbridges/mud_brick_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/mud_brick_bridge_pier.png b/public/textures/mcwbridges/mud_brick_bridge_pier.png deleted file mode 100644 index b3987708..00000000 Binary files a/public/textures/mcwbridges/mud_brick_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/mud_brick_bridge_stair.png b/public/textures/mcwbridges/mud_brick_bridge_stair.png deleted file mode 100644 index c56b918e..00000000 Binary files a/public/textures/mcwbridges/mud_brick_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/nether_bricks_bridge.png b/public/textures/mcwbridges/nether_bricks_bridge.png deleted file mode 100644 index 33a1c199..00000000 Binary files a/public/textures/mcwbridges/nether_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/nether_bricks_bridge_pier.png b/public/textures/mcwbridges/nether_bricks_bridge_pier.png deleted file mode 100644 index d1d32c03..00000000 Binary files a/public/textures/mcwbridges/nether_bricks_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/nether_bricks_bridge_stair.png b/public/textures/mcwbridges/nether_bricks_bridge_stair.png deleted file mode 100644 index a37382b6..00000000 Binary files a/public/textures/mcwbridges/nether_bricks_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/oak_bridge_pier.png b/public/textures/mcwbridges/oak_bridge_pier.png deleted file mode 100644 index fbf3e4c7..00000000 Binary files a/public/textures/mcwbridges/oak_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/oak_log_bridge_middle.png b/public/textures/mcwbridges/oak_log_bridge_middle.png deleted file mode 100644 index 258632d4..00000000 Binary files a/public/textures/mcwbridges/oak_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbridges/oak_log_bridge_stair.png b/public/textures/mcwbridges/oak_log_bridge_stair.png deleted file mode 100644 index 32e6aa3b..00000000 Binary files a/public/textures/mcwbridges/oak_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/oak_rail_bridge.png b/public/textures/mcwbridges/oak_rail_bridge.png deleted file mode 100644 index 37a01bd7..00000000 Binary files a/public/textures/mcwbridges/oak_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/oak_rope_bridge_stair.png b/public/textures/mcwbridges/oak_rope_bridge_stair.png deleted file mode 100644 index 5a2fbeff..00000000 Binary files a/public/textures/mcwbridges/oak_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/orange_sandstone_bridge.png b/public/textures/mcwbridges/orange_sandstone_bridge.png deleted file mode 100644 index d2cff158..00000000 Binary files a/public/textures/mcwbridges/orange_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/pliers.png b/public/textures/mcwbridges/pliers.png deleted file mode 100644 index 2addc612..00000000 Binary files a/public/textures/mcwbridges/pliers.png and /dev/null differ diff --git a/public/textures/mcwbridges/prismarine_bricks_bridge.png b/public/textures/mcwbridges/prismarine_bricks_bridge.png deleted file mode 100644 index 5b3eddd0..00000000 Binary files a/public/textures/mcwbridges/prismarine_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/prismarine_bricks_bridge_pier.png b/public/textures/mcwbridges/prismarine_bricks_bridge_pier.png deleted file mode 100644 index affad72d..00000000 Binary files a/public/textures/mcwbridges/prismarine_bricks_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/prismarine_bricks_bridge_stair.png b/public/textures/mcwbridges/prismarine_bricks_bridge_stair.png deleted file mode 100644 index b75be529..00000000 Binary files a/public/textures/mcwbridges/prismarine_bricks_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/red_sandstone_bridge_pier.png b/public/textures/mcwbridges/red_sandstone_bridge_pier.png deleted file mode 100644 index 1a614f52..00000000 Binary files a/public/textures/mcwbridges/red_sandstone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/red_sandstone_bridge_stair.png b/public/textures/mcwbridges/red_sandstone_bridge_stair.png deleted file mode 100644 index 6413df63..00000000 Binary files a/public/textures/mcwbridges/red_sandstone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/rope_acacia_bridge.png b/public/textures/mcwbridges/rope_acacia_bridge.png deleted file mode 100644 index a1a4a213..00000000 Binary files a/public/textures/mcwbridges/rope_acacia_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/rope_birch_bridge.png b/public/textures/mcwbridges/rope_birch_bridge.png deleted file mode 100644 index 174739d1..00000000 Binary files a/public/textures/mcwbridges/rope_birch_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/rope_cherry_bridge.png b/public/textures/mcwbridges/rope_cherry_bridge.png deleted file mode 100644 index b6ef4514..00000000 Binary files a/public/textures/mcwbridges/rope_cherry_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/rope_crimson_bridge.png b/public/textures/mcwbridges/rope_crimson_bridge.png deleted file mode 100644 index d41cfba3..00000000 Binary files a/public/textures/mcwbridges/rope_crimson_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/rope_dark_oak_bridge.png b/public/textures/mcwbridges/rope_dark_oak_bridge.png deleted file mode 100644 index 2c450f82..00000000 Binary files a/public/textures/mcwbridges/rope_dark_oak_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/rope_jungle_bridge.png b/public/textures/mcwbridges/rope_jungle_bridge.png deleted file mode 100644 index c6db1ee2..00000000 Binary files a/public/textures/mcwbridges/rope_jungle_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/rope_mangrove_bridge.png b/public/textures/mcwbridges/rope_mangrove_bridge.png deleted file mode 100644 index ae966130..00000000 Binary files a/public/textures/mcwbridges/rope_mangrove_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/rope_oak_bridge.png b/public/textures/mcwbridges/rope_oak_bridge.png deleted file mode 100644 index 52b817ce..00000000 Binary files a/public/textures/mcwbridges/rope_oak_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/rope_spruce_bridge.png b/public/textures/mcwbridges/rope_spruce_bridge.png deleted file mode 100644 index ae016e3c..00000000 Binary files a/public/textures/mcwbridges/rope_spruce_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/rope_warped_bridge.png b/public/textures/mcwbridges/rope_warped_bridge.png deleted file mode 100644 index 098b2584..00000000 Binary files a/public/textures/mcwbridges/rope_warped_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/sandstone_bridge.png b/public/textures/mcwbridges/sandstone_bridge.png deleted file mode 100644 index f231a10a..00000000 Binary files a/public/textures/mcwbridges/sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/sandstone_bridge_pier.png b/public/textures/mcwbridges/sandstone_bridge_pier.png deleted file mode 100644 index 7d8e5c59..00000000 Binary files a/public/textures/mcwbridges/sandstone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/sandstone_bridge_stair.png b/public/textures/mcwbridges/sandstone_bridge_stair.png deleted file mode 100644 index 6fee5d03..00000000 Binary files a/public/textures/mcwbridges/sandstone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/spruce_bridge_pier.png b/public/textures/mcwbridges/spruce_bridge_pier.png deleted file mode 100644 index d502db03..00000000 Binary files a/public/textures/mcwbridges/spruce_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/spruce_log_bridge_middle.png b/public/textures/mcwbridges/spruce_log_bridge_middle.png deleted file mode 100644 index d6de08b0..00000000 Binary files a/public/textures/mcwbridges/spruce_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbridges/spruce_log_bridge_stair.png b/public/textures/mcwbridges/spruce_log_bridge_stair.png deleted file mode 100644 index 48972e62..00000000 Binary files a/public/textures/mcwbridges/spruce_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/spruce_rail_bridge.png b/public/textures/mcwbridges/spruce_rail_bridge.png deleted file mode 100644 index 90906152..00000000 Binary files a/public/textures/mcwbridges/spruce_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/spruce_rope_bridge_stair.png b/public/textures/mcwbridges/spruce_rope_bridge_stair.png deleted file mode 100644 index fde9e03e..00000000 Binary files a/public/textures/mcwbridges/spruce_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/stone_brick_bridge.png b/public/textures/mcwbridges/stone_brick_bridge.png deleted file mode 100644 index 19a49908..00000000 Binary files a/public/textures/mcwbridges/stone_brick_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/stone_brick_bridge_stair.png b/public/textures/mcwbridges/stone_brick_bridge_stair.png deleted file mode 100644 index 7ee9cd41..00000000 Binary files a/public/textures/mcwbridges/stone_brick_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/stone_bridge_pier.png b/public/textures/mcwbridges/stone_bridge_pier.png deleted file mode 100644 index 13d13f4a..00000000 Binary files a/public/textures/mcwbridges/stone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/warped_bridge_pier.png b/public/textures/mcwbridges/warped_bridge_pier.png deleted file mode 100644 index 40af18a0..00000000 Binary files a/public/textures/mcwbridges/warped_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbridges/warped_log_bridge_middle.png b/public/textures/mcwbridges/warped_log_bridge_middle.png deleted file mode 100644 index 856cc164..00000000 Binary files a/public/textures/mcwbridges/warped_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbridges/warped_log_bridge_stair.png b/public/textures/mcwbridges/warped_log_bridge_stair.png deleted file mode 100644 index 17c4a198..00000000 Binary files a/public/textures/mcwbridges/warped_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbridges/warped_rail_bridge.png b/public/textures/mcwbridges/warped_rail_bridge.png deleted file mode 100644 index fbffa29e..00000000 Binary files a/public/textures/mcwbridges/warped_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbridges/warped_rope_bridge_stair.png b/public/textures/mcwbridges/warped_rope_bridge_stair.png deleted file mode 100644 index c68b7a1a..00000000 Binary files a/public/textures/mcwbridges/warped_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/araucaria_hedge.png b/public/textures/mcwbyg/araucaria_hedge.png deleted file mode 100644 index e5ae2740..00000000 Binary files a/public/textures/mcwbyg/araucaria_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_attic_roof.png b/public/textures/mcwbyg/aspen_attic_roof.png deleted file mode 100644 index 0ffcc903..00000000 Binary files a/public/textures/mcwbyg/aspen_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_bamboo_door.png b/public/textures/mcwbyg/aspen_bamboo_door.png deleted file mode 100644 index 63283246..00000000 Binary files a/public/textures/mcwbyg/aspen_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_bamboo_trapdoor.png b/public/textures/mcwbyg/aspen_bamboo_trapdoor.png deleted file mode 100644 index f8790b9d..00000000 Binary files a/public/textures/mcwbyg/aspen_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_bark_glass_door.png b/public/textures/mcwbyg/aspen_bark_glass_door.png deleted file mode 100644 index f733e5b3..00000000 Binary files a/public/textures/mcwbyg/aspen_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_bark_trapdoor.png b/public/textures/mcwbyg/aspen_bark_trapdoor.png deleted file mode 100644 index 48f8b635..00000000 Binary files a/public/textures/mcwbyg/aspen_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_barn_door.png b/public/textures/mcwbyg/aspen_barn_door.png deleted file mode 100644 index 298a78a9..00000000 Binary files a/public/textures/mcwbyg/aspen_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_barn_glass_door.png b/public/textures/mcwbyg/aspen_barn_glass_door.png deleted file mode 100644 index 68e0f479..00000000 Binary files a/public/textures/mcwbyg/aspen_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_barn_trapdoor.png b/public/textures/mcwbyg/aspen_barn_trapdoor.png deleted file mode 100644 index 16586e4e..00000000 Binary files a/public/textures/mcwbyg/aspen_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_barred_trapdoor.png b/public/textures/mcwbyg/aspen_barred_trapdoor.png deleted file mode 100644 index e12d49bb..00000000 Binary files a/public/textures/mcwbyg/aspen_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_barrel_trapdoor.png b/public/textures/mcwbyg/aspen_barrel_trapdoor.png deleted file mode 100644 index 91a70079..00000000 Binary files a/public/textures/mcwbyg/aspen_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_beach_door.png b/public/textures/mcwbyg/aspen_beach_door.png deleted file mode 100644 index f0091c84..00000000 Binary files a/public/textures/mcwbyg/aspen_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_beach_trapdoor.png b/public/textures/mcwbyg/aspen_beach_trapdoor.png deleted file mode 100644 index d240f8eb..00000000 Binary files a/public/textures/mcwbyg/aspen_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_blinds.png b/public/textures/mcwbyg/aspen_blinds.png deleted file mode 100644 index 4d625a14..00000000 Binary files a/public/textures/mcwbyg/aspen_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_blossom_trapdoor.png b/public/textures/mcwbyg/aspen_blossom_trapdoor.png deleted file mode 100644 index a3779910..00000000 Binary files a/public/textures/mcwbyg/aspen_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_bookshelf.png b/public/textures/mcwbyg/aspen_bookshelf.png deleted file mode 100644 index bd812081..00000000 Binary files a/public/textures/mcwbyg/aspen_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_bookshelf_cupboard.png b/public/textures/mcwbyg/aspen_bookshelf_cupboard.png deleted file mode 100644 index 4adf2a1c..00000000 Binary files a/public/textures/mcwbyg/aspen_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_bookshelf_drawer.png b/public/textures/mcwbyg/aspen_bookshelf_drawer.png deleted file mode 100644 index 346c6f6f..00000000 Binary files a/public/textures/mcwbyg/aspen_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_bridge_pier.png b/public/textures/mcwbyg/aspen_bridge_pier.png deleted file mode 100644 index ea72588f..00000000 Binary files a/public/textures/mcwbyg/aspen_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_chair.png b/public/textures/mcwbyg/aspen_chair.png deleted file mode 100644 index adfb6646..00000000 Binary files a/public/textures/mcwbyg/aspen_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_classic_door.png b/public/textures/mcwbyg/aspen_classic_door.png deleted file mode 100644 index 7f6e9ae1..00000000 Binary files a/public/textures/mcwbyg/aspen_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_classic_trapdoor.png b/public/textures/mcwbyg/aspen_classic_trapdoor.png deleted file mode 100644 index d9dd0880..00000000 Binary files a/public/textures/mcwbyg/aspen_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_coffee_table.png b/public/textures/mcwbyg/aspen_coffee_table.png deleted file mode 100644 index b793de41..00000000 Binary files a/public/textures/mcwbyg/aspen_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_cottage_door.png b/public/textures/mcwbyg/aspen_cottage_door.png deleted file mode 100644 index 8bcd41ce..00000000 Binary files a/public/textures/mcwbyg/aspen_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_cottage_trapdoor.png b/public/textures/mcwbyg/aspen_cottage_trapdoor.png deleted file mode 100644 index 27458335..00000000 Binary files a/public/textures/mcwbyg/aspen_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_counter.png b/public/textures/mcwbyg/aspen_counter.png deleted file mode 100644 index 9b016537..00000000 Binary files a/public/textures/mcwbyg/aspen_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_covered_desk.png b/public/textures/mcwbyg/aspen_covered_desk.png deleted file mode 100644 index 46b4b2e0..00000000 Binary files a/public/textures/mcwbyg/aspen_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_cupboard_counter.png b/public/textures/mcwbyg/aspen_cupboard_counter.png deleted file mode 100644 index 290ba115..00000000 Binary files a/public/textures/mcwbyg/aspen_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_curtain_rod.png b/public/textures/mcwbyg/aspen_curtain_rod.png deleted file mode 100644 index d2ac5db7..00000000 Binary files a/public/textures/mcwbyg/aspen_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_curved_gate.png b/public/textures/mcwbyg/aspen_curved_gate.png deleted file mode 100644 index de890500..00000000 Binary files a/public/textures/mcwbyg/aspen_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_desk.png b/public/textures/mcwbyg/aspen_desk.png deleted file mode 100644 index cd571bf5..00000000 Binary files a/public/textures/mcwbyg/aspen_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_double_drawer.png b/public/textures/mcwbyg/aspen_double_drawer.png deleted file mode 100644 index 0dd5dbbb..00000000 Binary files a/public/textures/mcwbyg/aspen_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_double_drawer_counter.png b/public/textures/mcwbyg/aspen_double_drawer_counter.png deleted file mode 100644 index df7e17b8..00000000 Binary files a/public/textures/mcwbyg/aspen_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_double_kitchen_cabinet.png b/public/textures/mcwbyg/aspen_double_kitchen_cabinet.png deleted file mode 100644 index 87b7ac14..00000000 Binary files a/public/textures/mcwbyg/aspen_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_double_wardrobe.png b/public/textures/mcwbyg/aspen_double_wardrobe.png deleted file mode 100644 index eff14e6d..00000000 Binary files a/public/textures/mcwbyg/aspen_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_drawer.png b/public/textures/mcwbyg/aspen_drawer.png deleted file mode 100644 index e28b8cb1..00000000 Binary files a/public/textures/mcwbyg/aspen_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_drawer_counter.png b/public/textures/mcwbyg/aspen_drawer_counter.png deleted file mode 100644 index 540c7365..00000000 Binary files a/public/textures/mcwbyg/aspen_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_end_table.png b/public/textures/mcwbyg/aspen_end_table.png deleted file mode 100644 index bf32b260..00000000 Binary files a/public/textures/mcwbyg/aspen_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_four_panel_door.png b/public/textures/mcwbyg/aspen_four_panel_door.png deleted file mode 100644 index bf83357e..00000000 Binary files a/public/textures/mcwbyg/aspen_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_four_panel_trapdoor.png b/public/textures/mcwbyg/aspen_four_panel_trapdoor.png deleted file mode 100644 index 55ac7103..00000000 Binary files a/public/textures/mcwbyg/aspen_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_four_window.png b/public/textures/mcwbyg/aspen_four_window.png deleted file mode 100644 index d6ac3429..00000000 Binary files a/public/textures/mcwbyg/aspen_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_glass_door.png b/public/textures/mcwbyg/aspen_glass_door.png deleted file mode 100644 index 33373116..00000000 Binary files a/public/textures/mcwbyg/aspen_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_glass_kitchen_cabinet.png b/public/textures/mcwbyg/aspen_glass_kitchen_cabinet.png deleted file mode 100644 index e5889f0c..00000000 Binary files a/public/textures/mcwbyg/aspen_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_glass_table.png b/public/textures/mcwbyg/aspen_glass_table.png deleted file mode 100644 index cf7b28d2..00000000 Binary files a/public/textures/mcwbyg/aspen_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_glass_trapdoor.png b/public/textures/mcwbyg/aspen_glass_trapdoor.png deleted file mode 100644 index 5603f2b0..00000000 Binary files a/public/textures/mcwbyg/aspen_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_hedge.png b/public/textures/mcwbyg/aspen_hedge.png deleted file mode 100644 index 548ca2e2..00000000 Binary files a/public/textures/mcwbyg/aspen_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_highley_gate.png b/public/textures/mcwbyg/aspen_highley_gate.png deleted file mode 100644 index 5889bc96..00000000 Binary files a/public/textures/mcwbyg/aspen_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_horse_fence.png b/public/textures/mcwbyg/aspen_horse_fence.png deleted file mode 100644 index ac41157d..00000000 Binary files a/public/textures/mcwbyg/aspen_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_japanese2_door.png b/public/textures/mcwbyg/aspen_japanese2_door.png deleted file mode 100644 index eda518c7..00000000 Binary files a/public/textures/mcwbyg/aspen_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_japanese_door.png b/public/textures/mcwbyg/aspen_japanese_door.png deleted file mode 100644 index 1c3de6cb..00000000 Binary files a/public/textures/mcwbyg/aspen_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_kitchen_cabinet.png b/public/textures/mcwbyg/aspen_kitchen_cabinet.png deleted file mode 100644 index 47187e46..00000000 Binary files a/public/textures/mcwbyg/aspen_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_large_drawer.png b/public/textures/mcwbyg/aspen_large_drawer.png deleted file mode 100644 index ba2a070a..00000000 Binary files a/public/textures/mcwbyg/aspen_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_log_bridge_middle.png b/public/textures/mcwbyg/aspen_log_bridge_middle.png deleted file mode 100644 index 627a70e9..00000000 Binary files a/public/textures/mcwbyg/aspen_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_log_bridge_stair.png b/public/textures/mcwbyg/aspen_log_bridge_stair.png deleted file mode 100644 index 5f116505..00000000 Binary files a/public/textures/mcwbyg/aspen_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_log_parapet.png b/public/textures/mcwbyg/aspen_log_parapet.png deleted file mode 100644 index cd38adff..00000000 Binary files a/public/textures/mcwbyg/aspen_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_louvered_shutter.png b/public/textures/mcwbyg/aspen_louvered_shutter.png deleted file mode 100644 index f363fcfd..00000000 Binary files a/public/textures/mcwbyg/aspen_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_lower_bookshelf_drawer.png b/public/textures/mcwbyg/aspen_lower_bookshelf_drawer.png deleted file mode 100644 index 222a913b..00000000 Binary files a/public/textures/mcwbyg/aspen_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_lower_roof.png b/public/textures/mcwbyg/aspen_lower_roof.png deleted file mode 100644 index 89e27f39..00000000 Binary files a/public/textures/mcwbyg/aspen_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_lower_triple_drawer.png b/public/textures/mcwbyg/aspen_lower_triple_drawer.png deleted file mode 100644 index b56c01cc..00000000 Binary files a/public/textures/mcwbyg/aspen_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_modern_chair.png b/public/textures/mcwbyg/aspen_modern_chair.png deleted file mode 100644 index a24231cd..00000000 Binary files a/public/textures/mcwbyg/aspen_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_modern_desk.png b/public/textures/mcwbyg/aspen_modern_desk.png deleted file mode 100644 index c5dd01ce..00000000 Binary files a/public/textures/mcwbyg/aspen_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_modern_door.png b/public/textures/mcwbyg/aspen_modern_door.png deleted file mode 100644 index 17565684..00000000 Binary files a/public/textures/mcwbyg/aspen_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_modern_wardrobe.png b/public/textures/mcwbyg/aspen_modern_wardrobe.png deleted file mode 100644 index 70515e02..00000000 Binary files a/public/textures/mcwbyg/aspen_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_mystic_door.png b/public/textures/mcwbyg/aspen_mystic_door.png deleted file mode 100644 index 5ca7799f..00000000 Binary files a/public/textures/mcwbyg/aspen_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_mystic_trapdoor.png b/public/textures/mcwbyg/aspen_mystic_trapdoor.png deleted file mode 100644 index 84b18be8..00000000 Binary files a/public/textures/mcwbyg/aspen_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_nether_door.png b/public/textures/mcwbyg/aspen_nether_door.png deleted file mode 100644 index 49de1c59..00000000 Binary files a/public/textures/mcwbyg/aspen_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_pane_window.png b/public/textures/mcwbyg/aspen_pane_window.png deleted file mode 100644 index ae62d45b..00000000 Binary files a/public/textures/mcwbyg/aspen_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_paper_door.png b/public/textures/mcwbyg/aspen_paper_door.png deleted file mode 100644 index cae92ed0..00000000 Binary files a/public/textures/mcwbyg/aspen_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_paper_trapdoor.png b/public/textures/mcwbyg/aspen_paper_trapdoor.png deleted file mode 100644 index c2678222..00000000 Binary files a/public/textures/mcwbyg/aspen_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_picket_fence.png b/public/textures/mcwbyg/aspen_picket_fence.png deleted file mode 100644 index b5a5e83a..00000000 Binary files a/public/textures/mcwbyg/aspen_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_plank_four_window.png b/public/textures/mcwbyg/aspen_plank_four_window.png deleted file mode 100644 index e930ead7..00000000 Binary files a/public/textures/mcwbyg/aspen_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_plank_pane_window.png b/public/textures/mcwbyg/aspen_plank_pane_window.png deleted file mode 100644 index 640de0ec..00000000 Binary files a/public/textures/mcwbyg/aspen_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_plank_parapet.png b/public/textures/mcwbyg/aspen_plank_parapet.png deleted file mode 100644 index e6797454..00000000 Binary files a/public/textures/mcwbyg/aspen_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_plank_window.png b/public/textures/mcwbyg/aspen_plank_window.png deleted file mode 100644 index acd62007..00000000 Binary files a/public/textures/mcwbyg/aspen_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_plank_window2.png b/public/textures/mcwbyg/aspen_plank_window2.png deleted file mode 100644 index e43ebf98..00000000 Binary files a/public/textures/mcwbyg/aspen_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_planks_attic_roof.png b/public/textures/mcwbyg/aspen_planks_attic_roof.png deleted file mode 100644 index 3ac50603..00000000 Binary files a/public/textures/mcwbyg/aspen_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_planks_lower_roof.png b/public/textures/mcwbyg/aspen_planks_lower_roof.png deleted file mode 100644 index 32e66f74..00000000 Binary files a/public/textures/mcwbyg/aspen_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_planks_path.png b/public/textures/mcwbyg/aspen_planks_path.png deleted file mode 100644 index 2b3498e0..00000000 Binary files a/public/textures/mcwbyg/aspen_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_planks_roof.png b/public/textures/mcwbyg/aspen_planks_roof.png deleted file mode 100644 index e64de370..00000000 Binary files a/public/textures/mcwbyg/aspen_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_planks_steep_roof.png b/public/textures/mcwbyg/aspen_planks_steep_roof.png deleted file mode 100644 index 716b8fce..00000000 Binary files a/public/textures/mcwbyg/aspen_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_planks_top_roof.png b/public/textures/mcwbyg/aspen_planks_top_roof.png deleted file mode 100644 index f9c03105..00000000 Binary files a/public/textures/mcwbyg/aspen_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_planks_upper_lower_roof.png b/public/textures/mcwbyg/aspen_planks_upper_lower_roof.png deleted file mode 100644 index 24444ff5..00000000 Binary files a/public/textures/mcwbyg/aspen_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_planks_upper_steep_roof.png b/public/textures/mcwbyg/aspen_planks_upper_steep_roof.png deleted file mode 100644 index 0fb99cc3..00000000 Binary files a/public/textures/mcwbyg/aspen_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_pyramid_gate.png b/public/textures/mcwbyg/aspen_pyramid_gate.png deleted file mode 100644 index c5773755..00000000 Binary files a/public/textures/mcwbyg/aspen_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_rail_bridge.png b/public/textures/mcwbyg/aspen_rail_bridge.png deleted file mode 100644 index f31c9880..00000000 Binary files a/public/textures/mcwbyg/aspen_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_ranch_trapdoor.png b/public/textures/mcwbyg/aspen_ranch_trapdoor.png deleted file mode 100644 index 99aa94dd..00000000 Binary files a/public/textures/mcwbyg/aspen_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_roof.png b/public/textures/mcwbyg/aspen_roof.png deleted file mode 100644 index 9fd2d7ce..00000000 Binary files a/public/textures/mcwbyg/aspen_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_rope_bridge_stair.png b/public/textures/mcwbyg/aspen_rope_bridge_stair.png deleted file mode 100644 index 44a7b186..00000000 Binary files a/public/textures/mcwbyg/aspen_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_shutter.png b/public/textures/mcwbyg/aspen_shutter.png deleted file mode 100644 index 2e46d44c..00000000 Binary files a/public/textures/mcwbyg/aspen_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_stable_door.png b/public/textures/mcwbyg/aspen_stable_door.png deleted file mode 100644 index 7cebd6ae..00000000 Binary files a/public/textures/mcwbyg/aspen_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_stable_head_door.png b/public/textures/mcwbyg/aspen_stable_head_door.png deleted file mode 100644 index 748d32ad..00000000 Binary files a/public/textures/mcwbyg/aspen_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_steep_roof.png b/public/textures/mcwbyg/aspen_steep_roof.png deleted file mode 100644 index c222f575..00000000 Binary files a/public/textures/mcwbyg/aspen_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_stockade_fence.png b/public/textures/mcwbyg/aspen_stockade_fence.png deleted file mode 100644 index 45684c15..00000000 Binary files a/public/textures/mcwbyg/aspen_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_stool_chair.png b/public/textures/mcwbyg/aspen_stool_chair.png deleted file mode 100644 index 81fb4851..00000000 Binary files a/public/textures/mcwbyg/aspen_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_striped_chair.png b/public/textures/mcwbyg/aspen_striped_chair.png deleted file mode 100644 index 290466e4..00000000 Binary files a/public/textures/mcwbyg/aspen_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_swamp_door.png b/public/textures/mcwbyg/aspen_swamp_door.png deleted file mode 100644 index 1b317c9d..00000000 Binary files a/public/textures/mcwbyg/aspen_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_swamp_trapdoor.png b/public/textures/mcwbyg/aspen_swamp_trapdoor.png deleted file mode 100644 index 4b8a96e8..00000000 Binary files a/public/textures/mcwbyg/aspen_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_table.png b/public/textures/mcwbyg/aspen_table.png deleted file mode 100644 index eafca119..00000000 Binary files a/public/textures/mcwbyg/aspen_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_top_roof.png b/public/textures/mcwbyg/aspen_top_roof.png deleted file mode 100644 index 37c89a74..00000000 Binary files a/public/textures/mcwbyg/aspen_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_triple_drawer.png b/public/textures/mcwbyg/aspen_triple_drawer.png deleted file mode 100644 index c84e6e81..00000000 Binary files a/public/textures/mcwbyg/aspen_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_tropical_door.png b/public/textures/mcwbyg/aspen_tropical_door.png deleted file mode 100644 index 201dcb31..00000000 Binary files a/public/textures/mcwbyg/aspen_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_tropical_trapdoor.png b/public/textures/mcwbyg/aspen_tropical_trapdoor.png deleted file mode 100644 index e4e3ed8e..00000000 Binary files a/public/textures/mcwbyg/aspen_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_upper_lower_roof.png b/public/textures/mcwbyg/aspen_upper_lower_roof.png deleted file mode 100644 index f4d5b27e..00000000 Binary files a/public/textures/mcwbyg/aspen_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_upper_steep_roof.png b/public/textures/mcwbyg/aspen_upper_steep_roof.png deleted file mode 100644 index a0d906e6..00000000 Binary files a/public/textures/mcwbyg/aspen_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_waffle_door.png b/public/textures/mcwbyg/aspen_waffle_door.png deleted file mode 100644 index 59093986..00000000 Binary files a/public/textures/mcwbyg/aspen_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_wardrobe.png b/public/textures/mcwbyg/aspen_wardrobe.png deleted file mode 100644 index 9517ae5b..00000000 Binary files a/public/textures/mcwbyg/aspen_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_western_door.png b/public/textures/mcwbyg/aspen_western_door.png deleted file mode 100644 index 6ce4c9d8..00000000 Binary files a/public/textures/mcwbyg/aspen_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_whispering_door.png b/public/textures/mcwbyg/aspen_whispering_door.png deleted file mode 100644 index cae4b593..00000000 Binary files a/public/textures/mcwbyg/aspen_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_whispering_trapdoor.png b/public/textures/mcwbyg/aspen_whispering_trapdoor.png deleted file mode 100644 index aaaed476..00000000 Binary files a/public/textures/mcwbyg/aspen_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_window.png b/public/textures/mcwbyg/aspen_window.png deleted file mode 100644 index 5a1d5ceb..00000000 Binary files a/public/textures/mcwbyg/aspen_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_window2.png b/public/textures/mcwbyg/aspen_window2.png deleted file mode 100644 index 35b18ec2..00000000 Binary files a/public/textures/mcwbyg/aspen_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/aspen_wired_fence.png b/public/textures/mcwbyg/aspen_wired_fence.png deleted file mode 100644 index 66295e91..00000000 Binary files a/public/textures/mcwbyg/aspen_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/balustrade_black_sandstone_bridge.png b/public/textures/mcwbyg/balustrade_black_sandstone_bridge.png deleted file mode 100644 index 3c79fe54..00000000 Binary files a/public/textures/mcwbyg/balustrade_black_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/balustrade_blue_sandstone_bridge.png b/public/textures/mcwbyg/balustrade_blue_sandstone_bridge.png deleted file mode 100644 index ca42d286..00000000 Binary files a/public/textures/mcwbyg/balustrade_blue_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/balustrade_dacite_bricks_bridge.png b/public/textures/mcwbyg/balustrade_dacite_bricks_bridge.png deleted file mode 100644 index 4007fce4..00000000 Binary files a/public/textures/mcwbyg/balustrade_dacite_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/balustrade_pink_sandstone_bridge.png b/public/textures/mcwbyg/balustrade_pink_sandstone_bridge.png deleted file mode 100644 index 9f76880f..00000000 Binary files a/public/textures/mcwbyg/balustrade_pink_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/balustrade_purple_sandstone_bridge.png b/public/textures/mcwbyg/balustrade_purple_sandstone_bridge.png deleted file mode 100644 index 60305402..00000000 Binary files a/public/textures/mcwbyg/balustrade_purple_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/balustrade_red_rock_bricks_bridge.png b/public/textures/mcwbyg/balustrade_red_rock_bricks_bridge.png deleted file mode 100644 index 39dd5753..00000000 Binary files a/public/textures/mcwbyg/balustrade_red_rock_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/balustrade_white_sandstone_bridge.png b/public/textures/mcwbyg/balustrade_white_sandstone_bridge.png deleted file mode 100644 index 3d5266cc..00000000 Binary files a/public/textures/mcwbyg/balustrade_white_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/balustrade_windswept_sandstone_bridge.png b/public/textures/mcwbyg/balustrade_windswept_sandstone_bridge.png deleted file mode 100644 index fed341be..00000000 Binary files a/public/textures/mcwbyg/balustrade_windswept_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_attic_roof.png b/public/textures/mcwbyg/baobab_attic_roof.png deleted file mode 100644 index 1e3939da..00000000 Binary files a/public/textures/mcwbyg/baobab_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_bamboo_door.png b/public/textures/mcwbyg/baobab_bamboo_door.png deleted file mode 100644 index 49a44936..00000000 Binary files a/public/textures/mcwbyg/baobab_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_bamboo_trapdoor.png b/public/textures/mcwbyg/baobab_bamboo_trapdoor.png deleted file mode 100644 index 45a8eb85..00000000 Binary files a/public/textures/mcwbyg/baobab_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_bark_glass_door.png b/public/textures/mcwbyg/baobab_bark_glass_door.png deleted file mode 100644 index 2c26b08e..00000000 Binary files a/public/textures/mcwbyg/baobab_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_bark_trapdoor.png b/public/textures/mcwbyg/baobab_bark_trapdoor.png deleted file mode 100644 index e334a621..00000000 Binary files a/public/textures/mcwbyg/baobab_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_barn_door.png b/public/textures/mcwbyg/baobab_barn_door.png deleted file mode 100644 index 1083f0b3..00000000 Binary files a/public/textures/mcwbyg/baobab_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_barn_glass_door.png b/public/textures/mcwbyg/baobab_barn_glass_door.png deleted file mode 100644 index b43782ae..00000000 Binary files a/public/textures/mcwbyg/baobab_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_barn_trapdoor.png b/public/textures/mcwbyg/baobab_barn_trapdoor.png deleted file mode 100644 index 836b203c..00000000 Binary files a/public/textures/mcwbyg/baobab_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_barred_trapdoor.png b/public/textures/mcwbyg/baobab_barred_trapdoor.png deleted file mode 100644 index 1e0b1321..00000000 Binary files a/public/textures/mcwbyg/baobab_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_barrel_trapdoor.png b/public/textures/mcwbyg/baobab_barrel_trapdoor.png deleted file mode 100644 index 369d59d4..00000000 Binary files a/public/textures/mcwbyg/baobab_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_beach_door.png b/public/textures/mcwbyg/baobab_beach_door.png deleted file mode 100644 index 70c1ead2..00000000 Binary files a/public/textures/mcwbyg/baobab_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_beach_trapdoor.png b/public/textures/mcwbyg/baobab_beach_trapdoor.png deleted file mode 100644 index dab04988..00000000 Binary files a/public/textures/mcwbyg/baobab_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_blinds.png b/public/textures/mcwbyg/baobab_blinds.png deleted file mode 100644 index ac6675b1..00000000 Binary files a/public/textures/mcwbyg/baobab_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_blossom_trapdoor.png b/public/textures/mcwbyg/baobab_blossom_trapdoor.png deleted file mode 100644 index 3d0e2a35..00000000 Binary files a/public/textures/mcwbyg/baobab_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_bookshelf.png b/public/textures/mcwbyg/baobab_bookshelf.png deleted file mode 100644 index 29ec3c23..00000000 Binary files a/public/textures/mcwbyg/baobab_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_bookshelf_cupboard.png b/public/textures/mcwbyg/baobab_bookshelf_cupboard.png deleted file mode 100644 index 52d0dde6..00000000 Binary files a/public/textures/mcwbyg/baobab_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_bookshelf_drawer.png b/public/textures/mcwbyg/baobab_bookshelf_drawer.png deleted file mode 100644 index d56e3ee4..00000000 Binary files a/public/textures/mcwbyg/baobab_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_bridge_pier.png b/public/textures/mcwbyg/baobab_bridge_pier.png deleted file mode 100644 index 2b94e953..00000000 Binary files a/public/textures/mcwbyg/baobab_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_chair.png b/public/textures/mcwbyg/baobab_chair.png deleted file mode 100644 index b65ca90f..00000000 Binary files a/public/textures/mcwbyg/baobab_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_classic_door.png b/public/textures/mcwbyg/baobab_classic_door.png deleted file mode 100644 index f241c252..00000000 Binary files a/public/textures/mcwbyg/baobab_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_classic_trapdoor.png b/public/textures/mcwbyg/baobab_classic_trapdoor.png deleted file mode 100644 index f48897c1..00000000 Binary files a/public/textures/mcwbyg/baobab_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_coffee_table.png b/public/textures/mcwbyg/baobab_coffee_table.png deleted file mode 100644 index 56df328c..00000000 Binary files a/public/textures/mcwbyg/baobab_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_cottage_door.png b/public/textures/mcwbyg/baobab_cottage_door.png deleted file mode 100644 index 31bde5a6..00000000 Binary files a/public/textures/mcwbyg/baobab_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_cottage_trapdoor.png b/public/textures/mcwbyg/baobab_cottage_trapdoor.png deleted file mode 100644 index bff666ad..00000000 Binary files a/public/textures/mcwbyg/baobab_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_counter.png b/public/textures/mcwbyg/baobab_counter.png deleted file mode 100644 index 62459a40..00000000 Binary files a/public/textures/mcwbyg/baobab_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_covered_desk.png b/public/textures/mcwbyg/baobab_covered_desk.png deleted file mode 100644 index 7517c026..00000000 Binary files a/public/textures/mcwbyg/baobab_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_cupboard_counter.png b/public/textures/mcwbyg/baobab_cupboard_counter.png deleted file mode 100644 index f6557573..00000000 Binary files a/public/textures/mcwbyg/baobab_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_curtain_rod.png b/public/textures/mcwbyg/baobab_curtain_rod.png deleted file mode 100644 index abce33f6..00000000 Binary files a/public/textures/mcwbyg/baobab_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_curved_gate.png b/public/textures/mcwbyg/baobab_curved_gate.png deleted file mode 100644 index e4fcdd9d..00000000 Binary files a/public/textures/mcwbyg/baobab_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_desk.png b/public/textures/mcwbyg/baobab_desk.png deleted file mode 100644 index dcf49783..00000000 Binary files a/public/textures/mcwbyg/baobab_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_double_drawer.png b/public/textures/mcwbyg/baobab_double_drawer.png deleted file mode 100644 index 2d04904e..00000000 Binary files a/public/textures/mcwbyg/baobab_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_double_drawer_counter.png b/public/textures/mcwbyg/baobab_double_drawer_counter.png deleted file mode 100644 index ead73f45..00000000 Binary files a/public/textures/mcwbyg/baobab_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_double_kitchen_cabinet.png b/public/textures/mcwbyg/baobab_double_kitchen_cabinet.png deleted file mode 100644 index 5d01792f..00000000 Binary files a/public/textures/mcwbyg/baobab_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_double_wardrobe.png b/public/textures/mcwbyg/baobab_double_wardrobe.png deleted file mode 100644 index 4be550e1..00000000 Binary files a/public/textures/mcwbyg/baobab_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_drawer.png b/public/textures/mcwbyg/baobab_drawer.png deleted file mode 100644 index a94edd41..00000000 Binary files a/public/textures/mcwbyg/baobab_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_drawer_counter.png b/public/textures/mcwbyg/baobab_drawer_counter.png deleted file mode 100644 index 15a4f0b3..00000000 Binary files a/public/textures/mcwbyg/baobab_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_end_table.png b/public/textures/mcwbyg/baobab_end_table.png deleted file mode 100644 index b3e15fcd..00000000 Binary files a/public/textures/mcwbyg/baobab_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_four_panel_door.png b/public/textures/mcwbyg/baobab_four_panel_door.png deleted file mode 100644 index 83d3a822..00000000 Binary files a/public/textures/mcwbyg/baobab_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_four_panel_trapdoor.png b/public/textures/mcwbyg/baobab_four_panel_trapdoor.png deleted file mode 100644 index a090244b..00000000 Binary files a/public/textures/mcwbyg/baobab_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_four_window.png b/public/textures/mcwbyg/baobab_four_window.png deleted file mode 100644 index 169c47d4..00000000 Binary files a/public/textures/mcwbyg/baobab_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_glass_door.png b/public/textures/mcwbyg/baobab_glass_door.png deleted file mode 100644 index 53224878..00000000 Binary files a/public/textures/mcwbyg/baobab_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_glass_kitchen_cabinet.png b/public/textures/mcwbyg/baobab_glass_kitchen_cabinet.png deleted file mode 100644 index d9a628c7..00000000 Binary files a/public/textures/mcwbyg/baobab_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_glass_table.png b/public/textures/mcwbyg/baobab_glass_table.png deleted file mode 100644 index cc15a5b4..00000000 Binary files a/public/textures/mcwbyg/baobab_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_glass_trapdoor.png b/public/textures/mcwbyg/baobab_glass_trapdoor.png deleted file mode 100644 index 2beb633d..00000000 Binary files a/public/textures/mcwbyg/baobab_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_hedge.png b/public/textures/mcwbyg/baobab_hedge.png deleted file mode 100644 index 8592ef69..00000000 Binary files a/public/textures/mcwbyg/baobab_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_highley_gate.png b/public/textures/mcwbyg/baobab_highley_gate.png deleted file mode 100644 index c06cea55..00000000 Binary files a/public/textures/mcwbyg/baobab_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_horse_fence.png b/public/textures/mcwbyg/baobab_horse_fence.png deleted file mode 100644 index 198e640b..00000000 Binary files a/public/textures/mcwbyg/baobab_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_japanese2_door.png b/public/textures/mcwbyg/baobab_japanese2_door.png deleted file mode 100644 index 1b09ab8e..00000000 Binary files a/public/textures/mcwbyg/baobab_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_japanese_door.png b/public/textures/mcwbyg/baobab_japanese_door.png deleted file mode 100644 index 35c6f8ba..00000000 Binary files a/public/textures/mcwbyg/baobab_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_kitchen_cabinet.png b/public/textures/mcwbyg/baobab_kitchen_cabinet.png deleted file mode 100644 index 024ad19e..00000000 Binary files a/public/textures/mcwbyg/baobab_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_large_drawer.png b/public/textures/mcwbyg/baobab_large_drawer.png deleted file mode 100644 index 24f10267..00000000 Binary files a/public/textures/mcwbyg/baobab_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_log_bridge_middle.png b/public/textures/mcwbyg/baobab_log_bridge_middle.png deleted file mode 100644 index f11ad01f..00000000 Binary files a/public/textures/mcwbyg/baobab_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_log_bridge_stair.png b/public/textures/mcwbyg/baobab_log_bridge_stair.png deleted file mode 100644 index 5d4b8741..00000000 Binary files a/public/textures/mcwbyg/baobab_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_log_parapet.png b/public/textures/mcwbyg/baobab_log_parapet.png deleted file mode 100644 index 761e15a9..00000000 Binary files a/public/textures/mcwbyg/baobab_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_louvered_shutter.png b/public/textures/mcwbyg/baobab_louvered_shutter.png deleted file mode 100644 index 238f38d5..00000000 Binary files a/public/textures/mcwbyg/baobab_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_lower_bookshelf_drawer.png b/public/textures/mcwbyg/baobab_lower_bookshelf_drawer.png deleted file mode 100644 index 230a5f99..00000000 Binary files a/public/textures/mcwbyg/baobab_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_lower_roof.png b/public/textures/mcwbyg/baobab_lower_roof.png deleted file mode 100644 index 49242da6..00000000 Binary files a/public/textures/mcwbyg/baobab_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_lower_triple_drawer.png b/public/textures/mcwbyg/baobab_lower_triple_drawer.png deleted file mode 100644 index 6cf8f5d8..00000000 Binary files a/public/textures/mcwbyg/baobab_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_modern_chair.png b/public/textures/mcwbyg/baobab_modern_chair.png deleted file mode 100644 index d7d12d50..00000000 Binary files a/public/textures/mcwbyg/baobab_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_modern_desk.png b/public/textures/mcwbyg/baobab_modern_desk.png deleted file mode 100644 index 44cdd5b7..00000000 Binary files a/public/textures/mcwbyg/baobab_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_modern_door.png b/public/textures/mcwbyg/baobab_modern_door.png deleted file mode 100644 index bd8b4429..00000000 Binary files a/public/textures/mcwbyg/baobab_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_modern_wardrobe.png b/public/textures/mcwbyg/baobab_modern_wardrobe.png deleted file mode 100644 index cca7c654..00000000 Binary files a/public/textures/mcwbyg/baobab_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_mystic_door.png b/public/textures/mcwbyg/baobab_mystic_door.png deleted file mode 100644 index 40ba3d99..00000000 Binary files a/public/textures/mcwbyg/baobab_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_mystic_trapdoor.png b/public/textures/mcwbyg/baobab_mystic_trapdoor.png deleted file mode 100644 index eb09a249..00000000 Binary files a/public/textures/mcwbyg/baobab_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_nether_door.png b/public/textures/mcwbyg/baobab_nether_door.png deleted file mode 100644 index df6c8acd..00000000 Binary files a/public/textures/mcwbyg/baobab_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_pane_window.png b/public/textures/mcwbyg/baobab_pane_window.png deleted file mode 100644 index eb31c5c1..00000000 Binary files a/public/textures/mcwbyg/baobab_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_paper_door.png b/public/textures/mcwbyg/baobab_paper_door.png deleted file mode 100644 index 638441e6..00000000 Binary files a/public/textures/mcwbyg/baobab_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_paper_trapdoor.png b/public/textures/mcwbyg/baobab_paper_trapdoor.png deleted file mode 100644 index 5905bf86..00000000 Binary files a/public/textures/mcwbyg/baobab_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_picket_fence.png b/public/textures/mcwbyg/baobab_picket_fence.png deleted file mode 100644 index 2908876d..00000000 Binary files a/public/textures/mcwbyg/baobab_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_plank_four_window.png b/public/textures/mcwbyg/baobab_plank_four_window.png deleted file mode 100644 index 7c4c1081..00000000 Binary files a/public/textures/mcwbyg/baobab_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_plank_pane_window.png b/public/textures/mcwbyg/baobab_plank_pane_window.png deleted file mode 100644 index cc58375d..00000000 Binary files a/public/textures/mcwbyg/baobab_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_plank_parapet.png b/public/textures/mcwbyg/baobab_plank_parapet.png deleted file mode 100644 index 5283d77e..00000000 Binary files a/public/textures/mcwbyg/baobab_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_plank_window.png b/public/textures/mcwbyg/baobab_plank_window.png deleted file mode 100644 index e9c931ce..00000000 Binary files a/public/textures/mcwbyg/baobab_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_plank_window2.png b/public/textures/mcwbyg/baobab_plank_window2.png deleted file mode 100644 index 844d55d8..00000000 Binary files a/public/textures/mcwbyg/baobab_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_planks_attic_roof.png b/public/textures/mcwbyg/baobab_planks_attic_roof.png deleted file mode 100644 index 1d0eb0b5..00000000 Binary files a/public/textures/mcwbyg/baobab_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_planks_lower_roof.png b/public/textures/mcwbyg/baobab_planks_lower_roof.png deleted file mode 100644 index cd8ae6e6..00000000 Binary files a/public/textures/mcwbyg/baobab_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_planks_path.png b/public/textures/mcwbyg/baobab_planks_path.png deleted file mode 100644 index 3e3c4a77..00000000 Binary files a/public/textures/mcwbyg/baobab_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_planks_roof.png b/public/textures/mcwbyg/baobab_planks_roof.png deleted file mode 100644 index 3aeb8a62..00000000 Binary files a/public/textures/mcwbyg/baobab_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_planks_steep_roof.png b/public/textures/mcwbyg/baobab_planks_steep_roof.png deleted file mode 100644 index e2a20d73..00000000 Binary files a/public/textures/mcwbyg/baobab_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_planks_top_roof.png b/public/textures/mcwbyg/baobab_planks_top_roof.png deleted file mode 100644 index 61a6e01f..00000000 Binary files a/public/textures/mcwbyg/baobab_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_planks_upper_lower_roof.png b/public/textures/mcwbyg/baobab_planks_upper_lower_roof.png deleted file mode 100644 index d9043c34..00000000 Binary files a/public/textures/mcwbyg/baobab_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_planks_upper_steep_roof.png b/public/textures/mcwbyg/baobab_planks_upper_steep_roof.png deleted file mode 100644 index 4dd30f78..00000000 Binary files a/public/textures/mcwbyg/baobab_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_pyramid_gate.png b/public/textures/mcwbyg/baobab_pyramid_gate.png deleted file mode 100644 index 0cb4a748..00000000 Binary files a/public/textures/mcwbyg/baobab_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_rail_bridge.png b/public/textures/mcwbyg/baobab_rail_bridge.png deleted file mode 100644 index 787278c7..00000000 Binary files a/public/textures/mcwbyg/baobab_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_ranch_trapdoor.png b/public/textures/mcwbyg/baobab_ranch_trapdoor.png deleted file mode 100644 index 5aa60348..00000000 Binary files a/public/textures/mcwbyg/baobab_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_roof.png b/public/textures/mcwbyg/baobab_roof.png deleted file mode 100644 index ad842f03..00000000 Binary files a/public/textures/mcwbyg/baobab_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_rope_bridge_stair.png b/public/textures/mcwbyg/baobab_rope_bridge_stair.png deleted file mode 100644 index bcde53bd..00000000 Binary files a/public/textures/mcwbyg/baobab_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_shutter.png b/public/textures/mcwbyg/baobab_shutter.png deleted file mode 100644 index 3ebd7c8a..00000000 Binary files a/public/textures/mcwbyg/baobab_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_stable_door.png b/public/textures/mcwbyg/baobab_stable_door.png deleted file mode 100644 index 8ee13089..00000000 Binary files a/public/textures/mcwbyg/baobab_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_stable_head_door.png b/public/textures/mcwbyg/baobab_stable_head_door.png deleted file mode 100644 index ecbfec84..00000000 Binary files a/public/textures/mcwbyg/baobab_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_steep_roof.png b/public/textures/mcwbyg/baobab_steep_roof.png deleted file mode 100644 index c7b4a608..00000000 Binary files a/public/textures/mcwbyg/baobab_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_stockade_fence.png b/public/textures/mcwbyg/baobab_stockade_fence.png deleted file mode 100644 index 8556e5c6..00000000 Binary files a/public/textures/mcwbyg/baobab_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_stool_chair.png b/public/textures/mcwbyg/baobab_stool_chair.png deleted file mode 100644 index 7fd61f9a..00000000 Binary files a/public/textures/mcwbyg/baobab_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_striped_chair.png b/public/textures/mcwbyg/baobab_striped_chair.png deleted file mode 100644 index a0d2a038..00000000 Binary files a/public/textures/mcwbyg/baobab_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_swamp_door.png b/public/textures/mcwbyg/baobab_swamp_door.png deleted file mode 100644 index d470fb06..00000000 Binary files a/public/textures/mcwbyg/baobab_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_swamp_trapdoor.png b/public/textures/mcwbyg/baobab_swamp_trapdoor.png deleted file mode 100644 index 08c83c40..00000000 Binary files a/public/textures/mcwbyg/baobab_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_table.png b/public/textures/mcwbyg/baobab_table.png deleted file mode 100644 index 5b8eb0d3..00000000 Binary files a/public/textures/mcwbyg/baobab_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_top_roof.png b/public/textures/mcwbyg/baobab_top_roof.png deleted file mode 100644 index c829c0cd..00000000 Binary files a/public/textures/mcwbyg/baobab_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_triple_drawer.png b/public/textures/mcwbyg/baobab_triple_drawer.png deleted file mode 100644 index d202bb72..00000000 Binary files a/public/textures/mcwbyg/baobab_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_tropical_door.png b/public/textures/mcwbyg/baobab_tropical_door.png deleted file mode 100644 index 159caf0d..00000000 Binary files a/public/textures/mcwbyg/baobab_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_tropical_trapdoor.png b/public/textures/mcwbyg/baobab_tropical_trapdoor.png deleted file mode 100644 index 3c2c7a27..00000000 Binary files a/public/textures/mcwbyg/baobab_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_upper_lower_roof.png b/public/textures/mcwbyg/baobab_upper_lower_roof.png deleted file mode 100644 index 57a1c2b1..00000000 Binary files a/public/textures/mcwbyg/baobab_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_upper_steep_roof.png b/public/textures/mcwbyg/baobab_upper_steep_roof.png deleted file mode 100644 index 2169a628..00000000 Binary files a/public/textures/mcwbyg/baobab_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_waffle_door.png b/public/textures/mcwbyg/baobab_waffle_door.png deleted file mode 100644 index a7fd6052..00000000 Binary files a/public/textures/mcwbyg/baobab_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_wardrobe.png b/public/textures/mcwbyg/baobab_wardrobe.png deleted file mode 100644 index c012fd46..00000000 Binary files a/public/textures/mcwbyg/baobab_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_western_door.png b/public/textures/mcwbyg/baobab_western_door.png deleted file mode 100644 index a74201fd..00000000 Binary files a/public/textures/mcwbyg/baobab_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_whispering_door.png b/public/textures/mcwbyg/baobab_whispering_door.png deleted file mode 100644 index b9dea71d..00000000 Binary files a/public/textures/mcwbyg/baobab_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_whispering_trapdoor.png b/public/textures/mcwbyg/baobab_whispering_trapdoor.png deleted file mode 100644 index 90d92548..00000000 Binary files a/public/textures/mcwbyg/baobab_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_window.png b/public/textures/mcwbyg/baobab_window.png deleted file mode 100644 index edc1e23a..00000000 Binary files a/public/textures/mcwbyg/baobab_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_window2.png b/public/textures/mcwbyg/baobab_window2.png deleted file mode 100644 index 856ca025..00000000 Binary files a/public/textures/mcwbyg/baobab_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/baobab_wired_fence.png b/public/textures/mcwbyg/baobab_wired_fence.png deleted file mode 100644 index 14cfd66d..00000000 Binary files a/public/textures/mcwbyg/baobab_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_attic_roof.png b/public/textures/mcwbyg/black_sandstone_attic_roof.png deleted file mode 100644 index fc2c0b2a..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_bridge.png b/public/textures/mcwbyg/black_sandstone_bridge.png deleted file mode 100644 index ff186501..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_bridge_pier.png b/public/textures/mcwbyg/black_sandstone_bridge_pier.png deleted file mode 100644 index 3755682b..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_bridge_stair.png b/public/textures/mcwbyg/black_sandstone_bridge_stair.png deleted file mode 100644 index b7d3b49a..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_grass_topped_wall.png b/public/textures/mcwbyg/black_sandstone_grass_topped_wall.png deleted file mode 100644 index da955149..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_lower_roof.png b/public/textures/mcwbyg/black_sandstone_lower_roof.png deleted file mode 100644 index 2328ce72..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_pillar_wall.png b/public/textures/mcwbyg/black_sandstone_pillar_wall.png deleted file mode 100644 index ba1db2c1..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_railing_gate.png b/public/textures/mcwbyg/black_sandstone_railing_gate.png deleted file mode 100644 index 97ed4103..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_roof.png b/public/textures/mcwbyg/black_sandstone_roof.png deleted file mode 100644 index 480b2ba7..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_steep_roof.png b/public/textures/mcwbyg/black_sandstone_steep_roof.png deleted file mode 100644 index a95a8c2d..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_top_roof.png b/public/textures/mcwbyg/black_sandstone_top_roof.png deleted file mode 100644 index ffef6157..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_upper_lower_roof.png b/public/textures/mcwbyg/black_sandstone_upper_lower_roof.png deleted file mode 100644 index ae3add3c..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/black_sandstone_upper_steep_roof.png b/public/textures/mcwbyg/black_sandstone_upper_steep_roof.png deleted file mode 100644 index a00a8c64..00000000 Binary files a/public/textures/mcwbyg/black_sandstone_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blooming_witch_hazel_hedge.png b/public/textures/mcwbyg/blooming_witch_hazel_hedge.png deleted file mode 100644 index ae7be513..00000000 Binary files a/public/textures/mcwbyg/blooming_witch_hazel_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_attic_roof.png b/public/textures/mcwbyg/blue_enchanted_attic_roof.png deleted file mode 100644 index 8c4b3aa8..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_bamboo_door.png b/public/textures/mcwbyg/blue_enchanted_bamboo_door.png deleted file mode 100644 index f0fade2d..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_bamboo_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_bamboo_trapdoor.png deleted file mode 100644 index a6c9e2ec..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_bark_glass_door.png b/public/textures/mcwbyg/blue_enchanted_bark_glass_door.png deleted file mode 100644 index ab11eaec..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_bark_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_bark_trapdoor.png deleted file mode 100644 index e452eb98..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_barn_door.png b/public/textures/mcwbyg/blue_enchanted_barn_door.png deleted file mode 100644 index c1842da5..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_barn_glass_door.png b/public/textures/mcwbyg/blue_enchanted_barn_glass_door.png deleted file mode 100644 index 83c3d768..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_barn_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_barn_trapdoor.png deleted file mode 100644 index 67508c88..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_barred_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_barred_trapdoor.png deleted file mode 100644 index c5d7ab6b..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_barrel_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_barrel_trapdoor.png deleted file mode 100644 index d5107969..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_beach_door.png b/public/textures/mcwbyg/blue_enchanted_beach_door.png deleted file mode 100644 index 28b3505c..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_beach_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_beach_trapdoor.png deleted file mode 100644 index 441d8962..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_blinds.png b/public/textures/mcwbyg/blue_enchanted_blinds.png deleted file mode 100644 index e1a4aaca..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_blossom_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_blossom_trapdoor.png deleted file mode 100644 index 515f3376..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_bookshelf.png b/public/textures/mcwbyg/blue_enchanted_bookshelf.png deleted file mode 100644 index 3428cf5e..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_bookshelf_cupboard.png b/public/textures/mcwbyg/blue_enchanted_bookshelf_cupboard.png deleted file mode 100644 index ee3e145c..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_bookshelf_drawer.png b/public/textures/mcwbyg/blue_enchanted_bookshelf_drawer.png deleted file mode 100644 index 8380ecbf..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_bridge_pier.png b/public/textures/mcwbyg/blue_enchanted_bridge_pier.png deleted file mode 100644 index b9a4ec4e..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_chair.png b/public/textures/mcwbyg/blue_enchanted_chair.png deleted file mode 100644 index ff231d0f..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_classic_door.png b/public/textures/mcwbyg/blue_enchanted_classic_door.png deleted file mode 100644 index 010569ec..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_classic_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_classic_trapdoor.png deleted file mode 100644 index 7469e7e1..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_coffee_table.png b/public/textures/mcwbyg/blue_enchanted_coffee_table.png deleted file mode 100644 index 55de8523..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_cottage_door.png b/public/textures/mcwbyg/blue_enchanted_cottage_door.png deleted file mode 100644 index 29c61939..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_cottage_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_cottage_trapdoor.png deleted file mode 100644 index 435cc86e..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_counter.png b/public/textures/mcwbyg/blue_enchanted_counter.png deleted file mode 100644 index 4896a3a9..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_covered_desk.png b/public/textures/mcwbyg/blue_enchanted_covered_desk.png deleted file mode 100644 index 828477b1..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_cupboard_counter.png b/public/textures/mcwbyg/blue_enchanted_cupboard_counter.png deleted file mode 100644 index 487ec6ef..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_curtain_rod.png b/public/textures/mcwbyg/blue_enchanted_curtain_rod.png deleted file mode 100644 index 822bbd73..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_curved_gate.png b/public/textures/mcwbyg/blue_enchanted_curved_gate.png deleted file mode 100644 index 87c1d22b..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_desk.png b/public/textures/mcwbyg/blue_enchanted_desk.png deleted file mode 100644 index 54e2fbca..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_double_drawer.png b/public/textures/mcwbyg/blue_enchanted_double_drawer.png deleted file mode 100644 index 49c32f57..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_double_drawer_counter.png b/public/textures/mcwbyg/blue_enchanted_double_drawer_counter.png deleted file mode 100644 index 1bc74138..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_double_kitchen_cabinet.png b/public/textures/mcwbyg/blue_enchanted_double_kitchen_cabinet.png deleted file mode 100644 index 93010e84..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_double_wardrobe.png b/public/textures/mcwbyg/blue_enchanted_double_wardrobe.png deleted file mode 100644 index 8d4f9fa2..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_drawer.png b/public/textures/mcwbyg/blue_enchanted_drawer.png deleted file mode 100644 index d32fd006..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_drawer_counter.png b/public/textures/mcwbyg/blue_enchanted_drawer_counter.png deleted file mode 100644 index 605ecb10..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_end_table.png b/public/textures/mcwbyg/blue_enchanted_end_table.png deleted file mode 100644 index bf352c3a..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_four_panel_door.png b/public/textures/mcwbyg/blue_enchanted_four_panel_door.png deleted file mode 100644 index 2ab9e9be..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_four_panel_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_four_panel_trapdoor.png deleted file mode 100644 index 939083d8..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_four_window.png b/public/textures/mcwbyg/blue_enchanted_four_window.png deleted file mode 100644 index 953fc4b8..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_glass_door.png b/public/textures/mcwbyg/blue_enchanted_glass_door.png deleted file mode 100644 index a3e9bf82..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_glass_kitchen_cabinet.png b/public/textures/mcwbyg/blue_enchanted_glass_kitchen_cabinet.png deleted file mode 100644 index 4ea618ee..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_glass_table.png b/public/textures/mcwbyg/blue_enchanted_glass_table.png deleted file mode 100644 index 5885fe39..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_glass_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_glass_trapdoor.png deleted file mode 100644 index e59aa528..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_hedge.png b/public/textures/mcwbyg/blue_enchanted_hedge.png deleted file mode 100644 index 00e8f63a..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_highley_gate.png b/public/textures/mcwbyg/blue_enchanted_highley_gate.png deleted file mode 100644 index d6b33505..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_horse_fence.png b/public/textures/mcwbyg/blue_enchanted_horse_fence.png deleted file mode 100644 index 0effbcc8..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_japanese2_door.png b/public/textures/mcwbyg/blue_enchanted_japanese2_door.png deleted file mode 100644 index b358cb12..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_japanese_door.png b/public/textures/mcwbyg/blue_enchanted_japanese_door.png deleted file mode 100644 index fc34886b..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_kitchen_cabinet.png b/public/textures/mcwbyg/blue_enchanted_kitchen_cabinet.png deleted file mode 100644 index cbaaff6e..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_large_drawer.png b/public/textures/mcwbyg/blue_enchanted_large_drawer.png deleted file mode 100644 index f8a8153a..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_log_bridge_middle.png b/public/textures/mcwbyg/blue_enchanted_log_bridge_middle.png deleted file mode 100644 index 6bc4be0c..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_log_bridge_stair.png b/public/textures/mcwbyg/blue_enchanted_log_bridge_stair.png deleted file mode 100644 index 6caf8a01..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_log_parapet.png b/public/textures/mcwbyg/blue_enchanted_log_parapet.png deleted file mode 100644 index 4886a02d..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_louvered_shutter.png b/public/textures/mcwbyg/blue_enchanted_louvered_shutter.png deleted file mode 100644 index 28ba5e00..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_lower_bookshelf_drawer.png b/public/textures/mcwbyg/blue_enchanted_lower_bookshelf_drawer.png deleted file mode 100644 index af9aaca8..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_lower_roof.png b/public/textures/mcwbyg/blue_enchanted_lower_roof.png deleted file mode 100644 index f640adab..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_lower_triple_drawer.png b/public/textures/mcwbyg/blue_enchanted_lower_triple_drawer.png deleted file mode 100644 index 794b1b46..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_modern_chair.png b/public/textures/mcwbyg/blue_enchanted_modern_chair.png deleted file mode 100644 index 579c0936..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_modern_desk.png b/public/textures/mcwbyg/blue_enchanted_modern_desk.png deleted file mode 100644 index 29067864..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_modern_door.png b/public/textures/mcwbyg/blue_enchanted_modern_door.png deleted file mode 100644 index 7088eb79..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_modern_wardrobe.png b/public/textures/mcwbyg/blue_enchanted_modern_wardrobe.png deleted file mode 100644 index c7b3ddf2..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_mystic_door.png b/public/textures/mcwbyg/blue_enchanted_mystic_door.png deleted file mode 100644 index 55fabb1f..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_mystic_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_mystic_trapdoor.png deleted file mode 100644 index 793321a1..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_nether_door.png b/public/textures/mcwbyg/blue_enchanted_nether_door.png deleted file mode 100644 index db39ef56..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_pane_window.png b/public/textures/mcwbyg/blue_enchanted_pane_window.png deleted file mode 100644 index 9262f07e..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_paper_door.png b/public/textures/mcwbyg/blue_enchanted_paper_door.png deleted file mode 100644 index c97c78e7..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_paper_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_paper_trapdoor.png deleted file mode 100644 index f3aec0d0..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_picket_fence.png b/public/textures/mcwbyg/blue_enchanted_picket_fence.png deleted file mode 100644 index 85de8b04..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_plank_four_window.png b/public/textures/mcwbyg/blue_enchanted_plank_four_window.png deleted file mode 100644 index 81d7e77b..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_plank_pane_window.png b/public/textures/mcwbyg/blue_enchanted_plank_pane_window.png deleted file mode 100644 index 588489e2..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_plank_parapet.png b/public/textures/mcwbyg/blue_enchanted_plank_parapet.png deleted file mode 100644 index 181c7060..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_plank_window.png b/public/textures/mcwbyg/blue_enchanted_plank_window.png deleted file mode 100644 index fc95ab46..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_plank_window2.png b/public/textures/mcwbyg/blue_enchanted_plank_window2.png deleted file mode 100644 index 5b6a712d..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_planks_attic_roof.png b/public/textures/mcwbyg/blue_enchanted_planks_attic_roof.png deleted file mode 100644 index 6849e613..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_planks_lower_roof.png b/public/textures/mcwbyg/blue_enchanted_planks_lower_roof.png deleted file mode 100644 index 76349c7b..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_planks_path.png b/public/textures/mcwbyg/blue_enchanted_planks_path.png deleted file mode 100644 index 2405e371..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_planks_roof.png b/public/textures/mcwbyg/blue_enchanted_planks_roof.png deleted file mode 100644 index 065d9dee..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_planks_steep_roof.png b/public/textures/mcwbyg/blue_enchanted_planks_steep_roof.png deleted file mode 100644 index 16837acf..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_planks_top_roof.png b/public/textures/mcwbyg/blue_enchanted_planks_top_roof.png deleted file mode 100644 index 3d3599a0..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_planks_upper_lower_roof.png b/public/textures/mcwbyg/blue_enchanted_planks_upper_lower_roof.png deleted file mode 100644 index bd450b4f..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_planks_upper_steep_roof.png b/public/textures/mcwbyg/blue_enchanted_planks_upper_steep_roof.png deleted file mode 100644 index 4c88afe2..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_pyramid_gate.png b/public/textures/mcwbyg/blue_enchanted_pyramid_gate.png deleted file mode 100644 index 3fe61c4f..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_rail_bridge.png b/public/textures/mcwbyg/blue_enchanted_rail_bridge.png deleted file mode 100644 index 9f334a40..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_ranch_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_ranch_trapdoor.png deleted file mode 100644 index 8b68fb6f..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_roof.png b/public/textures/mcwbyg/blue_enchanted_roof.png deleted file mode 100644 index cb89012e..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_rope_bridge_stair.png b/public/textures/mcwbyg/blue_enchanted_rope_bridge_stair.png deleted file mode 100644 index b883aceb..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_shutter.png b/public/textures/mcwbyg/blue_enchanted_shutter.png deleted file mode 100644 index 2b203d10..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_stable_door.png b/public/textures/mcwbyg/blue_enchanted_stable_door.png deleted file mode 100644 index 26535a83..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_stable_head_door.png b/public/textures/mcwbyg/blue_enchanted_stable_head_door.png deleted file mode 100644 index 401b9625..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_steep_roof.png b/public/textures/mcwbyg/blue_enchanted_steep_roof.png deleted file mode 100644 index 1eef902a..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_stockade_fence.png b/public/textures/mcwbyg/blue_enchanted_stockade_fence.png deleted file mode 100644 index f2acbf37..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_stool_chair.png b/public/textures/mcwbyg/blue_enchanted_stool_chair.png deleted file mode 100644 index 0c1aba20..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_striped_chair.png b/public/textures/mcwbyg/blue_enchanted_striped_chair.png deleted file mode 100644 index bb1a59ef..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_swamp_door.png b/public/textures/mcwbyg/blue_enchanted_swamp_door.png deleted file mode 100644 index e6c454aa..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_swamp_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_swamp_trapdoor.png deleted file mode 100644 index 98fbd09a..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_table.png b/public/textures/mcwbyg/blue_enchanted_table.png deleted file mode 100644 index 0a1c4f43..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_top_roof.png b/public/textures/mcwbyg/blue_enchanted_top_roof.png deleted file mode 100644 index 410ab1d3..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_triple_drawer.png b/public/textures/mcwbyg/blue_enchanted_triple_drawer.png deleted file mode 100644 index 932e02a0..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_tropical_door.png b/public/textures/mcwbyg/blue_enchanted_tropical_door.png deleted file mode 100644 index 2939c934..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_tropical_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_tropical_trapdoor.png deleted file mode 100644 index cb3c3090..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_upper_lower_roof.png b/public/textures/mcwbyg/blue_enchanted_upper_lower_roof.png deleted file mode 100644 index 0e1b84f9..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_upper_steep_roof.png b/public/textures/mcwbyg/blue_enchanted_upper_steep_roof.png deleted file mode 100644 index f009c754..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_waffle_door.png b/public/textures/mcwbyg/blue_enchanted_waffle_door.png deleted file mode 100644 index 15130a9f..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_wardrobe.png b/public/textures/mcwbyg/blue_enchanted_wardrobe.png deleted file mode 100644 index 626ec43e..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_western_door.png b/public/textures/mcwbyg/blue_enchanted_western_door.png deleted file mode 100644 index 63d49118..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_whispering_door.png b/public/textures/mcwbyg/blue_enchanted_whispering_door.png deleted file mode 100644 index 3dc72ae2..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_whispering_trapdoor.png b/public/textures/mcwbyg/blue_enchanted_whispering_trapdoor.png deleted file mode 100644 index c361d87f..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_window.png b/public/textures/mcwbyg/blue_enchanted_window.png deleted file mode 100644 index 06a47209..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_window2.png b/public/textures/mcwbyg/blue_enchanted_window2.png deleted file mode 100644 index 70ab666f..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_enchanted_wired_fence.png b/public/textures/mcwbyg/blue_enchanted_wired_fence.png deleted file mode 100644 index f9e37c52..00000000 Binary files a/public/textures/mcwbyg/blue_enchanted_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_attic_roof.png b/public/textures/mcwbyg/blue_sandstone_attic_roof.png deleted file mode 100644 index 708a8d1d..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_bridge.png b/public/textures/mcwbyg/blue_sandstone_bridge.png deleted file mode 100644 index 4346cfc9..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_bridge_pier.png b/public/textures/mcwbyg/blue_sandstone_bridge_pier.png deleted file mode 100644 index d07565eb..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_bridge_stair.png b/public/textures/mcwbyg/blue_sandstone_bridge_stair.png deleted file mode 100644 index 2f2e2215..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_grass_topped_wall.png b/public/textures/mcwbyg/blue_sandstone_grass_topped_wall.png deleted file mode 100644 index 95b19b98..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_lower_roof.png b/public/textures/mcwbyg/blue_sandstone_lower_roof.png deleted file mode 100644 index 787543c9..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_pillar_wall.png b/public/textures/mcwbyg/blue_sandstone_pillar_wall.png deleted file mode 100644 index 4e31d191..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_railing_gate.png b/public/textures/mcwbyg/blue_sandstone_railing_gate.png deleted file mode 100644 index 9ad4ad15..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_roof.png b/public/textures/mcwbyg/blue_sandstone_roof.png deleted file mode 100644 index 08d4bef1..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_steep_roof.png b/public/textures/mcwbyg/blue_sandstone_steep_roof.png deleted file mode 100644 index 1635d24a..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_top_roof.png b/public/textures/mcwbyg/blue_sandstone_top_roof.png deleted file mode 100644 index 2243808f..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_upper_lower_roof.png b/public/textures/mcwbyg/blue_sandstone_upper_lower_roof.png deleted file mode 100644 index 49bff4e0..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_sandstone_upper_steep_roof.png b/public/textures/mcwbyg/blue_sandstone_upper_steep_roof.png deleted file mode 100644 index 09e0e32c..00000000 Binary files a/public/textures/mcwbyg/blue_sandstone_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/blue_spruce_hedge.png b/public/textures/mcwbyg/blue_spruce_hedge.png deleted file mode 100644 index 23cce71e..00000000 Binary files a/public/textures/mcwbyg/blue_spruce_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/brown_birch_hedge.png b/public/textures/mcwbyg/brown_birch_hedge.png deleted file mode 100644 index 9926fc40..00000000 Binary files a/public/textures/mcwbyg/brown_birch_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/brown_oak_hedge.png b/public/textures/mcwbyg/brown_oak_hedge.png deleted file mode 100644 index da201e38..00000000 Binary files a/public/textures/mcwbyg/brown_oak_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_attic_roof.png b/public/textures/mcwbyg/cika_attic_roof.png deleted file mode 100644 index 3fa33545..00000000 Binary files a/public/textures/mcwbyg/cika_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_bamboo_door.png b/public/textures/mcwbyg/cika_bamboo_door.png deleted file mode 100644 index 701ac983..00000000 Binary files a/public/textures/mcwbyg/cika_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_bamboo_trapdoor.png b/public/textures/mcwbyg/cika_bamboo_trapdoor.png deleted file mode 100644 index de730e81..00000000 Binary files a/public/textures/mcwbyg/cika_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_bark_glass_door.png b/public/textures/mcwbyg/cika_bark_glass_door.png deleted file mode 100644 index 9ff0c668..00000000 Binary files a/public/textures/mcwbyg/cika_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_bark_trapdoor.png b/public/textures/mcwbyg/cika_bark_trapdoor.png deleted file mode 100644 index 1886e421..00000000 Binary files a/public/textures/mcwbyg/cika_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_barn_door.png b/public/textures/mcwbyg/cika_barn_door.png deleted file mode 100644 index 0d59afcd..00000000 Binary files a/public/textures/mcwbyg/cika_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_barn_glass_door.png b/public/textures/mcwbyg/cika_barn_glass_door.png deleted file mode 100644 index e6d5783d..00000000 Binary files a/public/textures/mcwbyg/cika_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_barn_trapdoor.png b/public/textures/mcwbyg/cika_barn_trapdoor.png deleted file mode 100644 index b3668031..00000000 Binary files a/public/textures/mcwbyg/cika_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_barred_trapdoor.png b/public/textures/mcwbyg/cika_barred_trapdoor.png deleted file mode 100644 index e7d18c8d..00000000 Binary files a/public/textures/mcwbyg/cika_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_barrel_trapdoor.png b/public/textures/mcwbyg/cika_barrel_trapdoor.png deleted file mode 100644 index 674d9614..00000000 Binary files a/public/textures/mcwbyg/cika_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_beach_door.png b/public/textures/mcwbyg/cika_beach_door.png deleted file mode 100644 index 31a2b497..00000000 Binary files a/public/textures/mcwbyg/cika_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_beach_trapdoor.png b/public/textures/mcwbyg/cika_beach_trapdoor.png deleted file mode 100644 index f6504656..00000000 Binary files a/public/textures/mcwbyg/cika_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_blinds.png b/public/textures/mcwbyg/cika_blinds.png deleted file mode 100644 index 3b31604b..00000000 Binary files a/public/textures/mcwbyg/cika_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_blossom_trapdoor.png b/public/textures/mcwbyg/cika_blossom_trapdoor.png deleted file mode 100644 index 798f1392..00000000 Binary files a/public/textures/mcwbyg/cika_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_bookshelf.png b/public/textures/mcwbyg/cika_bookshelf.png deleted file mode 100644 index 506856ac..00000000 Binary files a/public/textures/mcwbyg/cika_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_bookshelf_cupboard.png b/public/textures/mcwbyg/cika_bookshelf_cupboard.png deleted file mode 100644 index b3d6018f..00000000 Binary files a/public/textures/mcwbyg/cika_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_bookshelf_drawer.png b/public/textures/mcwbyg/cika_bookshelf_drawer.png deleted file mode 100644 index 8eea94ee..00000000 Binary files a/public/textures/mcwbyg/cika_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_bridge_pier.png b/public/textures/mcwbyg/cika_bridge_pier.png deleted file mode 100644 index 18898eaa..00000000 Binary files a/public/textures/mcwbyg/cika_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_chair.png b/public/textures/mcwbyg/cika_chair.png deleted file mode 100644 index 8c05c087..00000000 Binary files a/public/textures/mcwbyg/cika_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_classic_door.png b/public/textures/mcwbyg/cika_classic_door.png deleted file mode 100644 index 2e4845e1..00000000 Binary files a/public/textures/mcwbyg/cika_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_classic_trapdoor.png b/public/textures/mcwbyg/cika_classic_trapdoor.png deleted file mode 100644 index 2322c67f..00000000 Binary files a/public/textures/mcwbyg/cika_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_coffee_table.png b/public/textures/mcwbyg/cika_coffee_table.png deleted file mode 100644 index 17d22bd2..00000000 Binary files a/public/textures/mcwbyg/cika_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_cottage_door.png b/public/textures/mcwbyg/cika_cottage_door.png deleted file mode 100644 index e662305a..00000000 Binary files a/public/textures/mcwbyg/cika_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_cottage_trapdoor.png b/public/textures/mcwbyg/cika_cottage_trapdoor.png deleted file mode 100644 index 760e1c26..00000000 Binary files a/public/textures/mcwbyg/cika_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_counter.png b/public/textures/mcwbyg/cika_counter.png deleted file mode 100644 index cf60804f..00000000 Binary files a/public/textures/mcwbyg/cika_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_covered_desk.png b/public/textures/mcwbyg/cika_covered_desk.png deleted file mode 100644 index 11577161..00000000 Binary files a/public/textures/mcwbyg/cika_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_cupboard_counter.png b/public/textures/mcwbyg/cika_cupboard_counter.png deleted file mode 100644 index 3ca90420..00000000 Binary files a/public/textures/mcwbyg/cika_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_curtain_rod.png b/public/textures/mcwbyg/cika_curtain_rod.png deleted file mode 100644 index ebc92d20..00000000 Binary files a/public/textures/mcwbyg/cika_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_curved_gate.png b/public/textures/mcwbyg/cika_curved_gate.png deleted file mode 100644 index 2d88c0a4..00000000 Binary files a/public/textures/mcwbyg/cika_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_desk.png b/public/textures/mcwbyg/cika_desk.png deleted file mode 100644 index 7128f173..00000000 Binary files a/public/textures/mcwbyg/cika_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_double_drawer.png b/public/textures/mcwbyg/cika_double_drawer.png deleted file mode 100644 index a6f3e44b..00000000 Binary files a/public/textures/mcwbyg/cika_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_double_drawer_counter.png b/public/textures/mcwbyg/cika_double_drawer_counter.png deleted file mode 100644 index 22da0ac7..00000000 Binary files a/public/textures/mcwbyg/cika_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_double_kitchen_cabinet.png b/public/textures/mcwbyg/cika_double_kitchen_cabinet.png deleted file mode 100644 index 71e5f0d6..00000000 Binary files a/public/textures/mcwbyg/cika_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_double_wardrobe.png b/public/textures/mcwbyg/cika_double_wardrobe.png deleted file mode 100644 index eaad467f..00000000 Binary files a/public/textures/mcwbyg/cika_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_drawer.png b/public/textures/mcwbyg/cika_drawer.png deleted file mode 100644 index 7d1583fb..00000000 Binary files a/public/textures/mcwbyg/cika_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_drawer_counter.png b/public/textures/mcwbyg/cika_drawer_counter.png deleted file mode 100644 index 938f5989..00000000 Binary files a/public/textures/mcwbyg/cika_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_end_table.png b/public/textures/mcwbyg/cika_end_table.png deleted file mode 100644 index bf961552..00000000 Binary files a/public/textures/mcwbyg/cika_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_four_panel_door.png b/public/textures/mcwbyg/cika_four_panel_door.png deleted file mode 100644 index a4caed79..00000000 Binary files a/public/textures/mcwbyg/cika_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_four_panel_trapdoor.png b/public/textures/mcwbyg/cika_four_panel_trapdoor.png deleted file mode 100644 index 8511f131..00000000 Binary files a/public/textures/mcwbyg/cika_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_four_window.png b/public/textures/mcwbyg/cika_four_window.png deleted file mode 100644 index 54a4dbb1..00000000 Binary files a/public/textures/mcwbyg/cika_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_glass_door.png b/public/textures/mcwbyg/cika_glass_door.png deleted file mode 100644 index 8c2013f9..00000000 Binary files a/public/textures/mcwbyg/cika_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_glass_kitchen_cabinet.png b/public/textures/mcwbyg/cika_glass_kitchen_cabinet.png deleted file mode 100644 index 4caf80f7..00000000 Binary files a/public/textures/mcwbyg/cika_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_glass_table.png b/public/textures/mcwbyg/cika_glass_table.png deleted file mode 100644 index 8451d5a8..00000000 Binary files a/public/textures/mcwbyg/cika_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_glass_trapdoor.png b/public/textures/mcwbyg/cika_glass_trapdoor.png deleted file mode 100644 index 1fc23bd5..00000000 Binary files a/public/textures/mcwbyg/cika_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_hedge.png b/public/textures/mcwbyg/cika_hedge.png deleted file mode 100644 index c8013460..00000000 Binary files a/public/textures/mcwbyg/cika_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_highley_gate.png b/public/textures/mcwbyg/cika_highley_gate.png deleted file mode 100644 index 7f462176..00000000 Binary files a/public/textures/mcwbyg/cika_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_horse_fence.png b/public/textures/mcwbyg/cika_horse_fence.png deleted file mode 100644 index aa06a7da..00000000 Binary files a/public/textures/mcwbyg/cika_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_japanese2_door.png b/public/textures/mcwbyg/cika_japanese2_door.png deleted file mode 100644 index 9a6311ff..00000000 Binary files a/public/textures/mcwbyg/cika_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_japanese_door.png b/public/textures/mcwbyg/cika_japanese_door.png deleted file mode 100644 index 85f16991..00000000 Binary files a/public/textures/mcwbyg/cika_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_kitchen_cabinet.png b/public/textures/mcwbyg/cika_kitchen_cabinet.png deleted file mode 100644 index 188cd30c..00000000 Binary files a/public/textures/mcwbyg/cika_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_large_drawer.png b/public/textures/mcwbyg/cika_large_drawer.png deleted file mode 100644 index 327f56fa..00000000 Binary files a/public/textures/mcwbyg/cika_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_log_bridge_middle.png b/public/textures/mcwbyg/cika_log_bridge_middle.png deleted file mode 100644 index 2a3f5eb0..00000000 Binary files a/public/textures/mcwbyg/cika_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_log_bridge_stair.png b/public/textures/mcwbyg/cika_log_bridge_stair.png deleted file mode 100644 index e497eba7..00000000 Binary files a/public/textures/mcwbyg/cika_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_log_parapet.png b/public/textures/mcwbyg/cika_log_parapet.png deleted file mode 100644 index 0b423488..00000000 Binary files a/public/textures/mcwbyg/cika_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_louvered_shutter.png b/public/textures/mcwbyg/cika_louvered_shutter.png deleted file mode 100644 index 84184ee9..00000000 Binary files a/public/textures/mcwbyg/cika_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_lower_bookshelf_drawer.png b/public/textures/mcwbyg/cika_lower_bookshelf_drawer.png deleted file mode 100644 index b3098965..00000000 Binary files a/public/textures/mcwbyg/cika_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_lower_roof.png b/public/textures/mcwbyg/cika_lower_roof.png deleted file mode 100644 index 6557e836..00000000 Binary files a/public/textures/mcwbyg/cika_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_lower_triple_drawer.png b/public/textures/mcwbyg/cika_lower_triple_drawer.png deleted file mode 100644 index 3a71bac3..00000000 Binary files a/public/textures/mcwbyg/cika_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_modern_chair.png b/public/textures/mcwbyg/cika_modern_chair.png deleted file mode 100644 index 3f9cf5f6..00000000 Binary files a/public/textures/mcwbyg/cika_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_modern_desk.png b/public/textures/mcwbyg/cika_modern_desk.png deleted file mode 100644 index 9d7659a5..00000000 Binary files a/public/textures/mcwbyg/cika_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_modern_door.png b/public/textures/mcwbyg/cika_modern_door.png deleted file mode 100644 index 6770276c..00000000 Binary files a/public/textures/mcwbyg/cika_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_modern_wardrobe.png b/public/textures/mcwbyg/cika_modern_wardrobe.png deleted file mode 100644 index 6f8f1fa8..00000000 Binary files a/public/textures/mcwbyg/cika_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_mystic_door.png b/public/textures/mcwbyg/cika_mystic_door.png deleted file mode 100644 index 0c2366fd..00000000 Binary files a/public/textures/mcwbyg/cika_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_mystic_trapdoor.png b/public/textures/mcwbyg/cika_mystic_trapdoor.png deleted file mode 100644 index 15c4e3ff..00000000 Binary files a/public/textures/mcwbyg/cika_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_nether_door.png b/public/textures/mcwbyg/cika_nether_door.png deleted file mode 100644 index eba01232..00000000 Binary files a/public/textures/mcwbyg/cika_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_pane_window.png b/public/textures/mcwbyg/cika_pane_window.png deleted file mode 100644 index 6faae832..00000000 Binary files a/public/textures/mcwbyg/cika_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_paper_door.png b/public/textures/mcwbyg/cika_paper_door.png deleted file mode 100644 index 93a760db..00000000 Binary files a/public/textures/mcwbyg/cika_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_paper_trapdoor.png b/public/textures/mcwbyg/cika_paper_trapdoor.png deleted file mode 100644 index 374a968a..00000000 Binary files a/public/textures/mcwbyg/cika_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_picket_fence.png b/public/textures/mcwbyg/cika_picket_fence.png deleted file mode 100644 index ea98db6e..00000000 Binary files a/public/textures/mcwbyg/cika_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_plank_four_window.png b/public/textures/mcwbyg/cika_plank_four_window.png deleted file mode 100644 index 48d477b6..00000000 Binary files a/public/textures/mcwbyg/cika_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_plank_pane_window.png b/public/textures/mcwbyg/cika_plank_pane_window.png deleted file mode 100644 index 88f1a98c..00000000 Binary files a/public/textures/mcwbyg/cika_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_plank_parapet.png b/public/textures/mcwbyg/cika_plank_parapet.png deleted file mode 100644 index 779d6118..00000000 Binary files a/public/textures/mcwbyg/cika_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_plank_window.png b/public/textures/mcwbyg/cika_plank_window.png deleted file mode 100644 index eab6c964..00000000 Binary files a/public/textures/mcwbyg/cika_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_plank_window2.png b/public/textures/mcwbyg/cika_plank_window2.png deleted file mode 100644 index 1114a744..00000000 Binary files a/public/textures/mcwbyg/cika_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_planks_attic_roof.png b/public/textures/mcwbyg/cika_planks_attic_roof.png deleted file mode 100644 index 8ba0a414..00000000 Binary files a/public/textures/mcwbyg/cika_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_planks_lower_roof.png b/public/textures/mcwbyg/cika_planks_lower_roof.png deleted file mode 100644 index 5f953988..00000000 Binary files a/public/textures/mcwbyg/cika_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_planks_path.png b/public/textures/mcwbyg/cika_planks_path.png deleted file mode 100644 index 54ea023f..00000000 Binary files a/public/textures/mcwbyg/cika_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_planks_roof.png b/public/textures/mcwbyg/cika_planks_roof.png deleted file mode 100644 index e31dfa2d..00000000 Binary files a/public/textures/mcwbyg/cika_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_planks_steep_roof.png b/public/textures/mcwbyg/cika_planks_steep_roof.png deleted file mode 100644 index 87c142d3..00000000 Binary files a/public/textures/mcwbyg/cika_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_planks_top_roof.png b/public/textures/mcwbyg/cika_planks_top_roof.png deleted file mode 100644 index 118b25c6..00000000 Binary files a/public/textures/mcwbyg/cika_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_planks_upper_lower_roof.png b/public/textures/mcwbyg/cika_planks_upper_lower_roof.png deleted file mode 100644 index d8a9d37d..00000000 Binary files a/public/textures/mcwbyg/cika_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_planks_upper_steep_roof.png b/public/textures/mcwbyg/cika_planks_upper_steep_roof.png deleted file mode 100644 index bb7e4628..00000000 Binary files a/public/textures/mcwbyg/cika_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_pyramid_gate.png b/public/textures/mcwbyg/cika_pyramid_gate.png deleted file mode 100644 index d51c7b7a..00000000 Binary files a/public/textures/mcwbyg/cika_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_rail_bridge.png b/public/textures/mcwbyg/cika_rail_bridge.png deleted file mode 100644 index c8c09e39..00000000 Binary files a/public/textures/mcwbyg/cika_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_ranch_trapdoor.png b/public/textures/mcwbyg/cika_ranch_trapdoor.png deleted file mode 100644 index 93e0c6be..00000000 Binary files a/public/textures/mcwbyg/cika_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_roof.png b/public/textures/mcwbyg/cika_roof.png deleted file mode 100644 index a2efc4d5..00000000 Binary files a/public/textures/mcwbyg/cika_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_rope_bridge_stair.png b/public/textures/mcwbyg/cika_rope_bridge_stair.png deleted file mode 100644 index 4208cfdb..00000000 Binary files a/public/textures/mcwbyg/cika_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_shutter.png b/public/textures/mcwbyg/cika_shutter.png deleted file mode 100644 index 671302d4..00000000 Binary files a/public/textures/mcwbyg/cika_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_stable_door.png b/public/textures/mcwbyg/cika_stable_door.png deleted file mode 100644 index ce616692..00000000 Binary files a/public/textures/mcwbyg/cika_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_stable_head_door.png b/public/textures/mcwbyg/cika_stable_head_door.png deleted file mode 100644 index fc716522..00000000 Binary files a/public/textures/mcwbyg/cika_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_steep_roof.png b/public/textures/mcwbyg/cika_steep_roof.png deleted file mode 100644 index 69ecc6c2..00000000 Binary files a/public/textures/mcwbyg/cika_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_stockade_fence.png b/public/textures/mcwbyg/cika_stockade_fence.png deleted file mode 100644 index ad648990..00000000 Binary files a/public/textures/mcwbyg/cika_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_stool_chair.png b/public/textures/mcwbyg/cika_stool_chair.png deleted file mode 100644 index c2032c26..00000000 Binary files a/public/textures/mcwbyg/cika_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_striped_chair.png b/public/textures/mcwbyg/cika_striped_chair.png deleted file mode 100644 index 1a62e49e..00000000 Binary files a/public/textures/mcwbyg/cika_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_swamp_door.png b/public/textures/mcwbyg/cika_swamp_door.png deleted file mode 100644 index 58909fcf..00000000 Binary files a/public/textures/mcwbyg/cika_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_swamp_trapdoor.png b/public/textures/mcwbyg/cika_swamp_trapdoor.png deleted file mode 100644 index 7b20c1b6..00000000 Binary files a/public/textures/mcwbyg/cika_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_table.png b/public/textures/mcwbyg/cika_table.png deleted file mode 100644 index 36046861..00000000 Binary files a/public/textures/mcwbyg/cika_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_top_roof.png b/public/textures/mcwbyg/cika_top_roof.png deleted file mode 100644 index 3c539409..00000000 Binary files a/public/textures/mcwbyg/cika_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_triple_drawer.png b/public/textures/mcwbyg/cika_triple_drawer.png deleted file mode 100644 index 6f0caf7d..00000000 Binary files a/public/textures/mcwbyg/cika_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_tropical_door.png b/public/textures/mcwbyg/cika_tropical_door.png deleted file mode 100644 index dd46fa28..00000000 Binary files a/public/textures/mcwbyg/cika_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_tropical_trapdoor.png b/public/textures/mcwbyg/cika_tropical_trapdoor.png deleted file mode 100644 index e41b78eb..00000000 Binary files a/public/textures/mcwbyg/cika_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_upper_lower_roof.png b/public/textures/mcwbyg/cika_upper_lower_roof.png deleted file mode 100644 index dbdd845c..00000000 Binary files a/public/textures/mcwbyg/cika_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_upper_steep_roof.png b/public/textures/mcwbyg/cika_upper_steep_roof.png deleted file mode 100644 index 13fecc6e..00000000 Binary files a/public/textures/mcwbyg/cika_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_waffle_door.png b/public/textures/mcwbyg/cika_waffle_door.png deleted file mode 100644 index a3a732a5..00000000 Binary files a/public/textures/mcwbyg/cika_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_wardrobe.png b/public/textures/mcwbyg/cika_wardrobe.png deleted file mode 100644 index b27e5e41..00000000 Binary files a/public/textures/mcwbyg/cika_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_western_door.png b/public/textures/mcwbyg/cika_western_door.png deleted file mode 100644 index 2a221058..00000000 Binary files a/public/textures/mcwbyg/cika_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_whispering_door.png b/public/textures/mcwbyg/cika_whispering_door.png deleted file mode 100644 index e2e7c69c..00000000 Binary files a/public/textures/mcwbyg/cika_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_whispering_trapdoor.png b/public/textures/mcwbyg/cika_whispering_trapdoor.png deleted file mode 100644 index ea649259..00000000 Binary files a/public/textures/mcwbyg/cika_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_window.png b/public/textures/mcwbyg/cika_window.png deleted file mode 100644 index 693c4e12..00000000 Binary files a/public/textures/mcwbyg/cika_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_window2.png b/public/textures/mcwbyg/cika_window2.png deleted file mode 100644 index 16327210..00000000 Binary files a/public/textures/mcwbyg/cika_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/cika_wired_fence.png b/public/textures/mcwbyg/cika_wired_fence.png deleted file mode 100644 index 7a36225b..00000000 Binary files a/public/textures/mcwbyg/cika_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_attic_roof.png b/public/textures/mcwbyg/cypress_attic_roof.png deleted file mode 100644 index b94382d4..00000000 Binary files a/public/textures/mcwbyg/cypress_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_bamboo_door.png b/public/textures/mcwbyg/cypress_bamboo_door.png deleted file mode 100644 index 378fbe2d..00000000 Binary files a/public/textures/mcwbyg/cypress_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_bamboo_trapdoor.png b/public/textures/mcwbyg/cypress_bamboo_trapdoor.png deleted file mode 100644 index a8a76e3f..00000000 Binary files a/public/textures/mcwbyg/cypress_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_bark_glass_door.png b/public/textures/mcwbyg/cypress_bark_glass_door.png deleted file mode 100644 index 2b65b04a..00000000 Binary files a/public/textures/mcwbyg/cypress_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_bark_trapdoor.png b/public/textures/mcwbyg/cypress_bark_trapdoor.png deleted file mode 100644 index df48c2f8..00000000 Binary files a/public/textures/mcwbyg/cypress_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_barn_door.png b/public/textures/mcwbyg/cypress_barn_door.png deleted file mode 100644 index 0e1323f3..00000000 Binary files a/public/textures/mcwbyg/cypress_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_barn_glass_door.png b/public/textures/mcwbyg/cypress_barn_glass_door.png deleted file mode 100644 index 64e95d3c..00000000 Binary files a/public/textures/mcwbyg/cypress_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_barn_trapdoor.png b/public/textures/mcwbyg/cypress_barn_trapdoor.png deleted file mode 100644 index 5ffb3d7e..00000000 Binary files a/public/textures/mcwbyg/cypress_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_barred_trapdoor.png b/public/textures/mcwbyg/cypress_barred_trapdoor.png deleted file mode 100644 index ad271e1e..00000000 Binary files a/public/textures/mcwbyg/cypress_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_barrel_trapdoor.png b/public/textures/mcwbyg/cypress_barrel_trapdoor.png deleted file mode 100644 index db097d65..00000000 Binary files a/public/textures/mcwbyg/cypress_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_beach_door.png b/public/textures/mcwbyg/cypress_beach_door.png deleted file mode 100644 index e78732b9..00000000 Binary files a/public/textures/mcwbyg/cypress_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_beach_trapdoor.png b/public/textures/mcwbyg/cypress_beach_trapdoor.png deleted file mode 100644 index 5b25f7e4..00000000 Binary files a/public/textures/mcwbyg/cypress_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_blinds.png b/public/textures/mcwbyg/cypress_blinds.png deleted file mode 100644 index 62f977fb..00000000 Binary files a/public/textures/mcwbyg/cypress_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_blossom_trapdoor.png b/public/textures/mcwbyg/cypress_blossom_trapdoor.png deleted file mode 100644 index 18cbe578..00000000 Binary files a/public/textures/mcwbyg/cypress_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_bookshelf.png b/public/textures/mcwbyg/cypress_bookshelf.png deleted file mode 100644 index 8d61a8f9..00000000 Binary files a/public/textures/mcwbyg/cypress_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_bookshelf_cupboard.png b/public/textures/mcwbyg/cypress_bookshelf_cupboard.png deleted file mode 100644 index 0e819911..00000000 Binary files a/public/textures/mcwbyg/cypress_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_bookshelf_drawer.png b/public/textures/mcwbyg/cypress_bookshelf_drawer.png deleted file mode 100644 index 9e3c40b7..00000000 Binary files a/public/textures/mcwbyg/cypress_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_bridge_pier.png b/public/textures/mcwbyg/cypress_bridge_pier.png deleted file mode 100644 index 32099a11..00000000 Binary files a/public/textures/mcwbyg/cypress_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_chair.png b/public/textures/mcwbyg/cypress_chair.png deleted file mode 100644 index ce7a67bb..00000000 Binary files a/public/textures/mcwbyg/cypress_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_classic_door.png b/public/textures/mcwbyg/cypress_classic_door.png deleted file mode 100644 index 4f0d42fb..00000000 Binary files a/public/textures/mcwbyg/cypress_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_classic_trapdoor.png b/public/textures/mcwbyg/cypress_classic_trapdoor.png deleted file mode 100644 index 26f58fbb..00000000 Binary files a/public/textures/mcwbyg/cypress_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_coffee_table.png b/public/textures/mcwbyg/cypress_coffee_table.png deleted file mode 100644 index 37d2e9ce..00000000 Binary files a/public/textures/mcwbyg/cypress_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_cottage_door.png b/public/textures/mcwbyg/cypress_cottage_door.png deleted file mode 100644 index 4419b0d6..00000000 Binary files a/public/textures/mcwbyg/cypress_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_cottage_trapdoor.png b/public/textures/mcwbyg/cypress_cottage_trapdoor.png deleted file mode 100644 index 04395f54..00000000 Binary files a/public/textures/mcwbyg/cypress_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_counter.png b/public/textures/mcwbyg/cypress_counter.png deleted file mode 100644 index 2c2ecf56..00000000 Binary files a/public/textures/mcwbyg/cypress_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_covered_desk.png b/public/textures/mcwbyg/cypress_covered_desk.png deleted file mode 100644 index f953f113..00000000 Binary files a/public/textures/mcwbyg/cypress_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_cupboard_counter.png b/public/textures/mcwbyg/cypress_cupboard_counter.png deleted file mode 100644 index d3890471..00000000 Binary files a/public/textures/mcwbyg/cypress_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_curtain_rod.png b/public/textures/mcwbyg/cypress_curtain_rod.png deleted file mode 100644 index e7a54aa7..00000000 Binary files a/public/textures/mcwbyg/cypress_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_curved_gate.png b/public/textures/mcwbyg/cypress_curved_gate.png deleted file mode 100644 index a176d2b4..00000000 Binary files a/public/textures/mcwbyg/cypress_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_desk.png b/public/textures/mcwbyg/cypress_desk.png deleted file mode 100644 index e111ac32..00000000 Binary files a/public/textures/mcwbyg/cypress_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_double_drawer.png b/public/textures/mcwbyg/cypress_double_drawer.png deleted file mode 100644 index f6a92904..00000000 Binary files a/public/textures/mcwbyg/cypress_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_double_drawer_counter.png b/public/textures/mcwbyg/cypress_double_drawer_counter.png deleted file mode 100644 index 860509e3..00000000 Binary files a/public/textures/mcwbyg/cypress_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_double_kitchen_cabinet.png b/public/textures/mcwbyg/cypress_double_kitchen_cabinet.png deleted file mode 100644 index ea477fc3..00000000 Binary files a/public/textures/mcwbyg/cypress_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_double_wardrobe.png b/public/textures/mcwbyg/cypress_double_wardrobe.png deleted file mode 100644 index c75fb6d8..00000000 Binary files a/public/textures/mcwbyg/cypress_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_drawer.png b/public/textures/mcwbyg/cypress_drawer.png deleted file mode 100644 index 91da7992..00000000 Binary files a/public/textures/mcwbyg/cypress_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_drawer_counter.png b/public/textures/mcwbyg/cypress_drawer_counter.png deleted file mode 100644 index 7478ac3e..00000000 Binary files a/public/textures/mcwbyg/cypress_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_end_table.png b/public/textures/mcwbyg/cypress_end_table.png deleted file mode 100644 index 30311334..00000000 Binary files a/public/textures/mcwbyg/cypress_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_four_panel_door.png b/public/textures/mcwbyg/cypress_four_panel_door.png deleted file mode 100644 index cbbfc011..00000000 Binary files a/public/textures/mcwbyg/cypress_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_four_panel_trapdoor.png b/public/textures/mcwbyg/cypress_four_panel_trapdoor.png deleted file mode 100644 index 94874153..00000000 Binary files a/public/textures/mcwbyg/cypress_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_four_window.png b/public/textures/mcwbyg/cypress_four_window.png deleted file mode 100644 index d0f4a048..00000000 Binary files a/public/textures/mcwbyg/cypress_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_glass_door.png b/public/textures/mcwbyg/cypress_glass_door.png deleted file mode 100644 index dab219a9..00000000 Binary files a/public/textures/mcwbyg/cypress_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_glass_kitchen_cabinet.png b/public/textures/mcwbyg/cypress_glass_kitchen_cabinet.png deleted file mode 100644 index 6c5be529..00000000 Binary files a/public/textures/mcwbyg/cypress_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_glass_table.png b/public/textures/mcwbyg/cypress_glass_table.png deleted file mode 100644 index 35c7491d..00000000 Binary files a/public/textures/mcwbyg/cypress_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_glass_trapdoor.png b/public/textures/mcwbyg/cypress_glass_trapdoor.png deleted file mode 100644 index 6c0cd313..00000000 Binary files a/public/textures/mcwbyg/cypress_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_hedge.png b/public/textures/mcwbyg/cypress_hedge.png deleted file mode 100644 index 8c043920..00000000 Binary files a/public/textures/mcwbyg/cypress_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_highley_gate.png b/public/textures/mcwbyg/cypress_highley_gate.png deleted file mode 100644 index ffc9a2fe..00000000 Binary files a/public/textures/mcwbyg/cypress_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_horse_fence.png b/public/textures/mcwbyg/cypress_horse_fence.png deleted file mode 100644 index d0a24cf8..00000000 Binary files a/public/textures/mcwbyg/cypress_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_japanese2_door.png b/public/textures/mcwbyg/cypress_japanese2_door.png deleted file mode 100644 index ca273b7e..00000000 Binary files a/public/textures/mcwbyg/cypress_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_japanese_door.png b/public/textures/mcwbyg/cypress_japanese_door.png deleted file mode 100644 index 756071e9..00000000 Binary files a/public/textures/mcwbyg/cypress_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_kitchen_cabinet.png b/public/textures/mcwbyg/cypress_kitchen_cabinet.png deleted file mode 100644 index 20c8dd64..00000000 Binary files a/public/textures/mcwbyg/cypress_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_large_drawer.png b/public/textures/mcwbyg/cypress_large_drawer.png deleted file mode 100644 index 1c55343a..00000000 Binary files a/public/textures/mcwbyg/cypress_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_log_bridge_middle.png b/public/textures/mcwbyg/cypress_log_bridge_middle.png deleted file mode 100644 index 7564df35..00000000 Binary files a/public/textures/mcwbyg/cypress_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_log_bridge_stair.png b/public/textures/mcwbyg/cypress_log_bridge_stair.png deleted file mode 100644 index 35be33ba..00000000 Binary files a/public/textures/mcwbyg/cypress_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_log_parapet.png b/public/textures/mcwbyg/cypress_log_parapet.png deleted file mode 100644 index c6f9b59b..00000000 Binary files a/public/textures/mcwbyg/cypress_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_louvered_shutter.png b/public/textures/mcwbyg/cypress_louvered_shutter.png deleted file mode 100644 index 4b802e92..00000000 Binary files a/public/textures/mcwbyg/cypress_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_lower_bookshelf_drawer.png b/public/textures/mcwbyg/cypress_lower_bookshelf_drawer.png deleted file mode 100644 index 50ea326b..00000000 Binary files a/public/textures/mcwbyg/cypress_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_lower_roof.png b/public/textures/mcwbyg/cypress_lower_roof.png deleted file mode 100644 index 67323868..00000000 Binary files a/public/textures/mcwbyg/cypress_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_lower_triple_drawer.png b/public/textures/mcwbyg/cypress_lower_triple_drawer.png deleted file mode 100644 index 2da3854b..00000000 Binary files a/public/textures/mcwbyg/cypress_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_modern_chair.png b/public/textures/mcwbyg/cypress_modern_chair.png deleted file mode 100644 index 24835d2c..00000000 Binary files a/public/textures/mcwbyg/cypress_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_modern_desk.png b/public/textures/mcwbyg/cypress_modern_desk.png deleted file mode 100644 index e49bfaf7..00000000 Binary files a/public/textures/mcwbyg/cypress_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_modern_door.png b/public/textures/mcwbyg/cypress_modern_door.png deleted file mode 100644 index 21bbe9df..00000000 Binary files a/public/textures/mcwbyg/cypress_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_modern_wardrobe.png b/public/textures/mcwbyg/cypress_modern_wardrobe.png deleted file mode 100644 index 21ec6fff..00000000 Binary files a/public/textures/mcwbyg/cypress_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_mystic_door.png b/public/textures/mcwbyg/cypress_mystic_door.png deleted file mode 100644 index 75542802..00000000 Binary files a/public/textures/mcwbyg/cypress_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_mystic_trapdoor.png b/public/textures/mcwbyg/cypress_mystic_trapdoor.png deleted file mode 100644 index 8f033ad7..00000000 Binary files a/public/textures/mcwbyg/cypress_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_nether_door.png b/public/textures/mcwbyg/cypress_nether_door.png deleted file mode 100644 index 7ddacbce..00000000 Binary files a/public/textures/mcwbyg/cypress_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_pane_window.png b/public/textures/mcwbyg/cypress_pane_window.png deleted file mode 100644 index 90ce716c..00000000 Binary files a/public/textures/mcwbyg/cypress_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_paper_door.png b/public/textures/mcwbyg/cypress_paper_door.png deleted file mode 100644 index 5bdbc3de..00000000 Binary files a/public/textures/mcwbyg/cypress_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_paper_trapdoor.png b/public/textures/mcwbyg/cypress_paper_trapdoor.png deleted file mode 100644 index 391722cf..00000000 Binary files a/public/textures/mcwbyg/cypress_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_picket_fence.png b/public/textures/mcwbyg/cypress_picket_fence.png deleted file mode 100644 index ec0c1c00..00000000 Binary files a/public/textures/mcwbyg/cypress_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_plank_four_window.png b/public/textures/mcwbyg/cypress_plank_four_window.png deleted file mode 100644 index b1a82c8c..00000000 Binary files a/public/textures/mcwbyg/cypress_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_plank_pane_window.png b/public/textures/mcwbyg/cypress_plank_pane_window.png deleted file mode 100644 index ba8967fa..00000000 Binary files a/public/textures/mcwbyg/cypress_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_plank_parapet.png b/public/textures/mcwbyg/cypress_plank_parapet.png deleted file mode 100644 index 6b798b3b..00000000 Binary files a/public/textures/mcwbyg/cypress_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_plank_window.png b/public/textures/mcwbyg/cypress_plank_window.png deleted file mode 100644 index 11ac4bb5..00000000 Binary files a/public/textures/mcwbyg/cypress_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_plank_window2.png b/public/textures/mcwbyg/cypress_plank_window2.png deleted file mode 100644 index b69bdf97..00000000 Binary files a/public/textures/mcwbyg/cypress_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_planks_attic_roof.png b/public/textures/mcwbyg/cypress_planks_attic_roof.png deleted file mode 100644 index 25e3f6b5..00000000 Binary files a/public/textures/mcwbyg/cypress_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_planks_lower_roof.png b/public/textures/mcwbyg/cypress_planks_lower_roof.png deleted file mode 100644 index 6ff334fe..00000000 Binary files a/public/textures/mcwbyg/cypress_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_planks_path.png b/public/textures/mcwbyg/cypress_planks_path.png deleted file mode 100644 index b952e327..00000000 Binary files a/public/textures/mcwbyg/cypress_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_planks_roof.png b/public/textures/mcwbyg/cypress_planks_roof.png deleted file mode 100644 index ee180e0a..00000000 Binary files a/public/textures/mcwbyg/cypress_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_planks_steep_roof.png b/public/textures/mcwbyg/cypress_planks_steep_roof.png deleted file mode 100644 index 8dc1ab9f..00000000 Binary files a/public/textures/mcwbyg/cypress_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_planks_top_roof.png b/public/textures/mcwbyg/cypress_planks_top_roof.png deleted file mode 100644 index bb8fb452..00000000 Binary files a/public/textures/mcwbyg/cypress_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_planks_upper_lower_roof.png b/public/textures/mcwbyg/cypress_planks_upper_lower_roof.png deleted file mode 100644 index 07aace15..00000000 Binary files a/public/textures/mcwbyg/cypress_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_planks_upper_steep_roof.png b/public/textures/mcwbyg/cypress_planks_upper_steep_roof.png deleted file mode 100644 index 60fd13b7..00000000 Binary files a/public/textures/mcwbyg/cypress_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_pyramid_gate.png b/public/textures/mcwbyg/cypress_pyramid_gate.png deleted file mode 100644 index 698270d1..00000000 Binary files a/public/textures/mcwbyg/cypress_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_rail_bridge.png b/public/textures/mcwbyg/cypress_rail_bridge.png deleted file mode 100644 index 2ce46e71..00000000 Binary files a/public/textures/mcwbyg/cypress_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_ranch_trapdoor.png b/public/textures/mcwbyg/cypress_ranch_trapdoor.png deleted file mode 100644 index 44b403f4..00000000 Binary files a/public/textures/mcwbyg/cypress_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_roof.png b/public/textures/mcwbyg/cypress_roof.png deleted file mode 100644 index 03500308..00000000 Binary files a/public/textures/mcwbyg/cypress_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_rope_bridge_stair.png b/public/textures/mcwbyg/cypress_rope_bridge_stair.png deleted file mode 100644 index 39d83b0e..00000000 Binary files a/public/textures/mcwbyg/cypress_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_shutter.png b/public/textures/mcwbyg/cypress_shutter.png deleted file mode 100644 index 8417acb1..00000000 Binary files a/public/textures/mcwbyg/cypress_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_stable_door.png b/public/textures/mcwbyg/cypress_stable_door.png deleted file mode 100644 index dc01bcbe..00000000 Binary files a/public/textures/mcwbyg/cypress_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_stable_head_door.png b/public/textures/mcwbyg/cypress_stable_head_door.png deleted file mode 100644 index 35085d42..00000000 Binary files a/public/textures/mcwbyg/cypress_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_steep_roof.png b/public/textures/mcwbyg/cypress_steep_roof.png deleted file mode 100644 index 5afa9ea3..00000000 Binary files a/public/textures/mcwbyg/cypress_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_stockade_fence.png b/public/textures/mcwbyg/cypress_stockade_fence.png deleted file mode 100644 index 2fbb63d3..00000000 Binary files a/public/textures/mcwbyg/cypress_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_stool_chair.png b/public/textures/mcwbyg/cypress_stool_chair.png deleted file mode 100644 index 67c60068..00000000 Binary files a/public/textures/mcwbyg/cypress_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_striped_chair.png b/public/textures/mcwbyg/cypress_striped_chair.png deleted file mode 100644 index ff2fb056..00000000 Binary files a/public/textures/mcwbyg/cypress_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_swamp_door.png b/public/textures/mcwbyg/cypress_swamp_door.png deleted file mode 100644 index 4c5241fe..00000000 Binary files a/public/textures/mcwbyg/cypress_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_swamp_trapdoor.png b/public/textures/mcwbyg/cypress_swamp_trapdoor.png deleted file mode 100644 index eb266cab..00000000 Binary files a/public/textures/mcwbyg/cypress_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_table.png b/public/textures/mcwbyg/cypress_table.png deleted file mode 100644 index cc4b25f3..00000000 Binary files a/public/textures/mcwbyg/cypress_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_top_roof.png b/public/textures/mcwbyg/cypress_top_roof.png deleted file mode 100644 index a0eb243e..00000000 Binary files a/public/textures/mcwbyg/cypress_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_triple_drawer.png b/public/textures/mcwbyg/cypress_triple_drawer.png deleted file mode 100644 index aee5964c..00000000 Binary files a/public/textures/mcwbyg/cypress_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_tropical_door.png b/public/textures/mcwbyg/cypress_tropical_door.png deleted file mode 100644 index a87e16b7..00000000 Binary files a/public/textures/mcwbyg/cypress_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_tropical_trapdoor.png b/public/textures/mcwbyg/cypress_tropical_trapdoor.png deleted file mode 100644 index 5dcc11f8..00000000 Binary files a/public/textures/mcwbyg/cypress_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_upper_lower_roof.png b/public/textures/mcwbyg/cypress_upper_lower_roof.png deleted file mode 100644 index c995cb5e..00000000 Binary files a/public/textures/mcwbyg/cypress_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_upper_steep_roof.png b/public/textures/mcwbyg/cypress_upper_steep_roof.png deleted file mode 100644 index 26ad61be..00000000 Binary files a/public/textures/mcwbyg/cypress_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_waffle_door.png b/public/textures/mcwbyg/cypress_waffle_door.png deleted file mode 100644 index b6336f56..00000000 Binary files a/public/textures/mcwbyg/cypress_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_wardrobe.png b/public/textures/mcwbyg/cypress_wardrobe.png deleted file mode 100644 index 8f975518..00000000 Binary files a/public/textures/mcwbyg/cypress_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_western_door.png b/public/textures/mcwbyg/cypress_western_door.png deleted file mode 100644 index 439494df..00000000 Binary files a/public/textures/mcwbyg/cypress_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_whispering_door.png b/public/textures/mcwbyg/cypress_whispering_door.png deleted file mode 100644 index ef66e07b..00000000 Binary files a/public/textures/mcwbyg/cypress_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_whispering_trapdoor.png b/public/textures/mcwbyg/cypress_whispering_trapdoor.png deleted file mode 100644 index a8035bde..00000000 Binary files a/public/textures/mcwbyg/cypress_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_window.png b/public/textures/mcwbyg/cypress_window.png deleted file mode 100644 index 48701e32..00000000 Binary files a/public/textures/mcwbyg/cypress_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_window2.png b/public/textures/mcwbyg/cypress_window2.png deleted file mode 100644 index 46451c2c..00000000 Binary files a/public/textures/mcwbyg/cypress_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/cypress_wired_fence.png b/public/textures/mcwbyg/cypress_wired_fence.png deleted file mode 100644 index f7f6dc6c..00000000 Binary files a/public/textures/mcwbyg/cypress_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_attic_roof.png b/public/textures/mcwbyg/dacite_bricks_attic_roof.png deleted file mode 100644 index 066f27f9..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_bridge.png b/public/textures/mcwbyg/dacite_bricks_bridge.png deleted file mode 100644 index c9fa66ba..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_bridge_pier.png b/public/textures/mcwbyg/dacite_bricks_bridge_pier.png deleted file mode 100644 index c30d9a3d..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_bridge_stair.png b/public/textures/mcwbyg/dacite_bricks_bridge_stair.png deleted file mode 100644 index 9f227d5d..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_grass_topped_wall.png b/public/textures/mcwbyg/dacite_bricks_grass_topped_wall.png deleted file mode 100644 index 50ce52a8..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_lower_roof.png b/public/textures/mcwbyg/dacite_bricks_lower_roof.png deleted file mode 100644 index 3238ca0e..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_pillar_wall.png b/public/textures/mcwbyg/dacite_bricks_pillar_wall.png deleted file mode 100644 index aa176359..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_railing_gate.png b/public/textures/mcwbyg/dacite_bricks_railing_gate.png deleted file mode 100644 index a3d74fbd..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_roof.png b/public/textures/mcwbyg/dacite_bricks_roof.png deleted file mode 100644 index 3ebff909..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_steep_roof.png b/public/textures/mcwbyg/dacite_bricks_steep_roof.png deleted file mode 100644 index 485ec7a5..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_top_roof.png b/public/textures/mcwbyg/dacite_bricks_top_roof.png deleted file mode 100644 index 54437502..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_upper_lower_roof.png b/public/textures/mcwbyg/dacite_bricks_upper_lower_roof.png deleted file mode 100644 index 87d8d696..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/dacite_bricks_upper_steep_roof.png b/public/textures/mcwbyg/dacite_bricks_upper_steep_roof.png deleted file mode 100644 index 7a44ddc3..00000000 Binary files a/public/textures/mcwbyg/dacite_bricks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_attic_roof.png b/public/textures/mcwbyg/ebony_attic_roof.png deleted file mode 100644 index d1117dfe..00000000 Binary files a/public/textures/mcwbyg/ebony_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_bamboo_door.png b/public/textures/mcwbyg/ebony_bamboo_door.png deleted file mode 100644 index de4a4ba0..00000000 Binary files a/public/textures/mcwbyg/ebony_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_bamboo_trapdoor.png b/public/textures/mcwbyg/ebony_bamboo_trapdoor.png deleted file mode 100644 index 8edc91cc..00000000 Binary files a/public/textures/mcwbyg/ebony_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_bark_glass_door.png b/public/textures/mcwbyg/ebony_bark_glass_door.png deleted file mode 100644 index 746d11f3..00000000 Binary files a/public/textures/mcwbyg/ebony_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_bark_trapdoor.png b/public/textures/mcwbyg/ebony_bark_trapdoor.png deleted file mode 100644 index 51fb1363..00000000 Binary files a/public/textures/mcwbyg/ebony_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_barn_door.png b/public/textures/mcwbyg/ebony_barn_door.png deleted file mode 100644 index 57e67623..00000000 Binary files a/public/textures/mcwbyg/ebony_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_barn_glass_door.png b/public/textures/mcwbyg/ebony_barn_glass_door.png deleted file mode 100644 index 7e2b3b21..00000000 Binary files a/public/textures/mcwbyg/ebony_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_barn_trapdoor.png b/public/textures/mcwbyg/ebony_barn_trapdoor.png deleted file mode 100644 index ab1847d4..00000000 Binary files a/public/textures/mcwbyg/ebony_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_barred_trapdoor.png b/public/textures/mcwbyg/ebony_barred_trapdoor.png deleted file mode 100644 index 4b7d9a30..00000000 Binary files a/public/textures/mcwbyg/ebony_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_barrel_trapdoor.png b/public/textures/mcwbyg/ebony_barrel_trapdoor.png deleted file mode 100644 index efc6d40a..00000000 Binary files a/public/textures/mcwbyg/ebony_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_beach_door.png b/public/textures/mcwbyg/ebony_beach_door.png deleted file mode 100644 index da11c28a..00000000 Binary files a/public/textures/mcwbyg/ebony_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_beach_trapdoor.png b/public/textures/mcwbyg/ebony_beach_trapdoor.png deleted file mode 100644 index 1f996e36..00000000 Binary files a/public/textures/mcwbyg/ebony_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_blinds.png b/public/textures/mcwbyg/ebony_blinds.png deleted file mode 100644 index f4df4603..00000000 Binary files a/public/textures/mcwbyg/ebony_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_blossom_trapdoor.png b/public/textures/mcwbyg/ebony_blossom_trapdoor.png deleted file mode 100644 index 3ab3bada..00000000 Binary files a/public/textures/mcwbyg/ebony_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_bookshelf.png b/public/textures/mcwbyg/ebony_bookshelf.png deleted file mode 100644 index 771fbb4b..00000000 Binary files a/public/textures/mcwbyg/ebony_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_bookshelf_cupboard.png b/public/textures/mcwbyg/ebony_bookshelf_cupboard.png deleted file mode 100644 index 21a707b0..00000000 Binary files a/public/textures/mcwbyg/ebony_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_bookshelf_drawer.png b/public/textures/mcwbyg/ebony_bookshelf_drawer.png deleted file mode 100644 index 99cd33ed..00000000 Binary files a/public/textures/mcwbyg/ebony_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_bridge_pier.png b/public/textures/mcwbyg/ebony_bridge_pier.png deleted file mode 100644 index ab01123c..00000000 Binary files a/public/textures/mcwbyg/ebony_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_chair.png b/public/textures/mcwbyg/ebony_chair.png deleted file mode 100644 index f3a6772d..00000000 Binary files a/public/textures/mcwbyg/ebony_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_classic_door.png b/public/textures/mcwbyg/ebony_classic_door.png deleted file mode 100644 index 8a33526f..00000000 Binary files a/public/textures/mcwbyg/ebony_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_classic_trapdoor.png b/public/textures/mcwbyg/ebony_classic_trapdoor.png deleted file mode 100644 index 44053a79..00000000 Binary files a/public/textures/mcwbyg/ebony_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_coffee_table.png b/public/textures/mcwbyg/ebony_coffee_table.png deleted file mode 100644 index 06d0c6d9..00000000 Binary files a/public/textures/mcwbyg/ebony_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_cottage_door.png b/public/textures/mcwbyg/ebony_cottage_door.png deleted file mode 100644 index 9413f9b9..00000000 Binary files a/public/textures/mcwbyg/ebony_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_cottage_trapdoor.png b/public/textures/mcwbyg/ebony_cottage_trapdoor.png deleted file mode 100644 index 25f24cd1..00000000 Binary files a/public/textures/mcwbyg/ebony_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_counter.png b/public/textures/mcwbyg/ebony_counter.png deleted file mode 100644 index bd351183..00000000 Binary files a/public/textures/mcwbyg/ebony_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_covered_desk.png b/public/textures/mcwbyg/ebony_covered_desk.png deleted file mode 100644 index 0094ff7d..00000000 Binary files a/public/textures/mcwbyg/ebony_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_cupboard_counter.png b/public/textures/mcwbyg/ebony_cupboard_counter.png deleted file mode 100644 index 959b3be1..00000000 Binary files a/public/textures/mcwbyg/ebony_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_curtain_rod.png b/public/textures/mcwbyg/ebony_curtain_rod.png deleted file mode 100644 index 3bd9e7b7..00000000 Binary files a/public/textures/mcwbyg/ebony_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_curved_gate.png b/public/textures/mcwbyg/ebony_curved_gate.png deleted file mode 100644 index 8c8d9bfe..00000000 Binary files a/public/textures/mcwbyg/ebony_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_desk.png b/public/textures/mcwbyg/ebony_desk.png deleted file mode 100644 index 1a16567a..00000000 Binary files a/public/textures/mcwbyg/ebony_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_double_drawer.png b/public/textures/mcwbyg/ebony_double_drawer.png deleted file mode 100644 index 0a120f60..00000000 Binary files a/public/textures/mcwbyg/ebony_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_double_drawer_counter.png b/public/textures/mcwbyg/ebony_double_drawer_counter.png deleted file mode 100644 index 6bb5d7c9..00000000 Binary files a/public/textures/mcwbyg/ebony_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_double_kitchen_cabinet.png b/public/textures/mcwbyg/ebony_double_kitchen_cabinet.png deleted file mode 100644 index cab0c887..00000000 Binary files a/public/textures/mcwbyg/ebony_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_double_wardrobe.png b/public/textures/mcwbyg/ebony_double_wardrobe.png deleted file mode 100644 index d913aaa8..00000000 Binary files a/public/textures/mcwbyg/ebony_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_drawer.png b/public/textures/mcwbyg/ebony_drawer.png deleted file mode 100644 index c48e34a4..00000000 Binary files a/public/textures/mcwbyg/ebony_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_drawer_counter.png b/public/textures/mcwbyg/ebony_drawer_counter.png deleted file mode 100644 index eaa46df0..00000000 Binary files a/public/textures/mcwbyg/ebony_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_end_table.png b/public/textures/mcwbyg/ebony_end_table.png deleted file mode 100644 index 3612ded2..00000000 Binary files a/public/textures/mcwbyg/ebony_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_four_panel_door.png b/public/textures/mcwbyg/ebony_four_panel_door.png deleted file mode 100644 index 07c95f1d..00000000 Binary files a/public/textures/mcwbyg/ebony_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_four_panel_trapdoor.png b/public/textures/mcwbyg/ebony_four_panel_trapdoor.png deleted file mode 100644 index bd7e5ff4..00000000 Binary files a/public/textures/mcwbyg/ebony_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_four_window.png b/public/textures/mcwbyg/ebony_four_window.png deleted file mode 100644 index 9f676dca..00000000 Binary files a/public/textures/mcwbyg/ebony_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_glass_door.png b/public/textures/mcwbyg/ebony_glass_door.png deleted file mode 100644 index 837ac007..00000000 Binary files a/public/textures/mcwbyg/ebony_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_glass_kitchen_cabinet.png b/public/textures/mcwbyg/ebony_glass_kitchen_cabinet.png deleted file mode 100644 index 1fbee115..00000000 Binary files a/public/textures/mcwbyg/ebony_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_glass_table.png b/public/textures/mcwbyg/ebony_glass_table.png deleted file mode 100644 index e25f8bd9..00000000 Binary files a/public/textures/mcwbyg/ebony_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_glass_trapdoor.png b/public/textures/mcwbyg/ebony_glass_trapdoor.png deleted file mode 100644 index c4f70910..00000000 Binary files a/public/textures/mcwbyg/ebony_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_hedge.png b/public/textures/mcwbyg/ebony_hedge.png deleted file mode 100644 index 9e6ebcd9..00000000 Binary files a/public/textures/mcwbyg/ebony_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_highley_gate.png b/public/textures/mcwbyg/ebony_highley_gate.png deleted file mode 100644 index d9bcc7e3..00000000 Binary files a/public/textures/mcwbyg/ebony_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_horse_fence.png b/public/textures/mcwbyg/ebony_horse_fence.png deleted file mode 100644 index e7148b51..00000000 Binary files a/public/textures/mcwbyg/ebony_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_japanese2_door.png b/public/textures/mcwbyg/ebony_japanese2_door.png deleted file mode 100644 index 05b59ce8..00000000 Binary files a/public/textures/mcwbyg/ebony_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_japanese_door.png b/public/textures/mcwbyg/ebony_japanese_door.png deleted file mode 100644 index 2b379c7f..00000000 Binary files a/public/textures/mcwbyg/ebony_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_kitchen_cabinet.png b/public/textures/mcwbyg/ebony_kitchen_cabinet.png deleted file mode 100644 index b68cc5bf..00000000 Binary files a/public/textures/mcwbyg/ebony_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_large_drawer.png b/public/textures/mcwbyg/ebony_large_drawer.png deleted file mode 100644 index 3fbc9d8e..00000000 Binary files a/public/textures/mcwbyg/ebony_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_log_bridge_middle.png b/public/textures/mcwbyg/ebony_log_bridge_middle.png deleted file mode 100644 index c4f7c797..00000000 Binary files a/public/textures/mcwbyg/ebony_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_log_bridge_stair.png b/public/textures/mcwbyg/ebony_log_bridge_stair.png deleted file mode 100644 index b65feeed..00000000 Binary files a/public/textures/mcwbyg/ebony_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_log_parapet.png b/public/textures/mcwbyg/ebony_log_parapet.png deleted file mode 100644 index 7c23d2b4..00000000 Binary files a/public/textures/mcwbyg/ebony_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_louvered_shutter.png b/public/textures/mcwbyg/ebony_louvered_shutter.png deleted file mode 100644 index 35526b22..00000000 Binary files a/public/textures/mcwbyg/ebony_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_lower_bookshelf_drawer.png b/public/textures/mcwbyg/ebony_lower_bookshelf_drawer.png deleted file mode 100644 index 6274840b..00000000 Binary files a/public/textures/mcwbyg/ebony_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_lower_roof.png b/public/textures/mcwbyg/ebony_lower_roof.png deleted file mode 100644 index 2123f358..00000000 Binary files a/public/textures/mcwbyg/ebony_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_lower_triple_drawer.png b/public/textures/mcwbyg/ebony_lower_triple_drawer.png deleted file mode 100644 index 8a684c5d..00000000 Binary files a/public/textures/mcwbyg/ebony_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_modern_chair.png b/public/textures/mcwbyg/ebony_modern_chair.png deleted file mode 100644 index 2b9b92ee..00000000 Binary files a/public/textures/mcwbyg/ebony_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_modern_desk.png b/public/textures/mcwbyg/ebony_modern_desk.png deleted file mode 100644 index f7e86157..00000000 Binary files a/public/textures/mcwbyg/ebony_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_modern_door.png b/public/textures/mcwbyg/ebony_modern_door.png deleted file mode 100644 index 41f4109e..00000000 Binary files a/public/textures/mcwbyg/ebony_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_modern_wardrobe.png b/public/textures/mcwbyg/ebony_modern_wardrobe.png deleted file mode 100644 index 84decb4c..00000000 Binary files a/public/textures/mcwbyg/ebony_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_mystic_door.png b/public/textures/mcwbyg/ebony_mystic_door.png deleted file mode 100644 index ce47e128..00000000 Binary files a/public/textures/mcwbyg/ebony_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_mystic_trapdoor.png b/public/textures/mcwbyg/ebony_mystic_trapdoor.png deleted file mode 100644 index 820dd188..00000000 Binary files a/public/textures/mcwbyg/ebony_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_nether_door.png b/public/textures/mcwbyg/ebony_nether_door.png deleted file mode 100644 index 64613aad..00000000 Binary files a/public/textures/mcwbyg/ebony_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_pane_window.png b/public/textures/mcwbyg/ebony_pane_window.png deleted file mode 100644 index d72a65c6..00000000 Binary files a/public/textures/mcwbyg/ebony_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_paper_door.png b/public/textures/mcwbyg/ebony_paper_door.png deleted file mode 100644 index 04cf4183..00000000 Binary files a/public/textures/mcwbyg/ebony_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_paper_trapdoor.png b/public/textures/mcwbyg/ebony_paper_trapdoor.png deleted file mode 100644 index 3126da27..00000000 Binary files a/public/textures/mcwbyg/ebony_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_picket_fence.png b/public/textures/mcwbyg/ebony_picket_fence.png deleted file mode 100644 index 794760fb..00000000 Binary files a/public/textures/mcwbyg/ebony_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_plank_four_window.png b/public/textures/mcwbyg/ebony_plank_four_window.png deleted file mode 100644 index 7587d374..00000000 Binary files a/public/textures/mcwbyg/ebony_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_plank_pane_window.png b/public/textures/mcwbyg/ebony_plank_pane_window.png deleted file mode 100644 index 2555b310..00000000 Binary files a/public/textures/mcwbyg/ebony_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_plank_parapet.png b/public/textures/mcwbyg/ebony_plank_parapet.png deleted file mode 100644 index 08e0e339..00000000 Binary files a/public/textures/mcwbyg/ebony_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_plank_window.png b/public/textures/mcwbyg/ebony_plank_window.png deleted file mode 100644 index e51e1e8a..00000000 Binary files a/public/textures/mcwbyg/ebony_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_plank_window2.png b/public/textures/mcwbyg/ebony_plank_window2.png deleted file mode 100644 index 062d1ecd..00000000 Binary files a/public/textures/mcwbyg/ebony_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_planks_attic_roof.png b/public/textures/mcwbyg/ebony_planks_attic_roof.png deleted file mode 100644 index 4b189707..00000000 Binary files a/public/textures/mcwbyg/ebony_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_planks_lower_roof.png b/public/textures/mcwbyg/ebony_planks_lower_roof.png deleted file mode 100644 index e1279374..00000000 Binary files a/public/textures/mcwbyg/ebony_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_planks_path.png b/public/textures/mcwbyg/ebony_planks_path.png deleted file mode 100644 index a4e2b040..00000000 Binary files a/public/textures/mcwbyg/ebony_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_planks_roof.png b/public/textures/mcwbyg/ebony_planks_roof.png deleted file mode 100644 index ed05f378..00000000 Binary files a/public/textures/mcwbyg/ebony_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_planks_steep_roof.png b/public/textures/mcwbyg/ebony_planks_steep_roof.png deleted file mode 100644 index 179950c2..00000000 Binary files a/public/textures/mcwbyg/ebony_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_planks_top_roof.png b/public/textures/mcwbyg/ebony_planks_top_roof.png deleted file mode 100644 index daf075cb..00000000 Binary files a/public/textures/mcwbyg/ebony_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_planks_upper_lower_roof.png b/public/textures/mcwbyg/ebony_planks_upper_lower_roof.png deleted file mode 100644 index 447da0dc..00000000 Binary files a/public/textures/mcwbyg/ebony_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_planks_upper_steep_roof.png b/public/textures/mcwbyg/ebony_planks_upper_steep_roof.png deleted file mode 100644 index fd1a2dad..00000000 Binary files a/public/textures/mcwbyg/ebony_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_pyramid_gate.png b/public/textures/mcwbyg/ebony_pyramid_gate.png deleted file mode 100644 index 8a27652f..00000000 Binary files a/public/textures/mcwbyg/ebony_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_rail_bridge.png b/public/textures/mcwbyg/ebony_rail_bridge.png deleted file mode 100644 index 592a1e86..00000000 Binary files a/public/textures/mcwbyg/ebony_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_ranch_trapdoor.png b/public/textures/mcwbyg/ebony_ranch_trapdoor.png deleted file mode 100644 index cffa1cfe..00000000 Binary files a/public/textures/mcwbyg/ebony_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_roof.png b/public/textures/mcwbyg/ebony_roof.png deleted file mode 100644 index 2393e49e..00000000 Binary files a/public/textures/mcwbyg/ebony_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_rope_bridge_stair.png b/public/textures/mcwbyg/ebony_rope_bridge_stair.png deleted file mode 100644 index abf3b119..00000000 Binary files a/public/textures/mcwbyg/ebony_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_shutter.png b/public/textures/mcwbyg/ebony_shutter.png deleted file mode 100644 index cc2b04e5..00000000 Binary files a/public/textures/mcwbyg/ebony_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_stable_door.png b/public/textures/mcwbyg/ebony_stable_door.png deleted file mode 100644 index 267836ac..00000000 Binary files a/public/textures/mcwbyg/ebony_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_stable_head_door.png b/public/textures/mcwbyg/ebony_stable_head_door.png deleted file mode 100644 index fc86e357..00000000 Binary files a/public/textures/mcwbyg/ebony_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_steep_roof.png b/public/textures/mcwbyg/ebony_steep_roof.png deleted file mode 100644 index a30cbc2c..00000000 Binary files a/public/textures/mcwbyg/ebony_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_stockade_fence.png b/public/textures/mcwbyg/ebony_stockade_fence.png deleted file mode 100644 index 2e0b3f84..00000000 Binary files a/public/textures/mcwbyg/ebony_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_stool_chair.png b/public/textures/mcwbyg/ebony_stool_chair.png deleted file mode 100644 index ac73688b..00000000 Binary files a/public/textures/mcwbyg/ebony_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_striped_chair.png b/public/textures/mcwbyg/ebony_striped_chair.png deleted file mode 100644 index abcc4fa8..00000000 Binary files a/public/textures/mcwbyg/ebony_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_swamp_door.png b/public/textures/mcwbyg/ebony_swamp_door.png deleted file mode 100644 index 3cb043f8..00000000 Binary files a/public/textures/mcwbyg/ebony_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_swamp_trapdoor.png b/public/textures/mcwbyg/ebony_swamp_trapdoor.png deleted file mode 100644 index 4c406198..00000000 Binary files a/public/textures/mcwbyg/ebony_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_table.png b/public/textures/mcwbyg/ebony_table.png deleted file mode 100644 index d952348f..00000000 Binary files a/public/textures/mcwbyg/ebony_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_top_roof.png b/public/textures/mcwbyg/ebony_top_roof.png deleted file mode 100644 index e2a46b20..00000000 Binary files a/public/textures/mcwbyg/ebony_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_triple_drawer.png b/public/textures/mcwbyg/ebony_triple_drawer.png deleted file mode 100644 index cb3c3e37..00000000 Binary files a/public/textures/mcwbyg/ebony_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_tropical_door.png b/public/textures/mcwbyg/ebony_tropical_door.png deleted file mode 100644 index a49583f3..00000000 Binary files a/public/textures/mcwbyg/ebony_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_tropical_trapdoor.png b/public/textures/mcwbyg/ebony_tropical_trapdoor.png deleted file mode 100644 index 7b7ffaa6..00000000 Binary files a/public/textures/mcwbyg/ebony_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_upper_lower_roof.png b/public/textures/mcwbyg/ebony_upper_lower_roof.png deleted file mode 100644 index 1d6185c0..00000000 Binary files a/public/textures/mcwbyg/ebony_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_upper_steep_roof.png b/public/textures/mcwbyg/ebony_upper_steep_roof.png deleted file mode 100644 index b3e4a279..00000000 Binary files a/public/textures/mcwbyg/ebony_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_waffle_door.png b/public/textures/mcwbyg/ebony_waffle_door.png deleted file mode 100644 index 7a705409..00000000 Binary files a/public/textures/mcwbyg/ebony_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_wardrobe.png b/public/textures/mcwbyg/ebony_wardrobe.png deleted file mode 100644 index 890fea23..00000000 Binary files a/public/textures/mcwbyg/ebony_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_western_door.png b/public/textures/mcwbyg/ebony_western_door.png deleted file mode 100644 index 399f4dcb..00000000 Binary files a/public/textures/mcwbyg/ebony_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_whispering_door.png b/public/textures/mcwbyg/ebony_whispering_door.png deleted file mode 100644 index 4b8cca33..00000000 Binary files a/public/textures/mcwbyg/ebony_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_whispering_trapdoor.png b/public/textures/mcwbyg/ebony_whispering_trapdoor.png deleted file mode 100644 index eff36deb..00000000 Binary files a/public/textures/mcwbyg/ebony_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_window.png b/public/textures/mcwbyg/ebony_window.png deleted file mode 100644 index 6c097725..00000000 Binary files a/public/textures/mcwbyg/ebony_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_window2.png b/public/textures/mcwbyg/ebony_window2.png deleted file mode 100644 index 19147caa..00000000 Binary files a/public/textures/mcwbyg/ebony_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/ebony_wired_fence.png b/public/textures/mcwbyg/ebony_wired_fence.png deleted file mode 100644 index dd53d41e..00000000 Binary files a/public/textures/mcwbyg/ebony_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_attic_roof.png b/public/textures/mcwbyg/fir_attic_roof.png deleted file mode 100644 index b8f8940d..00000000 Binary files a/public/textures/mcwbyg/fir_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_bamboo_door.png b/public/textures/mcwbyg/fir_bamboo_door.png deleted file mode 100644 index 327d5b82..00000000 Binary files a/public/textures/mcwbyg/fir_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_bamboo_trapdoor.png b/public/textures/mcwbyg/fir_bamboo_trapdoor.png deleted file mode 100644 index 79459f1f..00000000 Binary files a/public/textures/mcwbyg/fir_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_bark_glass_door.png b/public/textures/mcwbyg/fir_bark_glass_door.png deleted file mode 100644 index fa538e87..00000000 Binary files a/public/textures/mcwbyg/fir_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_bark_trapdoor.png b/public/textures/mcwbyg/fir_bark_trapdoor.png deleted file mode 100644 index 162fd796..00000000 Binary files a/public/textures/mcwbyg/fir_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_barn_door.png b/public/textures/mcwbyg/fir_barn_door.png deleted file mode 100644 index 7fe4ad8f..00000000 Binary files a/public/textures/mcwbyg/fir_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_barn_glass_door.png b/public/textures/mcwbyg/fir_barn_glass_door.png deleted file mode 100644 index 1c9d5a69..00000000 Binary files a/public/textures/mcwbyg/fir_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_barn_trapdoor.png b/public/textures/mcwbyg/fir_barn_trapdoor.png deleted file mode 100644 index 068a0aee..00000000 Binary files a/public/textures/mcwbyg/fir_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_barred_trapdoor.png b/public/textures/mcwbyg/fir_barred_trapdoor.png deleted file mode 100644 index 3c4a0eca..00000000 Binary files a/public/textures/mcwbyg/fir_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_barrel_trapdoor.png b/public/textures/mcwbyg/fir_barrel_trapdoor.png deleted file mode 100644 index 9d49f658..00000000 Binary files a/public/textures/mcwbyg/fir_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_beach_door.png b/public/textures/mcwbyg/fir_beach_door.png deleted file mode 100644 index 78eb7339..00000000 Binary files a/public/textures/mcwbyg/fir_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_beach_trapdoor.png b/public/textures/mcwbyg/fir_beach_trapdoor.png deleted file mode 100644 index ff8ad57b..00000000 Binary files a/public/textures/mcwbyg/fir_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_blinds.png b/public/textures/mcwbyg/fir_blinds.png deleted file mode 100644 index b22ed234..00000000 Binary files a/public/textures/mcwbyg/fir_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_blossom_trapdoor.png b/public/textures/mcwbyg/fir_blossom_trapdoor.png deleted file mode 100644 index f8728c05..00000000 Binary files a/public/textures/mcwbyg/fir_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_bookshelf.png b/public/textures/mcwbyg/fir_bookshelf.png deleted file mode 100644 index 183c17c7..00000000 Binary files a/public/textures/mcwbyg/fir_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_bookshelf_cupboard.png b/public/textures/mcwbyg/fir_bookshelf_cupboard.png deleted file mode 100644 index 3ed99a1f..00000000 Binary files a/public/textures/mcwbyg/fir_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_bookshelf_drawer.png b/public/textures/mcwbyg/fir_bookshelf_drawer.png deleted file mode 100644 index 97719190..00000000 Binary files a/public/textures/mcwbyg/fir_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_bridge_pier.png b/public/textures/mcwbyg/fir_bridge_pier.png deleted file mode 100644 index 65638587..00000000 Binary files a/public/textures/mcwbyg/fir_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_chair.png b/public/textures/mcwbyg/fir_chair.png deleted file mode 100644 index 7a4d519e..00000000 Binary files a/public/textures/mcwbyg/fir_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_classic_door.png b/public/textures/mcwbyg/fir_classic_door.png deleted file mode 100644 index 745b5088..00000000 Binary files a/public/textures/mcwbyg/fir_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_classic_trapdoor.png b/public/textures/mcwbyg/fir_classic_trapdoor.png deleted file mode 100644 index 6206838e..00000000 Binary files a/public/textures/mcwbyg/fir_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_coffee_table.png b/public/textures/mcwbyg/fir_coffee_table.png deleted file mode 100644 index 8c63af7f..00000000 Binary files a/public/textures/mcwbyg/fir_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_cottage_door.png b/public/textures/mcwbyg/fir_cottage_door.png deleted file mode 100644 index d18682ec..00000000 Binary files a/public/textures/mcwbyg/fir_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_cottage_trapdoor.png b/public/textures/mcwbyg/fir_cottage_trapdoor.png deleted file mode 100644 index d9eb99ab..00000000 Binary files a/public/textures/mcwbyg/fir_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_counter.png b/public/textures/mcwbyg/fir_counter.png deleted file mode 100644 index 28c10a65..00000000 Binary files a/public/textures/mcwbyg/fir_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_covered_desk.png b/public/textures/mcwbyg/fir_covered_desk.png deleted file mode 100644 index ea103503..00000000 Binary files a/public/textures/mcwbyg/fir_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_cupboard_counter.png b/public/textures/mcwbyg/fir_cupboard_counter.png deleted file mode 100644 index 2098a360..00000000 Binary files a/public/textures/mcwbyg/fir_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_curtain_rod.png b/public/textures/mcwbyg/fir_curtain_rod.png deleted file mode 100644 index d2a060e6..00000000 Binary files a/public/textures/mcwbyg/fir_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_curved_gate.png b/public/textures/mcwbyg/fir_curved_gate.png deleted file mode 100644 index 48dfc356..00000000 Binary files a/public/textures/mcwbyg/fir_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_desk.png b/public/textures/mcwbyg/fir_desk.png deleted file mode 100644 index 84057a23..00000000 Binary files a/public/textures/mcwbyg/fir_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_double_drawer.png b/public/textures/mcwbyg/fir_double_drawer.png deleted file mode 100644 index 186d595f..00000000 Binary files a/public/textures/mcwbyg/fir_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_double_drawer_counter.png b/public/textures/mcwbyg/fir_double_drawer_counter.png deleted file mode 100644 index 16025c48..00000000 Binary files a/public/textures/mcwbyg/fir_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_double_kitchen_cabinet.png b/public/textures/mcwbyg/fir_double_kitchen_cabinet.png deleted file mode 100644 index 0e132a84..00000000 Binary files a/public/textures/mcwbyg/fir_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_double_wardrobe.png b/public/textures/mcwbyg/fir_double_wardrobe.png deleted file mode 100644 index 15cbf38c..00000000 Binary files a/public/textures/mcwbyg/fir_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_drawer.png b/public/textures/mcwbyg/fir_drawer.png deleted file mode 100644 index 0b7fae1c..00000000 Binary files a/public/textures/mcwbyg/fir_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_drawer_counter.png b/public/textures/mcwbyg/fir_drawer_counter.png deleted file mode 100644 index fd7b477c..00000000 Binary files a/public/textures/mcwbyg/fir_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_end_table.png b/public/textures/mcwbyg/fir_end_table.png deleted file mode 100644 index 0ca17a03..00000000 Binary files a/public/textures/mcwbyg/fir_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_four_panel_door.png b/public/textures/mcwbyg/fir_four_panel_door.png deleted file mode 100644 index f698502d..00000000 Binary files a/public/textures/mcwbyg/fir_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_four_panel_trapdoor.png b/public/textures/mcwbyg/fir_four_panel_trapdoor.png deleted file mode 100644 index 6a8d7be4..00000000 Binary files a/public/textures/mcwbyg/fir_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_four_window.png b/public/textures/mcwbyg/fir_four_window.png deleted file mode 100644 index 88aefd09..00000000 Binary files a/public/textures/mcwbyg/fir_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_glass_door.png b/public/textures/mcwbyg/fir_glass_door.png deleted file mode 100644 index a7fda222..00000000 Binary files a/public/textures/mcwbyg/fir_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_glass_kitchen_cabinet.png b/public/textures/mcwbyg/fir_glass_kitchen_cabinet.png deleted file mode 100644 index da280fe5..00000000 Binary files a/public/textures/mcwbyg/fir_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_glass_table.png b/public/textures/mcwbyg/fir_glass_table.png deleted file mode 100644 index 0ecf266c..00000000 Binary files a/public/textures/mcwbyg/fir_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_glass_trapdoor.png b/public/textures/mcwbyg/fir_glass_trapdoor.png deleted file mode 100644 index e45cd884..00000000 Binary files a/public/textures/mcwbyg/fir_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_hedge.png b/public/textures/mcwbyg/fir_hedge.png deleted file mode 100644 index ee6b896a..00000000 Binary files a/public/textures/mcwbyg/fir_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_highley_gate.png b/public/textures/mcwbyg/fir_highley_gate.png deleted file mode 100644 index 81967fda..00000000 Binary files a/public/textures/mcwbyg/fir_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_horse_fence.png b/public/textures/mcwbyg/fir_horse_fence.png deleted file mode 100644 index d20d7c11..00000000 Binary files a/public/textures/mcwbyg/fir_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_japanese2_door.png b/public/textures/mcwbyg/fir_japanese2_door.png deleted file mode 100644 index 7a3f75dd..00000000 Binary files a/public/textures/mcwbyg/fir_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_japanese_door.png b/public/textures/mcwbyg/fir_japanese_door.png deleted file mode 100644 index b4c02013..00000000 Binary files a/public/textures/mcwbyg/fir_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_kitchen_cabinet.png b/public/textures/mcwbyg/fir_kitchen_cabinet.png deleted file mode 100644 index e34cf782..00000000 Binary files a/public/textures/mcwbyg/fir_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_large_drawer.png b/public/textures/mcwbyg/fir_large_drawer.png deleted file mode 100644 index 6d1f36a8..00000000 Binary files a/public/textures/mcwbyg/fir_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_log_bridge_middle.png b/public/textures/mcwbyg/fir_log_bridge_middle.png deleted file mode 100644 index 7cfdd2dc..00000000 Binary files a/public/textures/mcwbyg/fir_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_log_bridge_stair.png b/public/textures/mcwbyg/fir_log_bridge_stair.png deleted file mode 100644 index ba6a9f2c..00000000 Binary files a/public/textures/mcwbyg/fir_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_log_parapet.png b/public/textures/mcwbyg/fir_log_parapet.png deleted file mode 100644 index ff24d5ec..00000000 Binary files a/public/textures/mcwbyg/fir_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_louvered_shutter.png b/public/textures/mcwbyg/fir_louvered_shutter.png deleted file mode 100644 index 811d7c7e..00000000 Binary files a/public/textures/mcwbyg/fir_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_lower_bookshelf_drawer.png b/public/textures/mcwbyg/fir_lower_bookshelf_drawer.png deleted file mode 100644 index 6ca9547d..00000000 Binary files a/public/textures/mcwbyg/fir_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_lower_roof.png b/public/textures/mcwbyg/fir_lower_roof.png deleted file mode 100644 index 14012f36..00000000 Binary files a/public/textures/mcwbyg/fir_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_lower_triple_drawer.png b/public/textures/mcwbyg/fir_lower_triple_drawer.png deleted file mode 100644 index 0943cc4c..00000000 Binary files a/public/textures/mcwbyg/fir_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_modern_chair.png b/public/textures/mcwbyg/fir_modern_chair.png deleted file mode 100644 index 44bfa6a3..00000000 Binary files a/public/textures/mcwbyg/fir_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_modern_desk.png b/public/textures/mcwbyg/fir_modern_desk.png deleted file mode 100644 index c69841c7..00000000 Binary files a/public/textures/mcwbyg/fir_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_modern_door.png b/public/textures/mcwbyg/fir_modern_door.png deleted file mode 100644 index 76d7e095..00000000 Binary files a/public/textures/mcwbyg/fir_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_modern_wardrobe.png b/public/textures/mcwbyg/fir_modern_wardrobe.png deleted file mode 100644 index 45a352b1..00000000 Binary files a/public/textures/mcwbyg/fir_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_mystic_door.png b/public/textures/mcwbyg/fir_mystic_door.png deleted file mode 100644 index e771f0b3..00000000 Binary files a/public/textures/mcwbyg/fir_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_mystic_trapdoor.png b/public/textures/mcwbyg/fir_mystic_trapdoor.png deleted file mode 100644 index 12f4f8f4..00000000 Binary files a/public/textures/mcwbyg/fir_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_nether_door.png b/public/textures/mcwbyg/fir_nether_door.png deleted file mode 100644 index fee835ca..00000000 Binary files a/public/textures/mcwbyg/fir_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_pane_window.png b/public/textures/mcwbyg/fir_pane_window.png deleted file mode 100644 index 7b1ed8de..00000000 Binary files a/public/textures/mcwbyg/fir_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_paper_door.png b/public/textures/mcwbyg/fir_paper_door.png deleted file mode 100644 index 2dc5c2ec..00000000 Binary files a/public/textures/mcwbyg/fir_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_paper_trapdoor.png b/public/textures/mcwbyg/fir_paper_trapdoor.png deleted file mode 100644 index 9b6c085a..00000000 Binary files a/public/textures/mcwbyg/fir_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_picket_fence.png b/public/textures/mcwbyg/fir_picket_fence.png deleted file mode 100644 index 888da1b9..00000000 Binary files a/public/textures/mcwbyg/fir_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_plank_four_window.png b/public/textures/mcwbyg/fir_plank_four_window.png deleted file mode 100644 index afbec08f..00000000 Binary files a/public/textures/mcwbyg/fir_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_plank_pane_window.png b/public/textures/mcwbyg/fir_plank_pane_window.png deleted file mode 100644 index 1c6d2a51..00000000 Binary files a/public/textures/mcwbyg/fir_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_plank_parapet.png b/public/textures/mcwbyg/fir_plank_parapet.png deleted file mode 100644 index 28bef783..00000000 Binary files a/public/textures/mcwbyg/fir_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_plank_window.png b/public/textures/mcwbyg/fir_plank_window.png deleted file mode 100644 index 6569cc1f..00000000 Binary files a/public/textures/mcwbyg/fir_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_plank_window2.png b/public/textures/mcwbyg/fir_plank_window2.png deleted file mode 100644 index 7558c709..00000000 Binary files a/public/textures/mcwbyg/fir_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_planks_attic_roof.png b/public/textures/mcwbyg/fir_planks_attic_roof.png deleted file mode 100644 index d0b01cd8..00000000 Binary files a/public/textures/mcwbyg/fir_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_planks_lower_roof.png b/public/textures/mcwbyg/fir_planks_lower_roof.png deleted file mode 100644 index 0da4a7d3..00000000 Binary files a/public/textures/mcwbyg/fir_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_planks_path.png b/public/textures/mcwbyg/fir_planks_path.png deleted file mode 100644 index c583a066..00000000 Binary files a/public/textures/mcwbyg/fir_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_planks_roof.png b/public/textures/mcwbyg/fir_planks_roof.png deleted file mode 100644 index 42295114..00000000 Binary files a/public/textures/mcwbyg/fir_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_planks_steep_roof.png b/public/textures/mcwbyg/fir_planks_steep_roof.png deleted file mode 100644 index 17083eb7..00000000 Binary files a/public/textures/mcwbyg/fir_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_planks_top_roof.png b/public/textures/mcwbyg/fir_planks_top_roof.png deleted file mode 100644 index 16786ce6..00000000 Binary files a/public/textures/mcwbyg/fir_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_planks_upper_lower_roof.png b/public/textures/mcwbyg/fir_planks_upper_lower_roof.png deleted file mode 100644 index 7dcc5dbd..00000000 Binary files a/public/textures/mcwbyg/fir_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_planks_upper_steep_roof.png b/public/textures/mcwbyg/fir_planks_upper_steep_roof.png deleted file mode 100644 index 85faec33..00000000 Binary files a/public/textures/mcwbyg/fir_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_pyramid_gate.png b/public/textures/mcwbyg/fir_pyramid_gate.png deleted file mode 100644 index 9d0e417d..00000000 Binary files a/public/textures/mcwbyg/fir_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_rail_bridge.png b/public/textures/mcwbyg/fir_rail_bridge.png deleted file mode 100644 index e4066f50..00000000 Binary files a/public/textures/mcwbyg/fir_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_ranch_trapdoor.png b/public/textures/mcwbyg/fir_ranch_trapdoor.png deleted file mode 100644 index e77db4e0..00000000 Binary files a/public/textures/mcwbyg/fir_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_roof.png b/public/textures/mcwbyg/fir_roof.png deleted file mode 100644 index 4b28f3a7..00000000 Binary files a/public/textures/mcwbyg/fir_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_rope_bridge_stair.png b/public/textures/mcwbyg/fir_rope_bridge_stair.png deleted file mode 100644 index 73ce7364..00000000 Binary files a/public/textures/mcwbyg/fir_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_shutter.png b/public/textures/mcwbyg/fir_shutter.png deleted file mode 100644 index 2ac5a93a..00000000 Binary files a/public/textures/mcwbyg/fir_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_stable_door.png b/public/textures/mcwbyg/fir_stable_door.png deleted file mode 100644 index f2da9540..00000000 Binary files a/public/textures/mcwbyg/fir_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_stable_head_door.png b/public/textures/mcwbyg/fir_stable_head_door.png deleted file mode 100644 index 9c3864ab..00000000 Binary files a/public/textures/mcwbyg/fir_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_steep_roof.png b/public/textures/mcwbyg/fir_steep_roof.png deleted file mode 100644 index c70b6c24..00000000 Binary files a/public/textures/mcwbyg/fir_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_stockade_fence.png b/public/textures/mcwbyg/fir_stockade_fence.png deleted file mode 100644 index 7deb00d2..00000000 Binary files a/public/textures/mcwbyg/fir_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_stool_chair.png b/public/textures/mcwbyg/fir_stool_chair.png deleted file mode 100644 index 8ee86bc7..00000000 Binary files a/public/textures/mcwbyg/fir_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_striped_chair.png b/public/textures/mcwbyg/fir_striped_chair.png deleted file mode 100644 index 52192e2d..00000000 Binary files a/public/textures/mcwbyg/fir_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_swamp_door.png b/public/textures/mcwbyg/fir_swamp_door.png deleted file mode 100644 index f4282c6f..00000000 Binary files a/public/textures/mcwbyg/fir_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_swamp_trapdoor.png b/public/textures/mcwbyg/fir_swamp_trapdoor.png deleted file mode 100644 index 529370d0..00000000 Binary files a/public/textures/mcwbyg/fir_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_table.png b/public/textures/mcwbyg/fir_table.png deleted file mode 100644 index b5791926..00000000 Binary files a/public/textures/mcwbyg/fir_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_top_roof.png b/public/textures/mcwbyg/fir_top_roof.png deleted file mode 100644 index 5339182c..00000000 Binary files a/public/textures/mcwbyg/fir_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_triple_drawer.png b/public/textures/mcwbyg/fir_triple_drawer.png deleted file mode 100644 index 3be6c77d..00000000 Binary files a/public/textures/mcwbyg/fir_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_tropical_door.png b/public/textures/mcwbyg/fir_tropical_door.png deleted file mode 100644 index 62aa703b..00000000 Binary files a/public/textures/mcwbyg/fir_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_tropical_trapdoor.png b/public/textures/mcwbyg/fir_tropical_trapdoor.png deleted file mode 100644 index 45c1c412..00000000 Binary files a/public/textures/mcwbyg/fir_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_upper_lower_roof.png b/public/textures/mcwbyg/fir_upper_lower_roof.png deleted file mode 100644 index 93266c68..00000000 Binary files a/public/textures/mcwbyg/fir_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_upper_steep_roof.png b/public/textures/mcwbyg/fir_upper_steep_roof.png deleted file mode 100644 index 5d7c733d..00000000 Binary files a/public/textures/mcwbyg/fir_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_waffle_door.png b/public/textures/mcwbyg/fir_waffle_door.png deleted file mode 100644 index 78be2684..00000000 Binary files a/public/textures/mcwbyg/fir_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_wardrobe.png b/public/textures/mcwbyg/fir_wardrobe.png deleted file mode 100644 index 49f3ea13..00000000 Binary files a/public/textures/mcwbyg/fir_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_western_door.png b/public/textures/mcwbyg/fir_western_door.png deleted file mode 100644 index 467c0164..00000000 Binary files a/public/textures/mcwbyg/fir_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_whispering_door.png b/public/textures/mcwbyg/fir_whispering_door.png deleted file mode 100644 index 2676ec87..00000000 Binary files a/public/textures/mcwbyg/fir_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_whispering_trapdoor.png b/public/textures/mcwbyg/fir_whispering_trapdoor.png deleted file mode 100644 index 2c6febb3..00000000 Binary files a/public/textures/mcwbyg/fir_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_window.png b/public/textures/mcwbyg/fir_window.png deleted file mode 100644 index c2cfbecb..00000000 Binary files a/public/textures/mcwbyg/fir_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_window2.png b/public/textures/mcwbyg/fir_window2.png deleted file mode 100644 index 48879bc8..00000000 Binary files a/public/textures/mcwbyg/fir_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/fir_wired_fence.png b/public/textures/mcwbyg/fir_wired_fence.png deleted file mode 100644 index 447a1c8f..00000000 Binary files a/public/textures/mcwbyg/fir_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_attic_roof.png b/public/textures/mcwbyg/florus_attic_roof.png deleted file mode 100644 index 21ec78f0..00000000 Binary files a/public/textures/mcwbyg/florus_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_bamboo_door.png b/public/textures/mcwbyg/florus_bamboo_door.png deleted file mode 100644 index cf63a585..00000000 Binary files a/public/textures/mcwbyg/florus_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_bamboo_trapdoor.png b/public/textures/mcwbyg/florus_bamboo_trapdoor.png deleted file mode 100644 index 0665bee8..00000000 Binary files a/public/textures/mcwbyg/florus_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_bark_glass_door.png b/public/textures/mcwbyg/florus_bark_glass_door.png deleted file mode 100644 index 7e4b608b..00000000 Binary files a/public/textures/mcwbyg/florus_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_bark_trapdoor.png b/public/textures/mcwbyg/florus_bark_trapdoor.png deleted file mode 100644 index 3596311e..00000000 Binary files a/public/textures/mcwbyg/florus_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_barn_door.png b/public/textures/mcwbyg/florus_barn_door.png deleted file mode 100644 index c4a87cbd..00000000 Binary files a/public/textures/mcwbyg/florus_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_barn_glass_door.png b/public/textures/mcwbyg/florus_barn_glass_door.png deleted file mode 100644 index 3cc0d9cb..00000000 Binary files a/public/textures/mcwbyg/florus_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_barn_trapdoor.png b/public/textures/mcwbyg/florus_barn_trapdoor.png deleted file mode 100644 index 3cef255b..00000000 Binary files a/public/textures/mcwbyg/florus_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_barred_trapdoor.png b/public/textures/mcwbyg/florus_barred_trapdoor.png deleted file mode 100644 index a1cba52b..00000000 Binary files a/public/textures/mcwbyg/florus_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_barrel_trapdoor.png b/public/textures/mcwbyg/florus_barrel_trapdoor.png deleted file mode 100644 index f5dccf9c..00000000 Binary files a/public/textures/mcwbyg/florus_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_beach_door.png b/public/textures/mcwbyg/florus_beach_door.png deleted file mode 100644 index fbbacacf..00000000 Binary files a/public/textures/mcwbyg/florus_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_beach_trapdoor.png b/public/textures/mcwbyg/florus_beach_trapdoor.png deleted file mode 100644 index 3295eedb..00000000 Binary files a/public/textures/mcwbyg/florus_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_blinds.png b/public/textures/mcwbyg/florus_blinds.png deleted file mode 100644 index e7f9aece..00000000 Binary files a/public/textures/mcwbyg/florus_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_blossom_trapdoor.png b/public/textures/mcwbyg/florus_blossom_trapdoor.png deleted file mode 100644 index 30357805..00000000 Binary files a/public/textures/mcwbyg/florus_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_bookshelf.png b/public/textures/mcwbyg/florus_bookshelf.png deleted file mode 100644 index ca8b3f36..00000000 Binary files a/public/textures/mcwbyg/florus_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_bookshelf_cupboard.png b/public/textures/mcwbyg/florus_bookshelf_cupboard.png deleted file mode 100644 index a3e62524..00000000 Binary files a/public/textures/mcwbyg/florus_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_bookshelf_drawer.png b/public/textures/mcwbyg/florus_bookshelf_drawer.png deleted file mode 100644 index 298aebe4..00000000 Binary files a/public/textures/mcwbyg/florus_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_bridge_pier.png b/public/textures/mcwbyg/florus_bridge_pier.png deleted file mode 100644 index faccb5f5..00000000 Binary files a/public/textures/mcwbyg/florus_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_chair.png b/public/textures/mcwbyg/florus_chair.png deleted file mode 100644 index bfec522c..00000000 Binary files a/public/textures/mcwbyg/florus_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_classic_door.png b/public/textures/mcwbyg/florus_classic_door.png deleted file mode 100644 index 291b1e1c..00000000 Binary files a/public/textures/mcwbyg/florus_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_classic_trapdoor.png b/public/textures/mcwbyg/florus_classic_trapdoor.png deleted file mode 100644 index 9203e1f0..00000000 Binary files a/public/textures/mcwbyg/florus_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_coffee_table.png b/public/textures/mcwbyg/florus_coffee_table.png deleted file mode 100644 index 463bd90c..00000000 Binary files a/public/textures/mcwbyg/florus_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_cottage_door.png b/public/textures/mcwbyg/florus_cottage_door.png deleted file mode 100644 index edfe9442..00000000 Binary files a/public/textures/mcwbyg/florus_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_cottage_trapdoor.png b/public/textures/mcwbyg/florus_cottage_trapdoor.png deleted file mode 100644 index 4d62a4ca..00000000 Binary files a/public/textures/mcwbyg/florus_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_counter.png b/public/textures/mcwbyg/florus_counter.png deleted file mode 100644 index 3327fe2f..00000000 Binary files a/public/textures/mcwbyg/florus_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_covered_desk.png b/public/textures/mcwbyg/florus_covered_desk.png deleted file mode 100644 index 1051290e..00000000 Binary files a/public/textures/mcwbyg/florus_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_cupboard_counter.png b/public/textures/mcwbyg/florus_cupboard_counter.png deleted file mode 100644 index 7cf08195..00000000 Binary files a/public/textures/mcwbyg/florus_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_curtain_rod.png b/public/textures/mcwbyg/florus_curtain_rod.png deleted file mode 100644 index 89d9f103..00000000 Binary files a/public/textures/mcwbyg/florus_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_curved_gate.png b/public/textures/mcwbyg/florus_curved_gate.png deleted file mode 100644 index 02854fb3..00000000 Binary files a/public/textures/mcwbyg/florus_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_desk.png b/public/textures/mcwbyg/florus_desk.png deleted file mode 100644 index de220937..00000000 Binary files a/public/textures/mcwbyg/florus_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_double_drawer.png b/public/textures/mcwbyg/florus_double_drawer.png deleted file mode 100644 index c9d74222..00000000 Binary files a/public/textures/mcwbyg/florus_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_double_drawer_counter.png b/public/textures/mcwbyg/florus_double_drawer_counter.png deleted file mode 100644 index fba02584..00000000 Binary files a/public/textures/mcwbyg/florus_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_double_kitchen_cabinet.png b/public/textures/mcwbyg/florus_double_kitchen_cabinet.png deleted file mode 100644 index 0d4aab35..00000000 Binary files a/public/textures/mcwbyg/florus_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_double_wardrobe.png b/public/textures/mcwbyg/florus_double_wardrobe.png deleted file mode 100644 index 679b854c..00000000 Binary files a/public/textures/mcwbyg/florus_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_drawer.png b/public/textures/mcwbyg/florus_drawer.png deleted file mode 100644 index 3f1554a5..00000000 Binary files a/public/textures/mcwbyg/florus_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_drawer_counter.png b/public/textures/mcwbyg/florus_drawer_counter.png deleted file mode 100644 index 81bee7c2..00000000 Binary files a/public/textures/mcwbyg/florus_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_end_table.png b/public/textures/mcwbyg/florus_end_table.png deleted file mode 100644 index 45053669..00000000 Binary files a/public/textures/mcwbyg/florus_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_four_panel_door.png b/public/textures/mcwbyg/florus_four_panel_door.png deleted file mode 100644 index 2b0a7e9c..00000000 Binary files a/public/textures/mcwbyg/florus_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_four_panel_trapdoor.png b/public/textures/mcwbyg/florus_four_panel_trapdoor.png deleted file mode 100644 index cc9e1b4f..00000000 Binary files a/public/textures/mcwbyg/florus_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_four_window.png b/public/textures/mcwbyg/florus_four_window.png deleted file mode 100644 index 602f0592..00000000 Binary files a/public/textures/mcwbyg/florus_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_glass_door.png b/public/textures/mcwbyg/florus_glass_door.png deleted file mode 100644 index b7d9086f..00000000 Binary files a/public/textures/mcwbyg/florus_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_glass_kitchen_cabinet.png b/public/textures/mcwbyg/florus_glass_kitchen_cabinet.png deleted file mode 100644 index 83eb5439..00000000 Binary files a/public/textures/mcwbyg/florus_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_glass_table.png b/public/textures/mcwbyg/florus_glass_table.png deleted file mode 100644 index 9a8927bf..00000000 Binary files a/public/textures/mcwbyg/florus_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_glass_trapdoor.png b/public/textures/mcwbyg/florus_glass_trapdoor.png deleted file mode 100644 index beb2341c..00000000 Binary files a/public/textures/mcwbyg/florus_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_highley_gate.png b/public/textures/mcwbyg/florus_highley_gate.png deleted file mode 100644 index 8471760d..00000000 Binary files a/public/textures/mcwbyg/florus_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_horse_fence.png b/public/textures/mcwbyg/florus_horse_fence.png deleted file mode 100644 index bf82dd85..00000000 Binary files a/public/textures/mcwbyg/florus_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_japanese2_door.png b/public/textures/mcwbyg/florus_japanese2_door.png deleted file mode 100644 index 3835558c..00000000 Binary files a/public/textures/mcwbyg/florus_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_japanese_door.png b/public/textures/mcwbyg/florus_japanese_door.png deleted file mode 100644 index 752b2765..00000000 Binary files a/public/textures/mcwbyg/florus_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_kitchen_cabinet.png b/public/textures/mcwbyg/florus_kitchen_cabinet.png deleted file mode 100644 index 3ebbcedd..00000000 Binary files a/public/textures/mcwbyg/florus_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_large_drawer.png b/public/textures/mcwbyg/florus_large_drawer.png deleted file mode 100644 index f851b44d..00000000 Binary files a/public/textures/mcwbyg/florus_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_log_bridge_middle.png b/public/textures/mcwbyg/florus_log_bridge_middle.png deleted file mode 100644 index 41fc406c..00000000 Binary files a/public/textures/mcwbyg/florus_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_log_bridge_stair.png b/public/textures/mcwbyg/florus_log_bridge_stair.png deleted file mode 100644 index 7a27c620..00000000 Binary files a/public/textures/mcwbyg/florus_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_log_parapet.png b/public/textures/mcwbyg/florus_log_parapet.png deleted file mode 100644 index dc7f63b7..00000000 Binary files a/public/textures/mcwbyg/florus_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_louvered_shutter.png b/public/textures/mcwbyg/florus_louvered_shutter.png deleted file mode 100644 index 7247e264..00000000 Binary files a/public/textures/mcwbyg/florus_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_lower_bookshelf_drawer.png b/public/textures/mcwbyg/florus_lower_bookshelf_drawer.png deleted file mode 100644 index 73a873a4..00000000 Binary files a/public/textures/mcwbyg/florus_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_lower_roof.png b/public/textures/mcwbyg/florus_lower_roof.png deleted file mode 100644 index 0ab99bd8..00000000 Binary files a/public/textures/mcwbyg/florus_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_lower_triple_drawer.png b/public/textures/mcwbyg/florus_lower_triple_drawer.png deleted file mode 100644 index 1393a65f..00000000 Binary files a/public/textures/mcwbyg/florus_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_modern_chair.png b/public/textures/mcwbyg/florus_modern_chair.png deleted file mode 100644 index 64e3bc46..00000000 Binary files a/public/textures/mcwbyg/florus_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_modern_desk.png b/public/textures/mcwbyg/florus_modern_desk.png deleted file mode 100644 index 24783808..00000000 Binary files a/public/textures/mcwbyg/florus_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_modern_door.png b/public/textures/mcwbyg/florus_modern_door.png deleted file mode 100644 index de25d414..00000000 Binary files a/public/textures/mcwbyg/florus_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_modern_wardrobe.png b/public/textures/mcwbyg/florus_modern_wardrobe.png deleted file mode 100644 index c87d957e..00000000 Binary files a/public/textures/mcwbyg/florus_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_mystic_door.png b/public/textures/mcwbyg/florus_mystic_door.png deleted file mode 100644 index 479df49d..00000000 Binary files a/public/textures/mcwbyg/florus_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_mystic_trapdoor.png b/public/textures/mcwbyg/florus_mystic_trapdoor.png deleted file mode 100644 index cb364273..00000000 Binary files a/public/textures/mcwbyg/florus_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_nether_door.png b/public/textures/mcwbyg/florus_nether_door.png deleted file mode 100644 index daecd184..00000000 Binary files a/public/textures/mcwbyg/florus_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_pane_window.png b/public/textures/mcwbyg/florus_pane_window.png deleted file mode 100644 index 9be7585e..00000000 Binary files a/public/textures/mcwbyg/florus_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_paper_door.png b/public/textures/mcwbyg/florus_paper_door.png deleted file mode 100644 index a90723d0..00000000 Binary files a/public/textures/mcwbyg/florus_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_paper_trapdoor.png b/public/textures/mcwbyg/florus_paper_trapdoor.png deleted file mode 100644 index 5ed83a3b..00000000 Binary files a/public/textures/mcwbyg/florus_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_picket_fence.png b/public/textures/mcwbyg/florus_picket_fence.png deleted file mode 100644 index b8ed9b20..00000000 Binary files a/public/textures/mcwbyg/florus_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_plank_four_window.png b/public/textures/mcwbyg/florus_plank_four_window.png deleted file mode 100644 index ff090a3b..00000000 Binary files a/public/textures/mcwbyg/florus_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_plank_pane_window.png b/public/textures/mcwbyg/florus_plank_pane_window.png deleted file mode 100644 index 5d1a030f..00000000 Binary files a/public/textures/mcwbyg/florus_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_plank_parapet.png b/public/textures/mcwbyg/florus_plank_parapet.png deleted file mode 100644 index 46bbda19..00000000 Binary files a/public/textures/mcwbyg/florus_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_plank_window.png b/public/textures/mcwbyg/florus_plank_window.png deleted file mode 100644 index 92318b1d..00000000 Binary files a/public/textures/mcwbyg/florus_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_plank_window2.png b/public/textures/mcwbyg/florus_plank_window2.png deleted file mode 100644 index 23c7b74e..00000000 Binary files a/public/textures/mcwbyg/florus_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_planks_attic_roof.png b/public/textures/mcwbyg/florus_planks_attic_roof.png deleted file mode 100644 index a5fd6fd1..00000000 Binary files a/public/textures/mcwbyg/florus_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_planks_lower_roof.png b/public/textures/mcwbyg/florus_planks_lower_roof.png deleted file mode 100644 index c0a60153..00000000 Binary files a/public/textures/mcwbyg/florus_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_planks_path.png b/public/textures/mcwbyg/florus_planks_path.png deleted file mode 100644 index c72562f5..00000000 Binary files a/public/textures/mcwbyg/florus_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_planks_roof.png b/public/textures/mcwbyg/florus_planks_roof.png deleted file mode 100644 index b1ae43d0..00000000 Binary files a/public/textures/mcwbyg/florus_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_planks_steep_roof.png b/public/textures/mcwbyg/florus_planks_steep_roof.png deleted file mode 100644 index 268296ec..00000000 Binary files a/public/textures/mcwbyg/florus_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_planks_top_roof.png b/public/textures/mcwbyg/florus_planks_top_roof.png deleted file mode 100644 index 5d086dc0..00000000 Binary files a/public/textures/mcwbyg/florus_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_planks_upper_lower_roof.png b/public/textures/mcwbyg/florus_planks_upper_lower_roof.png deleted file mode 100644 index 1c155e98..00000000 Binary files a/public/textures/mcwbyg/florus_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_planks_upper_steep_roof.png b/public/textures/mcwbyg/florus_planks_upper_steep_roof.png deleted file mode 100644 index 6407cf2e..00000000 Binary files a/public/textures/mcwbyg/florus_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_pyramid_gate.png b/public/textures/mcwbyg/florus_pyramid_gate.png deleted file mode 100644 index 7b8db41a..00000000 Binary files a/public/textures/mcwbyg/florus_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_rail_bridge.png b/public/textures/mcwbyg/florus_rail_bridge.png deleted file mode 100644 index a228567c..00000000 Binary files a/public/textures/mcwbyg/florus_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_ranch_trapdoor.png b/public/textures/mcwbyg/florus_ranch_trapdoor.png deleted file mode 100644 index 788f6b28..00000000 Binary files a/public/textures/mcwbyg/florus_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_roof.png b/public/textures/mcwbyg/florus_roof.png deleted file mode 100644 index 6fa65a47..00000000 Binary files a/public/textures/mcwbyg/florus_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_rope_bridge_stair.png b/public/textures/mcwbyg/florus_rope_bridge_stair.png deleted file mode 100644 index 2ea460ff..00000000 Binary files a/public/textures/mcwbyg/florus_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_shutter.png b/public/textures/mcwbyg/florus_shutter.png deleted file mode 100644 index 88dd467b..00000000 Binary files a/public/textures/mcwbyg/florus_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_stable_door.png b/public/textures/mcwbyg/florus_stable_door.png deleted file mode 100644 index 336aca0e..00000000 Binary files a/public/textures/mcwbyg/florus_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_stable_head_door.png b/public/textures/mcwbyg/florus_stable_head_door.png deleted file mode 100644 index 43cedb00..00000000 Binary files a/public/textures/mcwbyg/florus_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_steep_roof.png b/public/textures/mcwbyg/florus_steep_roof.png deleted file mode 100644 index c219f905..00000000 Binary files a/public/textures/mcwbyg/florus_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_stockade_fence.png b/public/textures/mcwbyg/florus_stockade_fence.png deleted file mode 100644 index abf1f592..00000000 Binary files a/public/textures/mcwbyg/florus_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_stool_chair.png b/public/textures/mcwbyg/florus_stool_chair.png deleted file mode 100644 index 4f1d430b..00000000 Binary files a/public/textures/mcwbyg/florus_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_striped_chair.png b/public/textures/mcwbyg/florus_striped_chair.png deleted file mode 100644 index 076203e8..00000000 Binary files a/public/textures/mcwbyg/florus_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_swamp_door.png b/public/textures/mcwbyg/florus_swamp_door.png deleted file mode 100644 index 16999a1b..00000000 Binary files a/public/textures/mcwbyg/florus_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_swamp_trapdoor.png b/public/textures/mcwbyg/florus_swamp_trapdoor.png deleted file mode 100644 index 36f789ca..00000000 Binary files a/public/textures/mcwbyg/florus_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_table.png b/public/textures/mcwbyg/florus_table.png deleted file mode 100644 index 58ff3292..00000000 Binary files a/public/textures/mcwbyg/florus_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_top_roof.png b/public/textures/mcwbyg/florus_top_roof.png deleted file mode 100644 index eef36cbc..00000000 Binary files a/public/textures/mcwbyg/florus_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_triple_drawer.png b/public/textures/mcwbyg/florus_triple_drawer.png deleted file mode 100644 index 98a662da..00000000 Binary files a/public/textures/mcwbyg/florus_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_tropical_door.png b/public/textures/mcwbyg/florus_tropical_door.png deleted file mode 100644 index c4372dd3..00000000 Binary files a/public/textures/mcwbyg/florus_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_tropical_trapdoor.png b/public/textures/mcwbyg/florus_tropical_trapdoor.png deleted file mode 100644 index fb03079d..00000000 Binary files a/public/textures/mcwbyg/florus_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_upper_lower_roof.png b/public/textures/mcwbyg/florus_upper_lower_roof.png deleted file mode 100644 index 4964e111..00000000 Binary files a/public/textures/mcwbyg/florus_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_upper_steep_roof.png b/public/textures/mcwbyg/florus_upper_steep_roof.png deleted file mode 100644 index 821808e7..00000000 Binary files a/public/textures/mcwbyg/florus_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_waffle_door.png b/public/textures/mcwbyg/florus_waffle_door.png deleted file mode 100644 index ab8e9122..00000000 Binary files a/public/textures/mcwbyg/florus_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_wardrobe.png b/public/textures/mcwbyg/florus_wardrobe.png deleted file mode 100644 index dae54d50..00000000 Binary files a/public/textures/mcwbyg/florus_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_western_door.png b/public/textures/mcwbyg/florus_western_door.png deleted file mode 100644 index afbfe838..00000000 Binary files a/public/textures/mcwbyg/florus_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_whispering_door.png b/public/textures/mcwbyg/florus_whispering_door.png deleted file mode 100644 index 52362ef1..00000000 Binary files a/public/textures/mcwbyg/florus_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_whispering_trapdoor.png b/public/textures/mcwbyg/florus_whispering_trapdoor.png deleted file mode 100644 index 12609bad..00000000 Binary files a/public/textures/mcwbyg/florus_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_window.png b/public/textures/mcwbyg/florus_window.png deleted file mode 100644 index 1a897123..00000000 Binary files a/public/textures/mcwbyg/florus_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_window2.png b/public/textures/mcwbyg/florus_window2.png deleted file mode 100644 index d7483f1b..00000000 Binary files a/public/textures/mcwbyg/florus_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/florus_wired_fence.png b/public/textures/mcwbyg/florus_wired_fence.png deleted file mode 100644 index 9d71f980..00000000 Binary files a/public/textures/mcwbyg/florus_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/flowering_indigo_jacaranda_hedge.png b/public/textures/mcwbyg/flowering_indigo_jacaranda_hedge.png deleted file mode 100644 index d6b777ca..00000000 Binary files a/public/textures/mcwbyg/flowering_indigo_jacaranda_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/flowering_ironwood_hedge.png b/public/textures/mcwbyg/flowering_ironwood_hedge.png deleted file mode 100644 index 907185cd..00000000 Binary files a/public/textures/mcwbyg/flowering_ironwood_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/flowering_jacaranda_hedge.png b/public/textures/mcwbyg/flowering_jacaranda_hedge.png deleted file mode 100644 index 6fcb1dbb..00000000 Binary files a/public/textures/mcwbyg/flowering_jacaranda_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/flowering_orchard_hedge.png b/public/textures/mcwbyg/flowering_orchard_hedge.png deleted file mode 100644 index d68e6765..00000000 Binary files a/public/textures/mcwbyg/flowering_orchard_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/flowering_palo_verde_hedge.png b/public/textures/mcwbyg/flowering_palo_verde_hedge.png deleted file mode 100644 index 93f8df91..00000000 Binary files a/public/textures/mcwbyg/flowering_palo_verde_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/flowering_skyris_hedge.png b/public/textures/mcwbyg/flowering_skyris_hedge.png deleted file mode 100644 index 94f3508f..00000000 Binary files a/public/textures/mcwbyg/flowering_skyris_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/flowering_yucca_hedge.png b/public/textures/mcwbyg/flowering_yucca_hedge.png deleted file mode 100644 index 1b6d5914..00000000 Binary files a/public/textures/mcwbyg/flowering_yucca_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_attic_roof.png b/public/textures/mcwbyg/green_enchanted_attic_roof.png deleted file mode 100644 index 08d7c875..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_bamboo_door.png b/public/textures/mcwbyg/green_enchanted_bamboo_door.png deleted file mode 100644 index 1b7acfcd..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_bamboo_trapdoor.png b/public/textures/mcwbyg/green_enchanted_bamboo_trapdoor.png deleted file mode 100644 index 9b40b40e..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_bark_glass_door.png b/public/textures/mcwbyg/green_enchanted_bark_glass_door.png deleted file mode 100644 index f1b242ad..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_bark_trapdoor.png b/public/textures/mcwbyg/green_enchanted_bark_trapdoor.png deleted file mode 100644 index 9ff56e80..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_barn_door.png b/public/textures/mcwbyg/green_enchanted_barn_door.png deleted file mode 100644 index 373f62ab..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_barn_glass_door.png b/public/textures/mcwbyg/green_enchanted_barn_glass_door.png deleted file mode 100644 index e8977cfa..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_barn_trapdoor.png b/public/textures/mcwbyg/green_enchanted_barn_trapdoor.png deleted file mode 100644 index 1936bcea..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_barred_trapdoor.png b/public/textures/mcwbyg/green_enchanted_barred_trapdoor.png deleted file mode 100644 index 57e5f4a8..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_barrel_trapdoor.png b/public/textures/mcwbyg/green_enchanted_barrel_trapdoor.png deleted file mode 100644 index 2ae0edd1..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_beach_door.png b/public/textures/mcwbyg/green_enchanted_beach_door.png deleted file mode 100644 index 6ddc364a..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_beach_trapdoor.png b/public/textures/mcwbyg/green_enchanted_beach_trapdoor.png deleted file mode 100644 index 68d9b743..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_blinds.png b/public/textures/mcwbyg/green_enchanted_blinds.png deleted file mode 100644 index 5c60d17f..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_blossom_trapdoor.png b/public/textures/mcwbyg/green_enchanted_blossom_trapdoor.png deleted file mode 100644 index 61c40efd..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_bookshelf.png b/public/textures/mcwbyg/green_enchanted_bookshelf.png deleted file mode 100644 index f1a7e9e2..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_bookshelf_cupboard.png b/public/textures/mcwbyg/green_enchanted_bookshelf_cupboard.png deleted file mode 100644 index de9afdbd..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_bookshelf_drawer.png b/public/textures/mcwbyg/green_enchanted_bookshelf_drawer.png deleted file mode 100644 index 92325f83..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_bridge_pier.png b/public/textures/mcwbyg/green_enchanted_bridge_pier.png deleted file mode 100644 index 2ea34f0f..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_chair.png b/public/textures/mcwbyg/green_enchanted_chair.png deleted file mode 100644 index 4d35a0ad..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_classic_door.png b/public/textures/mcwbyg/green_enchanted_classic_door.png deleted file mode 100644 index 86292a8f..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_classic_trapdoor.png b/public/textures/mcwbyg/green_enchanted_classic_trapdoor.png deleted file mode 100644 index 6311f85b..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_coffee_table.png b/public/textures/mcwbyg/green_enchanted_coffee_table.png deleted file mode 100644 index 99224252..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_cottage_door.png b/public/textures/mcwbyg/green_enchanted_cottage_door.png deleted file mode 100644 index da98bb64..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_cottage_trapdoor.png b/public/textures/mcwbyg/green_enchanted_cottage_trapdoor.png deleted file mode 100644 index 921389f2..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_counter.png b/public/textures/mcwbyg/green_enchanted_counter.png deleted file mode 100644 index 978e1a26..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_covered_desk.png b/public/textures/mcwbyg/green_enchanted_covered_desk.png deleted file mode 100644 index 16a62039..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_cupboard_counter.png b/public/textures/mcwbyg/green_enchanted_cupboard_counter.png deleted file mode 100644 index bf1fb44c..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_curtain_rod.png b/public/textures/mcwbyg/green_enchanted_curtain_rod.png deleted file mode 100644 index d48cb265..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_curved_gate.png b/public/textures/mcwbyg/green_enchanted_curved_gate.png deleted file mode 100644 index e95cbc1f..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_desk.png b/public/textures/mcwbyg/green_enchanted_desk.png deleted file mode 100644 index ddf7955d..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_double_drawer.png b/public/textures/mcwbyg/green_enchanted_double_drawer.png deleted file mode 100644 index fc6899a1..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_double_drawer_counter.png b/public/textures/mcwbyg/green_enchanted_double_drawer_counter.png deleted file mode 100644 index 589feccd..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_double_kitchen_cabinet.png b/public/textures/mcwbyg/green_enchanted_double_kitchen_cabinet.png deleted file mode 100644 index af6a2da4..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_double_wardrobe.png b/public/textures/mcwbyg/green_enchanted_double_wardrobe.png deleted file mode 100644 index 7a59bbf5..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_drawer.png b/public/textures/mcwbyg/green_enchanted_drawer.png deleted file mode 100644 index 00850890..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_drawer_counter.png b/public/textures/mcwbyg/green_enchanted_drawer_counter.png deleted file mode 100644 index c47b0542..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_end_table.png b/public/textures/mcwbyg/green_enchanted_end_table.png deleted file mode 100644 index 363fe00e..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_four_panel_door.png b/public/textures/mcwbyg/green_enchanted_four_panel_door.png deleted file mode 100644 index 38159af5..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_four_panel_trapdoor.png b/public/textures/mcwbyg/green_enchanted_four_panel_trapdoor.png deleted file mode 100644 index 22d52e33..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_four_window.png b/public/textures/mcwbyg/green_enchanted_four_window.png deleted file mode 100644 index 84331201..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_glass_door.png b/public/textures/mcwbyg/green_enchanted_glass_door.png deleted file mode 100644 index 6a15011b..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_glass_kitchen_cabinet.png b/public/textures/mcwbyg/green_enchanted_glass_kitchen_cabinet.png deleted file mode 100644 index 8430feb9..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_glass_table.png b/public/textures/mcwbyg/green_enchanted_glass_table.png deleted file mode 100644 index ed397396..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_glass_trapdoor.png b/public/textures/mcwbyg/green_enchanted_glass_trapdoor.png deleted file mode 100644 index 35d26b03..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_hedge.png b/public/textures/mcwbyg/green_enchanted_hedge.png deleted file mode 100644 index 44b2d1d9..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_highley_gate.png b/public/textures/mcwbyg/green_enchanted_highley_gate.png deleted file mode 100644 index c75dcfb8..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_horse_fence.png b/public/textures/mcwbyg/green_enchanted_horse_fence.png deleted file mode 100644 index 7a6af0a0..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_japanese2_door.png b/public/textures/mcwbyg/green_enchanted_japanese2_door.png deleted file mode 100644 index dda55a19..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_japanese_door.png b/public/textures/mcwbyg/green_enchanted_japanese_door.png deleted file mode 100644 index 520539fd..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_kitchen_cabinet.png b/public/textures/mcwbyg/green_enchanted_kitchen_cabinet.png deleted file mode 100644 index 7a66c6a4..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_large_drawer.png b/public/textures/mcwbyg/green_enchanted_large_drawer.png deleted file mode 100644 index 13e1f34c..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_log_bridge_middle.png b/public/textures/mcwbyg/green_enchanted_log_bridge_middle.png deleted file mode 100644 index 953362f0..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_log_bridge_stair.png b/public/textures/mcwbyg/green_enchanted_log_bridge_stair.png deleted file mode 100644 index 54ca722d..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_log_parapet.png b/public/textures/mcwbyg/green_enchanted_log_parapet.png deleted file mode 100644 index ad436492..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_louvered_shutter.png b/public/textures/mcwbyg/green_enchanted_louvered_shutter.png deleted file mode 100644 index 958903f1..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_lower_bookshelf_drawer.png b/public/textures/mcwbyg/green_enchanted_lower_bookshelf_drawer.png deleted file mode 100644 index 8a59838d..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_lower_roof.png b/public/textures/mcwbyg/green_enchanted_lower_roof.png deleted file mode 100644 index e8c9cfef..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_lower_triple_drawer.png b/public/textures/mcwbyg/green_enchanted_lower_triple_drawer.png deleted file mode 100644 index 66af088b..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_modern_chair.png b/public/textures/mcwbyg/green_enchanted_modern_chair.png deleted file mode 100644 index b235fcba..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_modern_desk.png b/public/textures/mcwbyg/green_enchanted_modern_desk.png deleted file mode 100644 index c2b6c372..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_modern_door.png b/public/textures/mcwbyg/green_enchanted_modern_door.png deleted file mode 100644 index 49a0864f..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_modern_wardrobe.png b/public/textures/mcwbyg/green_enchanted_modern_wardrobe.png deleted file mode 100644 index ad992b53..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_mystic_door.png b/public/textures/mcwbyg/green_enchanted_mystic_door.png deleted file mode 100644 index fbaa1222..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_mystic_trapdoor.png b/public/textures/mcwbyg/green_enchanted_mystic_trapdoor.png deleted file mode 100644 index ffff954c..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_nether_door.png b/public/textures/mcwbyg/green_enchanted_nether_door.png deleted file mode 100644 index 3be1003c..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_pane_window.png b/public/textures/mcwbyg/green_enchanted_pane_window.png deleted file mode 100644 index e585984f..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_paper_door.png b/public/textures/mcwbyg/green_enchanted_paper_door.png deleted file mode 100644 index 007352c5..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_paper_trapdoor.png b/public/textures/mcwbyg/green_enchanted_paper_trapdoor.png deleted file mode 100644 index e0b5385d..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_picket_fence.png b/public/textures/mcwbyg/green_enchanted_picket_fence.png deleted file mode 100644 index 6f13ddf5..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_plank_four_window.png b/public/textures/mcwbyg/green_enchanted_plank_four_window.png deleted file mode 100644 index c799173c..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_plank_pane_window.png b/public/textures/mcwbyg/green_enchanted_plank_pane_window.png deleted file mode 100644 index b5323cb4..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_plank_parapet.png b/public/textures/mcwbyg/green_enchanted_plank_parapet.png deleted file mode 100644 index 7915fc8d..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_plank_window.png b/public/textures/mcwbyg/green_enchanted_plank_window.png deleted file mode 100644 index eec7e678..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_plank_window2.png b/public/textures/mcwbyg/green_enchanted_plank_window2.png deleted file mode 100644 index e1b7a866..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_planks_attic_roof.png b/public/textures/mcwbyg/green_enchanted_planks_attic_roof.png deleted file mode 100644 index bf3571a8..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_planks_lower_roof.png b/public/textures/mcwbyg/green_enchanted_planks_lower_roof.png deleted file mode 100644 index a2b171fd..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_planks_path.png b/public/textures/mcwbyg/green_enchanted_planks_path.png deleted file mode 100644 index 19054da4..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_planks_roof.png b/public/textures/mcwbyg/green_enchanted_planks_roof.png deleted file mode 100644 index f90a74a0..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_planks_steep_roof.png b/public/textures/mcwbyg/green_enchanted_planks_steep_roof.png deleted file mode 100644 index 166042c0..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_planks_top_roof.png b/public/textures/mcwbyg/green_enchanted_planks_top_roof.png deleted file mode 100644 index 26986cca..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_planks_upper_lower_roof.png b/public/textures/mcwbyg/green_enchanted_planks_upper_lower_roof.png deleted file mode 100644 index b0aa7147..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_planks_upper_steep_roof.png b/public/textures/mcwbyg/green_enchanted_planks_upper_steep_roof.png deleted file mode 100644 index cd7b1e52..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_pyramid_gate.png b/public/textures/mcwbyg/green_enchanted_pyramid_gate.png deleted file mode 100644 index 741d7c97..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_rail_bridge.png b/public/textures/mcwbyg/green_enchanted_rail_bridge.png deleted file mode 100644 index 81c2a675..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_ranch_trapdoor.png b/public/textures/mcwbyg/green_enchanted_ranch_trapdoor.png deleted file mode 100644 index 553f6564..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_roof.png b/public/textures/mcwbyg/green_enchanted_roof.png deleted file mode 100644 index d38db647..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_rope_bridge_stair.png b/public/textures/mcwbyg/green_enchanted_rope_bridge_stair.png deleted file mode 100644 index 8f047be0..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_shutter.png b/public/textures/mcwbyg/green_enchanted_shutter.png deleted file mode 100644 index 41dc0efe..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_stable_door.png b/public/textures/mcwbyg/green_enchanted_stable_door.png deleted file mode 100644 index 67ccdf8c..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_stable_head_door.png b/public/textures/mcwbyg/green_enchanted_stable_head_door.png deleted file mode 100644 index 43ddd901..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_steep_roof.png b/public/textures/mcwbyg/green_enchanted_steep_roof.png deleted file mode 100644 index 60260c88..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_stockade_fence.png b/public/textures/mcwbyg/green_enchanted_stockade_fence.png deleted file mode 100644 index 47f74842..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_stool_chair.png b/public/textures/mcwbyg/green_enchanted_stool_chair.png deleted file mode 100644 index 503acc48..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_striped_chair.png b/public/textures/mcwbyg/green_enchanted_striped_chair.png deleted file mode 100644 index 151fc28f..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_swamp_door.png b/public/textures/mcwbyg/green_enchanted_swamp_door.png deleted file mode 100644 index 2d677756..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_swamp_trapdoor.png b/public/textures/mcwbyg/green_enchanted_swamp_trapdoor.png deleted file mode 100644 index 94c866b1..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_table.png b/public/textures/mcwbyg/green_enchanted_table.png deleted file mode 100644 index 448b3384..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_top_roof.png b/public/textures/mcwbyg/green_enchanted_top_roof.png deleted file mode 100644 index 1d653cc7..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_triple_drawer.png b/public/textures/mcwbyg/green_enchanted_triple_drawer.png deleted file mode 100644 index 870c94b8..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_tropical_door.png b/public/textures/mcwbyg/green_enchanted_tropical_door.png deleted file mode 100644 index 14bff0ae..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_tropical_trapdoor.png b/public/textures/mcwbyg/green_enchanted_tropical_trapdoor.png deleted file mode 100644 index a122eeff..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_upper_lower_roof.png b/public/textures/mcwbyg/green_enchanted_upper_lower_roof.png deleted file mode 100644 index 36c87901..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_upper_steep_roof.png b/public/textures/mcwbyg/green_enchanted_upper_steep_roof.png deleted file mode 100644 index 0c6281c3..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_waffle_door.png b/public/textures/mcwbyg/green_enchanted_waffle_door.png deleted file mode 100644 index 62c0bf18..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_wardrobe.png b/public/textures/mcwbyg/green_enchanted_wardrobe.png deleted file mode 100644 index 98865a43..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_western_door.png b/public/textures/mcwbyg/green_enchanted_western_door.png deleted file mode 100644 index 0fe50f40..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_whispering_door.png b/public/textures/mcwbyg/green_enchanted_whispering_door.png deleted file mode 100644 index cb1395a3..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_whispering_trapdoor.png b/public/textures/mcwbyg/green_enchanted_whispering_trapdoor.png deleted file mode 100644 index 9c0bad46..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_window.png b/public/textures/mcwbyg/green_enchanted_window.png deleted file mode 100644 index b97ec742..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_window2.png b/public/textures/mcwbyg/green_enchanted_window2.png deleted file mode 100644 index 9ab0e94c..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/green_enchanted_wired_fence.png b/public/textures/mcwbyg/green_enchanted_wired_fence.png deleted file mode 100644 index b398480f..00000000 Binary files a/public/textures/mcwbyg/green_enchanted_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_attic_roof.png b/public/textures/mcwbyg/holly_attic_roof.png deleted file mode 100644 index d0285f99..00000000 Binary files a/public/textures/mcwbyg/holly_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_bamboo_door.png b/public/textures/mcwbyg/holly_bamboo_door.png deleted file mode 100644 index 90016081..00000000 Binary files a/public/textures/mcwbyg/holly_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_bamboo_trapdoor.png b/public/textures/mcwbyg/holly_bamboo_trapdoor.png deleted file mode 100644 index 2fe28bcb..00000000 Binary files a/public/textures/mcwbyg/holly_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_bark_glass_door.png b/public/textures/mcwbyg/holly_bark_glass_door.png deleted file mode 100644 index 9f87b25d..00000000 Binary files a/public/textures/mcwbyg/holly_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_bark_trapdoor.png b/public/textures/mcwbyg/holly_bark_trapdoor.png deleted file mode 100644 index 7ecf2b0b..00000000 Binary files a/public/textures/mcwbyg/holly_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_barn_door.png b/public/textures/mcwbyg/holly_barn_door.png deleted file mode 100644 index 5793dcbb..00000000 Binary files a/public/textures/mcwbyg/holly_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_barn_glass_door.png b/public/textures/mcwbyg/holly_barn_glass_door.png deleted file mode 100644 index 46380c0c..00000000 Binary files a/public/textures/mcwbyg/holly_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_barn_trapdoor.png b/public/textures/mcwbyg/holly_barn_trapdoor.png deleted file mode 100644 index 71c7d8e6..00000000 Binary files a/public/textures/mcwbyg/holly_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_barred_trapdoor.png b/public/textures/mcwbyg/holly_barred_trapdoor.png deleted file mode 100644 index 80d1f302..00000000 Binary files a/public/textures/mcwbyg/holly_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_barrel_trapdoor.png b/public/textures/mcwbyg/holly_barrel_trapdoor.png deleted file mode 100644 index e6c0e78e..00000000 Binary files a/public/textures/mcwbyg/holly_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_beach_door.png b/public/textures/mcwbyg/holly_beach_door.png deleted file mode 100644 index 59c8c78c..00000000 Binary files a/public/textures/mcwbyg/holly_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_beach_trapdoor.png b/public/textures/mcwbyg/holly_beach_trapdoor.png deleted file mode 100644 index aaa65c3e..00000000 Binary files a/public/textures/mcwbyg/holly_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_blinds.png b/public/textures/mcwbyg/holly_blinds.png deleted file mode 100644 index f3a04b96..00000000 Binary files a/public/textures/mcwbyg/holly_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_blossom_trapdoor.png b/public/textures/mcwbyg/holly_blossom_trapdoor.png deleted file mode 100644 index 51cb8924..00000000 Binary files a/public/textures/mcwbyg/holly_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_bookshelf.png b/public/textures/mcwbyg/holly_bookshelf.png deleted file mode 100644 index 53dca456..00000000 Binary files a/public/textures/mcwbyg/holly_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_bookshelf_cupboard.png b/public/textures/mcwbyg/holly_bookshelf_cupboard.png deleted file mode 100644 index 72b681d7..00000000 Binary files a/public/textures/mcwbyg/holly_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_bookshelf_drawer.png b/public/textures/mcwbyg/holly_bookshelf_drawer.png deleted file mode 100644 index 5ea044c6..00000000 Binary files a/public/textures/mcwbyg/holly_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_bridge_pier.png b/public/textures/mcwbyg/holly_bridge_pier.png deleted file mode 100644 index 5ec8af44..00000000 Binary files a/public/textures/mcwbyg/holly_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_chair.png b/public/textures/mcwbyg/holly_chair.png deleted file mode 100644 index f6df5143..00000000 Binary files a/public/textures/mcwbyg/holly_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_classic_door.png b/public/textures/mcwbyg/holly_classic_door.png deleted file mode 100644 index c67fb3f6..00000000 Binary files a/public/textures/mcwbyg/holly_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_classic_trapdoor.png b/public/textures/mcwbyg/holly_classic_trapdoor.png deleted file mode 100644 index a8d9bea2..00000000 Binary files a/public/textures/mcwbyg/holly_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_coffee_table.png b/public/textures/mcwbyg/holly_coffee_table.png deleted file mode 100644 index 98ecc679..00000000 Binary files a/public/textures/mcwbyg/holly_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_cottage_door.png b/public/textures/mcwbyg/holly_cottage_door.png deleted file mode 100644 index 164db04a..00000000 Binary files a/public/textures/mcwbyg/holly_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_cottage_trapdoor.png b/public/textures/mcwbyg/holly_cottage_trapdoor.png deleted file mode 100644 index 09652018..00000000 Binary files a/public/textures/mcwbyg/holly_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_counter.png b/public/textures/mcwbyg/holly_counter.png deleted file mode 100644 index 34daf18c..00000000 Binary files a/public/textures/mcwbyg/holly_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_covered_desk.png b/public/textures/mcwbyg/holly_covered_desk.png deleted file mode 100644 index 5d995eb8..00000000 Binary files a/public/textures/mcwbyg/holly_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_cupboard_counter.png b/public/textures/mcwbyg/holly_cupboard_counter.png deleted file mode 100644 index 507c5758..00000000 Binary files a/public/textures/mcwbyg/holly_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_curtain_rod.png b/public/textures/mcwbyg/holly_curtain_rod.png deleted file mode 100644 index 70af22b3..00000000 Binary files a/public/textures/mcwbyg/holly_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_curved_gate.png b/public/textures/mcwbyg/holly_curved_gate.png deleted file mode 100644 index aebcccf0..00000000 Binary files a/public/textures/mcwbyg/holly_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_desk.png b/public/textures/mcwbyg/holly_desk.png deleted file mode 100644 index 934b92ea..00000000 Binary files a/public/textures/mcwbyg/holly_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_double_drawer.png b/public/textures/mcwbyg/holly_double_drawer.png deleted file mode 100644 index 72328609..00000000 Binary files a/public/textures/mcwbyg/holly_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_double_drawer_counter.png b/public/textures/mcwbyg/holly_double_drawer_counter.png deleted file mode 100644 index e5773027..00000000 Binary files a/public/textures/mcwbyg/holly_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_double_kitchen_cabinet.png b/public/textures/mcwbyg/holly_double_kitchen_cabinet.png deleted file mode 100644 index 865fab28..00000000 Binary files a/public/textures/mcwbyg/holly_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_double_wardrobe.png b/public/textures/mcwbyg/holly_double_wardrobe.png deleted file mode 100644 index 2a70bc1c..00000000 Binary files a/public/textures/mcwbyg/holly_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_drawer.png b/public/textures/mcwbyg/holly_drawer.png deleted file mode 100644 index 63b30ba9..00000000 Binary files a/public/textures/mcwbyg/holly_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_drawer_counter.png b/public/textures/mcwbyg/holly_drawer_counter.png deleted file mode 100644 index bfd05675..00000000 Binary files a/public/textures/mcwbyg/holly_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_end_table.png b/public/textures/mcwbyg/holly_end_table.png deleted file mode 100644 index d437c22a..00000000 Binary files a/public/textures/mcwbyg/holly_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_four_panel_door.png b/public/textures/mcwbyg/holly_four_panel_door.png deleted file mode 100644 index 80df8c71..00000000 Binary files a/public/textures/mcwbyg/holly_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_four_panel_trapdoor.png b/public/textures/mcwbyg/holly_four_panel_trapdoor.png deleted file mode 100644 index f357c2ab..00000000 Binary files a/public/textures/mcwbyg/holly_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_four_window.png b/public/textures/mcwbyg/holly_four_window.png deleted file mode 100644 index ec9de574..00000000 Binary files a/public/textures/mcwbyg/holly_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_glass_door.png b/public/textures/mcwbyg/holly_glass_door.png deleted file mode 100644 index 7818c26b..00000000 Binary files a/public/textures/mcwbyg/holly_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_glass_kitchen_cabinet.png b/public/textures/mcwbyg/holly_glass_kitchen_cabinet.png deleted file mode 100644 index d62177a2..00000000 Binary files a/public/textures/mcwbyg/holly_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_glass_table.png b/public/textures/mcwbyg/holly_glass_table.png deleted file mode 100644 index 605ea876..00000000 Binary files a/public/textures/mcwbyg/holly_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_glass_trapdoor.png b/public/textures/mcwbyg/holly_glass_trapdoor.png deleted file mode 100644 index ad553c3b..00000000 Binary files a/public/textures/mcwbyg/holly_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_hedge.png b/public/textures/mcwbyg/holly_hedge.png deleted file mode 100644 index 6f23b481..00000000 Binary files a/public/textures/mcwbyg/holly_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_highley_gate.png b/public/textures/mcwbyg/holly_highley_gate.png deleted file mode 100644 index f461bd94..00000000 Binary files a/public/textures/mcwbyg/holly_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_horse_fence.png b/public/textures/mcwbyg/holly_horse_fence.png deleted file mode 100644 index 591cb757..00000000 Binary files a/public/textures/mcwbyg/holly_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_japanese2_door.png b/public/textures/mcwbyg/holly_japanese2_door.png deleted file mode 100644 index 700359ab..00000000 Binary files a/public/textures/mcwbyg/holly_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_japanese_door.png b/public/textures/mcwbyg/holly_japanese_door.png deleted file mode 100644 index ddf44254..00000000 Binary files a/public/textures/mcwbyg/holly_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_kitchen_cabinet.png b/public/textures/mcwbyg/holly_kitchen_cabinet.png deleted file mode 100644 index 4f792471..00000000 Binary files a/public/textures/mcwbyg/holly_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_large_drawer.png b/public/textures/mcwbyg/holly_large_drawer.png deleted file mode 100644 index 882ae6e8..00000000 Binary files a/public/textures/mcwbyg/holly_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_log_bridge_middle.png b/public/textures/mcwbyg/holly_log_bridge_middle.png deleted file mode 100644 index 47eada44..00000000 Binary files a/public/textures/mcwbyg/holly_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_log_bridge_stair.png b/public/textures/mcwbyg/holly_log_bridge_stair.png deleted file mode 100644 index 5b4f4b4f..00000000 Binary files a/public/textures/mcwbyg/holly_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_log_parapet.png b/public/textures/mcwbyg/holly_log_parapet.png deleted file mode 100644 index 28e2f9f0..00000000 Binary files a/public/textures/mcwbyg/holly_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_louvered_shutter.png b/public/textures/mcwbyg/holly_louvered_shutter.png deleted file mode 100644 index 2053561b..00000000 Binary files a/public/textures/mcwbyg/holly_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_lower_bookshelf_drawer.png b/public/textures/mcwbyg/holly_lower_bookshelf_drawer.png deleted file mode 100644 index 8afd55aa..00000000 Binary files a/public/textures/mcwbyg/holly_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_lower_roof.png b/public/textures/mcwbyg/holly_lower_roof.png deleted file mode 100644 index 7407e5dc..00000000 Binary files a/public/textures/mcwbyg/holly_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_lower_triple_drawer.png b/public/textures/mcwbyg/holly_lower_triple_drawer.png deleted file mode 100644 index beb1dcd9..00000000 Binary files a/public/textures/mcwbyg/holly_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_modern_chair.png b/public/textures/mcwbyg/holly_modern_chair.png deleted file mode 100644 index 5c6348f5..00000000 Binary files a/public/textures/mcwbyg/holly_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_modern_desk.png b/public/textures/mcwbyg/holly_modern_desk.png deleted file mode 100644 index 8d7c2459..00000000 Binary files a/public/textures/mcwbyg/holly_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_modern_door.png b/public/textures/mcwbyg/holly_modern_door.png deleted file mode 100644 index bcc2a96a..00000000 Binary files a/public/textures/mcwbyg/holly_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_modern_wardrobe.png b/public/textures/mcwbyg/holly_modern_wardrobe.png deleted file mode 100644 index fa6cda16..00000000 Binary files a/public/textures/mcwbyg/holly_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_mystic_door.png b/public/textures/mcwbyg/holly_mystic_door.png deleted file mode 100644 index b7c9192e..00000000 Binary files a/public/textures/mcwbyg/holly_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_mystic_trapdoor.png b/public/textures/mcwbyg/holly_mystic_trapdoor.png deleted file mode 100644 index 92e49f9e..00000000 Binary files a/public/textures/mcwbyg/holly_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_nether_door.png b/public/textures/mcwbyg/holly_nether_door.png deleted file mode 100644 index 01047e22..00000000 Binary files a/public/textures/mcwbyg/holly_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_pane_window.png b/public/textures/mcwbyg/holly_pane_window.png deleted file mode 100644 index 36b7d3ff..00000000 Binary files a/public/textures/mcwbyg/holly_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_paper_door.png b/public/textures/mcwbyg/holly_paper_door.png deleted file mode 100644 index 19b030ad..00000000 Binary files a/public/textures/mcwbyg/holly_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_paper_trapdoor.png b/public/textures/mcwbyg/holly_paper_trapdoor.png deleted file mode 100644 index ef7bab74..00000000 Binary files a/public/textures/mcwbyg/holly_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_picket_fence.png b/public/textures/mcwbyg/holly_picket_fence.png deleted file mode 100644 index 2b002078..00000000 Binary files a/public/textures/mcwbyg/holly_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_plank_four_window.png b/public/textures/mcwbyg/holly_plank_four_window.png deleted file mode 100644 index 61d7122d..00000000 Binary files a/public/textures/mcwbyg/holly_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_plank_pane_window.png b/public/textures/mcwbyg/holly_plank_pane_window.png deleted file mode 100644 index 29d44d1f..00000000 Binary files a/public/textures/mcwbyg/holly_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_plank_parapet.png b/public/textures/mcwbyg/holly_plank_parapet.png deleted file mode 100644 index 75bcaa39..00000000 Binary files a/public/textures/mcwbyg/holly_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_plank_window.png b/public/textures/mcwbyg/holly_plank_window.png deleted file mode 100644 index 70d09382..00000000 Binary files a/public/textures/mcwbyg/holly_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_plank_window2.png b/public/textures/mcwbyg/holly_plank_window2.png deleted file mode 100644 index 260f23d2..00000000 Binary files a/public/textures/mcwbyg/holly_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_planks_attic_roof.png b/public/textures/mcwbyg/holly_planks_attic_roof.png deleted file mode 100644 index daff5dd2..00000000 Binary files a/public/textures/mcwbyg/holly_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_planks_lower_roof.png b/public/textures/mcwbyg/holly_planks_lower_roof.png deleted file mode 100644 index 719d027d..00000000 Binary files a/public/textures/mcwbyg/holly_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_planks_path.png b/public/textures/mcwbyg/holly_planks_path.png deleted file mode 100644 index 5937c97d..00000000 Binary files a/public/textures/mcwbyg/holly_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_planks_roof.png b/public/textures/mcwbyg/holly_planks_roof.png deleted file mode 100644 index 70f51bab..00000000 Binary files a/public/textures/mcwbyg/holly_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_planks_steep_roof.png b/public/textures/mcwbyg/holly_planks_steep_roof.png deleted file mode 100644 index 927951c7..00000000 Binary files a/public/textures/mcwbyg/holly_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_planks_top_roof.png b/public/textures/mcwbyg/holly_planks_top_roof.png deleted file mode 100644 index a25e082e..00000000 Binary files a/public/textures/mcwbyg/holly_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_planks_upper_lower_roof.png b/public/textures/mcwbyg/holly_planks_upper_lower_roof.png deleted file mode 100644 index df69c139..00000000 Binary files a/public/textures/mcwbyg/holly_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_planks_upper_steep_roof.png b/public/textures/mcwbyg/holly_planks_upper_steep_roof.png deleted file mode 100644 index 6e3cd672..00000000 Binary files a/public/textures/mcwbyg/holly_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_pyramid_gate.png b/public/textures/mcwbyg/holly_pyramid_gate.png deleted file mode 100644 index ec730f47..00000000 Binary files a/public/textures/mcwbyg/holly_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_rail_bridge.png b/public/textures/mcwbyg/holly_rail_bridge.png deleted file mode 100644 index 1ab08f59..00000000 Binary files a/public/textures/mcwbyg/holly_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_ranch_trapdoor.png b/public/textures/mcwbyg/holly_ranch_trapdoor.png deleted file mode 100644 index 0f23bfeb..00000000 Binary files a/public/textures/mcwbyg/holly_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_roof.png b/public/textures/mcwbyg/holly_roof.png deleted file mode 100644 index c7df560f..00000000 Binary files a/public/textures/mcwbyg/holly_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_rope_bridge_stair.png b/public/textures/mcwbyg/holly_rope_bridge_stair.png deleted file mode 100644 index b9ca60f9..00000000 Binary files a/public/textures/mcwbyg/holly_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_shutter.png b/public/textures/mcwbyg/holly_shutter.png deleted file mode 100644 index c7713ad4..00000000 Binary files a/public/textures/mcwbyg/holly_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_stable_door.png b/public/textures/mcwbyg/holly_stable_door.png deleted file mode 100644 index c4a6d626..00000000 Binary files a/public/textures/mcwbyg/holly_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_stable_head_door.png b/public/textures/mcwbyg/holly_stable_head_door.png deleted file mode 100644 index 9c4dd322..00000000 Binary files a/public/textures/mcwbyg/holly_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_steep_roof.png b/public/textures/mcwbyg/holly_steep_roof.png deleted file mode 100644 index 1185d41d..00000000 Binary files a/public/textures/mcwbyg/holly_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_stockade_fence.png b/public/textures/mcwbyg/holly_stockade_fence.png deleted file mode 100644 index e520c9d0..00000000 Binary files a/public/textures/mcwbyg/holly_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_stool_chair.png b/public/textures/mcwbyg/holly_stool_chair.png deleted file mode 100644 index 198431eb..00000000 Binary files a/public/textures/mcwbyg/holly_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_striped_chair.png b/public/textures/mcwbyg/holly_striped_chair.png deleted file mode 100644 index d95eb38c..00000000 Binary files a/public/textures/mcwbyg/holly_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_swamp_door.png b/public/textures/mcwbyg/holly_swamp_door.png deleted file mode 100644 index 91acb73a..00000000 Binary files a/public/textures/mcwbyg/holly_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_swamp_trapdoor.png b/public/textures/mcwbyg/holly_swamp_trapdoor.png deleted file mode 100644 index 9a098f69..00000000 Binary files a/public/textures/mcwbyg/holly_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_table.png b/public/textures/mcwbyg/holly_table.png deleted file mode 100644 index 1c2cb93f..00000000 Binary files a/public/textures/mcwbyg/holly_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_top_roof.png b/public/textures/mcwbyg/holly_top_roof.png deleted file mode 100644 index fd301cc6..00000000 Binary files a/public/textures/mcwbyg/holly_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_triple_drawer.png b/public/textures/mcwbyg/holly_triple_drawer.png deleted file mode 100644 index 67803f33..00000000 Binary files a/public/textures/mcwbyg/holly_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_tropical_door.png b/public/textures/mcwbyg/holly_tropical_door.png deleted file mode 100644 index 6bf36091..00000000 Binary files a/public/textures/mcwbyg/holly_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_tropical_trapdoor.png b/public/textures/mcwbyg/holly_tropical_trapdoor.png deleted file mode 100644 index 455ef5be..00000000 Binary files a/public/textures/mcwbyg/holly_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_upper_lower_roof.png b/public/textures/mcwbyg/holly_upper_lower_roof.png deleted file mode 100644 index 40777cf0..00000000 Binary files a/public/textures/mcwbyg/holly_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_upper_steep_roof.png b/public/textures/mcwbyg/holly_upper_steep_roof.png deleted file mode 100644 index 52dd2580..00000000 Binary files a/public/textures/mcwbyg/holly_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_waffle_door.png b/public/textures/mcwbyg/holly_waffle_door.png deleted file mode 100644 index 0fccec36..00000000 Binary files a/public/textures/mcwbyg/holly_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_wardrobe.png b/public/textures/mcwbyg/holly_wardrobe.png deleted file mode 100644 index a64e0829..00000000 Binary files a/public/textures/mcwbyg/holly_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_western_door.png b/public/textures/mcwbyg/holly_western_door.png deleted file mode 100644 index 77e82b30..00000000 Binary files a/public/textures/mcwbyg/holly_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_whispering_door.png b/public/textures/mcwbyg/holly_whispering_door.png deleted file mode 100644 index 1a01f94a..00000000 Binary files a/public/textures/mcwbyg/holly_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_whispering_trapdoor.png b/public/textures/mcwbyg/holly_whispering_trapdoor.png deleted file mode 100644 index 68deffcb..00000000 Binary files a/public/textures/mcwbyg/holly_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_window.png b/public/textures/mcwbyg/holly_window.png deleted file mode 100644 index 044f8eda..00000000 Binary files a/public/textures/mcwbyg/holly_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_window2.png b/public/textures/mcwbyg/holly_window2.png deleted file mode 100644 index 1896ed16..00000000 Binary files a/public/textures/mcwbyg/holly_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/holly_wired_fence.png b/public/textures/mcwbyg/holly_wired_fence.png deleted file mode 100644 index 7f669fa0..00000000 Binary files a/public/textures/mcwbyg/holly_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_attic_roof.png b/public/textures/mcwbyg/ironwood_attic_roof.png deleted file mode 100644 index 549e217d..00000000 Binary files a/public/textures/mcwbyg/ironwood_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_bamboo_door.png b/public/textures/mcwbyg/ironwood_bamboo_door.png deleted file mode 100644 index 912204b9..00000000 Binary files a/public/textures/mcwbyg/ironwood_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_bamboo_trapdoor.png b/public/textures/mcwbyg/ironwood_bamboo_trapdoor.png deleted file mode 100644 index 0051c18c..00000000 Binary files a/public/textures/mcwbyg/ironwood_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_bark_glass_door.png b/public/textures/mcwbyg/ironwood_bark_glass_door.png deleted file mode 100644 index 8a7f636a..00000000 Binary files a/public/textures/mcwbyg/ironwood_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_bark_trapdoor.png b/public/textures/mcwbyg/ironwood_bark_trapdoor.png deleted file mode 100644 index e9879ec4..00000000 Binary files a/public/textures/mcwbyg/ironwood_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_barn_door.png b/public/textures/mcwbyg/ironwood_barn_door.png deleted file mode 100644 index 0c2dd0d3..00000000 Binary files a/public/textures/mcwbyg/ironwood_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_barn_glass_door.png b/public/textures/mcwbyg/ironwood_barn_glass_door.png deleted file mode 100644 index 6bca5dda..00000000 Binary files a/public/textures/mcwbyg/ironwood_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_barn_trapdoor.png b/public/textures/mcwbyg/ironwood_barn_trapdoor.png deleted file mode 100644 index 1efc21b1..00000000 Binary files a/public/textures/mcwbyg/ironwood_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_barred_trapdoor.png b/public/textures/mcwbyg/ironwood_barred_trapdoor.png deleted file mode 100644 index 3c7757c7..00000000 Binary files a/public/textures/mcwbyg/ironwood_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_barrel_trapdoor.png b/public/textures/mcwbyg/ironwood_barrel_trapdoor.png deleted file mode 100644 index e0b48e86..00000000 Binary files a/public/textures/mcwbyg/ironwood_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_beach_door.png b/public/textures/mcwbyg/ironwood_beach_door.png deleted file mode 100644 index b4d2a9da..00000000 Binary files a/public/textures/mcwbyg/ironwood_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_beach_trapdoor.png b/public/textures/mcwbyg/ironwood_beach_trapdoor.png deleted file mode 100644 index 4d10ed6a..00000000 Binary files a/public/textures/mcwbyg/ironwood_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_blinds.png b/public/textures/mcwbyg/ironwood_blinds.png deleted file mode 100644 index c996b861..00000000 Binary files a/public/textures/mcwbyg/ironwood_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_blossom_trapdoor.png b/public/textures/mcwbyg/ironwood_blossom_trapdoor.png deleted file mode 100644 index 98cf9bb3..00000000 Binary files a/public/textures/mcwbyg/ironwood_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_bookshelf.png b/public/textures/mcwbyg/ironwood_bookshelf.png deleted file mode 100644 index ae8e99e4..00000000 Binary files a/public/textures/mcwbyg/ironwood_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_bookshelf_cupboard.png b/public/textures/mcwbyg/ironwood_bookshelf_cupboard.png deleted file mode 100644 index f49cf0c8..00000000 Binary files a/public/textures/mcwbyg/ironwood_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_bookshelf_drawer.png b/public/textures/mcwbyg/ironwood_bookshelf_drawer.png deleted file mode 100644 index b188a7af..00000000 Binary files a/public/textures/mcwbyg/ironwood_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_bridge_pier.png b/public/textures/mcwbyg/ironwood_bridge_pier.png deleted file mode 100644 index a4868b4a..00000000 Binary files a/public/textures/mcwbyg/ironwood_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_chair.png b/public/textures/mcwbyg/ironwood_chair.png deleted file mode 100644 index 0879360f..00000000 Binary files a/public/textures/mcwbyg/ironwood_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_classic_door.png b/public/textures/mcwbyg/ironwood_classic_door.png deleted file mode 100644 index 641b224a..00000000 Binary files a/public/textures/mcwbyg/ironwood_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_classic_trapdoor.png b/public/textures/mcwbyg/ironwood_classic_trapdoor.png deleted file mode 100644 index 10cca2f9..00000000 Binary files a/public/textures/mcwbyg/ironwood_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_coffee_table.png b/public/textures/mcwbyg/ironwood_coffee_table.png deleted file mode 100644 index 3b0f534e..00000000 Binary files a/public/textures/mcwbyg/ironwood_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_cottage_door.png b/public/textures/mcwbyg/ironwood_cottage_door.png deleted file mode 100644 index 3c679ba0..00000000 Binary files a/public/textures/mcwbyg/ironwood_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_cottage_trapdoor.png b/public/textures/mcwbyg/ironwood_cottage_trapdoor.png deleted file mode 100644 index 866bf9a8..00000000 Binary files a/public/textures/mcwbyg/ironwood_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_counter.png b/public/textures/mcwbyg/ironwood_counter.png deleted file mode 100644 index 5dd03b74..00000000 Binary files a/public/textures/mcwbyg/ironwood_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_covered_desk.png b/public/textures/mcwbyg/ironwood_covered_desk.png deleted file mode 100644 index bd1e1210..00000000 Binary files a/public/textures/mcwbyg/ironwood_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_cupboard_counter.png b/public/textures/mcwbyg/ironwood_cupboard_counter.png deleted file mode 100644 index 823cb66e..00000000 Binary files a/public/textures/mcwbyg/ironwood_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_curtain_rod.png b/public/textures/mcwbyg/ironwood_curtain_rod.png deleted file mode 100644 index 90b95c94..00000000 Binary files a/public/textures/mcwbyg/ironwood_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_curved_gate.png b/public/textures/mcwbyg/ironwood_curved_gate.png deleted file mode 100644 index cfbde389..00000000 Binary files a/public/textures/mcwbyg/ironwood_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_desk.png b/public/textures/mcwbyg/ironwood_desk.png deleted file mode 100644 index d5ea9dda..00000000 Binary files a/public/textures/mcwbyg/ironwood_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_double_drawer.png b/public/textures/mcwbyg/ironwood_double_drawer.png deleted file mode 100644 index 5f1a329a..00000000 Binary files a/public/textures/mcwbyg/ironwood_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_double_drawer_counter.png b/public/textures/mcwbyg/ironwood_double_drawer_counter.png deleted file mode 100644 index f4f48ae8..00000000 Binary files a/public/textures/mcwbyg/ironwood_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_double_kitchen_cabinet.png b/public/textures/mcwbyg/ironwood_double_kitchen_cabinet.png deleted file mode 100644 index 4ee283ea..00000000 Binary files a/public/textures/mcwbyg/ironwood_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_double_wardrobe.png b/public/textures/mcwbyg/ironwood_double_wardrobe.png deleted file mode 100644 index 09bbced3..00000000 Binary files a/public/textures/mcwbyg/ironwood_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_drawer.png b/public/textures/mcwbyg/ironwood_drawer.png deleted file mode 100644 index 4f286381..00000000 Binary files a/public/textures/mcwbyg/ironwood_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_drawer_counter.png b/public/textures/mcwbyg/ironwood_drawer_counter.png deleted file mode 100644 index 38a4a437..00000000 Binary files a/public/textures/mcwbyg/ironwood_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_end_table.png b/public/textures/mcwbyg/ironwood_end_table.png deleted file mode 100644 index cf8acf75..00000000 Binary files a/public/textures/mcwbyg/ironwood_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_four_panel_door.png b/public/textures/mcwbyg/ironwood_four_panel_door.png deleted file mode 100644 index 88407ae0..00000000 Binary files a/public/textures/mcwbyg/ironwood_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_four_panel_trapdoor.png b/public/textures/mcwbyg/ironwood_four_panel_trapdoor.png deleted file mode 100644 index d3641c56..00000000 Binary files a/public/textures/mcwbyg/ironwood_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_four_window.png b/public/textures/mcwbyg/ironwood_four_window.png deleted file mode 100644 index 0940da08..00000000 Binary files a/public/textures/mcwbyg/ironwood_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_glass_door.png b/public/textures/mcwbyg/ironwood_glass_door.png deleted file mode 100644 index de1ca627..00000000 Binary files a/public/textures/mcwbyg/ironwood_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_glass_kitchen_cabinet.png b/public/textures/mcwbyg/ironwood_glass_kitchen_cabinet.png deleted file mode 100644 index 341779be..00000000 Binary files a/public/textures/mcwbyg/ironwood_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_glass_table.png b/public/textures/mcwbyg/ironwood_glass_table.png deleted file mode 100644 index 84fcfea7..00000000 Binary files a/public/textures/mcwbyg/ironwood_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_glass_trapdoor.png b/public/textures/mcwbyg/ironwood_glass_trapdoor.png deleted file mode 100644 index 7e2c05c9..00000000 Binary files a/public/textures/mcwbyg/ironwood_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_hedge.png b/public/textures/mcwbyg/ironwood_hedge.png deleted file mode 100644 index 8f8f7c08..00000000 Binary files a/public/textures/mcwbyg/ironwood_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_highley_gate.png b/public/textures/mcwbyg/ironwood_highley_gate.png deleted file mode 100644 index 68316d52..00000000 Binary files a/public/textures/mcwbyg/ironwood_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_horse_fence.png b/public/textures/mcwbyg/ironwood_horse_fence.png deleted file mode 100644 index 77d97837..00000000 Binary files a/public/textures/mcwbyg/ironwood_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_japanese2_door.png b/public/textures/mcwbyg/ironwood_japanese2_door.png deleted file mode 100644 index 31d6507f..00000000 Binary files a/public/textures/mcwbyg/ironwood_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_japanese_door.png b/public/textures/mcwbyg/ironwood_japanese_door.png deleted file mode 100644 index d05ee724..00000000 Binary files a/public/textures/mcwbyg/ironwood_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_kitchen_cabinet.png b/public/textures/mcwbyg/ironwood_kitchen_cabinet.png deleted file mode 100644 index c4866256..00000000 Binary files a/public/textures/mcwbyg/ironwood_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_large_drawer.png b/public/textures/mcwbyg/ironwood_large_drawer.png deleted file mode 100644 index babc17a5..00000000 Binary files a/public/textures/mcwbyg/ironwood_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_log_bridge_middle.png b/public/textures/mcwbyg/ironwood_log_bridge_middle.png deleted file mode 100644 index bfe5145e..00000000 Binary files a/public/textures/mcwbyg/ironwood_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_log_bridge_stair.png b/public/textures/mcwbyg/ironwood_log_bridge_stair.png deleted file mode 100644 index cef7fadc..00000000 Binary files a/public/textures/mcwbyg/ironwood_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_log_parapet.png b/public/textures/mcwbyg/ironwood_log_parapet.png deleted file mode 100644 index ad832a2d..00000000 Binary files a/public/textures/mcwbyg/ironwood_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_louvered_shutter.png b/public/textures/mcwbyg/ironwood_louvered_shutter.png deleted file mode 100644 index 1c0b3670..00000000 Binary files a/public/textures/mcwbyg/ironwood_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_lower_bookshelf_drawer.png b/public/textures/mcwbyg/ironwood_lower_bookshelf_drawer.png deleted file mode 100644 index 24d7d980..00000000 Binary files a/public/textures/mcwbyg/ironwood_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_lower_roof.png b/public/textures/mcwbyg/ironwood_lower_roof.png deleted file mode 100644 index 51351c9c..00000000 Binary files a/public/textures/mcwbyg/ironwood_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_lower_triple_drawer.png b/public/textures/mcwbyg/ironwood_lower_triple_drawer.png deleted file mode 100644 index fd0e2592..00000000 Binary files a/public/textures/mcwbyg/ironwood_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_modern_chair.png b/public/textures/mcwbyg/ironwood_modern_chair.png deleted file mode 100644 index 95feebb1..00000000 Binary files a/public/textures/mcwbyg/ironwood_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_modern_desk.png b/public/textures/mcwbyg/ironwood_modern_desk.png deleted file mode 100644 index e962e1fd..00000000 Binary files a/public/textures/mcwbyg/ironwood_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_modern_door.png b/public/textures/mcwbyg/ironwood_modern_door.png deleted file mode 100644 index 3a09c961..00000000 Binary files a/public/textures/mcwbyg/ironwood_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_modern_wardrobe.png b/public/textures/mcwbyg/ironwood_modern_wardrobe.png deleted file mode 100644 index b7079b25..00000000 Binary files a/public/textures/mcwbyg/ironwood_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_mystic_door.png b/public/textures/mcwbyg/ironwood_mystic_door.png deleted file mode 100644 index c0a66fd7..00000000 Binary files a/public/textures/mcwbyg/ironwood_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_mystic_trapdoor.png b/public/textures/mcwbyg/ironwood_mystic_trapdoor.png deleted file mode 100644 index fbddffb6..00000000 Binary files a/public/textures/mcwbyg/ironwood_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_nether_door.png b/public/textures/mcwbyg/ironwood_nether_door.png deleted file mode 100644 index 1baf7bb9..00000000 Binary files a/public/textures/mcwbyg/ironwood_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_pane_window.png b/public/textures/mcwbyg/ironwood_pane_window.png deleted file mode 100644 index 24d880e4..00000000 Binary files a/public/textures/mcwbyg/ironwood_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_paper_door.png b/public/textures/mcwbyg/ironwood_paper_door.png deleted file mode 100644 index 6f9c0aed..00000000 Binary files a/public/textures/mcwbyg/ironwood_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_paper_trapdoor.png b/public/textures/mcwbyg/ironwood_paper_trapdoor.png deleted file mode 100644 index cdf16cd1..00000000 Binary files a/public/textures/mcwbyg/ironwood_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_picket_fence.png b/public/textures/mcwbyg/ironwood_picket_fence.png deleted file mode 100644 index c60cd114..00000000 Binary files a/public/textures/mcwbyg/ironwood_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_plank_four_window.png b/public/textures/mcwbyg/ironwood_plank_four_window.png deleted file mode 100644 index d57459aa..00000000 Binary files a/public/textures/mcwbyg/ironwood_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_plank_pane_window.png b/public/textures/mcwbyg/ironwood_plank_pane_window.png deleted file mode 100644 index de95d30d..00000000 Binary files a/public/textures/mcwbyg/ironwood_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_plank_parapet.png b/public/textures/mcwbyg/ironwood_plank_parapet.png deleted file mode 100644 index 36842a1b..00000000 Binary files a/public/textures/mcwbyg/ironwood_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_plank_window.png b/public/textures/mcwbyg/ironwood_plank_window.png deleted file mode 100644 index 03a4f742..00000000 Binary files a/public/textures/mcwbyg/ironwood_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_plank_window2.png b/public/textures/mcwbyg/ironwood_plank_window2.png deleted file mode 100644 index 5b8b4767..00000000 Binary files a/public/textures/mcwbyg/ironwood_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_planks_attic_roof.png b/public/textures/mcwbyg/ironwood_planks_attic_roof.png deleted file mode 100644 index da45d53b..00000000 Binary files a/public/textures/mcwbyg/ironwood_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_planks_lower_roof.png b/public/textures/mcwbyg/ironwood_planks_lower_roof.png deleted file mode 100644 index 77ad17d4..00000000 Binary files a/public/textures/mcwbyg/ironwood_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_planks_path.png b/public/textures/mcwbyg/ironwood_planks_path.png deleted file mode 100644 index c9d6151b..00000000 Binary files a/public/textures/mcwbyg/ironwood_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_planks_roof.png b/public/textures/mcwbyg/ironwood_planks_roof.png deleted file mode 100644 index 2b58a8cc..00000000 Binary files a/public/textures/mcwbyg/ironwood_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_planks_steep_roof.png b/public/textures/mcwbyg/ironwood_planks_steep_roof.png deleted file mode 100644 index c8fb7cc9..00000000 Binary files a/public/textures/mcwbyg/ironwood_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_planks_top_roof.png b/public/textures/mcwbyg/ironwood_planks_top_roof.png deleted file mode 100644 index 5410855b..00000000 Binary files a/public/textures/mcwbyg/ironwood_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_planks_upper_lower_roof.png b/public/textures/mcwbyg/ironwood_planks_upper_lower_roof.png deleted file mode 100644 index cbd02d85..00000000 Binary files a/public/textures/mcwbyg/ironwood_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_planks_upper_steep_roof.png b/public/textures/mcwbyg/ironwood_planks_upper_steep_roof.png deleted file mode 100644 index c4eed49f..00000000 Binary files a/public/textures/mcwbyg/ironwood_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_pyramid_gate.png b/public/textures/mcwbyg/ironwood_pyramid_gate.png deleted file mode 100644 index 68f31b43..00000000 Binary files a/public/textures/mcwbyg/ironwood_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_rail_bridge.png b/public/textures/mcwbyg/ironwood_rail_bridge.png deleted file mode 100644 index 99b5b02b..00000000 Binary files a/public/textures/mcwbyg/ironwood_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_ranch_trapdoor.png b/public/textures/mcwbyg/ironwood_ranch_trapdoor.png deleted file mode 100644 index 26bbd982..00000000 Binary files a/public/textures/mcwbyg/ironwood_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_roof.png b/public/textures/mcwbyg/ironwood_roof.png deleted file mode 100644 index 59f37a60..00000000 Binary files a/public/textures/mcwbyg/ironwood_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_rope_bridge_stair.png b/public/textures/mcwbyg/ironwood_rope_bridge_stair.png deleted file mode 100644 index fa58e1d7..00000000 Binary files a/public/textures/mcwbyg/ironwood_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_shutter.png b/public/textures/mcwbyg/ironwood_shutter.png deleted file mode 100644 index 1eb4953d..00000000 Binary files a/public/textures/mcwbyg/ironwood_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_stable_door.png b/public/textures/mcwbyg/ironwood_stable_door.png deleted file mode 100644 index cccc5e16..00000000 Binary files a/public/textures/mcwbyg/ironwood_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_stable_head_door.png b/public/textures/mcwbyg/ironwood_stable_head_door.png deleted file mode 100644 index 0583965d..00000000 Binary files a/public/textures/mcwbyg/ironwood_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_steep_roof.png b/public/textures/mcwbyg/ironwood_steep_roof.png deleted file mode 100644 index cbb64014..00000000 Binary files a/public/textures/mcwbyg/ironwood_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_stockade_fence.png b/public/textures/mcwbyg/ironwood_stockade_fence.png deleted file mode 100644 index 4798b640..00000000 Binary files a/public/textures/mcwbyg/ironwood_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_stool_chair.png b/public/textures/mcwbyg/ironwood_stool_chair.png deleted file mode 100644 index 1f07067e..00000000 Binary files a/public/textures/mcwbyg/ironwood_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_striped_chair.png b/public/textures/mcwbyg/ironwood_striped_chair.png deleted file mode 100644 index ff112f06..00000000 Binary files a/public/textures/mcwbyg/ironwood_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_swamp_door.png b/public/textures/mcwbyg/ironwood_swamp_door.png deleted file mode 100644 index 99b1587d..00000000 Binary files a/public/textures/mcwbyg/ironwood_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_swamp_trapdoor.png b/public/textures/mcwbyg/ironwood_swamp_trapdoor.png deleted file mode 100644 index befb055a..00000000 Binary files a/public/textures/mcwbyg/ironwood_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_table.png b/public/textures/mcwbyg/ironwood_table.png deleted file mode 100644 index 5b0043f0..00000000 Binary files a/public/textures/mcwbyg/ironwood_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_top_roof.png b/public/textures/mcwbyg/ironwood_top_roof.png deleted file mode 100644 index 20185b65..00000000 Binary files a/public/textures/mcwbyg/ironwood_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_triple_drawer.png b/public/textures/mcwbyg/ironwood_triple_drawer.png deleted file mode 100644 index 4ed3e787..00000000 Binary files a/public/textures/mcwbyg/ironwood_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_tropical_door.png b/public/textures/mcwbyg/ironwood_tropical_door.png deleted file mode 100644 index a09775e6..00000000 Binary files a/public/textures/mcwbyg/ironwood_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_tropical_trapdoor.png b/public/textures/mcwbyg/ironwood_tropical_trapdoor.png deleted file mode 100644 index e92ea2fe..00000000 Binary files a/public/textures/mcwbyg/ironwood_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_upper_lower_roof.png b/public/textures/mcwbyg/ironwood_upper_lower_roof.png deleted file mode 100644 index 55a6918d..00000000 Binary files a/public/textures/mcwbyg/ironwood_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_upper_steep_roof.png b/public/textures/mcwbyg/ironwood_upper_steep_roof.png deleted file mode 100644 index 4f83df7a..00000000 Binary files a/public/textures/mcwbyg/ironwood_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_waffle_door.png b/public/textures/mcwbyg/ironwood_waffle_door.png deleted file mode 100644 index 19d9f0ad..00000000 Binary files a/public/textures/mcwbyg/ironwood_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_wardrobe.png b/public/textures/mcwbyg/ironwood_wardrobe.png deleted file mode 100644 index bab6a3a4..00000000 Binary files a/public/textures/mcwbyg/ironwood_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_western_door.png b/public/textures/mcwbyg/ironwood_western_door.png deleted file mode 100644 index c1bd0d74..00000000 Binary files a/public/textures/mcwbyg/ironwood_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_whispering_door.png b/public/textures/mcwbyg/ironwood_whispering_door.png deleted file mode 100644 index d2155cd0..00000000 Binary files a/public/textures/mcwbyg/ironwood_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_whispering_trapdoor.png b/public/textures/mcwbyg/ironwood_whispering_trapdoor.png deleted file mode 100644 index f017a4fd..00000000 Binary files a/public/textures/mcwbyg/ironwood_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_window.png b/public/textures/mcwbyg/ironwood_window.png deleted file mode 100644 index a2189d3b..00000000 Binary files a/public/textures/mcwbyg/ironwood_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_window2.png b/public/textures/mcwbyg/ironwood_window2.png deleted file mode 100644 index 91104be8..00000000 Binary files a/public/textures/mcwbyg/ironwood_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/ironwood_wired_fence.png b/public/textures/mcwbyg/ironwood_wired_fence.png deleted file mode 100644 index 1b7e507c..00000000 Binary files a/public/textures/mcwbyg/ironwood_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_attic_roof.png b/public/textures/mcwbyg/jacaranda_attic_roof.png deleted file mode 100644 index b726a08c..00000000 Binary files a/public/textures/mcwbyg/jacaranda_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_bamboo_door.png b/public/textures/mcwbyg/jacaranda_bamboo_door.png deleted file mode 100644 index 2c7d6203..00000000 Binary files a/public/textures/mcwbyg/jacaranda_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_bamboo_trapdoor.png b/public/textures/mcwbyg/jacaranda_bamboo_trapdoor.png deleted file mode 100644 index 48783a7b..00000000 Binary files a/public/textures/mcwbyg/jacaranda_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_bark_glass_door.png b/public/textures/mcwbyg/jacaranda_bark_glass_door.png deleted file mode 100644 index d1a34b1f..00000000 Binary files a/public/textures/mcwbyg/jacaranda_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_bark_trapdoor.png b/public/textures/mcwbyg/jacaranda_bark_trapdoor.png deleted file mode 100644 index 0b63c784..00000000 Binary files a/public/textures/mcwbyg/jacaranda_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_barn_door.png b/public/textures/mcwbyg/jacaranda_barn_door.png deleted file mode 100644 index 3be30fe7..00000000 Binary files a/public/textures/mcwbyg/jacaranda_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_barn_glass_door.png b/public/textures/mcwbyg/jacaranda_barn_glass_door.png deleted file mode 100644 index 0f4bea1c..00000000 Binary files a/public/textures/mcwbyg/jacaranda_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_barn_trapdoor.png b/public/textures/mcwbyg/jacaranda_barn_trapdoor.png deleted file mode 100644 index c5f884fd..00000000 Binary files a/public/textures/mcwbyg/jacaranda_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_barred_trapdoor.png b/public/textures/mcwbyg/jacaranda_barred_trapdoor.png deleted file mode 100644 index 7dff7143..00000000 Binary files a/public/textures/mcwbyg/jacaranda_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_barrel_trapdoor.png b/public/textures/mcwbyg/jacaranda_barrel_trapdoor.png deleted file mode 100644 index 68e1db6f..00000000 Binary files a/public/textures/mcwbyg/jacaranda_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_beach_door.png b/public/textures/mcwbyg/jacaranda_beach_door.png deleted file mode 100644 index 6f88d0cc..00000000 Binary files a/public/textures/mcwbyg/jacaranda_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_beach_trapdoor.png b/public/textures/mcwbyg/jacaranda_beach_trapdoor.png deleted file mode 100644 index 34ae1dd4..00000000 Binary files a/public/textures/mcwbyg/jacaranda_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_blinds.png b/public/textures/mcwbyg/jacaranda_blinds.png deleted file mode 100644 index 1080620f..00000000 Binary files a/public/textures/mcwbyg/jacaranda_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_blossom_trapdoor.png b/public/textures/mcwbyg/jacaranda_blossom_trapdoor.png deleted file mode 100644 index 377e6b9d..00000000 Binary files a/public/textures/mcwbyg/jacaranda_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_bookshelf.png b/public/textures/mcwbyg/jacaranda_bookshelf.png deleted file mode 100644 index 93d88ba6..00000000 Binary files a/public/textures/mcwbyg/jacaranda_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_bookshelf_cupboard.png b/public/textures/mcwbyg/jacaranda_bookshelf_cupboard.png deleted file mode 100644 index 67c1ce42..00000000 Binary files a/public/textures/mcwbyg/jacaranda_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_bookshelf_drawer.png b/public/textures/mcwbyg/jacaranda_bookshelf_drawer.png deleted file mode 100644 index d2fcf8c5..00000000 Binary files a/public/textures/mcwbyg/jacaranda_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_bridge_pier.png b/public/textures/mcwbyg/jacaranda_bridge_pier.png deleted file mode 100644 index 6822082a..00000000 Binary files a/public/textures/mcwbyg/jacaranda_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_chair.png b/public/textures/mcwbyg/jacaranda_chair.png deleted file mode 100644 index 75a24e13..00000000 Binary files a/public/textures/mcwbyg/jacaranda_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_classic_door.png b/public/textures/mcwbyg/jacaranda_classic_door.png deleted file mode 100644 index 71308b90..00000000 Binary files a/public/textures/mcwbyg/jacaranda_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_classic_trapdoor.png b/public/textures/mcwbyg/jacaranda_classic_trapdoor.png deleted file mode 100644 index ec623804..00000000 Binary files a/public/textures/mcwbyg/jacaranda_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_coffee_table.png b/public/textures/mcwbyg/jacaranda_coffee_table.png deleted file mode 100644 index bd66f519..00000000 Binary files a/public/textures/mcwbyg/jacaranda_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_cottage_door.png b/public/textures/mcwbyg/jacaranda_cottage_door.png deleted file mode 100644 index 670a8864..00000000 Binary files a/public/textures/mcwbyg/jacaranda_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_cottage_trapdoor.png b/public/textures/mcwbyg/jacaranda_cottage_trapdoor.png deleted file mode 100644 index d3cf978c..00000000 Binary files a/public/textures/mcwbyg/jacaranda_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_counter.png b/public/textures/mcwbyg/jacaranda_counter.png deleted file mode 100644 index f42cbc6e..00000000 Binary files a/public/textures/mcwbyg/jacaranda_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_covered_desk.png b/public/textures/mcwbyg/jacaranda_covered_desk.png deleted file mode 100644 index 0adc35de..00000000 Binary files a/public/textures/mcwbyg/jacaranda_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_cupboard_counter.png b/public/textures/mcwbyg/jacaranda_cupboard_counter.png deleted file mode 100644 index befb2f49..00000000 Binary files a/public/textures/mcwbyg/jacaranda_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_curtain_rod.png b/public/textures/mcwbyg/jacaranda_curtain_rod.png deleted file mode 100644 index b127ca1f..00000000 Binary files a/public/textures/mcwbyg/jacaranda_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_curved_gate.png b/public/textures/mcwbyg/jacaranda_curved_gate.png deleted file mode 100644 index e7e7ca57..00000000 Binary files a/public/textures/mcwbyg/jacaranda_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_desk.png b/public/textures/mcwbyg/jacaranda_desk.png deleted file mode 100644 index 55b67c23..00000000 Binary files a/public/textures/mcwbyg/jacaranda_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_double_drawer.png b/public/textures/mcwbyg/jacaranda_double_drawer.png deleted file mode 100644 index 0c831e50..00000000 Binary files a/public/textures/mcwbyg/jacaranda_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_double_drawer_counter.png b/public/textures/mcwbyg/jacaranda_double_drawer_counter.png deleted file mode 100644 index 2e69e585..00000000 Binary files a/public/textures/mcwbyg/jacaranda_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_double_kitchen_cabinet.png b/public/textures/mcwbyg/jacaranda_double_kitchen_cabinet.png deleted file mode 100644 index becc9144..00000000 Binary files a/public/textures/mcwbyg/jacaranda_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_double_wardrobe.png b/public/textures/mcwbyg/jacaranda_double_wardrobe.png deleted file mode 100644 index ae4df785..00000000 Binary files a/public/textures/mcwbyg/jacaranda_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_drawer.png b/public/textures/mcwbyg/jacaranda_drawer.png deleted file mode 100644 index 3fd95a1c..00000000 Binary files a/public/textures/mcwbyg/jacaranda_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_drawer_counter.png b/public/textures/mcwbyg/jacaranda_drawer_counter.png deleted file mode 100644 index 7fa41027..00000000 Binary files a/public/textures/mcwbyg/jacaranda_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_end_table.png b/public/textures/mcwbyg/jacaranda_end_table.png deleted file mode 100644 index 14953b20..00000000 Binary files a/public/textures/mcwbyg/jacaranda_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_four_panel_door.png b/public/textures/mcwbyg/jacaranda_four_panel_door.png deleted file mode 100644 index b3fc3b10..00000000 Binary files a/public/textures/mcwbyg/jacaranda_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_four_panel_trapdoor.png b/public/textures/mcwbyg/jacaranda_four_panel_trapdoor.png deleted file mode 100644 index 52810aaf..00000000 Binary files a/public/textures/mcwbyg/jacaranda_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_four_window.png b/public/textures/mcwbyg/jacaranda_four_window.png deleted file mode 100644 index 67cdb7b4..00000000 Binary files a/public/textures/mcwbyg/jacaranda_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_glass_door.png b/public/textures/mcwbyg/jacaranda_glass_door.png deleted file mode 100644 index 6c2e8e6c..00000000 Binary files a/public/textures/mcwbyg/jacaranda_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_glass_kitchen_cabinet.png b/public/textures/mcwbyg/jacaranda_glass_kitchen_cabinet.png deleted file mode 100644 index 779eddf2..00000000 Binary files a/public/textures/mcwbyg/jacaranda_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_glass_table.png b/public/textures/mcwbyg/jacaranda_glass_table.png deleted file mode 100644 index 4f02d0ce..00000000 Binary files a/public/textures/mcwbyg/jacaranda_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_glass_trapdoor.png b/public/textures/mcwbyg/jacaranda_glass_trapdoor.png deleted file mode 100644 index a08d0939..00000000 Binary files a/public/textures/mcwbyg/jacaranda_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_hedge.png b/public/textures/mcwbyg/jacaranda_hedge.png deleted file mode 100644 index 2b7e7b03..00000000 Binary files a/public/textures/mcwbyg/jacaranda_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_highley_gate.png b/public/textures/mcwbyg/jacaranda_highley_gate.png deleted file mode 100644 index 049e05e0..00000000 Binary files a/public/textures/mcwbyg/jacaranda_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_horse_fence.png b/public/textures/mcwbyg/jacaranda_horse_fence.png deleted file mode 100644 index c286bdbc..00000000 Binary files a/public/textures/mcwbyg/jacaranda_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_japanese2_door.png b/public/textures/mcwbyg/jacaranda_japanese2_door.png deleted file mode 100644 index 30808d80..00000000 Binary files a/public/textures/mcwbyg/jacaranda_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_japanese_door.png b/public/textures/mcwbyg/jacaranda_japanese_door.png deleted file mode 100644 index 215a54f8..00000000 Binary files a/public/textures/mcwbyg/jacaranda_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_kitchen_cabinet.png b/public/textures/mcwbyg/jacaranda_kitchen_cabinet.png deleted file mode 100644 index b44f2056..00000000 Binary files a/public/textures/mcwbyg/jacaranda_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_large_drawer.png b/public/textures/mcwbyg/jacaranda_large_drawer.png deleted file mode 100644 index bc6e59e8..00000000 Binary files a/public/textures/mcwbyg/jacaranda_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_log_bridge_middle.png b/public/textures/mcwbyg/jacaranda_log_bridge_middle.png deleted file mode 100644 index bc83e4bf..00000000 Binary files a/public/textures/mcwbyg/jacaranda_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_log_bridge_stair.png b/public/textures/mcwbyg/jacaranda_log_bridge_stair.png deleted file mode 100644 index 2d246def..00000000 Binary files a/public/textures/mcwbyg/jacaranda_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_log_parapet.png b/public/textures/mcwbyg/jacaranda_log_parapet.png deleted file mode 100644 index 3f65aa8e..00000000 Binary files a/public/textures/mcwbyg/jacaranda_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_louvered_shutter.png b/public/textures/mcwbyg/jacaranda_louvered_shutter.png deleted file mode 100644 index de541846..00000000 Binary files a/public/textures/mcwbyg/jacaranda_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_lower_bookshelf_drawer.png b/public/textures/mcwbyg/jacaranda_lower_bookshelf_drawer.png deleted file mode 100644 index b88595cc..00000000 Binary files a/public/textures/mcwbyg/jacaranda_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_lower_roof.png b/public/textures/mcwbyg/jacaranda_lower_roof.png deleted file mode 100644 index a51f5562..00000000 Binary files a/public/textures/mcwbyg/jacaranda_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_lower_triple_drawer.png b/public/textures/mcwbyg/jacaranda_lower_triple_drawer.png deleted file mode 100644 index 4675e506..00000000 Binary files a/public/textures/mcwbyg/jacaranda_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_modern_chair.png b/public/textures/mcwbyg/jacaranda_modern_chair.png deleted file mode 100644 index f3a5019d..00000000 Binary files a/public/textures/mcwbyg/jacaranda_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_modern_desk.png b/public/textures/mcwbyg/jacaranda_modern_desk.png deleted file mode 100644 index 4a7d9654..00000000 Binary files a/public/textures/mcwbyg/jacaranda_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_modern_door.png b/public/textures/mcwbyg/jacaranda_modern_door.png deleted file mode 100644 index 39da0b12..00000000 Binary files a/public/textures/mcwbyg/jacaranda_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_modern_wardrobe.png b/public/textures/mcwbyg/jacaranda_modern_wardrobe.png deleted file mode 100644 index e1ce7a3b..00000000 Binary files a/public/textures/mcwbyg/jacaranda_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_mystic_door.png b/public/textures/mcwbyg/jacaranda_mystic_door.png deleted file mode 100644 index 26e2d0cd..00000000 Binary files a/public/textures/mcwbyg/jacaranda_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_mystic_trapdoor.png b/public/textures/mcwbyg/jacaranda_mystic_trapdoor.png deleted file mode 100644 index 8c1d6af6..00000000 Binary files a/public/textures/mcwbyg/jacaranda_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_nether_door.png b/public/textures/mcwbyg/jacaranda_nether_door.png deleted file mode 100644 index 6c645560..00000000 Binary files a/public/textures/mcwbyg/jacaranda_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_pane_window.png b/public/textures/mcwbyg/jacaranda_pane_window.png deleted file mode 100644 index 050be09a..00000000 Binary files a/public/textures/mcwbyg/jacaranda_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_paper_door.png b/public/textures/mcwbyg/jacaranda_paper_door.png deleted file mode 100644 index 3c9ab2b8..00000000 Binary files a/public/textures/mcwbyg/jacaranda_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_paper_trapdoor.png b/public/textures/mcwbyg/jacaranda_paper_trapdoor.png deleted file mode 100644 index 9981f0d4..00000000 Binary files a/public/textures/mcwbyg/jacaranda_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_picket_fence.png b/public/textures/mcwbyg/jacaranda_picket_fence.png deleted file mode 100644 index bc15d0cf..00000000 Binary files a/public/textures/mcwbyg/jacaranda_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_plank_four_window.png b/public/textures/mcwbyg/jacaranda_plank_four_window.png deleted file mode 100644 index 47d5c50c..00000000 Binary files a/public/textures/mcwbyg/jacaranda_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_plank_pane_window.png b/public/textures/mcwbyg/jacaranda_plank_pane_window.png deleted file mode 100644 index 6d935eb6..00000000 Binary files a/public/textures/mcwbyg/jacaranda_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_plank_parapet.png b/public/textures/mcwbyg/jacaranda_plank_parapet.png deleted file mode 100644 index 72a038bb..00000000 Binary files a/public/textures/mcwbyg/jacaranda_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_plank_window.png b/public/textures/mcwbyg/jacaranda_plank_window.png deleted file mode 100644 index e2e05fae..00000000 Binary files a/public/textures/mcwbyg/jacaranda_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_plank_window2.png b/public/textures/mcwbyg/jacaranda_plank_window2.png deleted file mode 100644 index a442da6f..00000000 Binary files a/public/textures/mcwbyg/jacaranda_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_planks_attic_roof.png b/public/textures/mcwbyg/jacaranda_planks_attic_roof.png deleted file mode 100644 index f80188de..00000000 Binary files a/public/textures/mcwbyg/jacaranda_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_planks_lower_roof.png b/public/textures/mcwbyg/jacaranda_planks_lower_roof.png deleted file mode 100644 index 42ac567e..00000000 Binary files a/public/textures/mcwbyg/jacaranda_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_planks_path.png b/public/textures/mcwbyg/jacaranda_planks_path.png deleted file mode 100644 index ae2cca93..00000000 Binary files a/public/textures/mcwbyg/jacaranda_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_planks_roof.png b/public/textures/mcwbyg/jacaranda_planks_roof.png deleted file mode 100644 index 14ed139a..00000000 Binary files a/public/textures/mcwbyg/jacaranda_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_planks_steep_roof.png b/public/textures/mcwbyg/jacaranda_planks_steep_roof.png deleted file mode 100644 index 473e890f..00000000 Binary files a/public/textures/mcwbyg/jacaranda_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_planks_top_roof.png b/public/textures/mcwbyg/jacaranda_planks_top_roof.png deleted file mode 100644 index 2da67f6e..00000000 Binary files a/public/textures/mcwbyg/jacaranda_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_planks_upper_lower_roof.png b/public/textures/mcwbyg/jacaranda_planks_upper_lower_roof.png deleted file mode 100644 index 84169e68..00000000 Binary files a/public/textures/mcwbyg/jacaranda_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_planks_upper_steep_roof.png b/public/textures/mcwbyg/jacaranda_planks_upper_steep_roof.png deleted file mode 100644 index 01e9fdac..00000000 Binary files a/public/textures/mcwbyg/jacaranda_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_pyramid_gate.png b/public/textures/mcwbyg/jacaranda_pyramid_gate.png deleted file mode 100644 index 109bf9fe..00000000 Binary files a/public/textures/mcwbyg/jacaranda_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_rail_bridge.png b/public/textures/mcwbyg/jacaranda_rail_bridge.png deleted file mode 100644 index 28ea9b70..00000000 Binary files a/public/textures/mcwbyg/jacaranda_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_ranch_trapdoor.png b/public/textures/mcwbyg/jacaranda_ranch_trapdoor.png deleted file mode 100644 index ccda997e..00000000 Binary files a/public/textures/mcwbyg/jacaranda_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_roof.png b/public/textures/mcwbyg/jacaranda_roof.png deleted file mode 100644 index 65dc6ed2..00000000 Binary files a/public/textures/mcwbyg/jacaranda_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_rope_bridge_stair.png b/public/textures/mcwbyg/jacaranda_rope_bridge_stair.png deleted file mode 100644 index ff87ce22..00000000 Binary files a/public/textures/mcwbyg/jacaranda_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_shutter.png b/public/textures/mcwbyg/jacaranda_shutter.png deleted file mode 100644 index 1bd5d642..00000000 Binary files a/public/textures/mcwbyg/jacaranda_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_stable_door.png b/public/textures/mcwbyg/jacaranda_stable_door.png deleted file mode 100644 index 98a875af..00000000 Binary files a/public/textures/mcwbyg/jacaranda_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_stable_head_door.png b/public/textures/mcwbyg/jacaranda_stable_head_door.png deleted file mode 100644 index ff9787c7..00000000 Binary files a/public/textures/mcwbyg/jacaranda_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_steep_roof.png b/public/textures/mcwbyg/jacaranda_steep_roof.png deleted file mode 100644 index 07090baf..00000000 Binary files a/public/textures/mcwbyg/jacaranda_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_stockade_fence.png b/public/textures/mcwbyg/jacaranda_stockade_fence.png deleted file mode 100644 index 28ecfdf9..00000000 Binary files a/public/textures/mcwbyg/jacaranda_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_stool_chair.png b/public/textures/mcwbyg/jacaranda_stool_chair.png deleted file mode 100644 index 2baa9e65..00000000 Binary files a/public/textures/mcwbyg/jacaranda_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_striped_chair.png b/public/textures/mcwbyg/jacaranda_striped_chair.png deleted file mode 100644 index 15e954a0..00000000 Binary files a/public/textures/mcwbyg/jacaranda_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_swamp_door.png b/public/textures/mcwbyg/jacaranda_swamp_door.png deleted file mode 100644 index 443003db..00000000 Binary files a/public/textures/mcwbyg/jacaranda_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_swamp_trapdoor.png b/public/textures/mcwbyg/jacaranda_swamp_trapdoor.png deleted file mode 100644 index 36672816..00000000 Binary files a/public/textures/mcwbyg/jacaranda_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_table.png b/public/textures/mcwbyg/jacaranda_table.png deleted file mode 100644 index 17a2997f..00000000 Binary files a/public/textures/mcwbyg/jacaranda_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_top_roof.png b/public/textures/mcwbyg/jacaranda_top_roof.png deleted file mode 100644 index c8764c0f..00000000 Binary files a/public/textures/mcwbyg/jacaranda_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_triple_drawer.png b/public/textures/mcwbyg/jacaranda_triple_drawer.png deleted file mode 100644 index 858c1c09..00000000 Binary files a/public/textures/mcwbyg/jacaranda_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_tropical_door.png b/public/textures/mcwbyg/jacaranda_tropical_door.png deleted file mode 100644 index 7e791d2a..00000000 Binary files a/public/textures/mcwbyg/jacaranda_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_tropical_trapdoor.png b/public/textures/mcwbyg/jacaranda_tropical_trapdoor.png deleted file mode 100644 index f9c36af6..00000000 Binary files a/public/textures/mcwbyg/jacaranda_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_upper_lower_roof.png b/public/textures/mcwbyg/jacaranda_upper_lower_roof.png deleted file mode 100644 index d8c3a3d7..00000000 Binary files a/public/textures/mcwbyg/jacaranda_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_upper_steep_roof.png b/public/textures/mcwbyg/jacaranda_upper_steep_roof.png deleted file mode 100644 index 5068e7b2..00000000 Binary files a/public/textures/mcwbyg/jacaranda_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_waffle_door.png b/public/textures/mcwbyg/jacaranda_waffle_door.png deleted file mode 100644 index 585b6b0f..00000000 Binary files a/public/textures/mcwbyg/jacaranda_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_wardrobe.png b/public/textures/mcwbyg/jacaranda_wardrobe.png deleted file mode 100644 index 82d2d1c0..00000000 Binary files a/public/textures/mcwbyg/jacaranda_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_western_door.png b/public/textures/mcwbyg/jacaranda_western_door.png deleted file mode 100644 index d0ca52f0..00000000 Binary files a/public/textures/mcwbyg/jacaranda_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_whispering_door.png b/public/textures/mcwbyg/jacaranda_whispering_door.png deleted file mode 100644 index 15ab8876..00000000 Binary files a/public/textures/mcwbyg/jacaranda_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_whispering_trapdoor.png b/public/textures/mcwbyg/jacaranda_whispering_trapdoor.png deleted file mode 100644 index 821a7eaf..00000000 Binary files a/public/textures/mcwbyg/jacaranda_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_window.png b/public/textures/mcwbyg/jacaranda_window.png deleted file mode 100644 index c53b7e19..00000000 Binary files a/public/textures/mcwbyg/jacaranda_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_window2.png b/public/textures/mcwbyg/jacaranda_window2.png deleted file mode 100644 index 010b3470..00000000 Binary files a/public/textures/mcwbyg/jacaranda_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/jacaranda_wired_fence.png b/public/textures/mcwbyg/jacaranda_wired_fence.png deleted file mode 100644 index 635cf170..00000000 Binary files a/public/textures/mcwbyg/jacaranda_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_attic_roof.png b/public/textures/mcwbyg/mahogany_attic_roof.png deleted file mode 100644 index e7c10b55..00000000 Binary files a/public/textures/mcwbyg/mahogany_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_bamboo_door.png b/public/textures/mcwbyg/mahogany_bamboo_door.png deleted file mode 100644 index e210e1e4..00000000 Binary files a/public/textures/mcwbyg/mahogany_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_bamboo_trapdoor.png b/public/textures/mcwbyg/mahogany_bamboo_trapdoor.png deleted file mode 100644 index 4ef78d48..00000000 Binary files a/public/textures/mcwbyg/mahogany_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_bark_glass_door.png b/public/textures/mcwbyg/mahogany_bark_glass_door.png deleted file mode 100644 index 658e4e68..00000000 Binary files a/public/textures/mcwbyg/mahogany_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_bark_trapdoor.png b/public/textures/mcwbyg/mahogany_bark_trapdoor.png deleted file mode 100644 index 0399257a..00000000 Binary files a/public/textures/mcwbyg/mahogany_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_barn_door.png b/public/textures/mcwbyg/mahogany_barn_door.png deleted file mode 100644 index c5750d9b..00000000 Binary files a/public/textures/mcwbyg/mahogany_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_barn_glass_door.png b/public/textures/mcwbyg/mahogany_barn_glass_door.png deleted file mode 100644 index 53c3e340..00000000 Binary files a/public/textures/mcwbyg/mahogany_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_barn_trapdoor.png b/public/textures/mcwbyg/mahogany_barn_trapdoor.png deleted file mode 100644 index 0f1cb81a..00000000 Binary files a/public/textures/mcwbyg/mahogany_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_barred_trapdoor.png b/public/textures/mcwbyg/mahogany_barred_trapdoor.png deleted file mode 100644 index ae8ad61b..00000000 Binary files a/public/textures/mcwbyg/mahogany_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_barrel_trapdoor.png b/public/textures/mcwbyg/mahogany_barrel_trapdoor.png deleted file mode 100644 index 975ffa31..00000000 Binary files a/public/textures/mcwbyg/mahogany_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_beach_door.png b/public/textures/mcwbyg/mahogany_beach_door.png deleted file mode 100644 index b6d9083b..00000000 Binary files a/public/textures/mcwbyg/mahogany_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_beach_trapdoor.png b/public/textures/mcwbyg/mahogany_beach_trapdoor.png deleted file mode 100644 index 21144ba4..00000000 Binary files a/public/textures/mcwbyg/mahogany_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_blinds.png b/public/textures/mcwbyg/mahogany_blinds.png deleted file mode 100644 index dfdbd462..00000000 Binary files a/public/textures/mcwbyg/mahogany_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_blossom_trapdoor.png b/public/textures/mcwbyg/mahogany_blossom_trapdoor.png deleted file mode 100644 index c53c7fd3..00000000 Binary files a/public/textures/mcwbyg/mahogany_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_bookshelf.png b/public/textures/mcwbyg/mahogany_bookshelf.png deleted file mode 100644 index 866893fa..00000000 Binary files a/public/textures/mcwbyg/mahogany_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_bookshelf_cupboard.png b/public/textures/mcwbyg/mahogany_bookshelf_cupboard.png deleted file mode 100644 index e92fff81..00000000 Binary files a/public/textures/mcwbyg/mahogany_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_bookshelf_drawer.png b/public/textures/mcwbyg/mahogany_bookshelf_drawer.png deleted file mode 100644 index 7db7d58a..00000000 Binary files a/public/textures/mcwbyg/mahogany_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_bridge_pier.png b/public/textures/mcwbyg/mahogany_bridge_pier.png deleted file mode 100644 index 7245837d..00000000 Binary files a/public/textures/mcwbyg/mahogany_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_chair.png b/public/textures/mcwbyg/mahogany_chair.png deleted file mode 100644 index 61fc7526..00000000 Binary files a/public/textures/mcwbyg/mahogany_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_classic_door.png b/public/textures/mcwbyg/mahogany_classic_door.png deleted file mode 100644 index a09b9e19..00000000 Binary files a/public/textures/mcwbyg/mahogany_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_classic_trapdoor.png b/public/textures/mcwbyg/mahogany_classic_trapdoor.png deleted file mode 100644 index 0a0af9f3..00000000 Binary files a/public/textures/mcwbyg/mahogany_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_coffee_table.png b/public/textures/mcwbyg/mahogany_coffee_table.png deleted file mode 100644 index 1930a243..00000000 Binary files a/public/textures/mcwbyg/mahogany_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_cottage_door.png b/public/textures/mcwbyg/mahogany_cottage_door.png deleted file mode 100644 index 7cd479b8..00000000 Binary files a/public/textures/mcwbyg/mahogany_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_cottage_trapdoor.png b/public/textures/mcwbyg/mahogany_cottage_trapdoor.png deleted file mode 100644 index 4c022a75..00000000 Binary files a/public/textures/mcwbyg/mahogany_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_counter.png b/public/textures/mcwbyg/mahogany_counter.png deleted file mode 100644 index d69699a5..00000000 Binary files a/public/textures/mcwbyg/mahogany_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_covered_desk.png b/public/textures/mcwbyg/mahogany_covered_desk.png deleted file mode 100644 index 2ee4ba4b..00000000 Binary files a/public/textures/mcwbyg/mahogany_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_cupboard_counter.png b/public/textures/mcwbyg/mahogany_cupboard_counter.png deleted file mode 100644 index e02c0e4a..00000000 Binary files a/public/textures/mcwbyg/mahogany_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_curtain_rod.png b/public/textures/mcwbyg/mahogany_curtain_rod.png deleted file mode 100644 index 2ca0e70b..00000000 Binary files a/public/textures/mcwbyg/mahogany_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_curved_gate.png b/public/textures/mcwbyg/mahogany_curved_gate.png deleted file mode 100644 index 0bf758a3..00000000 Binary files a/public/textures/mcwbyg/mahogany_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_desk.png b/public/textures/mcwbyg/mahogany_desk.png deleted file mode 100644 index a38dcaa6..00000000 Binary files a/public/textures/mcwbyg/mahogany_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_double_drawer.png b/public/textures/mcwbyg/mahogany_double_drawer.png deleted file mode 100644 index 08f91f8f..00000000 Binary files a/public/textures/mcwbyg/mahogany_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_double_drawer_counter.png b/public/textures/mcwbyg/mahogany_double_drawer_counter.png deleted file mode 100644 index 0521f2c2..00000000 Binary files a/public/textures/mcwbyg/mahogany_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_double_kitchen_cabinet.png b/public/textures/mcwbyg/mahogany_double_kitchen_cabinet.png deleted file mode 100644 index dccca23d..00000000 Binary files a/public/textures/mcwbyg/mahogany_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_double_wardrobe.png b/public/textures/mcwbyg/mahogany_double_wardrobe.png deleted file mode 100644 index 4470b5af..00000000 Binary files a/public/textures/mcwbyg/mahogany_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_drawer.png b/public/textures/mcwbyg/mahogany_drawer.png deleted file mode 100644 index 96be4e60..00000000 Binary files a/public/textures/mcwbyg/mahogany_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_drawer_counter.png b/public/textures/mcwbyg/mahogany_drawer_counter.png deleted file mode 100644 index 76a84b8e..00000000 Binary files a/public/textures/mcwbyg/mahogany_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_end_table.png b/public/textures/mcwbyg/mahogany_end_table.png deleted file mode 100644 index cf20100b..00000000 Binary files a/public/textures/mcwbyg/mahogany_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_four_panel_door.png b/public/textures/mcwbyg/mahogany_four_panel_door.png deleted file mode 100644 index f021c262..00000000 Binary files a/public/textures/mcwbyg/mahogany_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_four_panel_trapdoor.png b/public/textures/mcwbyg/mahogany_four_panel_trapdoor.png deleted file mode 100644 index b2c20520..00000000 Binary files a/public/textures/mcwbyg/mahogany_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_four_window.png b/public/textures/mcwbyg/mahogany_four_window.png deleted file mode 100644 index af4bf358..00000000 Binary files a/public/textures/mcwbyg/mahogany_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_glass_door.png b/public/textures/mcwbyg/mahogany_glass_door.png deleted file mode 100644 index 0306c2ca..00000000 Binary files a/public/textures/mcwbyg/mahogany_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_glass_kitchen_cabinet.png b/public/textures/mcwbyg/mahogany_glass_kitchen_cabinet.png deleted file mode 100644 index 8b5fe9e2..00000000 Binary files a/public/textures/mcwbyg/mahogany_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_glass_table.png b/public/textures/mcwbyg/mahogany_glass_table.png deleted file mode 100644 index dd586633..00000000 Binary files a/public/textures/mcwbyg/mahogany_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_glass_trapdoor.png b/public/textures/mcwbyg/mahogany_glass_trapdoor.png deleted file mode 100644 index 2ed3d206..00000000 Binary files a/public/textures/mcwbyg/mahogany_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_hedge.png b/public/textures/mcwbyg/mahogany_hedge.png deleted file mode 100644 index f6cd4030..00000000 Binary files a/public/textures/mcwbyg/mahogany_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_highley_gate.png b/public/textures/mcwbyg/mahogany_highley_gate.png deleted file mode 100644 index ec3c7a81..00000000 Binary files a/public/textures/mcwbyg/mahogany_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_horse_fence.png b/public/textures/mcwbyg/mahogany_horse_fence.png deleted file mode 100644 index 940db174..00000000 Binary files a/public/textures/mcwbyg/mahogany_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_japanese2_door.png b/public/textures/mcwbyg/mahogany_japanese2_door.png deleted file mode 100644 index 2cb12fa4..00000000 Binary files a/public/textures/mcwbyg/mahogany_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_japanese_door.png b/public/textures/mcwbyg/mahogany_japanese_door.png deleted file mode 100644 index b24bb32f..00000000 Binary files a/public/textures/mcwbyg/mahogany_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_kitchen_cabinet.png b/public/textures/mcwbyg/mahogany_kitchen_cabinet.png deleted file mode 100644 index 20db65ef..00000000 Binary files a/public/textures/mcwbyg/mahogany_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_large_drawer.png b/public/textures/mcwbyg/mahogany_large_drawer.png deleted file mode 100644 index 772b6253..00000000 Binary files a/public/textures/mcwbyg/mahogany_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_log_bridge_middle.png b/public/textures/mcwbyg/mahogany_log_bridge_middle.png deleted file mode 100644 index 4a80e465..00000000 Binary files a/public/textures/mcwbyg/mahogany_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_log_bridge_stair.png b/public/textures/mcwbyg/mahogany_log_bridge_stair.png deleted file mode 100644 index 36d634bd..00000000 Binary files a/public/textures/mcwbyg/mahogany_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_log_parapet.png b/public/textures/mcwbyg/mahogany_log_parapet.png deleted file mode 100644 index c9127950..00000000 Binary files a/public/textures/mcwbyg/mahogany_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_louvered_shutter.png b/public/textures/mcwbyg/mahogany_louvered_shutter.png deleted file mode 100644 index 144bda6d..00000000 Binary files a/public/textures/mcwbyg/mahogany_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_lower_bookshelf_drawer.png b/public/textures/mcwbyg/mahogany_lower_bookshelf_drawer.png deleted file mode 100644 index 09f7e0b0..00000000 Binary files a/public/textures/mcwbyg/mahogany_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_lower_roof.png b/public/textures/mcwbyg/mahogany_lower_roof.png deleted file mode 100644 index a1b96915..00000000 Binary files a/public/textures/mcwbyg/mahogany_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_lower_triple_drawer.png b/public/textures/mcwbyg/mahogany_lower_triple_drawer.png deleted file mode 100644 index aebb2253..00000000 Binary files a/public/textures/mcwbyg/mahogany_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_modern_chair.png b/public/textures/mcwbyg/mahogany_modern_chair.png deleted file mode 100644 index feacc03b..00000000 Binary files a/public/textures/mcwbyg/mahogany_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_modern_desk.png b/public/textures/mcwbyg/mahogany_modern_desk.png deleted file mode 100644 index 7f4804c7..00000000 Binary files a/public/textures/mcwbyg/mahogany_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_modern_door.png b/public/textures/mcwbyg/mahogany_modern_door.png deleted file mode 100644 index 6c98f28b..00000000 Binary files a/public/textures/mcwbyg/mahogany_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_modern_wardrobe.png b/public/textures/mcwbyg/mahogany_modern_wardrobe.png deleted file mode 100644 index 4fda85bc..00000000 Binary files a/public/textures/mcwbyg/mahogany_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_mystic_door.png b/public/textures/mcwbyg/mahogany_mystic_door.png deleted file mode 100644 index 0ab2d80c..00000000 Binary files a/public/textures/mcwbyg/mahogany_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_mystic_trapdoor.png b/public/textures/mcwbyg/mahogany_mystic_trapdoor.png deleted file mode 100644 index a801a8a0..00000000 Binary files a/public/textures/mcwbyg/mahogany_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_nether_door.png b/public/textures/mcwbyg/mahogany_nether_door.png deleted file mode 100644 index 09d64411..00000000 Binary files a/public/textures/mcwbyg/mahogany_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_pane_window.png b/public/textures/mcwbyg/mahogany_pane_window.png deleted file mode 100644 index d32f43df..00000000 Binary files a/public/textures/mcwbyg/mahogany_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_paper_door.png b/public/textures/mcwbyg/mahogany_paper_door.png deleted file mode 100644 index 5d1e0666..00000000 Binary files a/public/textures/mcwbyg/mahogany_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_paper_trapdoor.png b/public/textures/mcwbyg/mahogany_paper_trapdoor.png deleted file mode 100644 index 2c435211..00000000 Binary files a/public/textures/mcwbyg/mahogany_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_picket_fence.png b/public/textures/mcwbyg/mahogany_picket_fence.png deleted file mode 100644 index 8ac01123..00000000 Binary files a/public/textures/mcwbyg/mahogany_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_plank_four_window.png b/public/textures/mcwbyg/mahogany_plank_four_window.png deleted file mode 100644 index 37dbd159..00000000 Binary files a/public/textures/mcwbyg/mahogany_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_plank_pane_window.png b/public/textures/mcwbyg/mahogany_plank_pane_window.png deleted file mode 100644 index 359a4798..00000000 Binary files a/public/textures/mcwbyg/mahogany_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_plank_parapet.png b/public/textures/mcwbyg/mahogany_plank_parapet.png deleted file mode 100644 index e78e4fc7..00000000 Binary files a/public/textures/mcwbyg/mahogany_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_plank_window.png b/public/textures/mcwbyg/mahogany_plank_window.png deleted file mode 100644 index e99ac2b9..00000000 Binary files a/public/textures/mcwbyg/mahogany_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_plank_window2.png b/public/textures/mcwbyg/mahogany_plank_window2.png deleted file mode 100644 index 9c44cc31..00000000 Binary files a/public/textures/mcwbyg/mahogany_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_planks_attic_roof.png b/public/textures/mcwbyg/mahogany_planks_attic_roof.png deleted file mode 100644 index e59c2581..00000000 Binary files a/public/textures/mcwbyg/mahogany_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_planks_lower_roof.png b/public/textures/mcwbyg/mahogany_planks_lower_roof.png deleted file mode 100644 index fa87ad78..00000000 Binary files a/public/textures/mcwbyg/mahogany_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_planks_path.png b/public/textures/mcwbyg/mahogany_planks_path.png deleted file mode 100644 index 636a23e8..00000000 Binary files a/public/textures/mcwbyg/mahogany_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_planks_roof.png b/public/textures/mcwbyg/mahogany_planks_roof.png deleted file mode 100644 index 56537e5e..00000000 Binary files a/public/textures/mcwbyg/mahogany_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_planks_steep_roof.png b/public/textures/mcwbyg/mahogany_planks_steep_roof.png deleted file mode 100644 index 9f6a83f6..00000000 Binary files a/public/textures/mcwbyg/mahogany_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_planks_top_roof.png b/public/textures/mcwbyg/mahogany_planks_top_roof.png deleted file mode 100644 index b4e2d7db..00000000 Binary files a/public/textures/mcwbyg/mahogany_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_planks_upper_lower_roof.png b/public/textures/mcwbyg/mahogany_planks_upper_lower_roof.png deleted file mode 100644 index af84e1da..00000000 Binary files a/public/textures/mcwbyg/mahogany_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_planks_upper_steep_roof.png b/public/textures/mcwbyg/mahogany_planks_upper_steep_roof.png deleted file mode 100644 index 826f6e49..00000000 Binary files a/public/textures/mcwbyg/mahogany_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_pyramid_gate.png b/public/textures/mcwbyg/mahogany_pyramid_gate.png deleted file mode 100644 index 620b0603..00000000 Binary files a/public/textures/mcwbyg/mahogany_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_rail_bridge.png b/public/textures/mcwbyg/mahogany_rail_bridge.png deleted file mode 100644 index 574bdd17..00000000 Binary files a/public/textures/mcwbyg/mahogany_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_ranch_trapdoor.png b/public/textures/mcwbyg/mahogany_ranch_trapdoor.png deleted file mode 100644 index ba8fc7b2..00000000 Binary files a/public/textures/mcwbyg/mahogany_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_roof.png b/public/textures/mcwbyg/mahogany_roof.png deleted file mode 100644 index 758775a8..00000000 Binary files a/public/textures/mcwbyg/mahogany_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_rope_bridge_stair.png b/public/textures/mcwbyg/mahogany_rope_bridge_stair.png deleted file mode 100644 index bf1b5104..00000000 Binary files a/public/textures/mcwbyg/mahogany_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_shutter.png b/public/textures/mcwbyg/mahogany_shutter.png deleted file mode 100644 index cdd37706..00000000 Binary files a/public/textures/mcwbyg/mahogany_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_stable_door.png b/public/textures/mcwbyg/mahogany_stable_door.png deleted file mode 100644 index 81a304c7..00000000 Binary files a/public/textures/mcwbyg/mahogany_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_stable_head_door.png b/public/textures/mcwbyg/mahogany_stable_head_door.png deleted file mode 100644 index 60f0a397..00000000 Binary files a/public/textures/mcwbyg/mahogany_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_steep_roof.png b/public/textures/mcwbyg/mahogany_steep_roof.png deleted file mode 100644 index 35d6e671..00000000 Binary files a/public/textures/mcwbyg/mahogany_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_stockade_fence.png b/public/textures/mcwbyg/mahogany_stockade_fence.png deleted file mode 100644 index c3584d6c..00000000 Binary files a/public/textures/mcwbyg/mahogany_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_stool_chair.png b/public/textures/mcwbyg/mahogany_stool_chair.png deleted file mode 100644 index 52940b42..00000000 Binary files a/public/textures/mcwbyg/mahogany_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_striped_chair.png b/public/textures/mcwbyg/mahogany_striped_chair.png deleted file mode 100644 index 898ce058..00000000 Binary files a/public/textures/mcwbyg/mahogany_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_swamp_door.png b/public/textures/mcwbyg/mahogany_swamp_door.png deleted file mode 100644 index a3a0be6e..00000000 Binary files a/public/textures/mcwbyg/mahogany_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_swamp_trapdoor.png b/public/textures/mcwbyg/mahogany_swamp_trapdoor.png deleted file mode 100644 index c1c11cf4..00000000 Binary files a/public/textures/mcwbyg/mahogany_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_table.png b/public/textures/mcwbyg/mahogany_table.png deleted file mode 100644 index 2408e920..00000000 Binary files a/public/textures/mcwbyg/mahogany_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_top_roof.png b/public/textures/mcwbyg/mahogany_top_roof.png deleted file mode 100644 index c4d9c373..00000000 Binary files a/public/textures/mcwbyg/mahogany_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_triple_drawer.png b/public/textures/mcwbyg/mahogany_triple_drawer.png deleted file mode 100644 index 8c2719dd..00000000 Binary files a/public/textures/mcwbyg/mahogany_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_tropical_door.png b/public/textures/mcwbyg/mahogany_tropical_door.png deleted file mode 100644 index 2d8c62ab..00000000 Binary files a/public/textures/mcwbyg/mahogany_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_tropical_trapdoor.png b/public/textures/mcwbyg/mahogany_tropical_trapdoor.png deleted file mode 100644 index a1d6d92c..00000000 Binary files a/public/textures/mcwbyg/mahogany_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_upper_lower_roof.png b/public/textures/mcwbyg/mahogany_upper_lower_roof.png deleted file mode 100644 index b77a8c2f..00000000 Binary files a/public/textures/mcwbyg/mahogany_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_upper_steep_roof.png b/public/textures/mcwbyg/mahogany_upper_steep_roof.png deleted file mode 100644 index 20b79315..00000000 Binary files a/public/textures/mcwbyg/mahogany_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_waffle_door.png b/public/textures/mcwbyg/mahogany_waffle_door.png deleted file mode 100644 index 1d9b7b06..00000000 Binary files a/public/textures/mcwbyg/mahogany_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_wardrobe.png b/public/textures/mcwbyg/mahogany_wardrobe.png deleted file mode 100644 index 3a80f4a2..00000000 Binary files a/public/textures/mcwbyg/mahogany_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_western_door.png b/public/textures/mcwbyg/mahogany_western_door.png deleted file mode 100644 index d66c9f76..00000000 Binary files a/public/textures/mcwbyg/mahogany_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_whispering_door.png b/public/textures/mcwbyg/mahogany_whispering_door.png deleted file mode 100644 index 53b5881b..00000000 Binary files a/public/textures/mcwbyg/mahogany_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_whispering_trapdoor.png b/public/textures/mcwbyg/mahogany_whispering_trapdoor.png deleted file mode 100644 index 59071d6f..00000000 Binary files a/public/textures/mcwbyg/mahogany_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_window.png b/public/textures/mcwbyg/mahogany_window.png deleted file mode 100644 index 8c178d42..00000000 Binary files a/public/textures/mcwbyg/mahogany_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_window2.png b/public/textures/mcwbyg/mahogany_window2.png deleted file mode 100644 index 82234e24..00000000 Binary files a/public/textures/mcwbyg/mahogany_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/mahogany_wired_fence.png b/public/textures/mcwbyg/mahogany_wired_fence.png deleted file mode 100644 index 86f957f7..00000000 Binary files a/public/textures/mcwbyg/mahogany_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_attic_roof.png b/public/textures/mcwbyg/maple_attic_roof.png deleted file mode 100644 index 63c22b61..00000000 Binary files a/public/textures/mcwbyg/maple_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_bamboo_door.png b/public/textures/mcwbyg/maple_bamboo_door.png deleted file mode 100644 index 2e205421..00000000 Binary files a/public/textures/mcwbyg/maple_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_bamboo_trapdoor.png b/public/textures/mcwbyg/maple_bamboo_trapdoor.png deleted file mode 100644 index c2b2a839..00000000 Binary files a/public/textures/mcwbyg/maple_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_bark_glass_door.png b/public/textures/mcwbyg/maple_bark_glass_door.png deleted file mode 100644 index 4cb082ed..00000000 Binary files a/public/textures/mcwbyg/maple_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_bark_trapdoor.png b/public/textures/mcwbyg/maple_bark_trapdoor.png deleted file mode 100644 index 04e10af3..00000000 Binary files a/public/textures/mcwbyg/maple_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_barn_door.png b/public/textures/mcwbyg/maple_barn_door.png deleted file mode 100644 index 2b48a0e2..00000000 Binary files a/public/textures/mcwbyg/maple_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_barn_glass_door.png b/public/textures/mcwbyg/maple_barn_glass_door.png deleted file mode 100644 index d19a9ac5..00000000 Binary files a/public/textures/mcwbyg/maple_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_barn_trapdoor.png b/public/textures/mcwbyg/maple_barn_trapdoor.png deleted file mode 100644 index 8f1f7691..00000000 Binary files a/public/textures/mcwbyg/maple_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_barred_trapdoor.png b/public/textures/mcwbyg/maple_barred_trapdoor.png deleted file mode 100644 index 5a66514f..00000000 Binary files a/public/textures/mcwbyg/maple_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_barrel_trapdoor.png b/public/textures/mcwbyg/maple_barrel_trapdoor.png deleted file mode 100644 index a59941fd..00000000 Binary files a/public/textures/mcwbyg/maple_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_beach_door.png b/public/textures/mcwbyg/maple_beach_door.png deleted file mode 100644 index c142f180..00000000 Binary files a/public/textures/mcwbyg/maple_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_beach_trapdoor.png b/public/textures/mcwbyg/maple_beach_trapdoor.png deleted file mode 100644 index 727488ef..00000000 Binary files a/public/textures/mcwbyg/maple_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_blinds.png b/public/textures/mcwbyg/maple_blinds.png deleted file mode 100644 index 3680a94e..00000000 Binary files a/public/textures/mcwbyg/maple_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_blossom_trapdoor.png b/public/textures/mcwbyg/maple_blossom_trapdoor.png deleted file mode 100644 index 2ff98a9d..00000000 Binary files a/public/textures/mcwbyg/maple_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_bookshelf.png b/public/textures/mcwbyg/maple_bookshelf.png deleted file mode 100644 index b804d9a0..00000000 Binary files a/public/textures/mcwbyg/maple_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_bookshelf_cupboard.png b/public/textures/mcwbyg/maple_bookshelf_cupboard.png deleted file mode 100644 index 1e7e5ec6..00000000 Binary files a/public/textures/mcwbyg/maple_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_bookshelf_drawer.png b/public/textures/mcwbyg/maple_bookshelf_drawer.png deleted file mode 100644 index 90231019..00000000 Binary files a/public/textures/mcwbyg/maple_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_bridge_pier.png b/public/textures/mcwbyg/maple_bridge_pier.png deleted file mode 100644 index 6df242d0..00000000 Binary files a/public/textures/mcwbyg/maple_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_chair.png b/public/textures/mcwbyg/maple_chair.png deleted file mode 100644 index c11823a2..00000000 Binary files a/public/textures/mcwbyg/maple_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_classic_door.png b/public/textures/mcwbyg/maple_classic_door.png deleted file mode 100644 index 0a574dbd..00000000 Binary files a/public/textures/mcwbyg/maple_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_classic_trapdoor.png b/public/textures/mcwbyg/maple_classic_trapdoor.png deleted file mode 100644 index ae9a2bd9..00000000 Binary files a/public/textures/mcwbyg/maple_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_coffee_table.png b/public/textures/mcwbyg/maple_coffee_table.png deleted file mode 100644 index 990619c1..00000000 Binary files a/public/textures/mcwbyg/maple_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_cottage_door.png b/public/textures/mcwbyg/maple_cottage_door.png deleted file mode 100644 index 0804fed4..00000000 Binary files a/public/textures/mcwbyg/maple_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_cottage_trapdoor.png b/public/textures/mcwbyg/maple_cottage_trapdoor.png deleted file mode 100644 index 6c30b262..00000000 Binary files a/public/textures/mcwbyg/maple_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_counter.png b/public/textures/mcwbyg/maple_counter.png deleted file mode 100644 index 2f7bf014..00000000 Binary files a/public/textures/mcwbyg/maple_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_covered_desk.png b/public/textures/mcwbyg/maple_covered_desk.png deleted file mode 100644 index dcd21076..00000000 Binary files a/public/textures/mcwbyg/maple_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_cupboard_counter.png b/public/textures/mcwbyg/maple_cupboard_counter.png deleted file mode 100644 index e68ac7d2..00000000 Binary files a/public/textures/mcwbyg/maple_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_curtain_rod.png b/public/textures/mcwbyg/maple_curtain_rod.png deleted file mode 100644 index 12591ed9..00000000 Binary files a/public/textures/mcwbyg/maple_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_curved_gate.png b/public/textures/mcwbyg/maple_curved_gate.png deleted file mode 100644 index 3ee51ad8..00000000 Binary files a/public/textures/mcwbyg/maple_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_desk.png b/public/textures/mcwbyg/maple_desk.png deleted file mode 100644 index 33928588..00000000 Binary files a/public/textures/mcwbyg/maple_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_double_drawer.png b/public/textures/mcwbyg/maple_double_drawer.png deleted file mode 100644 index cf017d0d..00000000 Binary files a/public/textures/mcwbyg/maple_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_double_drawer_counter.png b/public/textures/mcwbyg/maple_double_drawer_counter.png deleted file mode 100644 index 587d61a2..00000000 Binary files a/public/textures/mcwbyg/maple_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_double_kitchen_cabinet.png b/public/textures/mcwbyg/maple_double_kitchen_cabinet.png deleted file mode 100644 index e8e83720..00000000 Binary files a/public/textures/mcwbyg/maple_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_double_wardrobe.png b/public/textures/mcwbyg/maple_double_wardrobe.png deleted file mode 100644 index 197d68d5..00000000 Binary files a/public/textures/mcwbyg/maple_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_drawer.png b/public/textures/mcwbyg/maple_drawer.png deleted file mode 100644 index 8ea8b351..00000000 Binary files a/public/textures/mcwbyg/maple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_drawer_counter.png b/public/textures/mcwbyg/maple_drawer_counter.png deleted file mode 100644 index 8e6b4488..00000000 Binary files a/public/textures/mcwbyg/maple_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_end_table.png b/public/textures/mcwbyg/maple_end_table.png deleted file mode 100644 index 242ae556..00000000 Binary files a/public/textures/mcwbyg/maple_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_four_panel_door.png b/public/textures/mcwbyg/maple_four_panel_door.png deleted file mode 100644 index c621cc0e..00000000 Binary files a/public/textures/mcwbyg/maple_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_four_panel_trapdoor.png b/public/textures/mcwbyg/maple_four_panel_trapdoor.png deleted file mode 100644 index a079afbb..00000000 Binary files a/public/textures/mcwbyg/maple_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_four_window.png b/public/textures/mcwbyg/maple_four_window.png deleted file mode 100644 index 65d4b93e..00000000 Binary files a/public/textures/mcwbyg/maple_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_glass_door.png b/public/textures/mcwbyg/maple_glass_door.png deleted file mode 100644 index a71fb8b4..00000000 Binary files a/public/textures/mcwbyg/maple_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_glass_kitchen_cabinet.png b/public/textures/mcwbyg/maple_glass_kitchen_cabinet.png deleted file mode 100644 index 2fda566b..00000000 Binary files a/public/textures/mcwbyg/maple_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_glass_table.png b/public/textures/mcwbyg/maple_glass_table.png deleted file mode 100644 index 1563c548..00000000 Binary files a/public/textures/mcwbyg/maple_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_glass_trapdoor.png b/public/textures/mcwbyg/maple_glass_trapdoor.png deleted file mode 100644 index 35613531..00000000 Binary files a/public/textures/mcwbyg/maple_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_hedge.png b/public/textures/mcwbyg/maple_hedge.png deleted file mode 100644 index 43ec55a2..00000000 Binary files a/public/textures/mcwbyg/maple_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_highley_gate.png b/public/textures/mcwbyg/maple_highley_gate.png deleted file mode 100644 index 6993a130..00000000 Binary files a/public/textures/mcwbyg/maple_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_horse_fence.png b/public/textures/mcwbyg/maple_horse_fence.png deleted file mode 100644 index 6976fe1a..00000000 Binary files a/public/textures/mcwbyg/maple_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_japanese2_door.png b/public/textures/mcwbyg/maple_japanese2_door.png deleted file mode 100644 index dfcb30cf..00000000 Binary files a/public/textures/mcwbyg/maple_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_japanese_door.png b/public/textures/mcwbyg/maple_japanese_door.png deleted file mode 100644 index 4c356a6b..00000000 Binary files a/public/textures/mcwbyg/maple_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_kitchen_cabinet.png b/public/textures/mcwbyg/maple_kitchen_cabinet.png deleted file mode 100644 index 42513ca0..00000000 Binary files a/public/textures/mcwbyg/maple_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_large_drawer.png b/public/textures/mcwbyg/maple_large_drawer.png deleted file mode 100644 index 605b9db3..00000000 Binary files a/public/textures/mcwbyg/maple_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_log_bridge_middle.png b/public/textures/mcwbyg/maple_log_bridge_middle.png deleted file mode 100644 index fb4bd9e5..00000000 Binary files a/public/textures/mcwbyg/maple_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_log_bridge_stair.png b/public/textures/mcwbyg/maple_log_bridge_stair.png deleted file mode 100644 index 4d3d0b73..00000000 Binary files a/public/textures/mcwbyg/maple_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_log_parapet.png b/public/textures/mcwbyg/maple_log_parapet.png deleted file mode 100644 index 6f67805c..00000000 Binary files a/public/textures/mcwbyg/maple_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_louvered_shutter.png b/public/textures/mcwbyg/maple_louvered_shutter.png deleted file mode 100644 index e2497f4d..00000000 Binary files a/public/textures/mcwbyg/maple_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_lower_bookshelf_drawer.png b/public/textures/mcwbyg/maple_lower_bookshelf_drawer.png deleted file mode 100644 index 2941491a..00000000 Binary files a/public/textures/mcwbyg/maple_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_lower_roof.png b/public/textures/mcwbyg/maple_lower_roof.png deleted file mode 100644 index 68ca1132..00000000 Binary files a/public/textures/mcwbyg/maple_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_lower_triple_drawer.png b/public/textures/mcwbyg/maple_lower_triple_drawer.png deleted file mode 100644 index 08821336..00000000 Binary files a/public/textures/mcwbyg/maple_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_modern_chair.png b/public/textures/mcwbyg/maple_modern_chair.png deleted file mode 100644 index 9e2eec86..00000000 Binary files a/public/textures/mcwbyg/maple_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_modern_desk.png b/public/textures/mcwbyg/maple_modern_desk.png deleted file mode 100644 index afde8d9f..00000000 Binary files a/public/textures/mcwbyg/maple_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_modern_door.png b/public/textures/mcwbyg/maple_modern_door.png deleted file mode 100644 index 8bbb6111..00000000 Binary files a/public/textures/mcwbyg/maple_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_modern_wardrobe.png b/public/textures/mcwbyg/maple_modern_wardrobe.png deleted file mode 100644 index 9d4a859a..00000000 Binary files a/public/textures/mcwbyg/maple_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_mystic_door.png b/public/textures/mcwbyg/maple_mystic_door.png deleted file mode 100644 index b3681c67..00000000 Binary files a/public/textures/mcwbyg/maple_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_mystic_trapdoor.png b/public/textures/mcwbyg/maple_mystic_trapdoor.png deleted file mode 100644 index b4ed007f..00000000 Binary files a/public/textures/mcwbyg/maple_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_nether_door.png b/public/textures/mcwbyg/maple_nether_door.png deleted file mode 100644 index 8aafbdba..00000000 Binary files a/public/textures/mcwbyg/maple_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_pane_window.png b/public/textures/mcwbyg/maple_pane_window.png deleted file mode 100644 index f16078b6..00000000 Binary files a/public/textures/mcwbyg/maple_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_paper_door.png b/public/textures/mcwbyg/maple_paper_door.png deleted file mode 100644 index 54305b1c..00000000 Binary files a/public/textures/mcwbyg/maple_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_paper_trapdoor.png b/public/textures/mcwbyg/maple_paper_trapdoor.png deleted file mode 100644 index ade35629..00000000 Binary files a/public/textures/mcwbyg/maple_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_picket_fence.png b/public/textures/mcwbyg/maple_picket_fence.png deleted file mode 100644 index 2ccd6c05..00000000 Binary files a/public/textures/mcwbyg/maple_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_plank_four_window.png b/public/textures/mcwbyg/maple_plank_four_window.png deleted file mode 100644 index 064c6271..00000000 Binary files a/public/textures/mcwbyg/maple_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_plank_pane_window.png b/public/textures/mcwbyg/maple_plank_pane_window.png deleted file mode 100644 index 8d2e263b..00000000 Binary files a/public/textures/mcwbyg/maple_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_plank_parapet.png b/public/textures/mcwbyg/maple_plank_parapet.png deleted file mode 100644 index cb046170..00000000 Binary files a/public/textures/mcwbyg/maple_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_plank_window.png b/public/textures/mcwbyg/maple_plank_window.png deleted file mode 100644 index 614d897e..00000000 Binary files a/public/textures/mcwbyg/maple_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_plank_window2.png b/public/textures/mcwbyg/maple_plank_window2.png deleted file mode 100644 index 79775850..00000000 Binary files a/public/textures/mcwbyg/maple_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_planks_attic_roof.png b/public/textures/mcwbyg/maple_planks_attic_roof.png deleted file mode 100644 index 3b7dbc91..00000000 Binary files a/public/textures/mcwbyg/maple_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_planks_lower_roof.png b/public/textures/mcwbyg/maple_planks_lower_roof.png deleted file mode 100644 index da7417e6..00000000 Binary files a/public/textures/mcwbyg/maple_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_planks_path.png b/public/textures/mcwbyg/maple_planks_path.png deleted file mode 100644 index 4398652a..00000000 Binary files a/public/textures/mcwbyg/maple_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_planks_roof.png b/public/textures/mcwbyg/maple_planks_roof.png deleted file mode 100644 index bb9ad7fe..00000000 Binary files a/public/textures/mcwbyg/maple_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_planks_steep_roof.png b/public/textures/mcwbyg/maple_planks_steep_roof.png deleted file mode 100644 index 3e433118..00000000 Binary files a/public/textures/mcwbyg/maple_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_planks_top_roof.png b/public/textures/mcwbyg/maple_planks_top_roof.png deleted file mode 100644 index 3c59116c..00000000 Binary files a/public/textures/mcwbyg/maple_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_planks_upper_lower_roof.png b/public/textures/mcwbyg/maple_planks_upper_lower_roof.png deleted file mode 100644 index 213fc4fb..00000000 Binary files a/public/textures/mcwbyg/maple_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_planks_upper_steep_roof.png b/public/textures/mcwbyg/maple_planks_upper_steep_roof.png deleted file mode 100644 index 734ae17b..00000000 Binary files a/public/textures/mcwbyg/maple_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_pyramid_gate.png b/public/textures/mcwbyg/maple_pyramid_gate.png deleted file mode 100644 index 22f164bb..00000000 Binary files a/public/textures/mcwbyg/maple_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_rail_bridge.png b/public/textures/mcwbyg/maple_rail_bridge.png deleted file mode 100644 index 2fe28192..00000000 Binary files a/public/textures/mcwbyg/maple_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_ranch_trapdoor.png b/public/textures/mcwbyg/maple_ranch_trapdoor.png deleted file mode 100644 index fa16e94f..00000000 Binary files a/public/textures/mcwbyg/maple_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_roof.png b/public/textures/mcwbyg/maple_roof.png deleted file mode 100644 index ba682a11..00000000 Binary files a/public/textures/mcwbyg/maple_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_rope_bridge_stair.png b/public/textures/mcwbyg/maple_rope_bridge_stair.png deleted file mode 100644 index 8658a3d1..00000000 Binary files a/public/textures/mcwbyg/maple_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_shutter.png b/public/textures/mcwbyg/maple_shutter.png deleted file mode 100644 index d2af0863..00000000 Binary files a/public/textures/mcwbyg/maple_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_stable_door.png b/public/textures/mcwbyg/maple_stable_door.png deleted file mode 100644 index e3ce30e9..00000000 Binary files a/public/textures/mcwbyg/maple_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_stable_head_door.png b/public/textures/mcwbyg/maple_stable_head_door.png deleted file mode 100644 index 06ce6b87..00000000 Binary files a/public/textures/mcwbyg/maple_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_steep_roof.png b/public/textures/mcwbyg/maple_steep_roof.png deleted file mode 100644 index a059e9a3..00000000 Binary files a/public/textures/mcwbyg/maple_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_stockade_fence.png b/public/textures/mcwbyg/maple_stockade_fence.png deleted file mode 100644 index b89c9387..00000000 Binary files a/public/textures/mcwbyg/maple_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_stool_chair.png b/public/textures/mcwbyg/maple_stool_chair.png deleted file mode 100644 index c72777e2..00000000 Binary files a/public/textures/mcwbyg/maple_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_striped_chair.png b/public/textures/mcwbyg/maple_striped_chair.png deleted file mode 100644 index 9de612ba..00000000 Binary files a/public/textures/mcwbyg/maple_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_swamp_door.png b/public/textures/mcwbyg/maple_swamp_door.png deleted file mode 100644 index be9381a9..00000000 Binary files a/public/textures/mcwbyg/maple_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_swamp_trapdoor.png b/public/textures/mcwbyg/maple_swamp_trapdoor.png deleted file mode 100644 index 86bcd0eb..00000000 Binary files a/public/textures/mcwbyg/maple_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_table.png b/public/textures/mcwbyg/maple_table.png deleted file mode 100644 index a633fc24..00000000 Binary files a/public/textures/mcwbyg/maple_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_top_roof.png b/public/textures/mcwbyg/maple_top_roof.png deleted file mode 100644 index 9341f677..00000000 Binary files a/public/textures/mcwbyg/maple_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_triple_drawer.png b/public/textures/mcwbyg/maple_triple_drawer.png deleted file mode 100644 index 9ce0bbab..00000000 Binary files a/public/textures/mcwbyg/maple_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_tropical_door.png b/public/textures/mcwbyg/maple_tropical_door.png deleted file mode 100644 index 5e529f64..00000000 Binary files a/public/textures/mcwbyg/maple_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_tropical_trapdoor.png b/public/textures/mcwbyg/maple_tropical_trapdoor.png deleted file mode 100644 index a7b8a3ab..00000000 Binary files a/public/textures/mcwbyg/maple_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_upper_lower_roof.png b/public/textures/mcwbyg/maple_upper_lower_roof.png deleted file mode 100644 index 7c6b40ef..00000000 Binary files a/public/textures/mcwbyg/maple_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_upper_steep_roof.png b/public/textures/mcwbyg/maple_upper_steep_roof.png deleted file mode 100644 index c6a04d78..00000000 Binary files a/public/textures/mcwbyg/maple_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_waffle_door.png b/public/textures/mcwbyg/maple_waffle_door.png deleted file mode 100644 index d79228d8..00000000 Binary files a/public/textures/mcwbyg/maple_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_wardrobe.png b/public/textures/mcwbyg/maple_wardrobe.png deleted file mode 100644 index 87611afb..00000000 Binary files a/public/textures/mcwbyg/maple_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_western_door.png b/public/textures/mcwbyg/maple_western_door.png deleted file mode 100644 index 5cdad96f..00000000 Binary files a/public/textures/mcwbyg/maple_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_whispering_door.png b/public/textures/mcwbyg/maple_whispering_door.png deleted file mode 100644 index d0bf2cb0..00000000 Binary files a/public/textures/mcwbyg/maple_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_whispering_trapdoor.png b/public/textures/mcwbyg/maple_whispering_trapdoor.png deleted file mode 100644 index b3c48117..00000000 Binary files a/public/textures/mcwbyg/maple_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_window.png b/public/textures/mcwbyg/maple_window.png deleted file mode 100644 index ef706e55..00000000 Binary files a/public/textures/mcwbyg/maple_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_window2.png b/public/textures/mcwbyg/maple_window2.png deleted file mode 100644 index 309b0072..00000000 Binary files a/public/textures/mcwbyg/maple_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/maple_wired_fence.png b/public/textures/mcwbyg/maple_wired_fence.png deleted file mode 100644 index 1faca528..00000000 Binary files a/public/textures/mcwbyg/maple_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/modern_black_sandstone_wall.png b/public/textures/mcwbyg/modern_black_sandstone_wall.png deleted file mode 100644 index e4aa0046..00000000 Binary files a/public/textures/mcwbyg/modern_black_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/modern_blue_sandstone_wall.png b/public/textures/mcwbyg/modern_blue_sandstone_wall.png deleted file mode 100644 index 4122095c..00000000 Binary files a/public/textures/mcwbyg/modern_blue_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/modern_dacite_bricks_wall.png b/public/textures/mcwbyg/modern_dacite_bricks_wall.png deleted file mode 100644 index d932db47..00000000 Binary files a/public/textures/mcwbyg/modern_dacite_bricks_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/modern_pink_sandstone_wall.png b/public/textures/mcwbyg/modern_pink_sandstone_wall.png deleted file mode 100644 index e46fb375..00000000 Binary files a/public/textures/mcwbyg/modern_pink_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/modern_purple_sandstone_wall.png b/public/textures/mcwbyg/modern_purple_sandstone_wall.png deleted file mode 100644 index 14a18fc8..00000000 Binary files a/public/textures/mcwbyg/modern_purple_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/modern_red_rock_bricks_wall.png b/public/textures/mcwbyg/modern_red_rock_bricks_wall.png deleted file mode 100644 index de524dbf..00000000 Binary files a/public/textures/mcwbyg/modern_red_rock_bricks_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/modern_white_sandstone_wall.png b/public/textures/mcwbyg/modern_white_sandstone_wall.png deleted file mode 100644 index 2dd319a8..00000000 Binary files a/public/textures/mcwbyg/modern_white_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/modern_windswept_sandstone_wall.png b/public/textures/mcwbyg/modern_windswept_sandstone_wall.png deleted file mode 100644 index f5c22ade..00000000 Binary files a/public/textures/mcwbyg/modern_windswept_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/orange_birch_hedge.png b/public/textures/mcwbyg/orange_birch_hedge.png deleted file mode 100644 index 849af7b4..00000000 Binary files a/public/textures/mcwbyg/orange_birch_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/orange_oak_hedge.png b/public/textures/mcwbyg/orange_oak_hedge.png deleted file mode 100644 index 3c15a493..00000000 Binary files a/public/textures/mcwbyg/orange_oak_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/orange_spruce_hedge.png b/public/textures/mcwbyg/orange_spruce_hedge.png deleted file mode 100644 index 1d91505b..00000000 Binary files a/public/textures/mcwbyg/orange_spruce_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_attic_roof.png b/public/textures/mcwbyg/palm_attic_roof.png deleted file mode 100644 index c6e5cc01..00000000 Binary files a/public/textures/mcwbyg/palm_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_bamboo_door.png b/public/textures/mcwbyg/palm_bamboo_door.png deleted file mode 100644 index 0c5cb853..00000000 Binary files a/public/textures/mcwbyg/palm_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_bamboo_trapdoor.png b/public/textures/mcwbyg/palm_bamboo_trapdoor.png deleted file mode 100644 index d9c54be1..00000000 Binary files a/public/textures/mcwbyg/palm_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_bark_glass_door.png b/public/textures/mcwbyg/palm_bark_glass_door.png deleted file mode 100644 index 9bfcc40b..00000000 Binary files a/public/textures/mcwbyg/palm_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_bark_trapdoor.png b/public/textures/mcwbyg/palm_bark_trapdoor.png deleted file mode 100644 index 27f297ca..00000000 Binary files a/public/textures/mcwbyg/palm_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_barn_door.png b/public/textures/mcwbyg/palm_barn_door.png deleted file mode 100644 index f02acc03..00000000 Binary files a/public/textures/mcwbyg/palm_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_barn_glass_door.png b/public/textures/mcwbyg/palm_barn_glass_door.png deleted file mode 100644 index cfac1be7..00000000 Binary files a/public/textures/mcwbyg/palm_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_barn_trapdoor.png b/public/textures/mcwbyg/palm_barn_trapdoor.png deleted file mode 100644 index 572b4f80..00000000 Binary files a/public/textures/mcwbyg/palm_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_barred_trapdoor.png b/public/textures/mcwbyg/palm_barred_trapdoor.png deleted file mode 100644 index 88e4b67e..00000000 Binary files a/public/textures/mcwbyg/palm_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_barrel_trapdoor.png b/public/textures/mcwbyg/palm_barrel_trapdoor.png deleted file mode 100644 index b3b50927..00000000 Binary files a/public/textures/mcwbyg/palm_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_beach_door.png b/public/textures/mcwbyg/palm_beach_door.png deleted file mode 100644 index b054c0d1..00000000 Binary files a/public/textures/mcwbyg/palm_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_beach_trapdoor.png b/public/textures/mcwbyg/palm_beach_trapdoor.png deleted file mode 100644 index 32ea7bef..00000000 Binary files a/public/textures/mcwbyg/palm_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_blinds.png b/public/textures/mcwbyg/palm_blinds.png deleted file mode 100644 index ee7e8432..00000000 Binary files a/public/textures/mcwbyg/palm_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_blossom_trapdoor.png b/public/textures/mcwbyg/palm_blossom_trapdoor.png deleted file mode 100644 index a07b1b10..00000000 Binary files a/public/textures/mcwbyg/palm_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_bookshelf.png b/public/textures/mcwbyg/palm_bookshelf.png deleted file mode 100644 index 00b3df18..00000000 Binary files a/public/textures/mcwbyg/palm_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_bookshelf_cupboard.png b/public/textures/mcwbyg/palm_bookshelf_cupboard.png deleted file mode 100644 index b3e003f8..00000000 Binary files a/public/textures/mcwbyg/palm_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_bookshelf_drawer.png b/public/textures/mcwbyg/palm_bookshelf_drawer.png deleted file mode 100644 index 855c9e66..00000000 Binary files a/public/textures/mcwbyg/palm_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_bridge_pier.png b/public/textures/mcwbyg/palm_bridge_pier.png deleted file mode 100644 index 9d062a8d..00000000 Binary files a/public/textures/mcwbyg/palm_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_chair.png b/public/textures/mcwbyg/palm_chair.png deleted file mode 100644 index f37e5a4f..00000000 Binary files a/public/textures/mcwbyg/palm_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_classic_door.png b/public/textures/mcwbyg/palm_classic_door.png deleted file mode 100644 index d1b475a5..00000000 Binary files a/public/textures/mcwbyg/palm_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_classic_trapdoor.png b/public/textures/mcwbyg/palm_classic_trapdoor.png deleted file mode 100644 index f124b86b..00000000 Binary files a/public/textures/mcwbyg/palm_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_coffee_table.png b/public/textures/mcwbyg/palm_coffee_table.png deleted file mode 100644 index 26f5533f..00000000 Binary files a/public/textures/mcwbyg/palm_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_cottage_door.png b/public/textures/mcwbyg/palm_cottage_door.png deleted file mode 100644 index 824b5fc5..00000000 Binary files a/public/textures/mcwbyg/palm_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_cottage_trapdoor.png b/public/textures/mcwbyg/palm_cottage_trapdoor.png deleted file mode 100644 index 7bf37b09..00000000 Binary files a/public/textures/mcwbyg/palm_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_counter.png b/public/textures/mcwbyg/palm_counter.png deleted file mode 100644 index b08bc8d4..00000000 Binary files a/public/textures/mcwbyg/palm_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_covered_desk.png b/public/textures/mcwbyg/palm_covered_desk.png deleted file mode 100644 index 278714d7..00000000 Binary files a/public/textures/mcwbyg/palm_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_cupboard_counter.png b/public/textures/mcwbyg/palm_cupboard_counter.png deleted file mode 100644 index 62b730d9..00000000 Binary files a/public/textures/mcwbyg/palm_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_curtain_rod.png b/public/textures/mcwbyg/palm_curtain_rod.png deleted file mode 100644 index 7fc536eb..00000000 Binary files a/public/textures/mcwbyg/palm_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_curved_gate.png b/public/textures/mcwbyg/palm_curved_gate.png deleted file mode 100644 index 400047e5..00000000 Binary files a/public/textures/mcwbyg/palm_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_desk.png b/public/textures/mcwbyg/palm_desk.png deleted file mode 100644 index d1ad986d..00000000 Binary files a/public/textures/mcwbyg/palm_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_double_drawer.png b/public/textures/mcwbyg/palm_double_drawer.png deleted file mode 100644 index ff425b8a..00000000 Binary files a/public/textures/mcwbyg/palm_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_double_drawer_counter.png b/public/textures/mcwbyg/palm_double_drawer_counter.png deleted file mode 100644 index 2a3801db..00000000 Binary files a/public/textures/mcwbyg/palm_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_double_kitchen_cabinet.png b/public/textures/mcwbyg/palm_double_kitchen_cabinet.png deleted file mode 100644 index 5a3f4199..00000000 Binary files a/public/textures/mcwbyg/palm_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_double_wardrobe.png b/public/textures/mcwbyg/palm_double_wardrobe.png deleted file mode 100644 index b85aff56..00000000 Binary files a/public/textures/mcwbyg/palm_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_drawer.png b/public/textures/mcwbyg/palm_drawer.png deleted file mode 100644 index e5a97282..00000000 Binary files a/public/textures/mcwbyg/palm_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_drawer_counter.png b/public/textures/mcwbyg/palm_drawer_counter.png deleted file mode 100644 index 381fcdbe..00000000 Binary files a/public/textures/mcwbyg/palm_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_end_table.png b/public/textures/mcwbyg/palm_end_table.png deleted file mode 100644 index a9e3db0e..00000000 Binary files a/public/textures/mcwbyg/palm_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_four_panel_door.png b/public/textures/mcwbyg/palm_four_panel_door.png deleted file mode 100644 index 52eac169..00000000 Binary files a/public/textures/mcwbyg/palm_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_four_panel_trapdoor.png b/public/textures/mcwbyg/palm_four_panel_trapdoor.png deleted file mode 100644 index 8f597421..00000000 Binary files a/public/textures/mcwbyg/palm_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_four_window.png b/public/textures/mcwbyg/palm_four_window.png deleted file mode 100644 index bb9a3fc0..00000000 Binary files a/public/textures/mcwbyg/palm_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_glass_door.png b/public/textures/mcwbyg/palm_glass_door.png deleted file mode 100644 index e2d587e4..00000000 Binary files a/public/textures/mcwbyg/palm_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_glass_kitchen_cabinet.png b/public/textures/mcwbyg/palm_glass_kitchen_cabinet.png deleted file mode 100644 index 5002c5b0..00000000 Binary files a/public/textures/mcwbyg/palm_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_glass_table.png b/public/textures/mcwbyg/palm_glass_table.png deleted file mode 100644 index 0e039cae..00000000 Binary files a/public/textures/mcwbyg/palm_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_glass_trapdoor.png b/public/textures/mcwbyg/palm_glass_trapdoor.png deleted file mode 100644 index f2335a1c..00000000 Binary files a/public/textures/mcwbyg/palm_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_hedge.png b/public/textures/mcwbyg/palm_hedge.png deleted file mode 100644 index 11cc63e3..00000000 Binary files a/public/textures/mcwbyg/palm_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_highley_gate.png b/public/textures/mcwbyg/palm_highley_gate.png deleted file mode 100644 index 19b670bc..00000000 Binary files a/public/textures/mcwbyg/palm_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_horse_fence.png b/public/textures/mcwbyg/palm_horse_fence.png deleted file mode 100644 index 16335da1..00000000 Binary files a/public/textures/mcwbyg/palm_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_japanese2_door.png b/public/textures/mcwbyg/palm_japanese2_door.png deleted file mode 100644 index adc7addf..00000000 Binary files a/public/textures/mcwbyg/palm_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_japanese_door.png b/public/textures/mcwbyg/palm_japanese_door.png deleted file mode 100644 index 902185c8..00000000 Binary files a/public/textures/mcwbyg/palm_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_kitchen_cabinet.png b/public/textures/mcwbyg/palm_kitchen_cabinet.png deleted file mode 100644 index b57a5fb8..00000000 Binary files a/public/textures/mcwbyg/palm_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_large_drawer.png b/public/textures/mcwbyg/palm_large_drawer.png deleted file mode 100644 index 695a6673..00000000 Binary files a/public/textures/mcwbyg/palm_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_log_bridge_middle.png b/public/textures/mcwbyg/palm_log_bridge_middle.png deleted file mode 100644 index e5b1df93..00000000 Binary files a/public/textures/mcwbyg/palm_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_log_bridge_stair.png b/public/textures/mcwbyg/palm_log_bridge_stair.png deleted file mode 100644 index 7a28ab2b..00000000 Binary files a/public/textures/mcwbyg/palm_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_log_parapet.png b/public/textures/mcwbyg/palm_log_parapet.png deleted file mode 100644 index 1fcfbdd8..00000000 Binary files a/public/textures/mcwbyg/palm_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_louvered_shutter.png b/public/textures/mcwbyg/palm_louvered_shutter.png deleted file mode 100644 index 7d7ddf58..00000000 Binary files a/public/textures/mcwbyg/palm_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_lower_bookshelf_drawer.png b/public/textures/mcwbyg/palm_lower_bookshelf_drawer.png deleted file mode 100644 index 1b7579fa..00000000 Binary files a/public/textures/mcwbyg/palm_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_lower_roof.png b/public/textures/mcwbyg/palm_lower_roof.png deleted file mode 100644 index 1d1998d7..00000000 Binary files a/public/textures/mcwbyg/palm_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_lower_triple_drawer.png b/public/textures/mcwbyg/palm_lower_triple_drawer.png deleted file mode 100644 index 1af9e83b..00000000 Binary files a/public/textures/mcwbyg/palm_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_modern_chair.png b/public/textures/mcwbyg/palm_modern_chair.png deleted file mode 100644 index 3d50b5bf..00000000 Binary files a/public/textures/mcwbyg/palm_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_modern_desk.png b/public/textures/mcwbyg/palm_modern_desk.png deleted file mode 100644 index 75a9507a..00000000 Binary files a/public/textures/mcwbyg/palm_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_modern_door.png b/public/textures/mcwbyg/palm_modern_door.png deleted file mode 100644 index 35f7cc78..00000000 Binary files a/public/textures/mcwbyg/palm_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_modern_wardrobe.png b/public/textures/mcwbyg/palm_modern_wardrobe.png deleted file mode 100644 index f9ab3b7c..00000000 Binary files a/public/textures/mcwbyg/palm_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_mystic_door.png b/public/textures/mcwbyg/palm_mystic_door.png deleted file mode 100644 index abb53b66..00000000 Binary files a/public/textures/mcwbyg/palm_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_mystic_trapdoor.png b/public/textures/mcwbyg/palm_mystic_trapdoor.png deleted file mode 100644 index d41e850c..00000000 Binary files a/public/textures/mcwbyg/palm_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_nether_door.png b/public/textures/mcwbyg/palm_nether_door.png deleted file mode 100644 index 79c06ac3..00000000 Binary files a/public/textures/mcwbyg/palm_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_pane_window.png b/public/textures/mcwbyg/palm_pane_window.png deleted file mode 100644 index e8be9dc7..00000000 Binary files a/public/textures/mcwbyg/palm_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_paper_door.png b/public/textures/mcwbyg/palm_paper_door.png deleted file mode 100644 index 087e0d11..00000000 Binary files a/public/textures/mcwbyg/palm_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_paper_trapdoor.png b/public/textures/mcwbyg/palm_paper_trapdoor.png deleted file mode 100644 index be4788c0..00000000 Binary files a/public/textures/mcwbyg/palm_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_picket_fence.png b/public/textures/mcwbyg/palm_picket_fence.png deleted file mode 100644 index 427212e5..00000000 Binary files a/public/textures/mcwbyg/palm_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_plank_four_window.png b/public/textures/mcwbyg/palm_plank_four_window.png deleted file mode 100644 index 4467c6ba..00000000 Binary files a/public/textures/mcwbyg/palm_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_plank_pane_window.png b/public/textures/mcwbyg/palm_plank_pane_window.png deleted file mode 100644 index a9f759a2..00000000 Binary files a/public/textures/mcwbyg/palm_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_plank_parapet.png b/public/textures/mcwbyg/palm_plank_parapet.png deleted file mode 100644 index 2f430c4b..00000000 Binary files a/public/textures/mcwbyg/palm_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_plank_window.png b/public/textures/mcwbyg/palm_plank_window.png deleted file mode 100644 index fdca4a24..00000000 Binary files a/public/textures/mcwbyg/palm_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_plank_window2.png b/public/textures/mcwbyg/palm_plank_window2.png deleted file mode 100644 index 1c2680ab..00000000 Binary files a/public/textures/mcwbyg/palm_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_planks_attic_roof.png b/public/textures/mcwbyg/palm_planks_attic_roof.png deleted file mode 100644 index 7dd015ef..00000000 Binary files a/public/textures/mcwbyg/palm_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_planks_lower_roof.png b/public/textures/mcwbyg/palm_planks_lower_roof.png deleted file mode 100644 index 4ee32e35..00000000 Binary files a/public/textures/mcwbyg/palm_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_planks_path.png b/public/textures/mcwbyg/palm_planks_path.png deleted file mode 100644 index e3c6dc4c..00000000 Binary files a/public/textures/mcwbyg/palm_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_planks_roof.png b/public/textures/mcwbyg/palm_planks_roof.png deleted file mode 100644 index 86ef30bd..00000000 Binary files a/public/textures/mcwbyg/palm_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_planks_steep_roof.png b/public/textures/mcwbyg/palm_planks_steep_roof.png deleted file mode 100644 index cd45453c..00000000 Binary files a/public/textures/mcwbyg/palm_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_planks_top_roof.png b/public/textures/mcwbyg/palm_planks_top_roof.png deleted file mode 100644 index f663497e..00000000 Binary files a/public/textures/mcwbyg/palm_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_planks_upper_lower_roof.png b/public/textures/mcwbyg/palm_planks_upper_lower_roof.png deleted file mode 100644 index 4cbfc207..00000000 Binary files a/public/textures/mcwbyg/palm_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_planks_upper_steep_roof.png b/public/textures/mcwbyg/palm_planks_upper_steep_roof.png deleted file mode 100644 index b00d9b0b..00000000 Binary files a/public/textures/mcwbyg/palm_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_pyramid_gate.png b/public/textures/mcwbyg/palm_pyramid_gate.png deleted file mode 100644 index b6bf4c4c..00000000 Binary files a/public/textures/mcwbyg/palm_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_rail_bridge.png b/public/textures/mcwbyg/palm_rail_bridge.png deleted file mode 100644 index 3620e9b1..00000000 Binary files a/public/textures/mcwbyg/palm_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_ranch_trapdoor.png b/public/textures/mcwbyg/palm_ranch_trapdoor.png deleted file mode 100644 index 8c35c7f2..00000000 Binary files a/public/textures/mcwbyg/palm_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_roof.png b/public/textures/mcwbyg/palm_roof.png deleted file mode 100644 index aa6d2713..00000000 Binary files a/public/textures/mcwbyg/palm_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_rope_bridge_stair.png b/public/textures/mcwbyg/palm_rope_bridge_stair.png deleted file mode 100644 index ff28463b..00000000 Binary files a/public/textures/mcwbyg/palm_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_shutter.png b/public/textures/mcwbyg/palm_shutter.png deleted file mode 100644 index 4343324d..00000000 Binary files a/public/textures/mcwbyg/palm_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_stable_door.png b/public/textures/mcwbyg/palm_stable_door.png deleted file mode 100644 index 056615e0..00000000 Binary files a/public/textures/mcwbyg/palm_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_stable_head_door.png b/public/textures/mcwbyg/palm_stable_head_door.png deleted file mode 100644 index 8e2f89eb..00000000 Binary files a/public/textures/mcwbyg/palm_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_steep_roof.png b/public/textures/mcwbyg/palm_steep_roof.png deleted file mode 100644 index 7c3f31c9..00000000 Binary files a/public/textures/mcwbyg/palm_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_stockade_fence.png b/public/textures/mcwbyg/palm_stockade_fence.png deleted file mode 100644 index a544c048..00000000 Binary files a/public/textures/mcwbyg/palm_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_stool_chair.png b/public/textures/mcwbyg/palm_stool_chair.png deleted file mode 100644 index 8d3c71cc..00000000 Binary files a/public/textures/mcwbyg/palm_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_striped_chair.png b/public/textures/mcwbyg/palm_striped_chair.png deleted file mode 100644 index bb9415d1..00000000 Binary files a/public/textures/mcwbyg/palm_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_swamp_door.png b/public/textures/mcwbyg/palm_swamp_door.png deleted file mode 100644 index ab852524..00000000 Binary files a/public/textures/mcwbyg/palm_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_swamp_trapdoor.png b/public/textures/mcwbyg/palm_swamp_trapdoor.png deleted file mode 100644 index d7aafd0d..00000000 Binary files a/public/textures/mcwbyg/palm_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_table.png b/public/textures/mcwbyg/palm_table.png deleted file mode 100644 index bdc32e9a..00000000 Binary files a/public/textures/mcwbyg/palm_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_top_roof.png b/public/textures/mcwbyg/palm_top_roof.png deleted file mode 100644 index d556101a..00000000 Binary files a/public/textures/mcwbyg/palm_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_triple_drawer.png b/public/textures/mcwbyg/palm_triple_drawer.png deleted file mode 100644 index 4a23ec93..00000000 Binary files a/public/textures/mcwbyg/palm_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_tropical_door.png b/public/textures/mcwbyg/palm_tropical_door.png deleted file mode 100644 index daa8bab0..00000000 Binary files a/public/textures/mcwbyg/palm_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_tropical_trapdoor.png b/public/textures/mcwbyg/palm_tropical_trapdoor.png deleted file mode 100644 index 6e5c1ead..00000000 Binary files a/public/textures/mcwbyg/palm_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_upper_lower_roof.png b/public/textures/mcwbyg/palm_upper_lower_roof.png deleted file mode 100644 index b389ca34..00000000 Binary files a/public/textures/mcwbyg/palm_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_upper_steep_roof.png b/public/textures/mcwbyg/palm_upper_steep_roof.png deleted file mode 100644 index 0519ce48..00000000 Binary files a/public/textures/mcwbyg/palm_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_waffle_door.png b/public/textures/mcwbyg/palm_waffle_door.png deleted file mode 100644 index 43470544..00000000 Binary files a/public/textures/mcwbyg/palm_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_wardrobe.png b/public/textures/mcwbyg/palm_wardrobe.png deleted file mode 100644 index 68e5a1d1..00000000 Binary files a/public/textures/mcwbyg/palm_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_western_door.png b/public/textures/mcwbyg/palm_western_door.png deleted file mode 100644 index ce44a716..00000000 Binary files a/public/textures/mcwbyg/palm_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_whispering_door.png b/public/textures/mcwbyg/palm_whispering_door.png deleted file mode 100644 index be3eee14..00000000 Binary files a/public/textures/mcwbyg/palm_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_whispering_trapdoor.png b/public/textures/mcwbyg/palm_whispering_trapdoor.png deleted file mode 100644 index 88349302..00000000 Binary files a/public/textures/mcwbyg/palm_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_window.png b/public/textures/mcwbyg/palm_window.png deleted file mode 100644 index 6caaf940..00000000 Binary files a/public/textures/mcwbyg/palm_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_window2.png b/public/textures/mcwbyg/palm_window2.png deleted file mode 100644 index 764de6dc..00000000 Binary files a/public/textures/mcwbyg/palm_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/palm_wired_fence.png b/public/textures/mcwbyg/palm_wired_fence.png deleted file mode 100644 index 1b6b70f4..00000000 Binary files a/public/textures/mcwbyg/palm_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_attic_roof.png b/public/textures/mcwbyg/pine_attic_roof.png deleted file mode 100644 index 22edbcf8..00000000 Binary files a/public/textures/mcwbyg/pine_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_bamboo_door.png b/public/textures/mcwbyg/pine_bamboo_door.png deleted file mode 100644 index 933b4572..00000000 Binary files a/public/textures/mcwbyg/pine_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_bamboo_trapdoor.png b/public/textures/mcwbyg/pine_bamboo_trapdoor.png deleted file mode 100644 index b32d1210..00000000 Binary files a/public/textures/mcwbyg/pine_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_bark_glass_door.png b/public/textures/mcwbyg/pine_bark_glass_door.png deleted file mode 100644 index b9e158a4..00000000 Binary files a/public/textures/mcwbyg/pine_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_bark_trapdoor.png b/public/textures/mcwbyg/pine_bark_trapdoor.png deleted file mode 100644 index 370a97c3..00000000 Binary files a/public/textures/mcwbyg/pine_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_barn_door.png b/public/textures/mcwbyg/pine_barn_door.png deleted file mode 100644 index bc6b1445..00000000 Binary files a/public/textures/mcwbyg/pine_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_barn_glass_door.png b/public/textures/mcwbyg/pine_barn_glass_door.png deleted file mode 100644 index 508904aa..00000000 Binary files a/public/textures/mcwbyg/pine_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_barn_trapdoor.png b/public/textures/mcwbyg/pine_barn_trapdoor.png deleted file mode 100644 index 24652574..00000000 Binary files a/public/textures/mcwbyg/pine_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_barred_trapdoor.png b/public/textures/mcwbyg/pine_barred_trapdoor.png deleted file mode 100644 index 3e81c459..00000000 Binary files a/public/textures/mcwbyg/pine_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_barrel_trapdoor.png b/public/textures/mcwbyg/pine_barrel_trapdoor.png deleted file mode 100644 index cd302977..00000000 Binary files a/public/textures/mcwbyg/pine_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_beach_door.png b/public/textures/mcwbyg/pine_beach_door.png deleted file mode 100644 index 40631c02..00000000 Binary files a/public/textures/mcwbyg/pine_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_beach_trapdoor.png b/public/textures/mcwbyg/pine_beach_trapdoor.png deleted file mode 100644 index cf0cb75e..00000000 Binary files a/public/textures/mcwbyg/pine_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_blinds.png b/public/textures/mcwbyg/pine_blinds.png deleted file mode 100644 index d9260fd2..00000000 Binary files a/public/textures/mcwbyg/pine_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_blossom_trapdoor.png b/public/textures/mcwbyg/pine_blossom_trapdoor.png deleted file mode 100644 index b0e59f6e..00000000 Binary files a/public/textures/mcwbyg/pine_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_bookshelf.png b/public/textures/mcwbyg/pine_bookshelf.png deleted file mode 100644 index e037fd98..00000000 Binary files a/public/textures/mcwbyg/pine_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_bookshelf_cupboard.png b/public/textures/mcwbyg/pine_bookshelf_cupboard.png deleted file mode 100644 index e3a4f983..00000000 Binary files a/public/textures/mcwbyg/pine_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_bookshelf_drawer.png b/public/textures/mcwbyg/pine_bookshelf_drawer.png deleted file mode 100644 index 18717253..00000000 Binary files a/public/textures/mcwbyg/pine_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_bridge_pier.png b/public/textures/mcwbyg/pine_bridge_pier.png deleted file mode 100644 index 0b805b9c..00000000 Binary files a/public/textures/mcwbyg/pine_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_chair.png b/public/textures/mcwbyg/pine_chair.png deleted file mode 100644 index 63a61fec..00000000 Binary files a/public/textures/mcwbyg/pine_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_classic_door.png b/public/textures/mcwbyg/pine_classic_door.png deleted file mode 100644 index 959985f9..00000000 Binary files a/public/textures/mcwbyg/pine_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_classic_trapdoor.png b/public/textures/mcwbyg/pine_classic_trapdoor.png deleted file mode 100644 index c01ab0a4..00000000 Binary files a/public/textures/mcwbyg/pine_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_coffee_table.png b/public/textures/mcwbyg/pine_coffee_table.png deleted file mode 100644 index cce0a447..00000000 Binary files a/public/textures/mcwbyg/pine_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_cottage_door.png b/public/textures/mcwbyg/pine_cottage_door.png deleted file mode 100644 index 65b4e869..00000000 Binary files a/public/textures/mcwbyg/pine_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_cottage_trapdoor.png b/public/textures/mcwbyg/pine_cottage_trapdoor.png deleted file mode 100644 index 1fa8d7d6..00000000 Binary files a/public/textures/mcwbyg/pine_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_counter.png b/public/textures/mcwbyg/pine_counter.png deleted file mode 100644 index 1836c8c7..00000000 Binary files a/public/textures/mcwbyg/pine_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_covered_desk.png b/public/textures/mcwbyg/pine_covered_desk.png deleted file mode 100644 index c4466bab..00000000 Binary files a/public/textures/mcwbyg/pine_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_cupboard_counter.png b/public/textures/mcwbyg/pine_cupboard_counter.png deleted file mode 100644 index b8fbf241..00000000 Binary files a/public/textures/mcwbyg/pine_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_curtain_rod.png b/public/textures/mcwbyg/pine_curtain_rod.png deleted file mode 100644 index c1a67efb..00000000 Binary files a/public/textures/mcwbyg/pine_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_curved_gate.png b/public/textures/mcwbyg/pine_curved_gate.png deleted file mode 100644 index 081cb023..00000000 Binary files a/public/textures/mcwbyg/pine_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_desk.png b/public/textures/mcwbyg/pine_desk.png deleted file mode 100644 index c267ad08..00000000 Binary files a/public/textures/mcwbyg/pine_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_double_drawer.png b/public/textures/mcwbyg/pine_double_drawer.png deleted file mode 100644 index ee071529..00000000 Binary files a/public/textures/mcwbyg/pine_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_double_drawer_counter.png b/public/textures/mcwbyg/pine_double_drawer_counter.png deleted file mode 100644 index 170d6db8..00000000 Binary files a/public/textures/mcwbyg/pine_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_double_kitchen_cabinet.png b/public/textures/mcwbyg/pine_double_kitchen_cabinet.png deleted file mode 100644 index 589b9505..00000000 Binary files a/public/textures/mcwbyg/pine_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_double_wardrobe.png b/public/textures/mcwbyg/pine_double_wardrobe.png deleted file mode 100644 index 1a406473..00000000 Binary files a/public/textures/mcwbyg/pine_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_drawer.png b/public/textures/mcwbyg/pine_drawer.png deleted file mode 100644 index 1b153fba..00000000 Binary files a/public/textures/mcwbyg/pine_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_drawer_counter.png b/public/textures/mcwbyg/pine_drawer_counter.png deleted file mode 100644 index 81d962b6..00000000 Binary files a/public/textures/mcwbyg/pine_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_end_table.png b/public/textures/mcwbyg/pine_end_table.png deleted file mode 100644 index 0dc543f3..00000000 Binary files a/public/textures/mcwbyg/pine_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_four_panel_door.png b/public/textures/mcwbyg/pine_four_panel_door.png deleted file mode 100644 index cfb747fd..00000000 Binary files a/public/textures/mcwbyg/pine_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_four_panel_trapdoor.png b/public/textures/mcwbyg/pine_four_panel_trapdoor.png deleted file mode 100644 index 0ef970ef..00000000 Binary files a/public/textures/mcwbyg/pine_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_four_window.png b/public/textures/mcwbyg/pine_four_window.png deleted file mode 100644 index b04c03b4..00000000 Binary files a/public/textures/mcwbyg/pine_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_glass_door.png b/public/textures/mcwbyg/pine_glass_door.png deleted file mode 100644 index c5190b52..00000000 Binary files a/public/textures/mcwbyg/pine_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_glass_kitchen_cabinet.png b/public/textures/mcwbyg/pine_glass_kitchen_cabinet.png deleted file mode 100644 index c1da3328..00000000 Binary files a/public/textures/mcwbyg/pine_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_glass_table.png b/public/textures/mcwbyg/pine_glass_table.png deleted file mode 100644 index ec91fa08..00000000 Binary files a/public/textures/mcwbyg/pine_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_glass_trapdoor.png b/public/textures/mcwbyg/pine_glass_trapdoor.png deleted file mode 100644 index 19765038..00000000 Binary files a/public/textures/mcwbyg/pine_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_hedge.png b/public/textures/mcwbyg/pine_hedge.png deleted file mode 100644 index d6f03d0b..00000000 Binary files a/public/textures/mcwbyg/pine_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_highley_gate.png b/public/textures/mcwbyg/pine_highley_gate.png deleted file mode 100644 index 0bbd3aeb..00000000 Binary files a/public/textures/mcwbyg/pine_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_horse_fence.png b/public/textures/mcwbyg/pine_horse_fence.png deleted file mode 100644 index 3955f4e9..00000000 Binary files a/public/textures/mcwbyg/pine_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_japanese2_door.png b/public/textures/mcwbyg/pine_japanese2_door.png deleted file mode 100644 index 226fa261..00000000 Binary files a/public/textures/mcwbyg/pine_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_japanese_door.png b/public/textures/mcwbyg/pine_japanese_door.png deleted file mode 100644 index b7c86c37..00000000 Binary files a/public/textures/mcwbyg/pine_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_kitchen_cabinet.png b/public/textures/mcwbyg/pine_kitchen_cabinet.png deleted file mode 100644 index 49beb294..00000000 Binary files a/public/textures/mcwbyg/pine_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_large_drawer.png b/public/textures/mcwbyg/pine_large_drawer.png deleted file mode 100644 index 4fd8e00d..00000000 Binary files a/public/textures/mcwbyg/pine_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_log_bridge_middle.png b/public/textures/mcwbyg/pine_log_bridge_middle.png deleted file mode 100644 index e03e6264..00000000 Binary files a/public/textures/mcwbyg/pine_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_log_bridge_stair.png b/public/textures/mcwbyg/pine_log_bridge_stair.png deleted file mode 100644 index a565bc86..00000000 Binary files a/public/textures/mcwbyg/pine_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_log_parapet.png b/public/textures/mcwbyg/pine_log_parapet.png deleted file mode 100644 index b264cff7..00000000 Binary files a/public/textures/mcwbyg/pine_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_louvered_shutter.png b/public/textures/mcwbyg/pine_louvered_shutter.png deleted file mode 100644 index 82a91603..00000000 Binary files a/public/textures/mcwbyg/pine_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_lower_bookshelf_drawer.png b/public/textures/mcwbyg/pine_lower_bookshelf_drawer.png deleted file mode 100644 index 521809e3..00000000 Binary files a/public/textures/mcwbyg/pine_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_lower_roof.png b/public/textures/mcwbyg/pine_lower_roof.png deleted file mode 100644 index fcde4031..00000000 Binary files a/public/textures/mcwbyg/pine_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_lower_triple_drawer.png b/public/textures/mcwbyg/pine_lower_triple_drawer.png deleted file mode 100644 index 639d6fea..00000000 Binary files a/public/textures/mcwbyg/pine_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_modern_chair.png b/public/textures/mcwbyg/pine_modern_chair.png deleted file mode 100644 index 1b732c49..00000000 Binary files a/public/textures/mcwbyg/pine_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_modern_desk.png b/public/textures/mcwbyg/pine_modern_desk.png deleted file mode 100644 index b578bdb7..00000000 Binary files a/public/textures/mcwbyg/pine_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_modern_door.png b/public/textures/mcwbyg/pine_modern_door.png deleted file mode 100644 index 76ce253d..00000000 Binary files a/public/textures/mcwbyg/pine_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_modern_wardrobe.png b/public/textures/mcwbyg/pine_modern_wardrobe.png deleted file mode 100644 index 85774e66..00000000 Binary files a/public/textures/mcwbyg/pine_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_mystic_door.png b/public/textures/mcwbyg/pine_mystic_door.png deleted file mode 100644 index 206ecdde..00000000 Binary files a/public/textures/mcwbyg/pine_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_mystic_trapdoor.png b/public/textures/mcwbyg/pine_mystic_trapdoor.png deleted file mode 100644 index 3208247a..00000000 Binary files a/public/textures/mcwbyg/pine_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_nether_door.png b/public/textures/mcwbyg/pine_nether_door.png deleted file mode 100644 index 682ed449..00000000 Binary files a/public/textures/mcwbyg/pine_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_pane_window.png b/public/textures/mcwbyg/pine_pane_window.png deleted file mode 100644 index ba55f0d8..00000000 Binary files a/public/textures/mcwbyg/pine_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_paper_door.png b/public/textures/mcwbyg/pine_paper_door.png deleted file mode 100644 index 1a637c78..00000000 Binary files a/public/textures/mcwbyg/pine_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_paper_trapdoor.png b/public/textures/mcwbyg/pine_paper_trapdoor.png deleted file mode 100644 index 707a25e4..00000000 Binary files a/public/textures/mcwbyg/pine_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_picket_fence.png b/public/textures/mcwbyg/pine_picket_fence.png deleted file mode 100644 index 2577bfeb..00000000 Binary files a/public/textures/mcwbyg/pine_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_plank_four_window.png b/public/textures/mcwbyg/pine_plank_four_window.png deleted file mode 100644 index 821fc79a..00000000 Binary files a/public/textures/mcwbyg/pine_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_plank_pane_window.png b/public/textures/mcwbyg/pine_plank_pane_window.png deleted file mode 100644 index 297cbb0c..00000000 Binary files a/public/textures/mcwbyg/pine_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_plank_parapet.png b/public/textures/mcwbyg/pine_plank_parapet.png deleted file mode 100644 index e2a0167a..00000000 Binary files a/public/textures/mcwbyg/pine_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_plank_window.png b/public/textures/mcwbyg/pine_plank_window.png deleted file mode 100644 index bf27446c..00000000 Binary files a/public/textures/mcwbyg/pine_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_plank_window2.png b/public/textures/mcwbyg/pine_plank_window2.png deleted file mode 100644 index dc7b331d..00000000 Binary files a/public/textures/mcwbyg/pine_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_planks_attic_roof.png b/public/textures/mcwbyg/pine_planks_attic_roof.png deleted file mode 100644 index 85e6cb2a..00000000 Binary files a/public/textures/mcwbyg/pine_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_planks_lower_roof.png b/public/textures/mcwbyg/pine_planks_lower_roof.png deleted file mode 100644 index 6c90d4f7..00000000 Binary files a/public/textures/mcwbyg/pine_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_planks_path.png b/public/textures/mcwbyg/pine_planks_path.png deleted file mode 100644 index c347b667..00000000 Binary files a/public/textures/mcwbyg/pine_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_planks_roof.png b/public/textures/mcwbyg/pine_planks_roof.png deleted file mode 100644 index 07b8caa0..00000000 Binary files a/public/textures/mcwbyg/pine_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_planks_steep_roof.png b/public/textures/mcwbyg/pine_planks_steep_roof.png deleted file mode 100644 index 2dbdfe7e..00000000 Binary files a/public/textures/mcwbyg/pine_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_planks_top_roof.png b/public/textures/mcwbyg/pine_planks_top_roof.png deleted file mode 100644 index 81036e5e..00000000 Binary files a/public/textures/mcwbyg/pine_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_planks_upper_lower_roof.png b/public/textures/mcwbyg/pine_planks_upper_lower_roof.png deleted file mode 100644 index f061246b..00000000 Binary files a/public/textures/mcwbyg/pine_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_planks_upper_steep_roof.png b/public/textures/mcwbyg/pine_planks_upper_steep_roof.png deleted file mode 100644 index 0711ce08..00000000 Binary files a/public/textures/mcwbyg/pine_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_pyramid_gate.png b/public/textures/mcwbyg/pine_pyramid_gate.png deleted file mode 100644 index 55f27d16..00000000 Binary files a/public/textures/mcwbyg/pine_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_rail_bridge.png b/public/textures/mcwbyg/pine_rail_bridge.png deleted file mode 100644 index 28f2865a..00000000 Binary files a/public/textures/mcwbyg/pine_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_ranch_trapdoor.png b/public/textures/mcwbyg/pine_ranch_trapdoor.png deleted file mode 100644 index b8309cf8..00000000 Binary files a/public/textures/mcwbyg/pine_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_roof.png b/public/textures/mcwbyg/pine_roof.png deleted file mode 100644 index 7f3a78aa..00000000 Binary files a/public/textures/mcwbyg/pine_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_rope_bridge_stair.png b/public/textures/mcwbyg/pine_rope_bridge_stair.png deleted file mode 100644 index daee97c8..00000000 Binary files a/public/textures/mcwbyg/pine_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_shutter.png b/public/textures/mcwbyg/pine_shutter.png deleted file mode 100644 index 1d3474e3..00000000 Binary files a/public/textures/mcwbyg/pine_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_stable_door.png b/public/textures/mcwbyg/pine_stable_door.png deleted file mode 100644 index 94ed2ac2..00000000 Binary files a/public/textures/mcwbyg/pine_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_stable_head_door.png b/public/textures/mcwbyg/pine_stable_head_door.png deleted file mode 100644 index 987f68ba..00000000 Binary files a/public/textures/mcwbyg/pine_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_steep_roof.png b/public/textures/mcwbyg/pine_steep_roof.png deleted file mode 100644 index ce093fdf..00000000 Binary files a/public/textures/mcwbyg/pine_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_stockade_fence.png b/public/textures/mcwbyg/pine_stockade_fence.png deleted file mode 100644 index 04060383..00000000 Binary files a/public/textures/mcwbyg/pine_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_stool_chair.png b/public/textures/mcwbyg/pine_stool_chair.png deleted file mode 100644 index 0c343fb1..00000000 Binary files a/public/textures/mcwbyg/pine_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_striped_chair.png b/public/textures/mcwbyg/pine_striped_chair.png deleted file mode 100644 index c3d458ad..00000000 Binary files a/public/textures/mcwbyg/pine_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_swamp_door.png b/public/textures/mcwbyg/pine_swamp_door.png deleted file mode 100644 index 35ea39b9..00000000 Binary files a/public/textures/mcwbyg/pine_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_swamp_trapdoor.png b/public/textures/mcwbyg/pine_swamp_trapdoor.png deleted file mode 100644 index 4f4f3055..00000000 Binary files a/public/textures/mcwbyg/pine_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_table.png b/public/textures/mcwbyg/pine_table.png deleted file mode 100644 index 0edb9f2d..00000000 Binary files a/public/textures/mcwbyg/pine_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_top_roof.png b/public/textures/mcwbyg/pine_top_roof.png deleted file mode 100644 index de93c343..00000000 Binary files a/public/textures/mcwbyg/pine_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_triple_drawer.png b/public/textures/mcwbyg/pine_triple_drawer.png deleted file mode 100644 index 4f946b9b..00000000 Binary files a/public/textures/mcwbyg/pine_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_tropical_door.png b/public/textures/mcwbyg/pine_tropical_door.png deleted file mode 100644 index eaa0d50a..00000000 Binary files a/public/textures/mcwbyg/pine_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_tropical_trapdoor.png b/public/textures/mcwbyg/pine_tropical_trapdoor.png deleted file mode 100644 index 05a27aba..00000000 Binary files a/public/textures/mcwbyg/pine_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_upper_lower_roof.png b/public/textures/mcwbyg/pine_upper_lower_roof.png deleted file mode 100644 index 78980630..00000000 Binary files a/public/textures/mcwbyg/pine_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_upper_steep_roof.png b/public/textures/mcwbyg/pine_upper_steep_roof.png deleted file mode 100644 index 7fe1aa4a..00000000 Binary files a/public/textures/mcwbyg/pine_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_waffle_door.png b/public/textures/mcwbyg/pine_waffle_door.png deleted file mode 100644 index 05bc1617..00000000 Binary files a/public/textures/mcwbyg/pine_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_wardrobe.png b/public/textures/mcwbyg/pine_wardrobe.png deleted file mode 100644 index 720fac23..00000000 Binary files a/public/textures/mcwbyg/pine_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_western_door.png b/public/textures/mcwbyg/pine_western_door.png deleted file mode 100644 index 62cb1922..00000000 Binary files a/public/textures/mcwbyg/pine_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_whispering_door.png b/public/textures/mcwbyg/pine_whispering_door.png deleted file mode 100644 index bac3b8d6..00000000 Binary files a/public/textures/mcwbyg/pine_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_whispering_trapdoor.png b/public/textures/mcwbyg/pine_whispering_trapdoor.png deleted file mode 100644 index 37cdbb68..00000000 Binary files a/public/textures/mcwbyg/pine_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_window.png b/public/textures/mcwbyg/pine_window.png deleted file mode 100644 index 178e42fd..00000000 Binary files a/public/textures/mcwbyg/pine_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_window2.png b/public/textures/mcwbyg/pine_window2.png deleted file mode 100644 index c4b214af..00000000 Binary files a/public/textures/mcwbyg/pine_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/pine_wired_fence.png b/public/textures/mcwbyg/pine_wired_fence.png deleted file mode 100644 index 04ab82dc..00000000 Binary files a/public/textures/mcwbyg/pine_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_attic_roof.png b/public/textures/mcwbyg/pink_sandstone_attic_roof.png deleted file mode 100644 index dc07cbc2..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_bridge.png b/public/textures/mcwbyg/pink_sandstone_bridge.png deleted file mode 100644 index 747fca0c..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_bridge_pier.png b/public/textures/mcwbyg/pink_sandstone_bridge_pier.png deleted file mode 100644 index b18f8de1..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_bridge_stair.png b/public/textures/mcwbyg/pink_sandstone_bridge_stair.png deleted file mode 100644 index ff87ac51..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_grass_topped_wall.png b/public/textures/mcwbyg/pink_sandstone_grass_topped_wall.png deleted file mode 100644 index fce53304..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_lower_roof.png b/public/textures/mcwbyg/pink_sandstone_lower_roof.png deleted file mode 100644 index ffe58b33..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_pillar_wall.png b/public/textures/mcwbyg/pink_sandstone_pillar_wall.png deleted file mode 100644 index 4f7c1b9b..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_railing_gate.png b/public/textures/mcwbyg/pink_sandstone_railing_gate.png deleted file mode 100644 index f1d950d9..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_roof.png b/public/textures/mcwbyg/pink_sandstone_roof.png deleted file mode 100644 index b0a3c02c..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_steep_roof.png b/public/textures/mcwbyg/pink_sandstone_steep_roof.png deleted file mode 100644 index b2796f01..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_top_roof.png b/public/textures/mcwbyg/pink_sandstone_top_roof.png deleted file mode 100644 index 7c0c3f5e..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_upper_lower_roof.png b/public/textures/mcwbyg/pink_sandstone_upper_lower_roof.png deleted file mode 100644 index e02ce365..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/pink_sandstone_upper_steep_roof.png b/public/textures/mcwbyg/pink_sandstone_upper_steep_roof.png deleted file mode 100644 index 4751ec3a..00000000 Binary files a/public/textures/mcwbyg/pink_sandstone_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_attic_roof.png b/public/textures/mcwbyg/purple_sandstone_attic_roof.png deleted file mode 100644 index 10430cb1..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_bridge.png b/public/textures/mcwbyg/purple_sandstone_bridge.png deleted file mode 100644 index 687306c1..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_bridge_pier.png b/public/textures/mcwbyg/purple_sandstone_bridge_pier.png deleted file mode 100644 index 682f2f43..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_bridge_stair.png b/public/textures/mcwbyg/purple_sandstone_bridge_stair.png deleted file mode 100644 index 2c423c96..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_grass_topped_wall.png b/public/textures/mcwbyg/purple_sandstone_grass_topped_wall.png deleted file mode 100644 index a70873d8..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_lower_roof.png b/public/textures/mcwbyg/purple_sandstone_lower_roof.png deleted file mode 100644 index f2c4689d..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_pillar_wall.png b/public/textures/mcwbyg/purple_sandstone_pillar_wall.png deleted file mode 100644 index a78d25f9..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_railing_gate.png b/public/textures/mcwbyg/purple_sandstone_railing_gate.png deleted file mode 100644 index 6430a6b0..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_roof.png b/public/textures/mcwbyg/purple_sandstone_roof.png deleted file mode 100644 index ab8d29a3..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_steep_roof.png b/public/textures/mcwbyg/purple_sandstone_steep_roof.png deleted file mode 100644 index 3bd559a5..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_top_roof.png b/public/textures/mcwbyg/purple_sandstone_top_roof.png deleted file mode 100644 index 42308250..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_upper_lower_roof.png b/public/textures/mcwbyg/purple_sandstone_upper_lower_roof.png deleted file mode 100644 index 1841fa98..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/purple_sandstone_upper_steep_roof.png b/public/textures/mcwbyg/purple_sandstone_upper_steep_roof.png deleted file mode 100644 index e2e2bf25..00000000 Binary files a/public/textures/mcwbyg/purple_sandstone_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/railing_black_sandstone_wall.png b/public/textures/mcwbyg/railing_black_sandstone_wall.png deleted file mode 100644 index bcf4ea56..00000000 Binary files a/public/textures/mcwbyg/railing_black_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/railing_blue_sandstone_wall.png b/public/textures/mcwbyg/railing_blue_sandstone_wall.png deleted file mode 100644 index 1d5bd301..00000000 Binary files a/public/textures/mcwbyg/railing_blue_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/railing_dacite_bricks_wall.png b/public/textures/mcwbyg/railing_dacite_bricks_wall.png deleted file mode 100644 index 8d0559d8..00000000 Binary files a/public/textures/mcwbyg/railing_dacite_bricks_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/railing_pink_sandstone_wall.png b/public/textures/mcwbyg/railing_pink_sandstone_wall.png deleted file mode 100644 index d453acbd..00000000 Binary files a/public/textures/mcwbyg/railing_pink_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/railing_purple_sandstone_wall.png b/public/textures/mcwbyg/railing_purple_sandstone_wall.png deleted file mode 100644 index 1aa0e295..00000000 Binary files a/public/textures/mcwbyg/railing_purple_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/railing_red_rock_bricks_wall.png b/public/textures/mcwbyg/railing_red_rock_bricks_wall.png deleted file mode 100644 index fb27e987..00000000 Binary files a/public/textures/mcwbyg/railing_red_rock_bricks_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/railing_white_sandstone_wall.png b/public/textures/mcwbyg/railing_white_sandstone_wall.png deleted file mode 100644 index c93cfbae..00000000 Binary files a/public/textures/mcwbyg/railing_white_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/railing_windswept_sandstone_wall.png b/public/textures/mcwbyg/railing_windswept_sandstone_wall.png deleted file mode 100644 index b984aa52..00000000 Binary files a/public/textures/mcwbyg/railing_windswept_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_attic_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_attic_roof.png deleted file mode 100644 index 4551b966..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_bamboo_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_bamboo_door.png deleted file mode 100644 index 19a42965..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_bamboo_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_bamboo_trapdoor.png deleted file mode 100644 index 15220b59..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_bark_glass_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_bark_glass_door.png deleted file mode 100644 index 9372b635..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_bark_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_bark_trapdoor.png deleted file mode 100644 index 3890c3e3..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_barn_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_barn_door.png deleted file mode 100644 index c5c6a490..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_barn_glass_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_barn_glass_door.png deleted file mode 100644 index 6ee36599..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_barn_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_barn_trapdoor.png deleted file mode 100644 index be94db34..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_barred_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_barred_trapdoor.png deleted file mode 100644 index 62641f29..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_barrel_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_barrel_trapdoor.png deleted file mode 100644 index c0d8c12e..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_beach_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_beach_door.png deleted file mode 100644 index 912ceeac..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_beach_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_beach_trapdoor.png deleted file mode 100644 index 1e0ae31d..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_blinds.png b/public/textures/mcwbyg/rainbow_eucalyptus_blinds.png deleted file mode 100644 index e5342cb6..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_blossom_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_blossom_trapdoor.png deleted file mode 100644 index 963987d2..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_bookshelf.png b/public/textures/mcwbyg/rainbow_eucalyptus_bookshelf.png deleted file mode 100644 index 3bf9ed1b..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_bookshelf_cupboard.png b/public/textures/mcwbyg/rainbow_eucalyptus_bookshelf_cupboard.png deleted file mode 100644 index e26b7b4f..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_bookshelf_drawer.png b/public/textures/mcwbyg/rainbow_eucalyptus_bookshelf_drawer.png deleted file mode 100644 index 797ed047..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_bridge_pier.png b/public/textures/mcwbyg/rainbow_eucalyptus_bridge_pier.png deleted file mode 100644 index 850b173e..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_chair.png b/public/textures/mcwbyg/rainbow_eucalyptus_chair.png deleted file mode 100644 index 008c6eda..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_classic_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_classic_door.png deleted file mode 100644 index 3d1216f5..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_classic_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_classic_trapdoor.png deleted file mode 100644 index 8bcdd372..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_coffee_table.png b/public/textures/mcwbyg/rainbow_eucalyptus_coffee_table.png deleted file mode 100644 index 96112e38..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_cottage_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_cottage_door.png deleted file mode 100644 index 43cfb9f3..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_cottage_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_cottage_trapdoor.png deleted file mode 100644 index c2e42454..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_counter.png b/public/textures/mcwbyg/rainbow_eucalyptus_counter.png deleted file mode 100644 index f5603c65..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_covered_desk.png b/public/textures/mcwbyg/rainbow_eucalyptus_covered_desk.png deleted file mode 100644 index e97b7e1e..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_cupboard_counter.png b/public/textures/mcwbyg/rainbow_eucalyptus_cupboard_counter.png deleted file mode 100644 index 6c6e2173..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_curtain_rod.png b/public/textures/mcwbyg/rainbow_eucalyptus_curtain_rod.png deleted file mode 100644 index ecd3baca..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_curved_gate.png b/public/textures/mcwbyg/rainbow_eucalyptus_curved_gate.png deleted file mode 100644 index 03d22dec..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_desk.png b/public/textures/mcwbyg/rainbow_eucalyptus_desk.png deleted file mode 100644 index 2105cc87..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_double_drawer.png b/public/textures/mcwbyg/rainbow_eucalyptus_double_drawer.png deleted file mode 100644 index 561dfb24..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_double_drawer_counter.png b/public/textures/mcwbyg/rainbow_eucalyptus_double_drawer_counter.png deleted file mode 100644 index 97c06989..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_double_kitchen_cabinet.png b/public/textures/mcwbyg/rainbow_eucalyptus_double_kitchen_cabinet.png deleted file mode 100644 index 6b1ff878..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_double_wardrobe.png b/public/textures/mcwbyg/rainbow_eucalyptus_double_wardrobe.png deleted file mode 100644 index 182ae50d..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_drawer.png b/public/textures/mcwbyg/rainbow_eucalyptus_drawer.png deleted file mode 100644 index b2b01247..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_drawer_counter.png b/public/textures/mcwbyg/rainbow_eucalyptus_drawer_counter.png deleted file mode 100644 index 45dc2dfd..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_end_table.png b/public/textures/mcwbyg/rainbow_eucalyptus_end_table.png deleted file mode 100644 index e32191a8..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_four_panel_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_four_panel_door.png deleted file mode 100644 index a80d762e..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_four_panel_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_four_panel_trapdoor.png deleted file mode 100644 index 2b8d9412..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_four_window.png b/public/textures/mcwbyg/rainbow_eucalyptus_four_window.png deleted file mode 100644 index f633ff50..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_glass_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_glass_door.png deleted file mode 100644 index af9cdff1..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_glass_kitchen_cabinet.png b/public/textures/mcwbyg/rainbow_eucalyptus_glass_kitchen_cabinet.png deleted file mode 100644 index 2175e3a1..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_glass_table.png b/public/textures/mcwbyg/rainbow_eucalyptus_glass_table.png deleted file mode 100644 index cb750e59..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_glass_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_glass_trapdoor.png deleted file mode 100644 index 041d8880..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_hedge.png b/public/textures/mcwbyg/rainbow_eucalyptus_hedge.png deleted file mode 100644 index 76436c67..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_highley_gate.png b/public/textures/mcwbyg/rainbow_eucalyptus_highley_gate.png deleted file mode 100644 index 79a02dac..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_horse_fence.png b/public/textures/mcwbyg/rainbow_eucalyptus_horse_fence.png deleted file mode 100644 index 36bf0281..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_japanese2_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_japanese2_door.png deleted file mode 100644 index 801126f4..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_japanese_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_japanese_door.png deleted file mode 100644 index b94ce3df..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_kitchen_cabinet.png b/public/textures/mcwbyg/rainbow_eucalyptus_kitchen_cabinet.png deleted file mode 100644 index e3824477..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_large_drawer.png b/public/textures/mcwbyg/rainbow_eucalyptus_large_drawer.png deleted file mode 100644 index 6fb977f1..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_log_bridge_middle.png b/public/textures/mcwbyg/rainbow_eucalyptus_log_bridge_middle.png deleted file mode 100644 index fedf6374..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_log_bridge_stair.png b/public/textures/mcwbyg/rainbow_eucalyptus_log_bridge_stair.png deleted file mode 100644 index 0f8e6b77..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_log_parapet.png b/public/textures/mcwbyg/rainbow_eucalyptus_log_parapet.png deleted file mode 100644 index 5ed66557..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_louvered_shutter.png b/public/textures/mcwbyg/rainbow_eucalyptus_louvered_shutter.png deleted file mode 100644 index a79f44b2..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_lower_bookshelf_drawer.png b/public/textures/mcwbyg/rainbow_eucalyptus_lower_bookshelf_drawer.png deleted file mode 100644 index 7fd23bb5..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_lower_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_lower_roof.png deleted file mode 100644 index e666dc1e..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_lower_triple_drawer.png b/public/textures/mcwbyg/rainbow_eucalyptus_lower_triple_drawer.png deleted file mode 100644 index 70c44896..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_modern_chair.png b/public/textures/mcwbyg/rainbow_eucalyptus_modern_chair.png deleted file mode 100644 index 1298d905..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_modern_desk.png b/public/textures/mcwbyg/rainbow_eucalyptus_modern_desk.png deleted file mode 100644 index 5ed94480..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_modern_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_modern_door.png deleted file mode 100644 index aa8bfb3d..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_modern_wardrobe.png b/public/textures/mcwbyg/rainbow_eucalyptus_modern_wardrobe.png deleted file mode 100644 index d8b69ad3..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_mystic_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_mystic_door.png deleted file mode 100644 index 6cc4280c..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_mystic_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_mystic_trapdoor.png deleted file mode 100644 index f0934d50..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_nether_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_nether_door.png deleted file mode 100644 index f2bd8a38..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_pane_window.png b/public/textures/mcwbyg/rainbow_eucalyptus_pane_window.png deleted file mode 100644 index f09d60fa..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_paper_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_paper_door.png deleted file mode 100644 index b5f8b07d..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_paper_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_paper_trapdoor.png deleted file mode 100644 index 3a6c9853..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_picket_fence.png b/public/textures/mcwbyg/rainbow_eucalyptus_picket_fence.png deleted file mode 100644 index fc26ee45..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_plank_four_window.png b/public/textures/mcwbyg/rainbow_eucalyptus_plank_four_window.png deleted file mode 100644 index c32885d1..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_plank_pane_window.png b/public/textures/mcwbyg/rainbow_eucalyptus_plank_pane_window.png deleted file mode 100644 index 90e9102a..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_plank_parapet.png b/public/textures/mcwbyg/rainbow_eucalyptus_plank_parapet.png deleted file mode 100644 index 1db909eb..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_plank_window.png b/public/textures/mcwbyg/rainbow_eucalyptus_plank_window.png deleted file mode 100644 index 292d565b..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_plank_window2.png b/public/textures/mcwbyg/rainbow_eucalyptus_plank_window2.png deleted file mode 100644 index dd9ceea7..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_planks_attic_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_planks_attic_roof.png deleted file mode 100644 index 47f4e0fe..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_planks_lower_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_planks_lower_roof.png deleted file mode 100644 index 37094350..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_planks_path.png b/public/textures/mcwbyg/rainbow_eucalyptus_planks_path.png deleted file mode 100644 index 9e548a79..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_planks_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_planks_roof.png deleted file mode 100644 index b57c361c..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_planks_steep_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_planks_steep_roof.png deleted file mode 100644 index d203c63f..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_planks_top_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_planks_top_roof.png deleted file mode 100644 index 9fd92e3b..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_planks_upper_lower_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_planks_upper_lower_roof.png deleted file mode 100644 index 5547c865..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_planks_upper_steep_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_planks_upper_steep_roof.png deleted file mode 100644 index 1e71501b..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_pyramid_gate.png b/public/textures/mcwbyg/rainbow_eucalyptus_pyramid_gate.png deleted file mode 100644 index 7d23737d..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_rail_bridge.png b/public/textures/mcwbyg/rainbow_eucalyptus_rail_bridge.png deleted file mode 100644 index 051f1a0f..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_ranch_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_ranch_trapdoor.png deleted file mode 100644 index 0f4637e6..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_roof.png deleted file mode 100644 index 11700715..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_rope_bridge_stair.png b/public/textures/mcwbyg/rainbow_eucalyptus_rope_bridge_stair.png deleted file mode 100644 index ca652cd8..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_shutter.png b/public/textures/mcwbyg/rainbow_eucalyptus_shutter.png deleted file mode 100644 index d2df2263..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_stable_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_stable_door.png deleted file mode 100644 index 63084717..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_stable_head_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_stable_head_door.png deleted file mode 100644 index 60ba0b27..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_steep_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_steep_roof.png deleted file mode 100644 index 88b6ee31..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_stockade_fence.png b/public/textures/mcwbyg/rainbow_eucalyptus_stockade_fence.png deleted file mode 100644 index 2ed38434..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_stool_chair.png b/public/textures/mcwbyg/rainbow_eucalyptus_stool_chair.png deleted file mode 100644 index ab52f067..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_striped_chair.png b/public/textures/mcwbyg/rainbow_eucalyptus_striped_chair.png deleted file mode 100644 index 85aea5dd..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_swamp_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_swamp_door.png deleted file mode 100644 index a6339e2e..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_swamp_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_swamp_trapdoor.png deleted file mode 100644 index 14e876d1..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_table.png b/public/textures/mcwbyg/rainbow_eucalyptus_table.png deleted file mode 100644 index edf2c37e..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_top_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_top_roof.png deleted file mode 100644 index 2d1f68b6..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_triple_drawer.png b/public/textures/mcwbyg/rainbow_eucalyptus_triple_drawer.png deleted file mode 100644 index feff9a56..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_tropical_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_tropical_door.png deleted file mode 100644 index 72c66eaf..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_tropical_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_tropical_trapdoor.png deleted file mode 100644 index 0cf83a3d..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_upper_lower_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_upper_lower_roof.png deleted file mode 100644 index f0ecf875..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_upper_steep_roof.png b/public/textures/mcwbyg/rainbow_eucalyptus_upper_steep_roof.png deleted file mode 100644 index f86012a0..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_waffle_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_waffle_door.png deleted file mode 100644 index 4c27c4bf..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_wardrobe.png b/public/textures/mcwbyg/rainbow_eucalyptus_wardrobe.png deleted file mode 100644 index a853937b..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_western_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_western_door.png deleted file mode 100644 index c86079cc..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_whispering_door.png b/public/textures/mcwbyg/rainbow_eucalyptus_whispering_door.png deleted file mode 100644 index 109f7805..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_whispering_trapdoor.png b/public/textures/mcwbyg/rainbow_eucalyptus_whispering_trapdoor.png deleted file mode 100644 index 870fd112..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_window.png b/public/textures/mcwbyg/rainbow_eucalyptus_window.png deleted file mode 100644 index b2e49b1b..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_window2.png b/public/textures/mcwbyg/rainbow_eucalyptus_window2.png deleted file mode 100644 index 48693cb9..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/rainbow_eucalyptus_wired_fence.png b/public/textures/mcwbyg/rainbow_eucalyptus_wired_fence.png deleted file mode 100644 index b67c5d0e..00000000 Binary files a/public/textures/mcwbyg/rainbow_eucalyptus_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_birch_hedge.png b/public/textures/mcwbyg/red_birch_hedge.png deleted file mode 100644 index 12a34aec..00000000 Binary files a/public/textures/mcwbyg/red_birch_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_maple_hedge.png b/public/textures/mcwbyg/red_maple_hedge.png deleted file mode 100644 index aff58054..00000000 Binary files a/public/textures/mcwbyg/red_maple_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_oak_hedge.png b/public/textures/mcwbyg/red_oak_hedge.png deleted file mode 100644 index 0a63e1f5..00000000 Binary files a/public/textures/mcwbyg/red_oak_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_attic_roof.png b/public/textures/mcwbyg/red_rock_bricks_attic_roof.png deleted file mode 100644 index 363e5db6..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_bridge.png b/public/textures/mcwbyg/red_rock_bricks_bridge.png deleted file mode 100644 index 55ccb51b..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_bridge_pier.png b/public/textures/mcwbyg/red_rock_bricks_bridge_pier.png deleted file mode 100644 index 5d281b4a..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_bridge_stair.png b/public/textures/mcwbyg/red_rock_bricks_bridge_stair.png deleted file mode 100644 index 320a23c9..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_grass_topped_wall.png b/public/textures/mcwbyg/red_rock_bricks_grass_topped_wall.png deleted file mode 100644 index 22913300..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_lower_roof.png b/public/textures/mcwbyg/red_rock_bricks_lower_roof.png deleted file mode 100644 index b7c1297e..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_pillar_wall.png b/public/textures/mcwbyg/red_rock_bricks_pillar_wall.png deleted file mode 100644 index d2265e75..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_railing_gate.png b/public/textures/mcwbyg/red_rock_bricks_railing_gate.png deleted file mode 100644 index 07996c6d..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_roof.png b/public/textures/mcwbyg/red_rock_bricks_roof.png deleted file mode 100644 index 7dedcd68..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_steep_roof.png b/public/textures/mcwbyg/red_rock_bricks_steep_roof.png deleted file mode 100644 index 31e46bdd..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_top_roof.png b/public/textures/mcwbyg/red_rock_bricks_top_roof.png deleted file mode 100644 index 717975f1..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_upper_lower_roof.png b/public/textures/mcwbyg/red_rock_bricks_upper_lower_roof.png deleted file mode 100644 index 6c00ab96..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_rock_bricks_upper_steep_roof.png b/public/textures/mcwbyg/red_rock_bricks_upper_steep_roof.png deleted file mode 100644 index fb3f6f3c..00000000 Binary files a/public/textures/mcwbyg/red_rock_bricks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/red_spruce_hedge.png b/public/textures/mcwbyg/red_spruce_hedge.png deleted file mode 100644 index 149a196c..00000000 Binary files a/public/textures/mcwbyg/red_spruce_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_attic_roof.png b/public/textures/mcwbyg/redwood_attic_roof.png deleted file mode 100644 index 6a34d672..00000000 Binary files a/public/textures/mcwbyg/redwood_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_bamboo_door.png b/public/textures/mcwbyg/redwood_bamboo_door.png deleted file mode 100644 index 71682e7b..00000000 Binary files a/public/textures/mcwbyg/redwood_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_bamboo_trapdoor.png b/public/textures/mcwbyg/redwood_bamboo_trapdoor.png deleted file mode 100644 index 512184b5..00000000 Binary files a/public/textures/mcwbyg/redwood_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_bark_glass_door.png b/public/textures/mcwbyg/redwood_bark_glass_door.png deleted file mode 100644 index a67f6d83..00000000 Binary files a/public/textures/mcwbyg/redwood_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_bark_trapdoor.png b/public/textures/mcwbyg/redwood_bark_trapdoor.png deleted file mode 100644 index 55479400..00000000 Binary files a/public/textures/mcwbyg/redwood_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_barn_door.png b/public/textures/mcwbyg/redwood_barn_door.png deleted file mode 100644 index b5ca39fe..00000000 Binary files a/public/textures/mcwbyg/redwood_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_barn_glass_door.png b/public/textures/mcwbyg/redwood_barn_glass_door.png deleted file mode 100644 index 4f4ce881..00000000 Binary files a/public/textures/mcwbyg/redwood_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_barn_trapdoor.png b/public/textures/mcwbyg/redwood_barn_trapdoor.png deleted file mode 100644 index a9ecf1f0..00000000 Binary files a/public/textures/mcwbyg/redwood_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_barred_trapdoor.png b/public/textures/mcwbyg/redwood_barred_trapdoor.png deleted file mode 100644 index b6b9607c..00000000 Binary files a/public/textures/mcwbyg/redwood_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_barrel_trapdoor.png b/public/textures/mcwbyg/redwood_barrel_trapdoor.png deleted file mode 100644 index bb6e2d5b..00000000 Binary files a/public/textures/mcwbyg/redwood_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_beach_door.png b/public/textures/mcwbyg/redwood_beach_door.png deleted file mode 100644 index 76b277a3..00000000 Binary files a/public/textures/mcwbyg/redwood_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_beach_trapdoor.png b/public/textures/mcwbyg/redwood_beach_trapdoor.png deleted file mode 100644 index ced51436..00000000 Binary files a/public/textures/mcwbyg/redwood_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_blinds.png b/public/textures/mcwbyg/redwood_blinds.png deleted file mode 100644 index d8b91d45..00000000 Binary files a/public/textures/mcwbyg/redwood_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_blossom_trapdoor.png b/public/textures/mcwbyg/redwood_blossom_trapdoor.png deleted file mode 100644 index fa62abe6..00000000 Binary files a/public/textures/mcwbyg/redwood_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_bookshelf.png b/public/textures/mcwbyg/redwood_bookshelf.png deleted file mode 100644 index cf386ae5..00000000 Binary files a/public/textures/mcwbyg/redwood_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_bookshelf_cupboard.png b/public/textures/mcwbyg/redwood_bookshelf_cupboard.png deleted file mode 100644 index e718c533..00000000 Binary files a/public/textures/mcwbyg/redwood_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_bookshelf_drawer.png b/public/textures/mcwbyg/redwood_bookshelf_drawer.png deleted file mode 100644 index 16624364..00000000 Binary files a/public/textures/mcwbyg/redwood_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_bridge_pier.png b/public/textures/mcwbyg/redwood_bridge_pier.png deleted file mode 100644 index 2a6f46c9..00000000 Binary files a/public/textures/mcwbyg/redwood_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_chair.png b/public/textures/mcwbyg/redwood_chair.png deleted file mode 100644 index 6060d8bb..00000000 Binary files a/public/textures/mcwbyg/redwood_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_classic_door.png b/public/textures/mcwbyg/redwood_classic_door.png deleted file mode 100644 index 965cc411..00000000 Binary files a/public/textures/mcwbyg/redwood_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_classic_trapdoor.png b/public/textures/mcwbyg/redwood_classic_trapdoor.png deleted file mode 100644 index 3bc555a3..00000000 Binary files a/public/textures/mcwbyg/redwood_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_coffee_table.png b/public/textures/mcwbyg/redwood_coffee_table.png deleted file mode 100644 index 298b3b03..00000000 Binary files a/public/textures/mcwbyg/redwood_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_cottage_door.png b/public/textures/mcwbyg/redwood_cottage_door.png deleted file mode 100644 index 06a91250..00000000 Binary files a/public/textures/mcwbyg/redwood_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_cottage_trapdoor.png b/public/textures/mcwbyg/redwood_cottage_trapdoor.png deleted file mode 100644 index 339bdaf1..00000000 Binary files a/public/textures/mcwbyg/redwood_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_counter.png b/public/textures/mcwbyg/redwood_counter.png deleted file mode 100644 index 4f78cd32..00000000 Binary files a/public/textures/mcwbyg/redwood_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_covered_desk.png b/public/textures/mcwbyg/redwood_covered_desk.png deleted file mode 100644 index c0a113ec..00000000 Binary files a/public/textures/mcwbyg/redwood_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_cupboard_counter.png b/public/textures/mcwbyg/redwood_cupboard_counter.png deleted file mode 100644 index d0e2f66b..00000000 Binary files a/public/textures/mcwbyg/redwood_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_curtain_rod.png b/public/textures/mcwbyg/redwood_curtain_rod.png deleted file mode 100644 index 7b72d517..00000000 Binary files a/public/textures/mcwbyg/redwood_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_curved_gate.png b/public/textures/mcwbyg/redwood_curved_gate.png deleted file mode 100644 index e394df0e..00000000 Binary files a/public/textures/mcwbyg/redwood_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_desk.png b/public/textures/mcwbyg/redwood_desk.png deleted file mode 100644 index b9743fd2..00000000 Binary files a/public/textures/mcwbyg/redwood_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_double_drawer.png b/public/textures/mcwbyg/redwood_double_drawer.png deleted file mode 100644 index 77e8ff6b..00000000 Binary files a/public/textures/mcwbyg/redwood_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_double_drawer_counter.png b/public/textures/mcwbyg/redwood_double_drawer_counter.png deleted file mode 100644 index c688308f..00000000 Binary files a/public/textures/mcwbyg/redwood_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_double_kitchen_cabinet.png b/public/textures/mcwbyg/redwood_double_kitchen_cabinet.png deleted file mode 100644 index 4134b79b..00000000 Binary files a/public/textures/mcwbyg/redwood_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_double_wardrobe.png b/public/textures/mcwbyg/redwood_double_wardrobe.png deleted file mode 100644 index e61b8f70..00000000 Binary files a/public/textures/mcwbyg/redwood_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_drawer.png b/public/textures/mcwbyg/redwood_drawer.png deleted file mode 100644 index 3ba6a2a3..00000000 Binary files a/public/textures/mcwbyg/redwood_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_drawer_counter.png b/public/textures/mcwbyg/redwood_drawer_counter.png deleted file mode 100644 index b317314f..00000000 Binary files a/public/textures/mcwbyg/redwood_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_end_table.png b/public/textures/mcwbyg/redwood_end_table.png deleted file mode 100644 index ccd0c51d..00000000 Binary files a/public/textures/mcwbyg/redwood_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_four_panel_door.png b/public/textures/mcwbyg/redwood_four_panel_door.png deleted file mode 100644 index a58d3a44..00000000 Binary files a/public/textures/mcwbyg/redwood_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_four_panel_trapdoor.png b/public/textures/mcwbyg/redwood_four_panel_trapdoor.png deleted file mode 100644 index 54bd3b93..00000000 Binary files a/public/textures/mcwbyg/redwood_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_four_window.png b/public/textures/mcwbyg/redwood_four_window.png deleted file mode 100644 index 6e04b30c..00000000 Binary files a/public/textures/mcwbyg/redwood_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_glass_door.png b/public/textures/mcwbyg/redwood_glass_door.png deleted file mode 100644 index 70c03724..00000000 Binary files a/public/textures/mcwbyg/redwood_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_glass_kitchen_cabinet.png b/public/textures/mcwbyg/redwood_glass_kitchen_cabinet.png deleted file mode 100644 index f56ea1e5..00000000 Binary files a/public/textures/mcwbyg/redwood_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_glass_table.png b/public/textures/mcwbyg/redwood_glass_table.png deleted file mode 100644 index e71a5b0e..00000000 Binary files a/public/textures/mcwbyg/redwood_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_glass_trapdoor.png b/public/textures/mcwbyg/redwood_glass_trapdoor.png deleted file mode 100644 index 65eb8cf5..00000000 Binary files a/public/textures/mcwbyg/redwood_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_hedge.png b/public/textures/mcwbyg/redwood_hedge.png deleted file mode 100644 index 05c6dd11..00000000 Binary files a/public/textures/mcwbyg/redwood_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_highley_gate.png b/public/textures/mcwbyg/redwood_highley_gate.png deleted file mode 100644 index daf7d363..00000000 Binary files a/public/textures/mcwbyg/redwood_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_horse_fence.png b/public/textures/mcwbyg/redwood_horse_fence.png deleted file mode 100644 index 39e86728..00000000 Binary files a/public/textures/mcwbyg/redwood_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_japanese2_door.png b/public/textures/mcwbyg/redwood_japanese2_door.png deleted file mode 100644 index 21e2585a..00000000 Binary files a/public/textures/mcwbyg/redwood_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_japanese_door.png b/public/textures/mcwbyg/redwood_japanese_door.png deleted file mode 100644 index ca3e5b79..00000000 Binary files a/public/textures/mcwbyg/redwood_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_kitchen_cabinet.png b/public/textures/mcwbyg/redwood_kitchen_cabinet.png deleted file mode 100644 index 93ea307b..00000000 Binary files a/public/textures/mcwbyg/redwood_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_large_drawer.png b/public/textures/mcwbyg/redwood_large_drawer.png deleted file mode 100644 index fc7f4662..00000000 Binary files a/public/textures/mcwbyg/redwood_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_log_bridge_middle.png b/public/textures/mcwbyg/redwood_log_bridge_middle.png deleted file mode 100644 index 458e801b..00000000 Binary files a/public/textures/mcwbyg/redwood_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_log_bridge_stair.png b/public/textures/mcwbyg/redwood_log_bridge_stair.png deleted file mode 100644 index 497311c4..00000000 Binary files a/public/textures/mcwbyg/redwood_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_log_parapet.png b/public/textures/mcwbyg/redwood_log_parapet.png deleted file mode 100644 index cb41703c..00000000 Binary files a/public/textures/mcwbyg/redwood_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_louvered_shutter.png b/public/textures/mcwbyg/redwood_louvered_shutter.png deleted file mode 100644 index f27ccee9..00000000 Binary files a/public/textures/mcwbyg/redwood_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_lower_bookshelf_drawer.png b/public/textures/mcwbyg/redwood_lower_bookshelf_drawer.png deleted file mode 100644 index 9d2deceb..00000000 Binary files a/public/textures/mcwbyg/redwood_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_lower_roof.png b/public/textures/mcwbyg/redwood_lower_roof.png deleted file mode 100644 index 8e1e89c5..00000000 Binary files a/public/textures/mcwbyg/redwood_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_lower_triple_drawer.png b/public/textures/mcwbyg/redwood_lower_triple_drawer.png deleted file mode 100644 index e783b4d8..00000000 Binary files a/public/textures/mcwbyg/redwood_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_modern_chair.png b/public/textures/mcwbyg/redwood_modern_chair.png deleted file mode 100644 index e3518286..00000000 Binary files a/public/textures/mcwbyg/redwood_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_modern_desk.png b/public/textures/mcwbyg/redwood_modern_desk.png deleted file mode 100644 index ce8f29fe..00000000 Binary files a/public/textures/mcwbyg/redwood_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_modern_door.png b/public/textures/mcwbyg/redwood_modern_door.png deleted file mode 100644 index 13dd1fbf..00000000 Binary files a/public/textures/mcwbyg/redwood_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_modern_wardrobe.png b/public/textures/mcwbyg/redwood_modern_wardrobe.png deleted file mode 100644 index e473a0b7..00000000 Binary files a/public/textures/mcwbyg/redwood_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_mystic_door.png b/public/textures/mcwbyg/redwood_mystic_door.png deleted file mode 100644 index 3dbd35ee..00000000 Binary files a/public/textures/mcwbyg/redwood_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_mystic_trapdoor.png b/public/textures/mcwbyg/redwood_mystic_trapdoor.png deleted file mode 100644 index f02cd9e3..00000000 Binary files a/public/textures/mcwbyg/redwood_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_nether_door.png b/public/textures/mcwbyg/redwood_nether_door.png deleted file mode 100644 index d144628a..00000000 Binary files a/public/textures/mcwbyg/redwood_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_pane_window.png b/public/textures/mcwbyg/redwood_pane_window.png deleted file mode 100644 index 38227c0e..00000000 Binary files a/public/textures/mcwbyg/redwood_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_paper_door.png b/public/textures/mcwbyg/redwood_paper_door.png deleted file mode 100644 index 06609a0e..00000000 Binary files a/public/textures/mcwbyg/redwood_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_paper_trapdoor.png b/public/textures/mcwbyg/redwood_paper_trapdoor.png deleted file mode 100644 index 96ea07fb..00000000 Binary files a/public/textures/mcwbyg/redwood_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_picket_fence.png b/public/textures/mcwbyg/redwood_picket_fence.png deleted file mode 100644 index 74882b41..00000000 Binary files a/public/textures/mcwbyg/redwood_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_plank_four_window.png b/public/textures/mcwbyg/redwood_plank_four_window.png deleted file mode 100644 index 976cb27d..00000000 Binary files a/public/textures/mcwbyg/redwood_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_plank_pane_window.png b/public/textures/mcwbyg/redwood_plank_pane_window.png deleted file mode 100644 index 70642fe0..00000000 Binary files a/public/textures/mcwbyg/redwood_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_plank_parapet.png b/public/textures/mcwbyg/redwood_plank_parapet.png deleted file mode 100644 index 2baa0d59..00000000 Binary files a/public/textures/mcwbyg/redwood_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_plank_window.png b/public/textures/mcwbyg/redwood_plank_window.png deleted file mode 100644 index 11d03a72..00000000 Binary files a/public/textures/mcwbyg/redwood_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_plank_window2.png b/public/textures/mcwbyg/redwood_plank_window2.png deleted file mode 100644 index 184428b9..00000000 Binary files a/public/textures/mcwbyg/redwood_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_planks_attic_roof.png b/public/textures/mcwbyg/redwood_planks_attic_roof.png deleted file mode 100644 index 3e9fa533..00000000 Binary files a/public/textures/mcwbyg/redwood_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_planks_lower_roof.png b/public/textures/mcwbyg/redwood_planks_lower_roof.png deleted file mode 100644 index 6cfa4ea4..00000000 Binary files a/public/textures/mcwbyg/redwood_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_planks_path.png b/public/textures/mcwbyg/redwood_planks_path.png deleted file mode 100644 index dcf6f02c..00000000 Binary files a/public/textures/mcwbyg/redwood_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_planks_roof.png b/public/textures/mcwbyg/redwood_planks_roof.png deleted file mode 100644 index bb680220..00000000 Binary files a/public/textures/mcwbyg/redwood_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_planks_steep_roof.png b/public/textures/mcwbyg/redwood_planks_steep_roof.png deleted file mode 100644 index c3e2f496..00000000 Binary files a/public/textures/mcwbyg/redwood_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_planks_top_roof.png b/public/textures/mcwbyg/redwood_planks_top_roof.png deleted file mode 100644 index 4c3da870..00000000 Binary files a/public/textures/mcwbyg/redwood_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_planks_upper_lower_roof.png b/public/textures/mcwbyg/redwood_planks_upper_lower_roof.png deleted file mode 100644 index cb68e379..00000000 Binary files a/public/textures/mcwbyg/redwood_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_planks_upper_steep_roof.png b/public/textures/mcwbyg/redwood_planks_upper_steep_roof.png deleted file mode 100644 index 82ea6177..00000000 Binary files a/public/textures/mcwbyg/redwood_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_pyramid_gate.png b/public/textures/mcwbyg/redwood_pyramid_gate.png deleted file mode 100644 index a51268c6..00000000 Binary files a/public/textures/mcwbyg/redwood_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_rail_bridge.png b/public/textures/mcwbyg/redwood_rail_bridge.png deleted file mode 100644 index 4019adc7..00000000 Binary files a/public/textures/mcwbyg/redwood_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_ranch_trapdoor.png b/public/textures/mcwbyg/redwood_ranch_trapdoor.png deleted file mode 100644 index e1a8fbc2..00000000 Binary files a/public/textures/mcwbyg/redwood_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_roof.png b/public/textures/mcwbyg/redwood_roof.png deleted file mode 100644 index f99b3cb9..00000000 Binary files a/public/textures/mcwbyg/redwood_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_rope_bridge_stair.png b/public/textures/mcwbyg/redwood_rope_bridge_stair.png deleted file mode 100644 index 3e11f3ab..00000000 Binary files a/public/textures/mcwbyg/redwood_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_shutter.png b/public/textures/mcwbyg/redwood_shutter.png deleted file mode 100644 index e98b6a56..00000000 Binary files a/public/textures/mcwbyg/redwood_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_stable_door.png b/public/textures/mcwbyg/redwood_stable_door.png deleted file mode 100644 index 3072629e..00000000 Binary files a/public/textures/mcwbyg/redwood_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_stable_head_door.png b/public/textures/mcwbyg/redwood_stable_head_door.png deleted file mode 100644 index e89292a4..00000000 Binary files a/public/textures/mcwbyg/redwood_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_steep_roof.png b/public/textures/mcwbyg/redwood_steep_roof.png deleted file mode 100644 index b39b00b6..00000000 Binary files a/public/textures/mcwbyg/redwood_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_stockade_fence.png b/public/textures/mcwbyg/redwood_stockade_fence.png deleted file mode 100644 index 311b63d4..00000000 Binary files a/public/textures/mcwbyg/redwood_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_stool_chair.png b/public/textures/mcwbyg/redwood_stool_chair.png deleted file mode 100644 index c8c022d7..00000000 Binary files a/public/textures/mcwbyg/redwood_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_striped_chair.png b/public/textures/mcwbyg/redwood_striped_chair.png deleted file mode 100644 index 083ad90b..00000000 Binary files a/public/textures/mcwbyg/redwood_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_swamp_door.png b/public/textures/mcwbyg/redwood_swamp_door.png deleted file mode 100644 index 5ee33614..00000000 Binary files a/public/textures/mcwbyg/redwood_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_swamp_trapdoor.png b/public/textures/mcwbyg/redwood_swamp_trapdoor.png deleted file mode 100644 index 1d45d654..00000000 Binary files a/public/textures/mcwbyg/redwood_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_table.png b/public/textures/mcwbyg/redwood_table.png deleted file mode 100644 index 6674ab51..00000000 Binary files a/public/textures/mcwbyg/redwood_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_top_roof.png b/public/textures/mcwbyg/redwood_top_roof.png deleted file mode 100644 index 33964474..00000000 Binary files a/public/textures/mcwbyg/redwood_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_triple_drawer.png b/public/textures/mcwbyg/redwood_triple_drawer.png deleted file mode 100644 index c129284e..00000000 Binary files a/public/textures/mcwbyg/redwood_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_tropical_door.png b/public/textures/mcwbyg/redwood_tropical_door.png deleted file mode 100644 index ba98b9e0..00000000 Binary files a/public/textures/mcwbyg/redwood_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_tropical_trapdoor.png b/public/textures/mcwbyg/redwood_tropical_trapdoor.png deleted file mode 100644 index bf7f9f3f..00000000 Binary files a/public/textures/mcwbyg/redwood_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_upper_lower_roof.png b/public/textures/mcwbyg/redwood_upper_lower_roof.png deleted file mode 100644 index 96eff6d3..00000000 Binary files a/public/textures/mcwbyg/redwood_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_upper_steep_roof.png b/public/textures/mcwbyg/redwood_upper_steep_roof.png deleted file mode 100644 index 21be633d..00000000 Binary files a/public/textures/mcwbyg/redwood_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_waffle_door.png b/public/textures/mcwbyg/redwood_waffle_door.png deleted file mode 100644 index 5b46411f..00000000 Binary files a/public/textures/mcwbyg/redwood_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_wardrobe.png b/public/textures/mcwbyg/redwood_wardrobe.png deleted file mode 100644 index f8ab0a5d..00000000 Binary files a/public/textures/mcwbyg/redwood_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_western_door.png b/public/textures/mcwbyg/redwood_western_door.png deleted file mode 100644 index a35722b6..00000000 Binary files a/public/textures/mcwbyg/redwood_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_whispering_door.png b/public/textures/mcwbyg/redwood_whispering_door.png deleted file mode 100644 index 1aac8eba..00000000 Binary files a/public/textures/mcwbyg/redwood_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_whispering_trapdoor.png b/public/textures/mcwbyg/redwood_whispering_trapdoor.png deleted file mode 100644 index 3d65fac1..00000000 Binary files a/public/textures/mcwbyg/redwood_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_window.png b/public/textures/mcwbyg/redwood_window.png deleted file mode 100644 index 17f3c30f..00000000 Binary files a/public/textures/mcwbyg/redwood_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_window2.png b/public/textures/mcwbyg/redwood_window2.png deleted file mode 100644 index 9123b808..00000000 Binary files a/public/textures/mcwbyg/redwood_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/redwood_wired_fence.png b/public/textures/mcwbyg/redwood_wired_fence.png deleted file mode 100644 index 7d4b01e2..00000000 Binary files a/public/textures/mcwbyg/redwood_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_aspen_bridge.png b/public/textures/mcwbyg/rope_aspen_bridge.png deleted file mode 100644 index cd32405f..00000000 Binary files a/public/textures/mcwbyg/rope_aspen_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_baobab_bridge.png b/public/textures/mcwbyg/rope_baobab_bridge.png deleted file mode 100644 index 10baab37..00000000 Binary files a/public/textures/mcwbyg/rope_baobab_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_blue_enchanted_bridge.png b/public/textures/mcwbyg/rope_blue_enchanted_bridge.png deleted file mode 100644 index cd78a436..00000000 Binary files a/public/textures/mcwbyg/rope_blue_enchanted_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_cika_bridge.png b/public/textures/mcwbyg/rope_cika_bridge.png deleted file mode 100644 index 5a914411..00000000 Binary files a/public/textures/mcwbyg/rope_cika_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_cypress_bridge.png b/public/textures/mcwbyg/rope_cypress_bridge.png deleted file mode 100644 index e55dfbc2..00000000 Binary files a/public/textures/mcwbyg/rope_cypress_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_ebony_bridge.png b/public/textures/mcwbyg/rope_ebony_bridge.png deleted file mode 100644 index 7341c8e9..00000000 Binary files a/public/textures/mcwbyg/rope_ebony_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_fir_bridge.png b/public/textures/mcwbyg/rope_fir_bridge.png deleted file mode 100644 index cd391639..00000000 Binary files a/public/textures/mcwbyg/rope_fir_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_florus_bridge.png b/public/textures/mcwbyg/rope_florus_bridge.png deleted file mode 100644 index f5c65b94..00000000 Binary files a/public/textures/mcwbyg/rope_florus_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_green_enchanted_bridge.png b/public/textures/mcwbyg/rope_green_enchanted_bridge.png deleted file mode 100644 index 6afa2304..00000000 Binary files a/public/textures/mcwbyg/rope_green_enchanted_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_holly_bridge.png b/public/textures/mcwbyg/rope_holly_bridge.png deleted file mode 100644 index 90e02233..00000000 Binary files a/public/textures/mcwbyg/rope_holly_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_ironwood_bridge.png b/public/textures/mcwbyg/rope_ironwood_bridge.png deleted file mode 100644 index abf5a05d..00000000 Binary files a/public/textures/mcwbyg/rope_ironwood_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_jacaranda_bridge.png b/public/textures/mcwbyg/rope_jacaranda_bridge.png deleted file mode 100644 index 83740539..00000000 Binary files a/public/textures/mcwbyg/rope_jacaranda_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_mahogany_bridge.png b/public/textures/mcwbyg/rope_mahogany_bridge.png deleted file mode 100644 index bbc7b944..00000000 Binary files a/public/textures/mcwbyg/rope_mahogany_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_maple_bridge.png b/public/textures/mcwbyg/rope_maple_bridge.png deleted file mode 100644 index 6e7a79e5..00000000 Binary files a/public/textures/mcwbyg/rope_maple_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_palm_bridge.png b/public/textures/mcwbyg/rope_palm_bridge.png deleted file mode 100644 index 90e85ac1..00000000 Binary files a/public/textures/mcwbyg/rope_palm_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_pine_bridge.png b/public/textures/mcwbyg/rope_pine_bridge.png deleted file mode 100644 index acc176ec..00000000 Binary files a/public/textures/mcwbyg/rope_pine_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_rainbow_eucalyptus_bridge.png b/public/textures/mcwbyg/rope_rainbow_eucalyptus_bridge.png deleted file mode 100644 index 6e632c1a..00000000 Binary files a/public/textures/mcwbyg/rope_rainbow_eucalyptus_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_redwood_bridge.png b/public/textures/mcwbyg/rope_redwood_bridge.png deleted file mode 100644 index 2676f596..00000000 Binary files a/public/textures/mcwbyg/rope_redwood_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_sakura_bridge.png b/public/textures/mcwbyg/rope_sakura_bridge.png deleted file mode 100644 index 62588bab..00000000 Binary files a/public/textures/mcwbyg/rope_sakura_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_skyris_bridge.png b/public/textures/mcwbyg/rope_skyris_bridge.png deleted file mode 100644 index de561bf0..00000000 Binary files a/public/textures/mcwbyg/rope_skyris_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_white_mangrove_bridge.png b/public/textures/mcwbyg/rope_white_mangrove_bridge.png deleted file mode 100644 index 8a462ec4..00000000 Binary files a/public/textures/mcwbyg/rope_white_mangrove_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_willow_bridge.png b/public/textures/mcwbyg/rope_willow_bridge.png deleted file mode 100644 index 7471c145..00000000 Binary files a/public/textures/mcwbyg/rope_willow_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_witch_hazel_bridge.png b/public/textures/mcwbyg/rope_witch_hazel_bridge.png deleted file mode 100644 index b87890b0..00000000 Binary files a/public/textures/mcwbyg/rope_witch_hazel_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/rope_zelkova_bridge.png b/public/textures/mcwbyg/rope_zelkova_bridge.png deleted file mode 100644 index 4d66f08d..00000000 Binary files a/public/textures/mcwbyg/rope_zelkova_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_attic_roof.png b/public/textures/mcwbyg/sakura_attic_roof.png deleted file mode 100644 index 76f5f434..00000000 Binary files a/public/textures/mcwbyg/sakura_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_bamboo_door.png b/public/textures/mcwbyg/sakura_bamboo_door.png deleted file mode 100644 index 5ddbe099..00000000 Binary files a/public/textures/mcwbyg/sakura_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_bamboo_trapdoor.png b/public/textures/mcwbyg/sakura_bamboo_trapdoor.png deleted file mode 100644 index 415017b5..00000000 Binary files a/public/textures/mcwbyg/sakura_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_bark_glass_door.png b/public/textures/mcwbyg/sakura_bark_glass_door.png deleted file mode 100644 index caa1d7a9..00000000 Binary files a/public/textures/mcwbyg/sakura_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_bark_trapdoor.png b/public/textures/mcwbyg/sakura_bark_trapdoor.png deleted file mode 100644 index bc887285..00000000 Binary files a/public/textures/mcwbyg/sakura_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_barn_door.png b/public/textures/mcwbyg/sakura_barn_door.png deleted file mode 100644 index 0612b9fe..00000000 Binary files a/public/textures/mcwbyg/sakura_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_barn_glass_door.png b/public/textures/mcwbyg/sakura_barn_glass_door.png deleted file mode 100644 index 83fda7da..00000000 Binary files a/public/textures/mcwbyg/sakura_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_barn_trapdoor.png b/public/textures/mcwbyg/sakura_barn_trapdoor.png deleted file mode 100644 index 88f58aff..00000000 Binary files a/public/textures/mcwbyg/sakura_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_barred_trapdoor.png b/public/textures/mcwbyg/sakura_barred_trapdoor.png deleted file mode 100644 index 55f35a79..00000000 Binary files a/public/textures/mcwbyg/sakura_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_barrel_trapdoor.png b/public/textures/mcwbyg/sakura_barrel_trapdoor.png deleted file mode 100644 index a460ec01..00000000 Binary files a/public/textures/mcwbyg/sakura_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_beach_door.png b/public/textures/mcwbyg/sakura_beach_door.png deleted file mode 100644 index 9b305ff5..00000000 Binary files a/public/textures/mcwbyg/sakura_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_beach_trapdoor.png b/public/textures/mcwbyg/sakura_beach_trapdoor.png deleted file mode 100644 index 6b7d6a55..00000000 Binary files a/public/textures/mcwbyg/sakura_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_blinds.png b/public/textures/mcwbyg/sakura_blinds.png deleted file mode 100644 index 0bd6a256..00000000 Binary files a/public/textures/mcwbyg/sakura_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_blossom_trapdoor.png b/public/textures/mcwbyg/sakura_blossom_trapdoor.png deleted file mode 100644 index d03b8df3..00000000 Binary files a/public/textures/mcwbyg/sakura_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_bookshelf.png b/public/textures/mcwbyg/sakura_bookshelf.png deleted file mode 100644 index 6c26f23b..00000000 Binary files a/public/textures/mcwbyg/sakura_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_bookshelf_cupboard.png b/public/textures/mcwbyg/sakura_bookshelf_cupboard.png deleted file mode 100644 index fa6e7d62..00000000 Binary files a/public/textures/mcwbyg/sakura_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_bookshelf_drawer.png b/public/textures/mcwbyg/sakura_bookshelf_drawer.png deleted file mode 100644 index 8e6b8565..00000000 Binary files a/public/textures/mcwbyg/sakura_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_bridge_pier.png b/public/textures/mcwbyg/sakura_bridge_pier.png deleted file mode 100644 index 6944d62b..00000000 Binary files a/public/textures/mcwbyg/sakura_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_chair.png b/public/textures/mcwbyg/sakura_chair.png deleted file mode 100644 index 525b8b4a..00000000 Binary files a/public/textures/mcwbyg/sakura_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_classic_door.png b/public/textures/mcwbyg/sakura_classic_door.png deleted file mode 100644 index 2be4a784..00000000 Binary files a/public/textures/mcwbyg/sakura_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_classic_trapdoor.png b/public/textures/mcwbyg/sakura_classic_trapdoor.png deleted file mode 100644 index 224e180d..00000000 Binary files a/public/textures/mcwbyg/sakura_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_coffee_table.png b/public/textures/mcwbyg/sakura_coffee_table.png deleted file mode 100644 index 46c72582..00000000 Binary files a/public/textures/mcwbyg/sakura_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_cottage_door.png b/public/textures/mcwbyg/sakura_cottage_door.png deleted file mode 100644 index b1d07c24..00000000 Binary files a/public/textures/mcwbyg/sakura_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_cottage_trapdoor.png b/public/textures/mcwbyg/sakura_cottage_trapdoor.png deleted file mode 100644 index e4be7936..00000000 Binary files a/public/textures/mcwbyg/sakura_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_counter.png b/public/textures/mcwbyg/sakura_counter.png deleted file mode 100644 index d740a37f..00000000 Binary files a/public/textures/mcwbyg/sakura_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_covered_desk.png b/public/textures/mcwbyg/sakura_covered_desk.png deleted file mode 100644 index 4e95962a..00000000 Binary files a/public/textures/mcwbyg/sakura_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_cupboard_counter.png b/public/textures/mcwbyg/sakura_cupboard_counter.png deleted file mode 100644 index e4e9c82f..00000000 Binary files a/public/textures/mcwbyg/sakura_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_curtain_rod.png b/public/textures/mcwbyg/sakura_curtain_rod.png deleted file mode 100644 index 45acf3a0..00000000 Binary files a/public/textures/mcwbyg/sakura_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_curved_gate.png b/public/textures/mcwbyg/sakura_curved_gate.png deleted file mode 100644 index 4f6ba7c0..00000000 Binary files a/public/textures/mcwbyg/sakura_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_desk.png b/public/textures/mcwbyg/sakura_desk.png deleted file mode 100644 index a18a810c..00000000 Binary files a/public/textures/mcwbyg/sakura_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_double_drawer.png b/public/textures/mcwbyg/sakura_double_drawer.png deleted file mode 100644 index d6336790..00000000 Binary files a/public/textures/mcwbyg/sakura_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_double_drawer_counter.png b/public/textures/mcwbyg/sakura_double_drawer_counter.png deleted file mode 100644 index 9d995b4b..00000000 Binary files a/public/textures/mcwbyg/sakura_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_double_kitchen_cabinet.png b/public/textures/mcwbyg/sakura_double_kitchen_cabinet.png deleted file mode 100644 index c229884d..00000000 Binary files a/public/textures/mcwbyg/sakura_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_double_wardrobe.png b/public/textures/mcwbyg/sakura_double_wardrobe.png deleted file mode 100644 index 165a9b61..00000000 Binary files a/public/textures/mcwbyg/sakura_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_drawer.png b/public/textures/mcwbyg/sakura_drawer.png deleted file mode 100644 index 91d9f61e..00000000 Binary files a/public/textures/mcwbyg/sakura_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_drawer_counter.png b/public/textures/mcwbyg/sakura_drawer_counter.png deleted file mode 100644 index 3bab2b3b..00000000 Binary files a/public/textures/mcwbyg/sakura_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_end_table.png b/public/textures/mcwbyg/sakura_end_table.png deleted file mode 100644 index e88808a4..00000000 Binary files a/public/textures/mcwbyg/sakura_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_four_panel_door.png b/public/textures/mcwbyg/sakura_four_panel_door.png deleted file mode 100644 index dcd24256..00000000 Binary files a/public/textures/mcwbyg/sakura_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_four_panel_trapdoor.png b/public/textures/mcwbyg/sakura_four_panel_trapdoor.png deleted file mode 100644 index 18133011..00000000 Binary files a/public/textures/mcwbyg/sakura_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_four_window.png b/public/textures/mcwbyg/sakura_four_window.png deleted file mode 100644 index ad459888..00000000 Binary files a/public/textures/mcwbyg/sakura_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_glass_door.png b/public/textures/mcwbyg/sakura_glass_door.png deleted file mode 100644 index 2bab4beb..00000000 Binary files a/public/textures/mcwbyg/sakura_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_glass_kitchen_cabinet.png b/public/textures/mcwbyg/sakura_glass_kitchen_cabinet.png deleted file mode 100644 index 6772b7db..00000000 Binary files a/public/textures/mcwbyg/sakura_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_glass_table.png b/public/textures/mcwbyg/sakura_glass_table.png deleted file mode 100644 index 7ea97422..00000000 Binary files a/public/textures/mcwbyg/sakura_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_glass_trapdoor.png b/public/textures/mcwbyg/sakura_glass_trapdoor.png deleted file mode 100644 index df20a172..00000000 Binary files a/public/textures/mcwbyg/sakura_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_highley_gate.png b/public/textures/mcwbyg/sakura_highley_gate.png deleted file mode 100644 index ff5533e8..00000000 Binary files a/public/textures/mcwbyg/sakura_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_horse_fence.png b/public/textures/mcwbyg/sakura_horse_fence.png deleted file mode 100644 index abb03ede..00000000 Binary files a/public/textures/mcwbyg/sakura_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_japanese2_door.png b/public/textures/mcwbyg/sakura_japanese2_door.png deleted file mode 100644 index d71ada2d..00000000 Binary files a/public/textures/mcwbyg/sakura_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_japanese_door.png b/public/textures/mcwbyg/sakura_japanese_door.png deleted file mode 100644 index bae444a0..00000000 Binary files a/public/textures/mcwbyg/sakura_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_kitchen_cabinet.png b/public/textures/mcwbyg/sakura_kitchen_cabinet.png deleted file mode 100644 index c827ee6d..00000000 Binary files a/public/textures/mcwbyg/sakura_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_large_drawer.png b/public/textures/mcwbyg/sakura_large_drawer.png deleted file mode 100644 index eccb06c7..00000000 Binary files a/public/textures/mcwbyg/sakura_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_log_bridge_middle.png b/public/textures/mcwbyg/sakura_log_bridge_middle.png deleted file mode 100644 index a42fc2a1..00000000 Binary files a/public/textures/mcwbyg/sakura_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_log_bridge_stair.png b/public/textures/mcwbyg/sakura_log_bridge_stair.png deleted file mode 100644 index 76397590..00000000 Binary files a/public/textures/mcwbyg/sakura_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_log_parapet.png b/public/textures/mcwbyg/sakura_log_parapet.png deleted file mode 100644 index eaef94a3..00000000 Binary files a/public/textures/mcwbyg/sakura_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_louvered_shutter.png b/public/textures/mcwbyg/sakura_louvered_shutter.png deleted file mode 100644 index d07a19c7..00000000 Binary files a/public/textures/mcwbyg/sakura_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_lower_bookshelf_drawer.png b/public/textures/mcwbyg/sakura_lower_bookshelf_drawer.png deleted file mode 100644 index 2a98b75e..00000000 Binary files a/public/textures/mcwbyg/sakura_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_lower_roof.png b/public/textures/mcwbyg/sakura_lower_roof.png deleted file mode 100644 index c70d9165..00000000 Binary files a/public/textures/mcwbyg/sakura_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_lower_triple_drawer.png b/public/textures/mcwbyg/sakura_lower_triple_drawer.png deleted file mode 100644 index 59aa3789..00000000 Binary files a/public/textures/mcwbyg/sakura_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_modern_chair.png b/public/textures/mcwbyg/sakura_modern_chair.png deleted file mode 100644 index f423a9bf..00000000 Binary files a/public/textures/mcwbyg/sakura_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_modern_desk.png b/public/textures/mcwbyg/sakura_modern_desk.png deleted file mode 100644 index b06c6504..00000000 Binary files a/public/textures/mcwbyg/sakura_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_modern_door.png b/public/textures/mcwbyg/sakura_modern_door.png deleted file mode 100644 index 2bbdb04e..00000000 Binary files a/public/textures/mcwbyg/sakura_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_modern_wardrobe.png b/public/textures/mcwbyg/sakura_modern_wardrobe.png deleted file mode 100644 index 0ba39ca7..00000000 Binary files a/public/textures/mcwbyg/sakura_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_mystic_door.png b/public/textures/mcwbyg/sakura_mystic_door.png deleted file mode 100644 index 31c48524..00000000 Binary files a/public/textures/mcwbyg/sakura_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_mystic_trapdoor.png b/public/textures/mcwbyg/sakura_mystic_trapdoor.png deleted file mode 100644 index 19b31b08..00000000 Binary files a/public/textures/mcwbyg/sakura_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_nether_door.png b/public/textures/mcwbyg/sakura_nether_door.png deleted file mode 100644 index d379287c..00000000 Binary files a/public/textures/mcwbyg/sakura_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_pane_window.png b/public/textures/mcwbyg/sakura_pane_window.png deleted file mode 100644 index 59c92d9c..00000000 Binary files a/public/textures/mcwbyg/sakura_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_paper_door.png b/public/textures/mcwbyg/sakura_paper_door.png deleted file mode 100644 index 0ea51756..00000000 Binary files a/public/textures/mcwbyg/sakura_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_paper_trapdoor.png b/public/textures/mcwbyg/sakura_paper_trapdoor.png deleted file mode 100644 index 8a75a5a1..00000000 Binary files a/public/textures/mcwbyg/sakura_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_picket_fence.png b/public/textures/mcwbyg/sakura_picket_fence.png deleted file mode 100644 index af5ec301..00000000 Binary files a/public/textures/mcwbyg/sakura_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_plank_four_window.png b/public/textures/mcwbyg/sakura_plank_four_window.png deleted file mode 100644 index f2d0aa82..00000000 Binary files a/public/textures/mcwbyg/sakura_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_plank_pane_window.png b/public/textures/mcwbyg/sakura_plank_pane_window.png deleted file mode 100644 index 64b2161a..00000000 Binary files a/public/textures/mcwbyg/sakura_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_plank_parapet.png b/public/textures/mcwbyg/sakura_plank_parapet.png deleted file mode 100644 index ef015d44..00000000 Binary files a/public/textures/mcwbyg/sakura_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_plank_window.png b/public/textures/mcwbyg/sakura_plank_window.png deleted file mode 100644 index 4e277d22..00000000 Binary files a/public/textures/mcwbyg/sakura_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_plank_window2.png b/public/textures/mcwbyg/sakura_plank_window2.png deleted file mode 100644 index 231927b4..00000000 Binary files a/public/textures/mcwbyg/sakura_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_planks_attic_roof.png b/public/textures/mcwbyg/sakura_planks_attic_roof.png deleted file mode 100644 index cc0cae83..00000000 Binary files a/public/textures/mcwbyg/sakura_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_planks_lower_roof.png b/public/textures/mcwbyg/sakura_planks_lower_roof.png deleted file mode 100644 index 8d16e079..00000000 Binary files a/public/textures/mcwbyg/sakura_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_planks_path.png b/public/textures/mcwbyg/sakura_planks_path.png deleted file mode 100644 index 7dd8e106..00000000 Binary files a/public/textures/mcwbyg/sakura_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_planks_roof.png b/public/textures/mcwbyg/sakura_planks_roof.png deleted file mode 100644 index b988a3e0..00000000 Binary files a/public/textures/mcwbyg/sakura_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_planks_steep_roof.png b/public/textures/mcwbyg/sakura_planks_steep_roof.png deleted file mode 100644 index 9a835329..00000000 Binary files a/public/textures/mcwbyg/sakura_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_planks_top_roof.png b/public/textures/mcwbyg/sakura_planks_top_roof.png deleted file mode 100644 index 6be9fcdb..00000000 Binary files a/public/textures/mcwbyg/sakura_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_planks_upper_lower_roof.png b/public/textures/mcwbyg/sakura_planks_upper_lower_roof.png deleted file mode 100644 index 1dfa9ac1..00000000 Binary files a/public/textures/mcwbyg/sakura_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_planks_upper_steep_roof.png b/public/textures/mcwbyg/sakura_planks_upper_steep_roof.png deleted file mode 100644 index 8c3cdf51..00000000 Binary files a/public/textures/mcwbyg/sakura_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_pyramid_gate.png b/public/textures/mcwbyg/sakura_pyramid_gate.png deleted file mode 100644 index 96868ec7..00000000 Binary files a/public/textures/mcwbyg/sakura_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_rail_bridge.png b/public/textures/mcwbyg/sakura_rail_bridge.png deleted file mode 100644 index 203a5810..00000000 Binary files a/public/textures/mcwbyg/sakura_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_ranch_trapdoor.png b/public/textures/mcwbyg/sakura_ranch_trapdoor.png deleted file mode 100644 index 09af31e2..00000000 Binary files a/public/textures/mcwbyg/sakura_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_roof.png b/public/textures/mcwbyg/sakura_roof.png deleted file mode 100644 index f5d087f0..00000000 Binary files a/public/textures/mcwbyg/sakura_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_rope_bridge_stair.png b/public/textures/mcwbyg/sakura_rope_bridge_stair.png deleted file mode 100644 index 5487e9f0..00000000 Binary files a/public/textures/mcwbyg/sakura_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_shutter.png b/public/textures/mcwbyg/sakura_shutter.png deleted file mode 100644 index 5d0eaa50..00000000 Binary files a/public/textures/mcwbyg/sakura_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_stable_door.png b/public/textures/mcwbyg/sakura_stable_door.png deleted file mode 100644 index 08772298..00000000 Binary files a/public/textures/mcwbyg/sakura_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_stable_head_door.png b/public/textures/mcwbyg/sakura_stable_head_door.png deleted file mode 100644 index 11d733c6..00000000 Binary files a/public/textures/mcwbyg/sakura_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_steep_roof.png b/public/textures/mcwbyg/sakura_steep_roof.png deleted file mode 100644 index 91c71bca..00000000 Binary files a/public/textures/mcwbyg/sakura_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_stockade_fence.png b/public/textures/mcwbyg/sakura_stockade_fence.png deleted file mode 100644 index d53704c2..00000000 Binary files a/public/textures/mcwbyg/sakura_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_stool_chair.png b/public/textures/mcwbyg/sakura_stool_chair.png deleted file mode 100644 index 9cef7097..00000000 Binary files a/public/textures/mcwbyg/sakura_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_striped_chair.png b/public/textures/mcwbyg/sakura_striped_chair.png deleted file mode 100644 index a2460678..00000000 Binary files a/public/textures/mcwbyg/sakura_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_swamp_door.png b/public/textures/mcwbyg/sakura_swamp_door.png deleted file mode 100644 index 8a6fca3a..00000000 Binary files a/public/textures/mcwbyg/sakura_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_swamp_trapdoor.png b/public/textures/mcwbyg/sakura_swamp_trapdoor.png deleted file mode 100644 index 909cc444..00000000 Binary files a/public/textures/mcwbyg/sakura_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_table.png b/public/textures/mcwbyg/sakura_table.png deleted file mode 100644 index 25dbe48c..00000000 Binary files a/public/textures/mcwbyg/sakura_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_top_roof.png b/public/textures/mcwbyg/sakura_top_roof.png deleted file mode 100644 index 4e5f3778..00000000 Binary files a/public/textures/mcwbyg/sakura_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_triple_drawer.png b/public/textures/mcwbyg/sakura_triple_drawer.png deleted file mode 100644 index 80e08e57..00000000 Binary files a/public/textures/mcwbyg/sakura_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_tropical_door.png b/public/textures/mcwbyg/sakura_tropical_door.png deleted file mode 100644 index a062af5f..00000000 Binary files a/public/textures/mcwbyg/sakura_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_tropical_trapdoor.png b/public/textures/mcwbyg/sakura_tropical_trapdoor.png deleted file mode 100644 index 065f97d7..00000000 Binary files a/public/textures/mcwbyg/sakura_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_upper_lower_roof.png b/public/textures/mcwbyg/sakura_upper_lower_roof.png deleted file mode 100644 index 70a127a8..00000000 Binary files a/public/textures/mcwbyg/sakura_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_upper_steep_roof.png b/public/textures/mcwbyg/sakura_upper_steep_roof.png deleted file mode 100644 index cad4dd43..00000000 Binary files a/public/textures/mcwbyg/sakura_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_waffle_door.png b/public/textures/mcwbyg/sakura_waffle_door.png deleted file mode 100644 index 55312921..00000000 Binary files a/public/textures/mcwbyg/sakura_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_wardrobe.png b/public/textures/mcwbyg/sakura_wardrobe.png deleted file mode 100644 index 29771d7d..00000000 Binary files a/public/textures/mcwbyg/sakura_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_western_door.png b/public/textures/mcwbyg/sakura_western_door.png deleted file mode 100644 index 018330e0..00000000 Binary files a/public/textures/mcwbyg/sakura_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_whispering_door.png b/public/textures/mcwbyg/sakura_whispering_door.png deleted file mode 100644 index 7836e5b2..00000000 Binary files a/public/textures/mcwbyg/sakura_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_whispering_trapdoor.png b/public/textures/mcwbyg/sakura_whispering_trapdoor.png deleted file mode 100644 index 739a36da..00000000 Binary files a/public/textures/mcwbyg/sakura_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_window.png b/public/textures/mcwbyg/sakura_window.png deleted file mode 100644 index 8dbe7b51..00000000 Binary files a/public/textures/mcwbyg/sakura_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_window2.png b/public/textures/mcwbyg/sakura_window2.png deleted file mode 100644 index 381ca0eb..00000000 Binary files a/public/textures/mcwbyg/sakura_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/sakura_wired_fence.png b/public/textures/mcwbyg/sakura_wired_fence.png deleted file mode 100644 index f84cefb2..00000000 Binary files a/public/textures/mcwbyg/sakura_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_attic_roof.png b/public/textures/mcwbyg/skyris_attic_roof.png deleted file mode 100644 index dab02d2a..00000000 Binary files a/public/textures/mcwbyg/skyris_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_bamboo_door.png b/public/textures/mcwbyg/skyris_bamboo_door.png deleted file mode 100644 index 61e03585..00000000 Binary files a/public/textures/mcwbyg/skyris_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_bamboo_trapdoor.png b/public/textures/mcwbyg/skyris_bamboo_trapdoor.png deleted file mode 100644 index 23f1c66b..00000000 Binary files a/public/textures/mcwbyg/skyris_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_bark_glass_door.png b/public/textures/mcwbyg/skyris_bark_glass_door.png deleted file mode 100644 index e75b97e4..00000000 Binary files a/public/textures/mcwbyg/skyris_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_bark_trapdoor.png b/public/textures/mcwbyg/skyris_bark_trapdoor.png deleted file mode 100644 index 9f96d742..00000000 Binary files a/public/textures/mcwbyg/skyris_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_barn_door.png b/public/textures/mcwbyg/skyris_barn_door.png deleted file mode 100644 index 7c405f6d..00000000 Binary files a/public/textures/mcwbyg/skyris_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_barn_glass_door.png b/public/textures/mcwbyg/skyris_barn_glass_door.png deleted file mode 100644 index 042714e1..00000000 Binary files a/public/textures/mcwbyg/skyris_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_barn_trapdoor.png b/public/textures/mcwbyg/skyris_barn_trapdoor.png deleted file mode 100644 index 27e24a1a..00000000 Binary files a/public/textures/mcwbyg/skyris_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_barred_trapdoor.png b/public/textures/mcwbyg/skyris_barred_trapdoor.png deleted file mode 100644 index 973610c7..00000000 Binary files a/public/textures/mcwbyg/skyris_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_barrel_trapdoor.png b/public/textures/mcwbyg/skyris_barrel_trapdoor.png deleted file mode 100644 index d63d3cbd..00000000 Binary files a/public/textures/mcwbyg/skyris_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_beach_door.png b/public/textures/mcwbyg/skyris_beach_door.png deleted file mode 100644 index 9f30ba6f..00000000 Binary files a/public/textures/mcwbyg/skyris_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_beach_trapdoor.png b/public/textures/mcwbyg/skyris_beach_trapdoor.png deleted file mode 100644 index 499b46c5..00000000 Binary files a/public/textures/mcwbyg/skyris_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_blinds.png b/public/textures/mcwbyg/skyris_blinds.png deleted file mode 100644 index 6abe2db4..00000000 Binary files a/public/textures/mcwbyg/skyris_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_blossom_trapdoor.png b/public/textures/mcwbyg/skyris_blossom_trapdoor.png deleted file mode 100644 index abc57d03..00000000 Binary files a/public/textures/mcwbyg/skyris_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_bookshelf.png b/public/textures/mcwbyg/skyris_bookshelf.png deleted file mode 100644 index d64d3fb9..00000000 Binary files a/public/textures/mcwbyg/skyris_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_bookshelf_cupboard.png b/public/textures/mcwbyg/skyris_bookshelf_cupboard.png deleted file mode 100644 index 9ee4685d..00000000 Binary files a/public/textures/mcwbyg/skyris_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_bookshelf_drawer.png b/public/textures/mcwbyg/skyris_bookshelf_drawer.png deleted file mode 100644 index ec70fc9d..00000000 Binary files a/public/textures/mcwbyg/skyris_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_bridge_pier.png b/public/textures/mcwbyg/skyris_bridge_pier.png deleted file mode 100644 index 8e7bfb58..00000000 Binary files a/public/textures/mcwbyg/skyris_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_chair.png b/public/textures/mcwbyg/skyris_chair.png deleted file mode 100644 index 40768b45..00000000 Binary files a/public/textures/mcwbyg/skyris_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_classic_door.png b/public/textures/mcwbyg/skyris_classic_door.png deleted file mode 100644 index 09f0f617..00000000 Binary files a/public/textures/mcwbyg/skyris_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_classic_trapdoor.png b/public/textures/mcwbyg/skyris_classic_trapdoor.png deleted file mode 100644 index 2fb4da0b..00000000 Binary files a/public/textures/mcwbyg/skyris_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_coffee_table.png b/public/textures/mcwbyg/skyris_coffee_table.png deleted file mode 100644 index 2f116eea..00000000 Binary files a/public/textures/mcwbyg/skyris_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_cottage_door.png b/public/textures/mcwbyg/skyris_cottage_door.png deleted file mode 100644 index e93332cf..00000000 Binary files a/public/textures/mcwbyg/skyris_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_cottage_trapdoor.png b/public/textures/mcwbyg/skyris_cottage_trapdoor.png deleted file mode 100644 index 1eb7078f..00000000 Binary files a/public/textures/mcwbyg/skyris_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_counter.png b/public/textures/mcwbyg/skyris_counter.png deleted file mode 100644 index c83e3dc9..00000000 Binary files a/public/textures/mcwbyg/skyris_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_covered_desk.png b/public/textures/mcwbyg/skyris_covered_desk.png deleted file mode 100644 index 27a2f59d..00000000 Binary files a/public/textures/mcwbyg/skyris_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_cupboard_counter.png b/public/textures/mcwbyg/skyris_cupboard_counter.png deleted file mode 100644 index db8d5da9..00000000 Binary files a/public/textures/mcwbyg/skyris_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_curtain_rod.png b/public/textures/mcwbyg/skyris_curtain_rod.png deleted file mode 100644 index d45ff5db..00000000 Binary files a/public/textures/mcwbyg/skyris_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_curved_gate.png b/public/textures/mcwbyg/skyris_curved_gate.png deleted file mode 100644 index abf3988f..00000000 Binary files a/public/textures/mcwbyg/skyris_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_desk.png b/public/textures/mcwbyg/skyris_desk.png deleted file mode 100644 index 06f9c973..00000000 Binary files a/public/textures/mcwbyg/skyris_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_double_drawer.png b/public/textures/mcwbyg/skyris_double_drawer.png deleted file mode 100644 index 6a48fdb9..00000000 Binary files a/public/textures/mcwbyg/skyris_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_double_drawer_counter.png b/public/textures/mcwbyg/skyris_double_drawer_counter.png deleted file mode 100644 index 4bae1c7b..00000000 Binary files a/public/textures/mcwbyg/skyris_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_double_kitchen_cabinet.png b/public/textures/mcwbyg/skyris_double_kitchen_cabinet.png deleted file mode 100644 index 8957a915..00000000 Binary files a/public/textures/mcwbyg/skyris_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_double_wardrobe.png b/public/textures/mcwbyg/skyris_double_wardrobe.png deleted file mode 100644 index 8b6c207d..00000000 Binary files a/public/textures/mcwbyg/skyris_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_drawer.png b/public/textures/mcwbyg/skyris_drawer.png deleted file mode 100644 index feeb821b..00000000 Binary files a/public/textures/mcwbyg/skyris_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_drawer_counter.png b/public/textures/mcwbyg/skyris_drawer_counter.png deleted file mode 100644 index 08882474..00000000 Binary files a/public/textures/mcwbyg/skyris_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_end_table.png b/public/textures/mcwbyg/skyris_end_table.png deleted file mode 100644 index 0ea516b7..00000000 Binary files a/public/textures/mcwbyg/skyris_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_four_panel_door.png b/public/textures/mcwbyg/skyris_four_panel_door.png deleted file mode 100644 index ac2ae999..00000000 Binary files a/public/textures/mcwbyg/skyris_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_four_panel_trapdoor.png b/public/textures/mcwbyg/skyris_four_panel_trapdoor.png deleted file mode 100644 index ee88400f..00000000 Binary files a/public/textures/mcwbyg/skyris_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_four_window.png b/public/textures/mcwbyg/skyris_four_window.png deleted file mode 100644 index 2f2aa2f0..00000000 Binary files a/public/textures/mcwbyg/skyris_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_glass_door.png b/public/textures/mcwbyg/skyris_glass_door.png deleted file mode 100644 index 37c96e5d..00000000 Binary files a/public/textures/mcwbyg/skyris_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_glass_kitchen_cabinet.png b/public/textures/mcwbyg/skyris_glass_kitchen_cabinet.png deleted file mode 100644 index 35b63a6a..00000000 Binary files a/public/textures/mcwbyg/skyris_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_glass_table.png b/public/textures/mcwbyg/skyris_glass_table.png deleted file mode 100644 index 04f39d5d..00000000 Binary files a/public/textures/mcwbyg/skyris_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_glass_trapdoor.png b/public/textures/mcwbyg/skyris_glass_trapdoor.png deleted file mode 100644 index 971fca82..00000000 Binary files a/public/textures/mcwbyg/skyris_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_hedge.png b/public/textures/mcwbyg/skyris_hedge.png deleted file mode 100644 index 6f1a7e24..00000000 Binary files a/public/textures/mcwbyg/skyris_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_highley_gate.png b/public/textures/mcwbyg/skyris_highley_gate.png deleted file mode 100644 index 8e712111..00000000 Binary files a/public/textures/mcwbyg/skyris_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_horse_fence.png b/public/textures/mcwbyg/skyris_horse_fence.png deleted file mode 100644 index 3007a292..00000000 Binary files a/public/textures/mcwbyg/skyris_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_japanese2_door.png b/public/textures/mcwbyg/skyris_japanese2_door.png deleted file mode 100644 index 0086db4d..00000000 Binary files a/public/textures/mcwbyg/skyris_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_japanese_door.png b/public/textures/mcwbyg/skyris_japanese_door.png deleted file mode 100644 index fc1fa38e..00000000 Binary files a/public/textures/mcwbyg/skyris_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_kitchen_cabinet.png b/public/textures/mcwbyg/skyris_kitchen_cabinet.png deleted file mode 100644 index 6e67d7a9..00000000 Binary files a/public/textures/mcwbyg/skyris_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_large_drawer.png b/public/textures/mcwbyg/skyris_large_drawer.png deleted file mode 100644 index 847265da..00000000 Binary files a/public/textures/mcwbyg/skyris_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_log_bridge_middle.png b/public/textures/mcwbyg/skyris_log_bridge_middle.png deleted file mode 100644 index 23f8b30a..00000000 Binary files a/public/textures/mcwbyg/skyris_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_log_bridge_stair.png b/public/textures/mcwbyg/skyris_log_bridge_stair.png deleted file mode 100644 index 6bafdee7..00000000 Binary files a/public/textures/mcwbyg/skyris_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_log_parapet.png b/public/textures/mcwbyg/skyris_log_parapet.png deleted file mode 100644 index 8acf36f4..00000000 Binary files a/public/textures/mcwbyg/skyris_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_louvered_shutter.png b/public/textures/mcwbyg/skyris_louvered_shutter.png deleted file mode 100644 index 6419cf29..00000000 Binary files a/public/textures/mcwbyg/skyris_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_lower_bookshelf_drawer.png b/public/textures/mcwbyg/skyris_lower_bookshelf_drawer.png deleted file mode 100644 index f93c74ff..00000000 Binary files a/public/textures/mcwbyg/skyris_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_lower_roof.png b/public/textures/mcwbyg/skyris_lower_roof.png deleted file mode 100644 index 5534dc0f..00000000 Binary files a/public/textures/mcwbyg/skyris_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_lower_triple_drawer.png b/public/textures/mcwbyg/skyris_lower_triple_drawer.png deleted file mode 100644 index 1f0647f9..00000000 Binary files a/public/textures/mcwbyg/skyris_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_modern_chair.png b/public/textures/mcwbyg/skyris_modern_chair.png deleted file mode 100644 index 658b1009..00000000 Binary files a/public/textures/mcwbyg/skyris_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_modern_desk.png b/public/textures/mcwbyg/skyris_modern_desk.png deleted file mode 100644 index af6941e4..00000000 Binary files a/public/textures/mcwbyg/skyris_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_modern_door.png b/public/textures/mcwbyg/skyris_modern_door.png deleted file mode 100644 index 62d96eed..00000000 Binary files a/public/textures/mcwbyg/skyris_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_modern_wardrobe.png b/public/textures/mcwbyg/skyris_modern_wardrobe.png deleted file mode 100644 index 3e8e055e..00000000 Binary files a/public/textures/mcwbyg/skyris_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_mystic_door.png b/public/textures/mcwbyg/skyris_mystic_door.png deleted file mode 100644 index 9b542850..00000000 Binary files a/public/textures/mcwbyg/skyris_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_mystic_trapdoor.png b/public/textures/mcwbyg/skyris_mystic_trapdoor.png deleted file mode 100644 index 539eb2b9..00000000 Binary files a/public/textures/mcwbyg/skyris_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_nether_door.png b/public/textures/mcwbyg/skyris_nether_door.png deleted file mode 100644 index 5075b6f5..00000000 Binary files a/public/textures/mcwbyg/skyris_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_pane_window.png b/public/textures/mcwbyg/skyris_pane_window.png deleted file mode 100644 index ffc7d7bd..00000000 Binary files a/public/textures/mcwbyg/skyris_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_paper_door.png b/public/textures/mcwbyg/skyris_paper_door.png deleted file mode 100644 index 2796da66..00000000 Binary files a/public/textures/mcwbyg/skyris_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_paper_trapdoor.png b/public/textures/mcwbyg/skyris_paper_trapdoor.png deleted file mode 100644 index 71fd641b..00000000 Binary files a/public/textures/mcwbyg/skyris_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_picket_fence.png b/public/textures/mcwbyg/skyris_picket_fence.png deleted file mode 100644 index 0eae3d0b..00000000 Binary files a/public/textures/mcwbyg/skyris_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_plank_four_window.png b/public/textures/mcwbyg/skyris_plank_four_window.png deleted file mode 100644 index 539b0758..00000000 Binary files a/public/textures/mcwbyg/skyris_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_plank_pane_window.png b/public/textures/mcwbyg/skyris_plank_pane_window.png deleted file mode 100644 index 415a780f..00000000 Binary files a/public/textures/mcwbyg/skyris_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_plank_parapet.png b/public/textures/mcwbyg/skyris_plank_parapet.png deleted file mode 100644 index 47a48648..00000000 Binary files a/public/textures/mcwbyg/skyris_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_plank_window.png b/public/textures/mcwbyg/skyris_plank_window.png deleted file mode 100644 index f4669371..00000000 Binary files a/public/textures/mcwbyg/skyris_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_plank_window2.png b/public/textures/mcwbyg/skyris_plank_window2.png deleted file mode 100644 index eab21bfc..00000000 Binary files a/public/textures/mcwbyg/skyris_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_planks_attic_roof.png b/public/textures/mcwbyg/skyris_planks_attic_roof.png deleted file mode 100644 index 6f94dae2..00000000 Binary files a/public/textures/mcwbyg/skyris_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_planks_lower_roof.png b/public/textures/mcwbyg/skyris_planks_lower_roof.png deleted file mode 100644 index f28704de..00000000 Binary files a/public/textures/mcwbyg/skyris_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_planks_path.png b/public/textures/mcwbyg/skyris_planks_path.png deleted file mode 100644 index 786e3bdf..00000000 Binary files a/public/textures/mcwbyg/skyris_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_planks_roof.png b/public/textures/mcwbyg/skyris_planks_roof.png deleted file mode 100644 index bd189068..00000000 Binary files a/public/textures/mcwbyg/skyris_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_planks_steep_roof.png b/public/textures/mcwbyg/skyris_planks_steep_roof.png deleted file mode 100644 index 726ef89a..00000000 Binary files a/public/textures/mcwbyg/skyris_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_planks_top_roof.png b/public/textures/mcwbyg/skyris_planks_top_roof.png deleted file mode 100644 index fa6b3fc0..00000000 Binary files a/public/textures/mcwbyg/skyris_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_planks_upper_lower_roof.png b/public/textures/mcwbyg/skyris_planks_upper_lower_roof.png deleted file mode 100644 index 5f085efb..00000000 Binary files a/public/textures/mcwbyg/skyris_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_planks_upper_steep_roof.png b/public/textures/mcwbyg/skyris_planks_upper_steep_roof.png deleted file mode 100644 index fe80f549..00000000 Binary files a/public/textures/mcwbyg/skyris_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_pyramid_gate.png b/public/textures/mcwbyg/skyris_pyramid_gate.png deleted file mode 100644 index 8f5aac5c..00000000 Binary files a/public/textures/mcwbyg/skyris_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_rail_bridge.png b/public/textures/mcwbyg/skyris_rail_bridge.png deleted file mode 100644 index dff18319..00000000 Binary files a/public/textures/mcwbyg/skyris_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_ranch_trapdoor.png b/public/textures/mcwbyg/skyris_ranch_trapdoor.png deleted file mode 100644 index 3e776749..00000000 Binary files a/public/textures/mcwbyg/skyris_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_roof.png b/public/textures/mcwbyg/skyris_roof.png deleted file mode 100644 index 9cebb84c..00000000 Binary files a/public/textures/mcwbyg/skyris_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_rope_bridge_stair.png b/public/textures/mcwbyg/skyris_rope_bridge_stair.png deleted file mode 100644 index aa5a6dcf..00000000 Binary files a/public/textures/mcwbyg/skyris_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_shutter.png b/public/textures/mcwbyg/skyris_shutter.png deleted file mode 100644 index 05493afa..00000000 Binary files a/public/textures/mcwbyg/skyris_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_stable_door.png b/public/textures/mcwbyg/skyris_stable_door.png deleted file mode 100644 index 0b8ee1b1..00000000 Binary files a/public/textures/mcwbyg/skyris_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_stable_head_door.png b/public/textures/mcwbyg/skyris_stable_head_door.png deleted file mode 100644 index 2bf8d603..00000000 Binary files a/public/textures/mcwbyg/skyris_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_steep_roof.png b/public/textures/mcwbyg/skyris_steep_roof.png deleted file mode 100644 index ae4bb50b..00000000 Binary files a/public/textures/mcwbyg/skyris_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_stockade_fence.png b/public/textures/mcwbyg/skyris_stockade_fence.png deleted file mode 100644 index d0c9e345..00000000 Binary files a/public/textures/mcwbyg/skyris_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_stool_chair.png b/public/textures/mcwbyg/skyris_stool_chair.png deleted file mode 100644 index 4d95872f..00000000 Binary files a/public/textures/mcwbyg/skyris_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_striped_chair.png b/public/textures/mcwbyg/skyris_striped_chair.png deleted file mode 100644 index 39cd25c5..00000000 Binary files a/public/textures/mcwbyg/skyris_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_swamp_door.png b/public/textures/mcwbyg/skyris_swamp_door.png deleted file mode 100644 index 5a33364d..00000000 Binary files a/public/textures/mcwbyg/skyris_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_swamp_trapdoor.png b/public/textures/mcwbyg/skyris_swamp_trapdoor.png deleted file mode 100644 index 48cc3c90..00000000 Binary files a/public/textures/mcwbyg/skyris_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_table.png b/public/textures/mcwbyg/skyris_table.png deleted file mode 100644 index e6b2ea14..00000000 Binary files a/public/textures/mcwbyg/skyris_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_top_roof.png b/public/textures/mcwbyg/skyris_top_roof.png deleted file mode 100644 index 60f67837..00000000 Binary files a/public/textures/mcwbyg/skyris_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_triple_drawer.png b/public/textures/mcwbyg/skyris_triple_drawer.png deleted file mode 100644 index b4e74955..00000000 Binary files a/public/textures/mcwbyg/skyris_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_tropical_door.png b/public/textures/mcwbyg/skyris_tropical_door.png deleted file mode 100644 index 1617c354..00000000 Binary files a/public/textures/mcwbyg/skyris_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_tropical_trapdoor.png b/public/textures/mcwbyg/skyris_tropical_trapdoor.png deleted file mode 100644 index 6eede0a6..00000000 Binary files a/public/textures/mcwbyg/skyris_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_upper_lower_roof.png b/public/textures/mcwbyg/skyris_upper_lower_roof.png deleted file mode 100644 index 47aded79..00000000 Binary files a/public/textures/mcwbyg/skyris_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_upper_steep_roof.png b/public/textures/mcwbyg/skyris_upper_steep_roof.png deleted file mode 100644 index 50375a29..00000000 Binary files a/public/textures/mcwbyg/skyris_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_waffle_door.png b/public/textures/mcwbyg/skyris_waffle_door.png deleted file mode 100644 index bf97894e..00000000 Binary files a/public/textures/mcwbyg/skyris_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_wardrobe.png b/public/textures/mcwbyg/skyris_wardrobe.png deleted file mode 100644 index 791d1281..00000000 Binary files a/public/textures/mcwbyg/skyris_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_western_door.png b/public/textures/mcwbyg/skyris_western_door.png deleted file mode 100644 index 4cf73fe8..00000000 Binary files a/public/textures/mcwbyg/skyris_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_whispering_door.png b/public/textures/mcwbyg/skyris_whispering_door.png deleted file mode 100644 index 516ff694..00000000 Binary files a/public/textures/mcwbyg/skyris_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_whispering_trapdoor.png b/public/textures/mcwbyg/skyris_whispering_trapdoor.png deleted file mode 100644 index 4fc2b13b..00000000 Binary files a/public/textures/mcwbyg/skyris_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_window.png b/public/textures/mcwbyg/skyris_window.png deleted file mode 100644 index 49334f2e..00000000 Binary files a/public/textures/mcwbyg/skyris_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_window2.png b/public/textures/mcwbyg/skyris_window2.png deleted file mode 100644 index f69a3223..00000000 Binary files a/public/textures/mcwbyg/skyris_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/skyris_wired_fence.png b/public/textures/mcwbyg/skyris_wired_fence.png deleted file mode 100644 index 95ff26c1..00000000 Binary files a/public/textures/mcwbyg/skyris_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_bookshelf.png b/public/textures/mcwbyg/stripped_aspen_bookshelf.png deleted file mode 100644 index 93a1d042..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_aspen_bookshelf_cupboard.png deleted file mode 100644 index d4e55e2b..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_aspen_bookshelf_drawer.png deleted file mode 100644 index 26e47d58..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_chair.png b/public/textures/mcwbyg/stripped_aspen_chair.png deleted file mode 100644 index 52a6abb7..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_coffee_table.png b/public/textures/mcwbyg/stripped_aspen_coffee_table.png deleted file mode 100644 index a4e403f0..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_counter.png b/public/textures/mcwbyg/stripped_aspen_counter.png deleted file mode 100644 index 3c77bce2..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_covered_desk.png b/public/textures/mcwbyg/stripped_aspen_covered_desk.png deleted file mode 100644 index 69f2b933..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_cupboard_counter.png b/public/textures/mcwbyg/stripped_aspen_cupboard_counter.png deleted file mode 100644 index cc6ddbe0..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_desk.png b/public/textures/mcwbyg/stripped_aspen_desk.png deleted file mode 100644 index e0b237e5..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_double_drawer.png b/public/textures/mcwbyg/stripped_aspen_double_drawer.png deleted file mode 100644 index 66d67703..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_double_drawer_counter.png b/public/textures/mcwbyg/stripped_aspen_double_drawer_counter.png deleted file mode 100644 index e66693c8..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_aspen_double_kitchen_cabinet.png deleted file mode 100644 index a25ba777..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_double_wardrobe.png b/public/textures/mcwbyg/stripped_aspen_double_wardrobe.png deleted file mode 100644 index daf83627..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_drawer.png b/public/textures/mcwbyg/stripped_aspen_drawer.png deleted file mode 100644 index 45cf550e..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_drawer_counter.png b/public/textures/mcwbyg/stripped_aspen_drawer_counter.png deleted file mode 100644 index eef37bb1..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_end_table.png b/public/textures/mcwbyg/stripped_aspen_end_table.png deleted file mode 100644 index 75aca5f9..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_aspen_glass_kitchen_cabinet.png deleted file mode 100644 index 0e3f1fdc..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_glass_table.png b/public/textures/mcwbyg/stripped_aspen_glass_table.png deleted file mode 100644 index d8d71651..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_aspen_kitchen_cabinet.png deleted file mode 100644 index 0f29c88b..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_large_drawer.png b/public/textures/mcwbyg/stripped_aspen_large_drawer.png deleted file mode 100644 index d0867f0f..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_log_four_window.png b/public/textures/mcwbyg/stripped_aspen_log_four_window.png deleted file mode 100644 index ecfdb647..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_log_window.png b/public/textures/mcwbyg/stripped_aspen_log_window.png deleted file mode 100644 index ce80f8c5..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_log_window2.png b/public/textures/mcwbyg/stripped_aspen_log_window2.png deleted file mode 100644 index cd0ba4dd..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_aspen_lower_bookshelf_drawer.png deleted file mode 100644 index c702faa7..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_aspen_lower_triple_drawer.png deleted file mode 100644 index 7c6759b0..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_modern_chair.png b/public/textures/mcwbyg/stripped_aspen_modern_chair.png deleted file mode 100644 index 01d031fe..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_modern_desk.png b/public/textures/mcwbyg/stripped_aspen_modern_desk.png deleted file mode 100644 index 0bc3b397..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_modern_wardrobe.png b/public/textures/mcwbyg/stripped_aspen_modern_wardrobe.png deleted file mode 100644 index e17d1b87..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_pane_window.png b/public/textures/mcwbyg/stripped_aspen_pane_window.png deleted file mode 100644 index d04672fa..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_stool_chair.png b/public/textures/mcwbyg/stripped_aspen_stool_chair.png deleted file mode 100644 index ce677274..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_striped_chair.png b/public/textures/mcwbyg/stripped_aspen_striped_chair.png deleted file mode 100644 index 6301fee1..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_table.png b/public/textures/mcwbyg/stripped_aspen_table.png deleted file mode 100644 index 7dbf885b..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_triple_drawer.png b/public/textures/mcwbyg/stripped_aspen_triple_drawer.png deleted file mode 100644 index 215abd87..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_aspen_wardrobe.png b/public/textures/mcwbyg/stripped_aspen_wardrobe.png deleted file mode 100644 index 9f12d3ad..00000000 Binary files a/public/textures/mcwbyg/stripped_aspen_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_bookshelf.png b/public/textures/mcwbyg/stripped_baobab_bookshelf.png deleted file mode 100644 index a818b12b..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_baobab_bookshelf_cupboard.png deleted file mode 100644 index 2a7e50d8..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_baobab_bookshelf_drawer.png deleted file mode 100644 index 572593e1..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_chair.png b/public/textures/mcwbyg/stripped_baobab_chair.png deleted file mode 100644 index eff29cef..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_coffee_table.png b/public/textures/mcwbyg/stripped_baobab_coffee_table.png deleted file mode 100644 index 08a2fd76..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_counter.png b/public/textures/mcwbyg/stripped_baobab_counter.png deleted file mode 100644 index 4a21b755..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_covered_desk.png b/public/textures/mcwbyg/stripped_baobab_covered_desk.png deleted file mode 100644 index cf085d50..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_cupboard_counter.png b/public/textures/mcwbyg/stripped_baobab_cupboard_counter.png deleted file mode 100644 index 05c283dc..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_desk.png b/public/textures/mcwbyg/stripped_baobab_desk.png deleted file mode 100644 index 87ff616a..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_double_drawer.png b/public/textures/mcwbyg/stripped_baobab_double_drawer.png deleted file mode 100644 index 22ec9d8c..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_double_drawer_counter.png b/public/textures/mcwbyg/stripped_baobab_double_drawer_counter.png deleted file mode 100644 index 913b26d2..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_baobab_double_kitchen_cabinet.png deleted file mode 100644 index 2c21e6d3..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_double_wardrobe.png b/public/textures/mcwbyg/stripped_baobab_double_wardrobe.png deleted file mode 100644 index 2daf9423..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_drawer.png b/public/textures/mcwbyg/stripped_baobab_drawer.png deleted file mode 100644 index a685c805..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_drawer_counter.png b/public/textures/mcwbyg/stripped_baobab_drawer_counter.png deleted file mode 100644 index d0af8c23..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_end_table.png b/public/textures/mcwbyg/stripped_baobab_end_table.png deleted file mode 100644 index 7aa6f7e5..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_baobab_glass_kitchen_cabinet.png deleted file mode 100644 index 3f520ad0..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_glass_table.png b/public/textures/mcwbyg/stripped_baobab_glass_table.png deleted file mode 100644 index 054b818b..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_baobab_kitchen_cabinet.png deleted file mode 100644 index 9253dfcc..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_large_drawer.png b/public/textures/mcwbyg/stripped_baobab_large_drawer.png deleted file mode 100644 index 85597ec3..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_log_four_window.png b/public/textures/mcwbyg/stripped_baobab_log_four_window.png deleted file mode 100644 index 912cd939..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_log_window.png b/public/textures/mcwbyg/stripped_baobab_log_window.png deleted file mode 100644 index a877a932..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_log_window2.png b/public/textures/mcwbyg/stripped_baobab_log_window2.png deleted file mode 100644 index 6a3f0a46..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_baobab_lower_bookshelf_drawer.png deleted file mode 100644 index e9f13c4b..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_baobab_lower_triple_drawer.png deleted file mode 100644 index 305eb530..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_modern_chair.png b/public/textures/mcwbyg/stripped_baobab_modern_chair.png deleted file mode 100644 index f17c4713..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_modern_desk.png b/public/textures/mcwbyg/stripped_baobab_modern_desk.png deleted file mode 100644 index 1bdd7f4b..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_modern_wardrobe.png b/public/textures/mcwbyg/stripped_baobab_modern_wardrobe.png deleted file mode 100644 index 5d2ccb2f..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_pane_window.png b/public/textures/mcwbyg/stripped_baobab_pane_window.png deleted file mode 100644 index 0037ba78..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_stool_chair.png b/public/textures/mcwbyg/stripped_baobab_stool_chair.png deleted file mode 100644 index fb6222ff..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_striped_chair.png b/public/textures/mcwbyg/stripped_baobab_striped_chair.png deleted file mode 100644 index 4c42af8b..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_table.png b/public/textures/mcwbyg/stripped_baobab_table.png deleted file mode 100644 index c998332c..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_triple_drawer.png b/public/textures/mcwbyg/stripped_baobab_triple_drawer.png deleted file mode 100644 index d1e04237..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_baobab_wardrobe.png b/public/textures/mcwbyg/stripped_baobab_wardrobe.png deleted file mode 100644 index 53626591..00000000 Binary files a/public/textures/mcwbyg/stripped_baobab_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_bookshelf.png b/public/textures/mcwbyg/stripped_blue_enchanted_bookshelf.png deleted file mode 100644 index d78d14bf..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_blue_enchanted_bookshelf_cupboard.png deleted file mode 100644 index 6768f988..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_blue_enchanted_bookshelf_drawer.png deleted file mode 100644 index 06b8064c..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_chair.png b/public/textures/mcwbyg/stripped_blue_enchanted_chair.png deleted file mode 100644 index f2c7ae94..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_coffee_table.png b/public/textures/mcwbyg/stripped_blue_enchanted_coffee_table.png deleted file mode 100644 index 4ab56615..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_counter.png b/public/textures/mcwbyg/stripped_blue_enchanted_counter.png deleted file mode 100644 index f3fc17e6..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_covered_desk.png b/public/textures/mcwbyg/stripped_blue_enchanted_covered_desk.png deleted file mode 100644 index 85a559cf..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_cupboard_counter.png b/public/textures/mcwbyg/stripped_blue_enchanted_cupboard_counter.png deleted file mode 100644 index f20c3f98..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_desk.png b/public/textures/mcwbyg/stripped_blue_enchanted_desk.png deleted file mode 100644 index ba8f8ab2..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_double_drawer.png b/public/textures/mcwbyg/stripped_blue_enchanted_double_drawer.png deleted file mode 100644 index 9287d2b5..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_double_drawer_counter.png b/public/textures/mcwbyg/stripped_blue_enchanted_double_drawer_counter.png deleted file mode 100644 index f019ddeb..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_blue_enchanted_double_kitchen_cabinet.png deleted file mode 100644 index ce5fc18f..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_double_wardrobe.png b/public/textures/mcwbyg/stripped_blue_enchanted_double_wardrobe.png deleted file mode 100644 index 445d7881..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_drawer.png b/public/textures/mcwbyg/stripped_blue_enchanted_drawer.png deleted file mode 100644 index 3b8bf15a..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_drawer_counter.png b/public/textures/mcwbyg/stripped_blue_enchanted_drawer_counter.png deleted file mode 100644 index ec5b6896..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_end_table.png b/public/textures/mcwbyg/stripped_blue_enchanted_end_table.png deleted file mode 100644 index 9363fa5e..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_blue_enchanted_glass_kitchen_cabinet.png deleted file mode 100644 index 282f5ddd..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_glass_table.png b/public/textures/mcwbyg/stripped_blue_enchanted_glass_table.png deleted file mode 100644 index 58a7c0ff..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_blue_enchanted_kitchen_cabinet.png deleted file mode 100644 index 7e79da4c..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_large_drawer.png b/public/textures/mcwbyg/stripped_blue_enchanted_large_drawer.png deleted file mode 100644 index e2174bcc..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_log_four_window.png b/public/textures/mcwbyg/stripped_blue_enchanted_log_four_window.png deleted file mode 100644 index 9f2fe2d6..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_log_window.png b/public/textures/mcwbyg/stripped_blue_enchanted_log_window.png deleted file mode 100644 index 436a1a4e..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_log_window2.png b/public/textures/mcwbyg/stripped_blue_enchanted_log_window2.png deleted file mode 100644 index 294cd653..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_blue_enchanted_lower_bookshelf_drawer.png deleted file mode 100644 index fce129fe..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_blue_enchanted_lower_triple_drawer.png deleted file mode 100644 index 44cca110..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_modern_chair.png b/public/textures/mcwbyg/stripped_blue_enchanted_modern_chair.png deleted file mode 100644 index 1d80337c..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_modern_desk.png b/public/textures/mcwbyg/stripped_blue_enchanted_modern_desk.png deleted file mode 100644 index 02d54d07..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_modern_wardrobe.png b/public/textures/mcwbyg/stripped_blue_enchanted_modern_wardrobe.png deleted file mode 100644 index c38d95d6..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_pane_window.png b/public/textures/mcwbyg/stripped_blue_enchanted_pane_window.png deleted file mode 100644 index d0c45f2e..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_stool_chair.png b/public/textures/mcwbyg/stripped_blue_enchanted_stool_chair.png deleted file mode 100644 index c55164d8..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_striped_chair.png b/public/textures/mcwbyg/stripped_blue_enchanted_striped_chair.png deleted file mode 100644 index c0668897..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_table.png b/public/textures/mcwbyg/stripped_blue_enchanted_table.png deleted file mode 100644 index 364aa9ba..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_triple_drawer.png b/public/textures/mcwbyg/stripped_blue_enchanted_triple_drawer.png deleted file mode 100644 index 2e93cd6e..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_blue_enchanted_wardrobe.png b/public/textures/mcwbyg/stripped_blue_enchanted_wardrobe.png deleted file mode 100644 index a2bbed9f..00000000 Binary files a/public/textures/mcwbyg/stripped_blue_enchanted_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_bookshelf.png b/public/textures/mcwbyg/stripped_cika_bookshelf.png deleted file mode 100644 index ceb2d362..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_cika_bookshelf_cupboard.png deleted file mode 100644 index 768da4ce..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_cika_bookshelf_drawer.png deleted file mode 100644 index 52a9febf..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_chair.png b/public/textures/mcwbyg/stripped_cika_chair.png deleted file mode 100644 index 542de04e..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_coffee_table.png b/public/textures/mcwbyg/stripped_cika_coffee_table.png deleted file mode 100644 index 0a41247a..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_counter.png b/public/textures/mcwbyg/stripped_cika_counter.png deleted file mode 100644 index a6980a97..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_covered_desk.png b/public/textures/mcwbyg/stripped_cika_covered_desk.png deleted file mode 100644 index a4b49503..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_cupboard_counter.png b/public/textures/mcwbyg/stripped_cika_cupboard_counter.png deleted file mode 100644 index 197dcc40..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_desk.png b/public/textures/mcwbyg/stripped_cika_desk.png deleted file mode 100644 index a14eb250..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_double_drawer.png b/public/textures/mcwbyg/stripped_cika_double_drawer.png deleted file mode 100644 index c4cb7ade..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_double_drawer_counter.png b/public/textures/mcwbyg/stripped_cika_double_drawer_counter.png deleted file mode 100644 index cff63c0d..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_cika_double_kitchen_cabinet.png deleted file mode 100644 index b72e62f4..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_double_wardrobe.png b/public/textures/mcwbyg/stripped_cika_double_wardrobe.png deleted file mode 100644 index 58efddc3..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_drawer.png b/public/textures/mcwbyg/stripped_cika_drawer.png deleted file mode 100644 index 162e9a40..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_drawer_counter.png b/public/textures/mcwbyg/stripped_cika_drawer_counter.png deleted file mode 100644 index 2d9d990d..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_end_table.png b/public/textures/mcwbyg/stripped_cika_end_table.png deleted file mode 100644 index 3d3e2565..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_cika_glass_kitchen_cabinet.png deleted file mode 100644 index c30ff72e..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_glass_table.png b/public/textures/mcwbyg/stripped_cika_glass_table.png deleted file mode 100644 index 58bd51b9..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_cika_kitchen_cabinet.png deleted file mode 100644 index 9b1b0871..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_large_drawer.png b/public/textures/mcwbyg/stripped_cika_large_drawer.png deleted file mode 100644 index 1aac27c9..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_log_four_window.png b/public/textures/mcwbyg/stripped_cika_log_four_window.png deleted file mode 100644 index 3989bd39..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_log_window.png b/public/textures/mcwbyg/stripped_cika_log_window.png deleted file mode 100644 index 4554a33e..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_log_window2.png b/public/textures/mcwbyg/stripped_cika_log_window2.png deleted file mode 100644 index 4bc3c58a..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_cika_lower_bookshelf_drawer.png deleted file mode 100644 index bed1793f..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_cika_lower_triple_drawer.png deleted file mode 100644 index 7aee1562..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_modern_chair.png b/public/textures/mcwbyg/stripped_cika_modern_chair.png deleted file mode 100644 index 74c0a550..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_modern_desk.png b/public/textures/mcwbyg/stripped_cika_modern_desk.png deleted file mode 100644 index 8df763ce..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_modern_wardrobe.png b/public/textures/mcwbyg/stripped_cika_modern_wardrobe.png deleted file mode 100644 index abf3d1fd..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_pane_window.png b/public/textures/mcwbyg/stripped_cika_pane_window.png deleted file mode 100644 index 0ff691c0..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_stool_chair.png b/public/textures/mcwbyg/stripped_cika_stool_chair.png deleted file mode 100644 index 41289876..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_striped_chair.png b/public/textures/mcwbyg/stripped_cika_striped_chair.png deleted file mode 100644 index da4cd174..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_table.png b/public/textures/mcwbyg/stripped_cika_table.png deleted file mode 100644 index 90795566..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_triple_drawer.png b/public/textures/mcwbyg/stripped_cika_triple_drawer.png deleted file mode 100644 index be36a967..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cika_wardrobe.png b/public/textures/mcwbyg/stripped_cika_wardrobe.png deleted file mode 100644 index 0c4fb4a4..00000000 Binary files a/public/textures/mcwbyg/stripped_cika_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_bookshelf.png b/public/textures/mcwbyg/stripped_cypress_bookshelf.png deleted file mode 100644 index 5be802ac..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_cypress_bookshelf_cupboard.png deleted file mode 100644 index ba3a0f2c..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_cypress_bookshelf_drawer.png deleted file mode 100644 index ec326bcf..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_chair.png b/public/textures/mcwbyg/stripped_cypress_chair.png deleted file mode 100644 index 14102c98..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_coffee_table.png b/public/textures/mcwbyg/stripped_cypress_coffee_table.png deleted file mode 100644 index 4c487ab2..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_counter.png b/public/textures/mcwbyg/stripped_cypress_counter.png deleted file mode 100644 index bf983983..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_covered_desk.png b/public/textures/mcwbyg/stripped_cypress_covered_desk.png deleted file mode 100644 index e4f8888e..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_cupboard_counter.png b/public/textures/mcwbyg/stripped_cypress_cupboard_counter.png deleted file mode 100644 index a35b86c0..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_desk.png b/public/textures/mcwbyg/stripped_cypress_desk.png deleted file mode 100644 index c3a3b777..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_double_drawer.png b/public/textures/mcwbyg/stripped_cypress_double_drawer.png deleted file mode 100644 index 23b10ceb..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_double_drawer_counter.png b/public/textures/mcwbyg/stripped_cypress_double_drawer_counter.png deleted file mode 100644 index 371d6af6..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_cypress_double_kitchen_cabinet.png deleted file mode 100644 index 882ee8bf..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_double_wardrobe.png b/public/textures/mcwbyg/stripped_cypress_double_wardrobe.png deleted file mode 100644 index 407b133a..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_drawer.png b/public/textures/mcwbyg/stripped_cypress_drawer.png deleted file mode 100644 index e6176f85..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_drawer_counter.png b/public/textures/mcwbyg/stripped_cypress_drawer_counter.png deleted file mode 100644 index 14d439bc..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_end_table.png b/public/textures/mcwbyg/stripped_cypress_end_table.png deleted file mode 100644 index ea2ac344..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_cypress_glass_kitchen_cabinet.png deleted file mode 100644 index f8633e9c..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_glass_table.png b/public/textures/mcwbyg/stripped_cypress_glass_table.png deleted file mode 100644 index 77bfed1e..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_cypress_kitchen_cabinet.png deleted file mode 100644 index 2bf77b84..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_large_drawer.png b/public/textures/mcwbyg/stripped_cypress_large_drawer.png deleted file mode 100644 index f6c8a8f0..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_log_four_window.png b/public/textures/mcwbyg/stripped_cypress_log_four_window.png deleted file mode 100644 index baf3d40a..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_log_window.png b/public/textures/mcwbyg/stripped_cypress_log_window.png deleted file mode 100644 index f88ef3c2..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_log_window2.png b/public/textures/mcwbyg/stripped_cypress_log_window2.png deleted file mode 100644 index f03d34f4..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_cypress_lower_bookshelf_drawer.png deleted file mode 100644 index 3a6ebd6f..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_cypress_lower_triple_drawer.png deleted file mode 100644 index 265f2c1e..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_modern_chair.png b/public/textures/mcwbyg/stripped_cypress_modern_chair.png deleted file mode 100644 index 3308e5cd..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_modern_desk.png b/public/textures/mcwbyg/stripped_cypress_modern_desk.png deleted file mode 100644 index dec129e2..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_modern_wardrobe.png b/public/textures/mcwbyg/stripped_cypress_modern_wardrobe.png deleted file mode 100644 index fc1f4edb..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_pane_window.png b/public/textures/mcwbyg/stripped_cypress_pane_window.png deleted file mode 100644 index efd55f11..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_stool_chair.png b/public/textures/mcwbyg/stripped_cypress_stool_chair.png deleted file mode 100644 index 7be325f6..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_striped_chair.png b/public/textures/mcwbyg/stripped_cypress_striped_chair.png deleted file mode 100644 index 7ac0623b..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_table.png b/public/textures/mcwbyg/stripped_cypress_table.png deleted file mode 100644 index e9a372b8..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_triple_drawer.png b/public/textures/mcwbyg/stripped_cypress_triple_drawer.png deleted file mode 100644 index 0c6dfba4..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_cypress_wardrobe.png b/public/textures/mcwbyg/stripped_cypress_wardrobe.png deleted file mode 100644 index 80481a83..00000000 Binary files a/public/textures/mcwbyg/stripped_cypress_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_bookshelf.png b/public/textures/mcwbyg/stripped_ebony_bookshelf.png deleted file mode 100644 index 968bac3c..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_ebony_bookshelf_cupboard.png deleted file mode 100644 index 9f70967d..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_ebony_bookshelf_drawer.png deleted file mode 100644 index 0090840d..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_chair.png b/public/textures/mcwbyg/stripped_ebony_chair.png deleted file mode 100644 index a54a8b63..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_coffee_table.png b/public/textures/mcwbyg/stripped_ebony_coffee_table.png deleted file mode 100644 index 23f87a99..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_counter.png b/public/textures/mcwbyg/stripped_ebony_counter.png deleted file mode 100644 index ffce3e43..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_covered_desk.png b/public/textures/mcwbyg/stripped_ebony_covered_desk.png deleted file mode 100644 index 9123f5c5..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_cupboard_counter.png b/public/textures/mcwbyg/stripped_ebony_cupboard_counter.png deleted file mode 100644 index 086d6bca..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_desk.png b/public/textures/mcwbyg/stripped_ebony_desk.png deleted file mode 100644 index 82ff78c8..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_double_drawer.png b/public/textures/mcwbyg/stripped_ebony_double_drawer.png deleted file mode 100644 index 362f2b08..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_double_drawer_counter.png b/public/textures/mcwbyg/stripped_ebony_double_drawer_counter.png deleted file mode 100644 index e045142b..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_ebony_double_kitchen_cabinet.png deleted file mode 100644 index 5088c08c..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_double_wardrobe.png b/public/textures/mcwbyg/stripped_ebony_double_wardrobe.png deleted file mode 100644 index 6db8c22b..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_drawer.png b/public/textures/mcwbyg/stripped_ebony_drawer.png deleted file mode 100644 index 61e04d3d..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_drawer_counter.png b/public/textures/mcwbyg/stripped_ebony_drawer_counter.png deleted file mode 100644 index 586452a9..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_end_table.png b/public/textures/mcwbyg/stripped_ebony_end_table.png deleted file mode 100644 index 7c26b5b5..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_ebony_glass_kitchen_cabinet.png deleted file mode 100644 index a06faa01..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_glass_table.png b/public/textures/mcwbyg/stripped_ebony_glass_table.png deleted file mode 100644 index 39a14902..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_ebony_kitchen_cabinet.png deleted file mode 100644 index 025fb5a6..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_large_drawer.png b/public/textures/mcwbyg/stripped_ebony_large_drawer.png deleted file mode 100644 index 120d0d8d..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_log_four_window.png b/public/textures/mcwbyg/stripped_ebony_log_four_window.png deleted file mode 100644 index a7166125..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_log_window.png b/public/textures/mcwbyg/stripped_ebony_log_window.png deleted file mode 100644 index f4d2eaa8..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_log_window2.png b/public/textures/mcwbyg/stripped_ebony_log_window2.png deleted file mode 100644 index 12f3259a..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_ebony_lower_bookshelf_drawer.png deleted file mode 100644 index a8424062..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_ebony_lower_triple_drawer.png deleted file mode 100644 index b82a85bb..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_modern_chair.png b/public/textures/mcwbyg/stripped_ebony_modern_chair.png deleted file mode 100644 index 40856fa3..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_modern_desk.png b/public/textures/mcwbyg/stripped_ebony_modern_desk.png deleted file mode 100644 index f00bafd3..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_modern_wardrobe.png b/public/textures/mcwbyg/stripped_ebony_modern_wardrobe.png deleted file mode 100644 index ecab6abd..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_pane_window.png b/public/textures/mcwbyg/stripped_ebony_pane_window.png deleted file mode 100644 index 68ca23cd..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_stool_chair.png b/public/textures/mcwbyg/stripped_ebony_stool_chair.png deleted file mode 100644 index c86f4b8e..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_striped_chair.png b/public/textures/mcwbyg/stripped_ebony_striped_chair.png deleted file mode 100644 index 7a1613c5..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_table.png b/public/textures/mcwbyg/stripped_ebony_table.png deleted file mode 100644 index 789577f3..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_triple_drawer.png b/public/textures/mcwbyg/stripped_ebony_triple_drawer.png deleted file mode 100644 index 8baecb98..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ebony_wardrobe.png b/public/textures/mcwbyg/stripped_ebony_wardrobe.png deleted file mode 100644 index b80054f4..00000000 Binary files a/public/textures/mcwbyg/stripped_ebony_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_bookshelf.png b/public/textures/mcwbyg/stripped_fir_bookshelf.png deleted file mode 100644 index cdc453b5..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_fir_bookshelf_cupboard.png deleted file mode 100644 index 432de4ee..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_fir_bookshelf_drawer.png deleted file mode 100644 index e318db04..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_chair.png b/public/textures/mcwbyg/stripped_fir_chair.png deleted file mode 100644 index a5588af4..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_coffee_table.png b/public/textures/mcwbyg/stripped_fir_coffee_table.png deleted file mode 100644 index 89f3ae45..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_counter.png b/public/textures/mcwbyg/stripped_fir_counter.png deleted file mode 100644 index 22572040..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_covered_desk.png b/public/textures/mcwbyg/stripped_fir_covered_desk.png deleted file mode 100644 index 0b4018db..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_cupboard_counter.png b/public/textures/mcwbyg/stripped_fir_cupboard_counter.png deleted file mode 100644 index a0f9c7d0..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_desk.png b/public/textures/mcwbyg/stripped_fir_desk.png deleted file mode 100644 index afa392af..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_double_drawer.png b/public/textures/mcwbyg/stripped_fir_double_drawer.png deleted file mode 100644 index 51874159..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_double_drawer_counter.png b/public/textures/mcwbyg/stripped_fir_double_drawer_counter.png deleted file mode 100644 index b5688340..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_fir_double_kitchen_cabinet.png deleted file mode 100644 index 7a0529ec..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_double_wardrobe.png b/public/textures/mcwbyg/stripped_fir_double_wardrobe.png deleted file mode 100644 index 68a03c59..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_drawer.png b/public/textures/mcwbyg/stripped_fir_drawer.png deleted file mode 100644 index 84561b85..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_drawer_counter.png b/public/textures/mcwbyg/stripped_fir_drawer_counter.png deleted file mode 100644 index 01e2fe3f..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_end_table.png b/public/textures/mcwbyg/stripped_fir_end_table.png deleted file mode 100644 index 2a5ff094..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_fir_glass_kitchen_cabinet.png deleted file mode 100644 index 392d3592..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_glass_table.png b/public/textures/mcwbyg/stripped_fir_glass_table.png deleted file mode 100644 index a91700cf..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_fir_kitchen_cabinet.png deleted file mode 100644 index 4e09c9dc..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_large_drawer.png b/public/textures/mcwbyg/stripped_fir_large_drawer.png deleted file mode 100644 index 2f8ae1cf..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_log_four_window.png b/public/textures/mcwbyg/stripped_fir_log_four_window.png deleted file mode 100644 index 130e5935..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_log_window.png b/public/textures/mcwbyg/stripped_fir_log_window.png deleted file mode 100644 index 149b2ea8..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_log_window2.png b/public/textures/mcwbyg/stripped_fir_log_window2.png deleted file mode 100644 index 699bd551..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_fir_lower_bookshelf_drawer.png deleted file mode 100644 index aff6ac98..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_fir_lower_triple_drawer.png deleted file mode 100644 index 8e1047f2..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_modern_chair.png b/public/textures/mcwbyg/stripped_fir_modern_chair.png deleted file mode 100644 index f06ab3bd..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_modern_desk.png b/public/textures/mcwbyg/stripped_fir_modern_desk.png deleted file mode 100644 index 65e02e92..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_modern_wardrobe.png b/public/textures/mcwbyg/stripped_fir_modern_wardrobe.png deleted file mode 100644 index b22ca756..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_pane_window.png b/public/textures/mcwbyg/stripped_fir_pane_window.png deleted file mode 100644 index 7e2363cb..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_stool_chair.png b/public/textures/mcwbyg/stripped_fir_stool_chair.png deleted file mode 100644 index c9421f8c..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_striped_chair.png b/public/textures/mcwbyg/stripped_fir_striped_chair.png deleted file mode 100644 index 090332a2..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_table.png b/public/textures/mcwbyg/stripped_fir_table.png deleted file mode 100644 index 326d1839..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_triple_drawer.png b/public/textures/mcwbyg/stripped_fir_triple_drawer.png deleted file mode 100644 index 75d0b9bb..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_fir_wardrobe.png b/public/textures/mcwbyg/stripped_fir_wardrobe.png deleted file mode 100644 index 1dd72482..00000000 Binary files a/public/textures/mcwbyg/stripped_fir_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_bookshelf.png b/public/textures/mcwbyg/stripped_florus_bookshelf.png deleted file mode 100644 index 11152b02..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_florus_bookshelf_cupboard.png deleted file mode 100644 index fbcaae04..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_florus_bookshelf_drawer.png deleted file mode 100644 index c393084d..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_chair.png b/public/textures/mcwbyg/stripped_florus_chair.png deleted file mode 100644 index 22bcba7a..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_coffee_table.png b/public/textures/mcwbyg/stripped_florus_coffee_table.png deleted file mode 100644 index ef1e6ce1..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_counter.png b/public/textures/mcwbyg/stripped_florus_counter.png deleted file mode 100644 index 0eace64b..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_covered_desk.png b/public/textures/mcwbyg/stripped_florus_covered_desk.png deleted file mode 100644 index 7062a23d..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_cupboard_counter.png b/public/textures/mcwbyg/stripped_florus_cupboard_counter.png deleted file mode 100644 index 6230ab7c..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_desk.png b/public/textures/mcwbyg/stripped_florus_desk.png deleted file mode 100644 index f33c6bc8..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_double_drawer.png b/public/textures/mcwbyg/stripped_florus_double_drawer.png deleted file mode 100644 index 7818f8f8..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_double_drawer_counter.png b/public/textures/mcwbyg/stripped_florus_double_drawer_counter.png deleted file mode 100644 index 53321a2e..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_florus_double_kitchen_cabinet.png deleted file mode 100644 index 44bed438..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_double_wardrobe.png b/public/textures/mcwbyg/stripped_florus_double_wardrobe.png deleted file mode 100644 index 54c7f686..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_drawer.png b/public/textures/mcwbyg/stripped_florus_drawer.png deleted file mode 100644 index e9cf3625..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_drawer_counter.png b/public/textures/mcwbyg/stripped_florus_drawer_counter.png deleted file mode 100644 index 456de88d..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_end_table.png b/public/textures/mcwbyg/stripped_florus_end_table.png deleted file mode 100644 index a5c6d099..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_florus_glass_kitchen_cabinet.png deleted file mode 100644 index 10d22e63..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_glass_table.png b/public/textures/mcwbyg/stripped_florus_glass_table.png deleted file mode 100644 index 2c07b7be..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_florus_kitchen_cabinet.png deleted file mode 100644 index 806e41a4..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_large_drawer.png b/public/textures/mcwbyg/stripped_florus_large_drawer.png deleted file mode 100644 index 7e9dbda2..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_log_four_window.png b/public/textures/mcwbyg/stripped_florus_log_four_window.png deleted file mode 100644 index 32582e79..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_log_window.png b/public/textures/mcwbyg/stripped_florus_log_window.png deleted file mode 100644 index 2ac7d8c2..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_log_window2.png b/public/textures/mcwbyg/stripped_florus_log_window2.png deleted file mode 100644 index 462951ff..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_florus_lower_bookshelf_drawer.png deleted file mode 100644 index b597fad4..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_florus_lower_triple_drawer.png deleted file mode 100644 index eb6b273b..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_modern_chair.png b/public/textures/mcwbyg/stripped_florus_modern_chair.png deleted file mode 100644 index 428ea6ca..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_modern_desk.png b/public/textures/mcwbyg/stripped_florus_modern_desk.png deleted file mode 100644 index 51949486..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_modern_wardrobe.png b/public/textures/mcwbyg/stripped_florus_modern_wardrobe.png deleted file mode 100644 index bc21d9e4..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_pane_window.png b/public/textures/mcwbyg/stripped_florus_pane_window.png deleted file mode 100644 index bd79afb3..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_stool_chair.png b/public/textures/mcwbyg/stripped_florus_stool_chair.png deleted file mode 100644 index 9f0cc05a..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_striped_chair.png b/public/textures/mcwbyg/stripped_florus_striped_chair.png deleted file mode 100644 index ec3a360c..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_table.png b/public/textures/mcwbyg/stripped_florus_table.png deleted file mode 100644 index 47bfe835..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_triple_drawer.png b/public/textures/mcwbyg/stripped_florus_triple_drawer.png deleted file mode 100644 index 357c1cfa..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_florus_wardrobe.png b/public/textures/mcwbyg/stripped_florus_wardrobe.png deleted file mode 100644 index 83c3276a..00000000 Binary files a/public/textures/mcwbyg/stripped_florus_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_bookshelf.png b/public/textures/mcwbyg/stripped_green_enchanted_bookshelf.png deleted file mode 100644 index 4d3d7f05..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_green_enchanted_bookshelf_cupboard.png deleted file mode 100644 index 6c0261bc..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_green_enchanted_bookshelf_drawer.png deleted file mode 100644 index 6bfa198d..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_chair.png b/public/textures/mcwbyg/stripped_green_enchanted_chair.png deleted file mode 100644 index 57d85a04..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_coffee_table.png b/public/textures/mcwbyg/stripped_green_enchanted_coffee_table.png deleted file mode 100644 index cbcab0cd..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_counter.png b/public/textures/mcwbyg/stripped_green_enchanted_counter.png deleted file mode 100644 index 6402bf34..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_covered_desk.png b/public/textures/mcwbyg/stripped_green_enchanted_covered_desk.png deleted file mode 100644 index 08f93468..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_cupboard_counter.png b/public/textures/mcwbyg/stripped_green_enchanted_cupboard_counter.png deleted file mode 100644 index 00706279..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_desk.png b/public/textures/mcwbyg/stripped_green_enchanted_desk.png deleted file mode 100644 index 9bc8bcac..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_double_drawer.png b/public/textures/mcwbyg/stripped_green_enchanted_double_drawer.png deleted file mode 100644 index 59e72dc0..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_double_drawer_counter.png b/public/textures/mcwbyg/stripped_green_enchanted_double_drawer_counter.png deleted file mode 100644 index cb321541..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_green_enchanted_double_kitchen_cabinet.png deleted file mode 100644 index 048ded2b..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_double_wardrobe.png b/public/textures/mcwbyg/stripped_green_enchanted_double_wardrobe.png deleted file mode 100644 index 3678109f..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_drawer.png b/public/textures/mcwbyg/stripped_green_enchanted_drawer.png deleted file mode 100644 index 737d39db..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_drawer_counter.png b/public/textures/mcwbyg/stripped_green_enchanted_drawer_counter.png deleted file mode 100644 index 921e90cc..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_end_table.png b/public/textures/mcwbyg/stripped_green_enchanted_end_table.png deleted file mode 100644 index a0de3fe6..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_green_enchanted_glass_kitchen_cabinet.png deleted file mode 100644 index 3624b9f2..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_glass_table.png b/public/textures/mcwbyg/stripped_green_enchanted_glass_table.png deleted file mode 100644 index a49af432..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_green_enchanted_kitchen_cabinet.png deleted file mode 100644 index f888f30a..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_large_drawer.png b/public/textures/mcwbyg/stripped_green_enchanted_large_drawer.png deleted file mode 100644 index be99057a..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_log_four_window.png b/public/textures/mcwbyg/stripped_green_enchanted_log_four_window.png deleted file mode 100644 index c4b3553f..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_log_window.png b/public/textures/mcwbyg/stripped_green_enchanted_log_window.png deleted file mode 100644 index 8e6528cc..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_log_window2.png b/public/textures/mcwbyg/stripped_green_enchanted_log_window2.png deleted file mode 100644 index 9ddb69d8..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_green_enchanted_lower_bookshelf_drawer.png deleted file mode 100644 index 19e2d3fc..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_green_enchanted_lower_triple_drawer.png deleted file mode 100644 index e0e85eca..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_modern_chair.png b/public/textures/mcwbyg/stripped_green_enchanted_modern_chair.png deleted file mode 100644 index 34a32203..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_modern_desk.png b/public/textures/mcwbyg/stripped_green_enchanted_modern_desk.png deleted file mode 100644 index 8336f96b..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_modern_wardrobe.png b/public/textures/mcwbyg/stripped_green_enchanted_modern_wardrobe.png deleted file mode 100644 index b54c74f7..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_pane_window.png b/public/textures/mcwbyg/stripped_green_enchanted_pane_window.png deleted file mode 100644 index 32d1b0a4..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_stool_chair.png b/public/textures/mcwbyg/stripped_green_enchanted_stool_chair.png deleted file mode 100644 index 8fc32543..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_striped_chair.png b/public/textures/mcwbyg/stripped_green_enchanted_striped_chair.png deleted file mode 100644 index c39abdad..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_table.png b/public/textures/mcwbyg/stripped_green_enchanted_table.png deleted file mode 100644 index 2e66b277..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_triple_drawer.png b/public/textures/mcwbyg/stripped_green_enchanted_triple_drawer.png deleted file mode 100644 index 3a65c78f..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_green_enchanted_wardrobe.png b/public/textures/mcwbyg/stripped_green_enchanted_wardrobe.png deleted file mode 100644 index 785d0783..00000000 Binary files a/public/textures/mcwbyg/stripped_green_enchanted_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_bookshelf.png b/public/textures/mcwbyg/stripped_holly_bookshelf.png deleted file mode 100644 index 029f9b11..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_holly_bookshelf_cupboard.png deleted file mode 100644 index 41ec042c..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_holly_bookshelf_drawer.png deleted file mode 100644 index d4ef1243..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_chair.png b/public/textures/mcwbyg/stripped_holly_chair.png deleted file mode 100644 index 3b75b5dd..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_coffee_table.png b/public/textures/mcwbyg/stripped_holly_coffee_table.png deleted file mode 100644 index a7c7c9c0..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_counter.png b/public/textures/mcwbyg/stripped_holly_counter.png deleted file mode 100644 index 7791dc51..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_covered_desk.png b/public/textures/mcwbyg/stripped_holly_covered_desk.png deleted file mode 100644 index 966a68fc..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_cupboard_counter.png b/public/textures/mcwbyg/stripped_holly_cupboard_counter.png deleted file mode 100644 index d779f99e..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_desk.png b/public/textures/mcwbyg/stripped_holly_desk.png deleted file mode 100644 index b7ac64ff..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_double_drawer.png b/public/textures/mcwbyg/stripped_holly_double_drawer.png deleted file mode 100644 index 9d199919..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_double_drawer_counter.png b/public/textures/mcwbyg/stripped_holly_double_drawer_counter.png deleted file mode 100644 index 12b8b9e9..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_holly_double_kitchen_cabinet.png deleted file mode 100644 index 34acde10..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_double_wardrobe.png b/public/textures/mcwbyg/stripped_holly_double_wardrobe.png deleted file mode 100644 index b49afc18..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_drawer.png b/public/textures/mcwbyg/stripped_holly_drawer.png deleted file mode 100644 index 768cc1b7..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_drawer_counter.png b/public/textures/mcwbyg/stripped_holly_drawer_counter.png deleted file mode 100644 index 3e21382f..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_end_table.png b/public/textures/mcwbyg/stripped_holly_end_table.png deleted file mode 100644 index 2b1cae69..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_holly_glass_kitchen_cabinet.png deleted file mode 100644 index 52704651..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_glass_table.png b/public/textures/mcwbyg/stripped_holly_glass_table.png deleted file mode 100644 index 625b3ce8..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_holly_kitchen_cabinet.png deleted file mode 100644 index 96f31162..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_large_drawer.png b/public/textures/mcwbyg/stripped_holly_large_drawer.png deleted file mode 100644 index 2250fb18..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_log_four_window.png b/public/textures/mcwbyg/stripped_holly_log_four_window.png deleted file mode 100644 index 6bdfcbce..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_log_window.png b/public/textures/mcwbyg/stripped_holly_log_window.png deleted file mode 100644 index bf00d800..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_log_window2.png b/public/textures/mcwbyg/stripped_holly_log_window2.png deleted file mode 100644 index c1dfc527..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_holly_lower_bookshelf_drawer.png deleted file mode 100644 index 6cc118bd..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_holly_lower_triple_drawer.png deleted file mode 100644 index 60fb2c84..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_modern_chair.png b/public/textures/mcwbyg/stripped_holly_modern_chair.png deleted file mode 100644 index d5027ba9..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_modern_desk.png b/public/textures/mcwbyg/stripped_holly_modern_desk.png deleted file mode 100644 index 5479dad5..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_modern_wardrobe.png b/public/textures/mcwbyg/stripped_holly_modern_wardrobe.png deleted file mode 100644 index e6794aa3..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_pane_window.png b/public/textures/mcwbyg/stripped_holly_pane_window.png deleted file mode 100644 index 38a953e7..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_stool_chair.png b/public/textures/mcwbyg/stripped_holly_stool_chair.png deleted file mode 100644 index 56dd318c..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_striped_chair.png b/public/textures/mcwbyg/stripped_holly_striped_chair.png deleted file mode 100644 index 2214a0d3..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_table.png b/public/textures/mcwbyg/stripped_holly_table.png deleted file mode 100644 index 7da6d2f6..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_triple_drawer.png b/public/textures/mcwbyg/stripped_holly_triple_drawer.png deleted file mode 100644 index a1470539..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_holly_wardrobe.png b/public/textures/mcwbyg/stripped_holly_wardrobe.png deleted file mode 100644 index d31f8ea9..00000000 Binary files a/public/textures/mcwbyg/stripped_holly_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_bookshelf.png b/public/textures/mcwbyg/stripped_ironwood_bookshelf.png deleted file mode 100644 index 43536ea7..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_ironwood_bookshelf_cupboard.png deleted file mode 100644 index 5b73a863..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_ironwood_bookshelf_drawer.png deleted file mode 100644 index fb8add70..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_chair.png b/public/textures/mcwbyg/stripped_ironwood_chair.png deleted file mode 100644 index 84cdc264..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_coffee_table.png b/public/textures/mcwbyg/stripped_ironwood_coffee_table.png deleted file mode 100644 index 2d7a1240..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_counter.png b/public/textures/mcwbyg/stripped_ironwood_counter.png deleted file mode 100644 index 8a230dad..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_covered_desk.png b/public/textures/mcwbyg/stripped_ironwood_covered_desk.png deleted file mode 100644 index 9fa1ccd6..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_cupboard_counter.png b/public/textures/mcwbyg/stripped_ironwood_cupboard_counter.png deleted file mode 100644 index d4c04f54..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_desk.png b/public/textures/mcwbyg/stripped_ironwood_desk.png deleted file mode 100644 index 477fc896..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_double_drawer.png b/public/textures/mcwbyg/stripped_ironwood_double_drawer.png deleted file mode 100644 index fd4cb968..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_double_drawer_counter.png b/public/textures/mcwbyg/stripped_ironwood_double_drawer_counter.png deleted file mode 100644 index 4d2e8c4b..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_ironwood_double_kitchen_cabinet.png deleted file mode 100644 index 96b42d7f..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_double_wardrobe.png b/public/textures/mcwbyg/stripped_ironwood_double_wardrobe.png deleted file mode 100644 index 557772a2..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_drawer.png b/public/textures/mcwbyg/stripped_ironwood_drawer.png deleted file mode 100644 index fab53018..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_drawer_counter.png b/public/textures/mcwbyg/stripped_ironwood_drawer_counter.png deleted file mode 100644 index 354aaae2..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_end_table.png b/public/textures/mcwbyg/stripped_ironwood_end_table.png deleted file mode 100644 index dfc2e721..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_ironwood_glass_kitchen_cabinet.png deleted file mode 100644 index a2d1560d..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_glass_table.png b/public/textures/mcwbyg/stripped_ironwood_glass_table.png deleted file mode 100644 index 701ac7d3..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_ironwood_kitchen_cabinet.png deleted file mode 100644 index 6e9a45e6..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_large_drawer.png b/public/textures/mcwbyg/stripped_ironwood_large_drawer.png deleted file mode 100644 index d2936272..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_log_four_window.png b/public/textures/mcwbyg/stripped_ironwood_log_four_window.png deleted file mode 100644 index e3376edf..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_log_window.png b/public/textures/mcwbyg/stripped_ironwood_log_window.png deleted file mode 100644 index 5a3b3e0d..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_log_window2.png b/public/textures/mcwbyg/stripped_ironwood_log_window2.png deleted file mode 100644 index 759998a4..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_ironwood_lower_bookshelf_drawer.png deleted file mode 100644 index 19cd3e66..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_ironwood_lower_triple_drawer.png deleted file mode 100644 index 609a4bfe..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_modern_chair.png b/public/textures/mcwbyg/stripped_ironwood_modern_chair.png deleted file mode 100644 index ca87ea5f..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_modern_desk.png b/public/textures/mcwbyg/stripped_ironwood_modern_desk.png deleted file mode 100644 index 23cfce4f..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_modern_wardrobe.png b/public/textures/mcwbyg/stripped_ironwood_modern_wardrobe.png deleted file mode 100644 index 1084699e..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_pane_window.png b/public/textures/mcwbyg/stripped_ironwood_pane_window.png deleted file mode 100644 index 304d521b..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_stool_chair.png b/public/textures/mcwbyg/stripped_ironwood_stool_chair.png deleted file mode 100644 index be1be2d3..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_striped_chair.png b/public/textures/mcwbyg/stripped_ironwood_striped_chair.png deleted file mode 100644 index ef16a81d..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_table.png b/public/textures/mcwbyg/stripped_ironwood_table.png deleted file mode 100644 index 47d74ba7..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_triple_drawer.png b/public/textures/mcwbyg/stripped_ironwood_triple_drawer.png deleted file mode 100644 index d2cef06b..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_ironwood_wardrobe.png b/public/textures/mcwbyg/stripped_ironwood_wardrobe.png deleted file mode 100644 index 88c3ae54..00000000 Binary files a/public/textures/mcwbyg/stripped_ironwood_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_bookshelf.png b/public/textures/mcwbyg/stripped_jacaranda_bookshelf.png deleted file mode 100644 index 89a17cb2..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_jacaranda_bookshelf_cupboard.png deleted file mode 100644 index 09470a30..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_jacaranda_bookshelf_drawer.png deleted file mode 100644 index 32f72377..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_chair.png b/public/textures/mcwbyg/stripped_jacaranda_chair.png deleted file mode 100644 index b792b078..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_coffee_table.png b/public/textures/mcwbyg/stripped_jacaranda_coffee_table.png deleted file mode 100644 index 87e46fb7..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_counter.png b/public/textures/mcwbyg/stripped_jacaranda_counter.png deleted file mode 100644 index 74ce97ea..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_covered_desk.png b/public/textures/mcwbyg/stripped_jacaranda_covered_desk.png deleted file mode 100644 index 42225e4d..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_cupboard_counter.png b/public/textures/mcwbyg/stripped_jacaranda_cupboard_counter.png deleted file mode 100644 index f94521b5..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_desk.png b/public/textures/mcwbyg/stripped_jacaranda_desk.png deleted file mode 100644 index 26d4dce7..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_double_drawer.png b/public/textures/mcwbyg/stripped_jacaranda_double_drawer.png deleted file mode 100644 index 4592e723..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_double_drawer_counter.png b/public/textures/mcwbyg/stripped_jacaranda_double_drawer_counter.png deleted file mode 100644 index dc1e9a68..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_jacaranda_double_kitchen_cabinet.png deleted file mode 100644 index c19592ff..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_double_wardrobe.png b/public/textures/mcwbyg/stripped_jacaranda_double_wardrobe.png deleted file mode 100644 index e07c19da..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_drawer.png b/public/textures/mcwbyg/stripped_jacaranda_drawer.png deleted file mode 100644 index cc78016f..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_drawer_counter.png b/public/textures/mcwbyg/stripped_jacaranda_drawer_counter.png deleted file mode 100644 index 2d0e54cf..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_end_table.png b/public/textures/mcwbyg/stripped_jacaranda_end_table.png deleted file mode 100644 index 9eda5a25..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_jacaranda_glass_kitchen_cabinet.png deleted file mode 100644 index 5ea5a26b..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_glass_table.png b/public/textures/mcwbyg/stripped_jacaranda_glass_table.png deleted file mode 100644 index 08d95856..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_jacaranda_kitchen_cabinet.png deleted file mode 100644 index 37385af0..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_large_drawer.png b/public/textures/mcwbyg/stripped_jacaranda_large_drawer.png deleted file mode 100644 index b1d3978a..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_log_four_window.png b/public/textures/mcwbyg/stripped_jacaranda_log_four_window.png deleted file mode 100644 index 5a6e4379..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_log_window.png b/public/textures/mcwbyg/stripped_jacaranda_log_window.png deleted file mode 100644 index d4b7eb4e..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_log_window2.png b/public/textures/mcwbyg/stripped_jacaranda_log_window2.png deleted file mode 100644 index eb3e54fc..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_jacaranda_lower_bookshelf_drawer.png deleted file mode 100644 index cef5bf30..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_jacaranda_lower_triple_drawer.png deleted file mode 100644 index a7a2858f..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_modern_chair.png b/public/textures/mcwbyg/stripped_jacaranda_modern_chair.png deleted file mode 100644 index 5fec1d3d..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_modern_desk.png b/public/textures/mcwbyg/stripped_jacaranda_modern_desk.png deleted file mode 100644 index 4ac2a1ce..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_modern_wardrobe.png b/public/textures/mcwbyg/stripped_jacaranda_modern_wardrobe.png deleted file mode 100644 index 7004aba5..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_pane_window.png b/public/textures/mcwbyg/stripped_jacaranda_pane_window.png deleted file mode 100644 index 9ff5f9be..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_stool_chair.png b/public/textures/mcwbyg/stripped_jacaranda_stool_chair.png deleted file mode 100644 index 4bcc590b..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_striped_chair.png b/public/textures/mcwbyg/stripped_jacaranda_striped_chair.png deleted file mode 100644 index baec0e57..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_table.png b/public/textures/mcwbyg/stripped_jacaranda_table.png deleted file mode 100644 index 6a99a1d5..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_triple_drawer.png b/public/textures/mcwbyg/stripped_jacaranda_triple_drawer.png deleted file mode 100644 index 89a16ad9..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_jacaranda_wardrobe.png b/public/textures/mcwbyg/stripped_jacaranda_wardrobe.png deleted file mode 100644 index 8b52e519..00000000 Binary files a/public/textures/mcwbyg/stripped_jacaranda_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_bookshelf.png b/public/textures/mcwbyg/stripped_mahogany_bookshelf.png deleted file mode 100644 index e8d164bb..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_mahogany_bookshelf_cupboard.png deleted file mode 100644 index aeb613ba..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_mahogany_bookshelf_drawer.png deleted file mode 100644 index 20605a66..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_chair.png b/public/textures/mcwbyg/stripped_mahogany_chair.png deleted file mode 100644 index f4021ab7..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_coffee_table.png b/public/textures/mcwbyg/stripped_mahogany_coffee_table.png deleted file mode 100644 index d1a54b74..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_counter.png b/public/textures/mcwbyg/stripped_mahogany_counter.png deleted file mode 100644 index 063fdd06..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_covered_desk.png b/public/textures/mcwbyg/stripped_mahogany_covered_desk.png deleted file mode 100644 index ed4a9518..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_cupboard_counter.png b/public/textures/mcwbyg/stripped_mahogany_cupboard_counter.png deleted file mode 100644 index 2a31d1f1..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_desk.png b/public/textures/mcwbyg/stripped_mahogany_desk.png deleted file mode 100644 index 8d2ef4b1..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_double_drawer.png b/public/textures/mcwbyg/stripped_mahogany_double_drawer.png deleted file mode 100644 index 3821c196..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_double_drawer_counter.png b/public/textures/mcwbyg/stripped_mahogany_double_drawer_counter.png deleted file mode 100644 index d22023be..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_mahogany_double_kitchen_cabinet.png deleted file mode 100644 index f436ca37..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_double_wardrobe.png b/public/textures/mcwbyg/stripped_mahogany_double_wardrobe.png deleted file mode 100644 index c048a6d6..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_drawer.png b/public/textures/mcwbyg/stripped_mahogany_drawer.png deleted file mode 100644 index 1843becd..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_drawer_counter.png b/public/textures/mcwbyg/stripped_mahogany_drawer_counter.png deleted file mode 100644 index 6307c061..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_end_table.png b/public/textures/mcwbyg/stripped_mahogany_end_table.png deleted file mode 100644 index 5923820f..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_mahogany_glass_kitchen_cabinet.png deleted file mode 100644 index ccc2f988..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_glass_table.png b/public/textures/mcwbyg/stripped_mahogany_glass_table.png deleted file mode 100644 index ab4f7701..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_mahogany_kitchen_cabinet.png deleted file mode 100644 index 0be42b38..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_large_drawer.png b/public/textures/mcwbyg/stripped_mahogany_large_drawer.png deleted file mode 100644 index 403b0441..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_log_four_window.png b/public/textures/mcwbyg/stripped_mahogany_log_four_window.png deleted file mode 100644 index d4498d7c..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_log_window.png b/public/textures/mcwbyg/stripped_mahogany_log_window.png deleted file mode 100644 index d3d1220b..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_log_window2.png b/public/textures/mcwbyg/stripped_mahogany_log_window2.png deleted file mode 100644 index 63b9c89a..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_mahogany_lower_bookshelf_drawer.png deleted file mode 100644 index ddc0a9e0..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_mahogany_lower_triple_drawer.png deleted file mode 100644 index e7821bc8..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_modern_chair.png b/public/textures/mcwbyg/stripped_mahogany_modern_chair.png deleted file mode 100644 index 8944fd01..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_modern_desk.png b/public/textures/mcwbyg/stripped_mahogany_modern_desk.png deleted file mode 100644 index 79902266..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_modern_wardrobe.png b/public/textures/mcwbyg/stripped_mahogany_modern_wardrobe.png deleted file mode 100644 index b705c5ea..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_pane_window.png b/public/textures/mcwbyg/stripped_mahogany_pane_window.png deleted file mode 100644 index 7ce2545a..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_stool_chair.png b/public/textures/mcwbyg/stripped_mahogany_stool_chair.png deleted file mode 100644 index ff036e34..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_striped_chair.png b/public/textures/mcwbyg/stripped_mahogany_striped_chair.png deleted file mode 100644 index 91663b4d..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_table.png b/public/textures/mcwbyg/stripped_mahogany_table.png deleted file mode 100644 index 3517e4d9..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_triple_drawer.png b/public/textures/mcwbyg/stripped_mahogany_triple_drawer.png deleted file mode 100644 index b83eb227..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_mahogany_wardrobe.png b/public/textures/mcwbyg/stripped_mahogany_wardrobe.png deleted file mode 100644 index e1cd0ce7..00000000 Binary files a/public/textures/mcwbyg/stripped_mahogany_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_bookshelf.png b/public/textures/mcwbyg/stripped_maple_bookshelf.png deleted file mode 100644 index 4e598e8f..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_maple_bookshelf_cupboard.png deleted file mode 100644 index 38a87c31..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_maple_bookshelf_drawer.png deleted file mode 100644 index 3eec8d4a..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_chair.png b/public/textures/mcwbyg/stripped_maple_chair.png deleted file mode 100644 index 20c94836..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_coffee_table.png b/public/textures/mcwbyg/stripped_maple_coffee_table.png deleted file mode 100644 index 048c2d3f..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_counter.png b/public/textures/mcwbyg/stripped_maple_counter.png deleted file mode 100644 index 150b2da1..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_covered_desk.png b/public/textures/mcwbyg/stripped_maple_covered_desk.png deleted file mode 100644 index f9d8d2cf..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_cupboard_counter.png b/public/textures/mcwbyg/stripped_maple_cupboard_counter.png deleted file mode 100644 index 961d89af..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_desk.png b/public/textures/mcwbyg/stripped_maple_desk.png deleted file mode 100644 index 10287b3d..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_double_drawer.png b/public/textures/mcwbyg/stripped_maple_double_drawer.png deleted file mode 100644 index 0c2857e0..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_double_drawer_counter.png b/public/textures/mcwbyg/stripped_maple_double_drawer_counter.png deleted file mode 100644 index d479e2f8..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_maple_double_kitchen_cabinet.png deleted file mode 100644 index 5bb3a7ca..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_double_wardrobe.png b/public/textures/mcwbyg/stripped_maple_double_wardrobe.png deleted file mode 100644 index 6fd028ca..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_drawer.png b/public/textures/mcwbyg/stripped_maple_drawer.png deleted file mode 100644 index c8f7904b..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_drawer_counter.png b/public/textures/mcwbyg/stripped_maple_drawer_counter.png deleted file mode 100644 index d2829537..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_end_table.png b/public/textures/mcwbyg/stripped_maple_end_table.png deleted file mode 100644 index a99f13c8..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_maple_glass_kitchen_cabinet.png deleted file mode 100644 index 38b83e6c..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_glass_table.png b/public/textures/mcwbyg/stripped_maple_glass_table.png deleted file mode 100644 index 84e6eb32..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_maple_kitchen_cabinet.png deleted file mode 100644 index a7aea1f8..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_large_drawer.png b/public/textures/mcwbyg/stripped_maple_large_drawer.png deleted file mode 100644 index c6772818..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_log_four_window.png b/public/textures/mcwbyg/stripped_maple_log_four_window.png deleted file mode 100644 index 659aa234..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_log_window.png b/public/textures/mcwbyg/stripped_maple_log_window.png deleted file mode 100644 index d1b77d8b..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_log_window2.png b/public/textures/mcwbyg/stripped_maple_log_window2.png deleted file mode 100644 index 6c35edc2..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_maple_lower_bookshelf_drawer.png deleted file mode 100644 index 8940eb4b..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_maple_lower_triple_drawer.png deleted file mode 100644 index 1049174c..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_modern_chair.png b/public/textures/mcwbyg/stripped_maple_modern_chair.png deleted file mode 100644 index 59e8c9ce..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_modern_desk.png b/public/textures/mcwbyg/stripped_maple_modern_desk.png deleted file mode 100644 index fbab287a..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_modern_wardrobe.png b/public/textures/mcwbyg/stripped_maple_modern_wardrobe.png deleted file mode 100644 index d7be0659..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_pane_window.png b/public/textures/mcwbyg/stripped_maple_pane_window.png deleted file mode 100644 index 583692d3..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_stool_chair.png b/public/textures/mcwbyg/stripped_maple_stool_chair.png deleted file mode 100644 index f583bcc7..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_striped_chair.png b/public/textures/mcwbyg/stripped_maple_striped_chair.png deleted file mode 100644 index b2ccb3d3..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_table.png b/public/textures/mcwbyg/stripped_maple_table.png deleted file mode 100644 index 4af8144c..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_triple_drawer.png b/public/textures/mcwbyg/stripped_maple_triple_drawer.png deleted file mode 100644 index b6a450e8..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_maple_wardrobe.png b/public/textures/mcwbyg/stripped_maple_wardrobe.png deleted file mode 100644 index 63a682b6..00000000 Binary files a/public/textures/mcwbyg/stripped_maple_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_bookshelf.png b/public/textures/mcwbyg/stripped_palm_bookshelf.png deleted file mode 100644 index 9e936b21..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_palm_bookshelf_cupboard.png deleted file mode 100644 index ca978da8..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_palm_bookshelf_drawer.png deleted file mode 100644 index 7c8ddf3e..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_chair.png b/public/textures/mcwbyg/stripped_palm_chair.png deleted file mode 100644 index a13cb041..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_coffee_table.png b/public/textures/mcwbyg/stripped_palm_coffee_table.png deleted file mode 100644 index 33474172..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_counter.png b/public/textures/mcwbyg/stripped_palm_counter.png deleted file mode 100644 index 040ab9d6..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_covered_desk.png b/public/textures/mcwbyg/stripped_palm_covered_desk.png deleted file mode 100644 index 85e874be..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_cupboard_counter.png b/public/textures/mcwbyg/stripped_palm_cupboard_counter.png deleted file mode 100644 index 1c6226a3..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_desk.png b/public/textures/mcwbyg/stripped_palm_desk.png deleted file mode 100644 index a23da3a3..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_double_drawer.png b/public/textures/mcwbyg/stripped_palm_double_drawer.png deleted file mode 100644 index d5f45db6..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_double_drawer_counter.png b/public/textures/mcwbyg/stripped_palm_double_drawer_counter.png deleted file mode 100644 index e7efc752..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_palm_double_kitchen_cabinet.png deleted file mode 100644 index 536b0313..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_double_wardrobe.png b/public/textures/mcwbyg/stripped_palm_double_wardrobe.png deleted file mode 100644 index 1d77381b..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_drawer.png b/public/textures/mcwbyg/stripped_palm_drawer.png deleted file mode 100644 index 1f1eb5ca..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_drawer_counter.png b/public/textures/mcwbyg/stripped_palm_drawer_counter.png deleted file mode 100644 index 56dc2843..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_end_table.png b/public/textures/mcwbyg/stripped_palm_end_table.png deleted file mode 100644 index a1eea434..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_palm_glass_kitchen_cabinet.png deleted file mode 100644 index 5d71df0d..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_glass_table.png b/public/textures/mcwbyg/stripped_palm_glass_table.png deleted file mode 100644 index 19399e5b..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_palm_kitchen_cabinet.png deleted file mode 100644 index 98ba52fa..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_large_drawer.png b/public/textures/mcwbyg/stripped_palm_large_drawer.png deleted file mode 100644 index 4b4c2c05..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_log_four_window.png b/public/textures/mcwbyg/stripped_palm_log_four_window.png deleted file mode 100644 index 4a456847..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_log_window.png b/public/textures/mcwbyg/stripped_palm_log_window.png deleted file mode 100644 index abaf1fed..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_log_window2.png b/public/textures/mcwbyg/stripped_palm_log_window2.png deleted file mode 100644 index c11b7586..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_palm_lower_bookshelf_drawer.png deleted file mode 100644 index 33bce59a..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_palm_lower_triple_drawer.png deleted file mode 100644 index cae5ad0b..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_modern_chair.png b/public/textures/mcwbyg/stripped_palm_modern_chair.png deleted file mode 100644 index 07945a96..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_modern_desk.png b/public/textures/mcwbyg/stripped_palm_modern_desk.png deleted file mode 100644 index 7a8489e3..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_modern_wardrobe.png b/public/textures/mcwbyg/stripped_palm_modern_wardrobe.png deleted file mode 100644 index 86a235b7..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_pane_window.png b/public/textures/mcwbyg/stripped_palm_pane_window.png deleted file mode 100644 index 9a3c21b3..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_stool_chair.png b/public/textures/mcwbyg/stripped_palm_stool_chair.png deleted file mode 100644 index 844b416e..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_striped_chair.png b/public/textures/mcwbyg/stripped_palm_striped_chair.png deleted file mode 100644 index 1007ad37..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_table.png b/public/textures/mcwbyg/stripped_palm_table.png deleted file mode 100644 index a0113262..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_triple_drawer.png b/public/textures/mcwbyg/stripped_palm_triple_drawer.png deleted file mode 100644 index b7c0307b..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_palm_wardrobe.png b/public/textures/mcwbyg/stripped_palm_wardrobe.png deleted file mode 100644 index 3398248b..00000000 Binary files a/public/textures/mcwbyg/stripped_palm_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_bookshelf.png b/public/textures/mcwbyg/stripped_pine_bookshelf.png deleted file mode 100644 index 31aca1a1..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_pine_bookshelf_cupboard.png deleted file mode 100644 index 5427501a..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_pine_bookshelf_drawer.png deleted file mode 100644 index 8c91b3d0..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_chair.png b/public/textures/mcwbyg/stripped_pine_chair.png deleted file mode 100644 index 5aef979f..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_coffee_table.png b/public/textures/mcwbyg/stripped_pine_coffee_table.png deleted file mode 100644 index 34aa1f33..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_counter.png b/public/textures/mcwbyg/stripped_pine_counter.png deleted file mode 100644 index ae10a1c0..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_covered_desk.png b/public/textures/mcwbyg/stripped_pine_covered_desk.png deleted file mode 100644 index 095e501e..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_cupboard_counter.png b/public/textures/mcwbyg/stripped_pine_cupboard_counter.png deleted file mode 100644 index 86033f76..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_desk.png b/public/textures/mcwbyg/stripped_pine_desk.png deleted file mode 100644 index b7176c82..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_double_drawer.png b/public/textures/mcwbyg/stripped_pine_double_drawer.png deleted file mode 100644 index fa38ab29..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_double_drawer_counter.png b/public/textures/mcwbyg/stripped_pine_double_drawer_counter.png deleted file mode 100644 index 8684da39..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_pine_double_kitchen_cabinet.png deleted file mode 100644 index 6bbc35c9..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_double_wardrobe.png b/public/textures/mcwbyg/stripped_pine_double_wardrobe.png deleted file mode 100644 index 95fd3d0c..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_drawer.png b/public/textures/mcwbyg/stripped_pine_drawer.png deleted file mode 100644 index b434ee17..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_drawer_counter.png b/public/textures/mcwbyg/stripped_pine_drawer_counter.png deleted file mode 100644 index f6b56dee..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_end_table.png b/public/textures/mcwbyg/stripped_pine_end_table.png deleted file mode 100644 index 1b7d41fa..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_pine_glass_kitchen_cabinet.png deleted file mode 100644 index 249484c6..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_glass_table.png b/public/textures/mcwbyg/stripped_pine_glass_table.png deleted file mode 100644 index 4f42cb92..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_pine_kitchen_cabinet.png deleted file mode 100644 index 47ed89ae..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_large_drawer.png b/public/textures/mcwbyg/stripped_pine_large_drawer.png deleted file mode 100644 index 91ad60f1..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_log_four_window.png b/public/textures/mcwbyg/stripped_pine_log_four_window.png deleted file mode 100644 index 39bd2d6e..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_log_window.png b/public/textures/mcwbyg/stripped_pine_log_window.png deleted file mode 100644 index 909823de..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_log_window2.png b/public/textures/mcwbyg/stripped_pine_log_window2.png deleted file mode 100644 index 5b3225ec..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_pine_lower_bookshelf_drawer.png deleted file mode 100644 index 8aaef8a5..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_pine_lower_triple_drawer.png deleted file mode 100644 index dd034a59..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_modern_chair.png b/public/textures/mcwbyg/stripped_pine_modern_chair.png deleted file mode 100644 index 204cd44f..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_modern_desk.png b/public/textures/mcwbyg/stripped_pine_modern_desk.png deleted file mode 100644 index ba1fe3bc..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_modern_wardrobe.png b/public/textures/mcwbyg/stripped_pine_modern_wardrobe.png deleted file mode 100644 index e36aa7a8..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_pane_window.png b/public/textures/mcwbyg/stripped_pine_pane_window.png deleted file mode 100644 index 44d5eaf6..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_stool_chair.png b/public/textures/mcwbyg/stripped_pine_stool_chair.png deleted file mode 100644 index 8f6ea2ab..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_striped_chair.png b/public/textures/mcwbyg/stripped_pine_striped_chair.png deleted file mode 100644 index 57e27d5f..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_table.png b/public/textures/mcwbyg/stripped_pine_table.png deleted file mode 100644 index 9a28bc2b..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_triple_drawer.png b/public/textures/mcwbyg/stripped_pine_triple_drawer.png deleted file mode 100644 index 5e698bcc..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_pine_wardrobe.png b/public/textures/mcwbyg/stripped_pine_wardrobe.png deleted file mode 100644 index 5fa1162d..00000000 Binary files a/public/textures/mcwbyg/stripped_pine_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_bookshelf.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_bookshelf.png deleted file mode 100644 index 8d1d5275..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_bookshelf_cupboard.png deleted file mode 100644 index f8ed8ef8..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_bookshelf_drawer.png deleted file mode 100644 index 43fa3f18..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_chair.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_chair.png deleted file mode 100644 index cf41ba1b..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_coffee_table.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_coffee_table.png deleted file mode 100644 index b54bdad4..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_counter.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_counter.png deleted file mode 100644 index a7e9cc0a..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_covered_desk.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_covered_desk.png deleted file mode 100644 index 623fc4d7..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_cupboard_counter.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_cupboard_counter.png deleted file mode 100644 index fa50588a..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_desk.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_desk.png deleted file mode 100644 index 53dd8a47..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_drawer.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_drawer.png deleted file mode 100644 index 0dc783f6..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_drawer_counter.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_drawer_counter.png deleted file mode 100644 index 75d05186..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_kitchen_cabinet.png deleted file mode 100644 index 8a51d215..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_wardrobe.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_wardrobe.png deleted file mode 100644 index f8aa674f..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_drawer.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_drawer.png deleted file mode 100644 index 637a6af1..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_drawer_counter.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_drawer_counter.png deleted file mode 100644 index 1d102da1..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_end_table.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_end_table.png deleted file mode 100644 index 25e14d71..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_glass_kitchen_cabinet.png deleted file mode 100644 index 6100bfa5..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_glass_table.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_glass_table.png deleted file mode 100644 index 696dad3d..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_kitchen_cabinet.png deleted file mode 100644 index 1f17f35a..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_large_drawer.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_large_drawer.png deleted file mode 100644 index a5998d32..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_log_four_window.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_log_four_window.png deleted file mode 100644 index c5c29ad0..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_log_window.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_log_window.png deleted file mode 100644 index 6e4eda89..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_log_window2.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_log_window2.png deleted file mode 100644 index 0c06192c..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_lower_bookshelf_drawer.png deleted file mode 100644 index 70a983fa..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_lower_triple_drawer.png deleted file mode 100644 index 7ba7af44..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_modern_chair.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_modern_chair.png deleted file mode 100644 index 65c1cfed..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_modern_desk.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_modern_desk.png deleted file mode 100644 index cff569d6..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_modern_wardrobe.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_modern_wardrobe.png deleted file mode 100644 index 90a740c0..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_pane_window.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_pane_window.png deleted file mode 100644 index 2afaa408..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_stool_chair.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_stool_chair.png deleted file mode 100644 index 1e2d78fa..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_striped_chair.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_striped_chair.png deleted file mode 100644 index 296fec60..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_table.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_table.png deleted file mode 100644 index 5ccf6157..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_triple_drawer.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_triple_drawer.png deleted file mode 100644 index 448fd99d..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_wardrobe.png b/public/textures/mcwbyg/stripped_rainbow_eucalyptus_wardrobe.png deleted file mode 100644 index 4058b7a8..00000000 Binary files a/public/textures/mcwbyg/stripped_rainbow_eucalyptus_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_bookshelf.png b/public/textures/mcwbyg/stripped_redwood_bookshelf.png deleted file mode 100644 index 2667f47b..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_redwood_bookshelf_cupboard.png deleted file mode 100644 index 46411853..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_redwood_bookshelf_drawer.png deleted file mode 100644 index 8af70484..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_chair.png b/public/textures/mcwbyg/stripped_redwood_chair.png deleted file mode 100644 index e51b5be2..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_coffee_table.png b/public/textures/mcwbyg/stripped_redwood_coffee_table.png deleted file mode 100644 index 2c5b0727..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_counter.png b/public/textures/mcwbyg/stripped_redwood_counter.png deleted file mode 100644 index 330c7d60..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_covered_desk.png b/public/textures/mcwbyg/stripped_redwood_covered_desk.png deleted file mode 100644 index 9ce22e05..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_cupboard_counter.png b/public/textures/mcwbyg/stripped_redwood_cupboard_counter.png deleted file mode 100644 index 210fcc4b..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_desk.png b/public/textures/mcwbyg/stripped_redwood_desk.png deleted file mode 100644 index 5376f423..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_double_drawer.png b/public/textures/mcwbyg/stripped_redwood_double_drawer.png deleted file mode 100644 index 14ee2400..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_double_drawer_counter.png b/public/textures/mcwbyg/stripped_redwood_double_drawer_counter.png deleted file mode 100644 index 32ca3e89..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_redwood_double_kitchen_cabinet.png deleted file mode 100644 index 9a4bda99..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_double_wardrobe.png b/public/textures/mcwbyg/stripped_redwood_double_wardrobe.png deleted file mode 100644 index def54342..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_drawer.png b/public/textures/mcwbyg/stripped_redwood_drawer.png deleted file mode 100644 index c5b5d544..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_drawer_counter.png b/public/textures/mcwbyg/stripped_redwood_drawer_counter.png deleted file mode 100644 index ae2a2b47..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_end_table.png b/public/textures/mcwbyg/stripped_redwood_end_table.png deleted file mode 100644 index ddaf4606..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_redwood_glass_kitchen_cabinet.png deleted file mode 100644 index b2011009..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_glass_table.png b/public/textures/mcwbyg/stripped_redwood_glass_table.png deleted file mode 100644 index 44b0dc8a..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_redwood_kitchen_cabinet.png deleted file mode 100644 index 12da741f..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_large_drawer.png b/public/textures/mcwbyg/stripped_redwood_large_drawer.png deleted file mode 100644 index 830b9495..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_log_four_window.png b/public/textures/mcwbyg/stripped_redwood_log_four_window.png deleted file mode 100644 index 239d00f5..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_log_window.png b/public/textures/mcwbyg/stripped_redwood_log_window.png deleted file mode 100644 index 5c546c25..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_log_window2.png b/public/textures/mcwbyg/stripped_redwood_log_window2.png deleted file mode 100644 index 05cdc9ef..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_redwood_lower_bookshelf_drawer.png deleted file mode 100644 index 9ecd13a3..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_redwood_lower_triple_drawer.png deleted file mode 100644 index 4873a4ec..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_modern_chair.png b/public/textures/mcwbyg/stripped_redwood_modern_chair.png deleted file mode 100644 index 26456827..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_modern_desk.png b/public/textures/mcwbyg/stripped_redwood_modern_desk.png deleted file mode 100644 index 368a26b1..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_modern_wardrobe.png b/public/textures/mcwbyg/stripped_redwood_modern_wardrobe.png deleted file mode 100644 index 508c2bee..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_pane_window.png b/public/textures/mcwbyg/stripped_redwood_pane_window.png deleted file mode 100644 index 4fe90724..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_stool_chair.png b/public/textures/mcwbyg/stripped_redwood_stool_chair.png deleted file mode 100644 index 87aa3ea4..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_striped_chair.png b/public/textures/mcwbyg/stripped_redwood_striped_chair.png deleted file mode 100644 index 73391541..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_table.png b/public/textures/mcwbyg/stripped_redwood_table.png deleted file mode 100644 index f5802a4f..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_triple_drawer.png b/public/textures/mcwbyg/stripped_redwood_triple_drawer.png deleted file mode 100644 index b318fecc..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_redwood_wardrobe.png b/public/textures/mcwbyg/stripped_redwood_wardrobe.png deleted file mode 100644 index f6d62857..00000000 Binary files a/public/textures/mcwbyg/stripped_redwood_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_bookshelf.png b/public/textures/mcwbyg/stripped_sakura_bookshelf.png deleted file mode 100644 index 2005e3f0..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_sakura_bookshelf_cupboard.png deleted file mode 100644 index 54678be0..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_sakura_bookshelf_drawer.png deleted file mode 100644 index fe19ce50..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_chair.png b/public/textures/mcwbyg/stripped_sakura_chair.png deleted file mode 100644 index cd7cdde0..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_coffee_table.png b/public/textures/mcwbyg/stripped_sakura_coffee_table.png deleted file mode 100644 index 22513caf..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_counter.png b/public/textures/mcwbyg/stripped_sakura_counter.png deleted file mode 100644 index c67ac459..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_covered_desk.png b/public/textures/mcwbyg/stripped_sakura_covered_desk.png deleted file mode 100644 index d16c982d..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_cupboard_counter.png b/public/textures/mcwbyg/stripped_sakura_cupboard_counter.png deleted file mode 100644 index f4a729f3..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_desk.png b/public/textures/mcwbyg/stripped_sakura_desk.png deleted file mode 100644 index e4fa40d8..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_double_drawer.png b/public/textures/mcwbyg/stripped_sakura_double_drawer.png deleted file mode 100644 index 0dc1aa6e..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_double_drawer_counter.png b/public/textures/mcwbyg/stripped_sakura_double_drawer_counter.png deleted file mode 100644 index 0cd78993..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_sakura_double_kitchen_cabinet.png deleted file mode 100644 index 415d720b..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_double_wardrobe.png b/public/textures/mcwbyg/stripped_sakura_double_wardrobe.png deleted file mode 100644 index d642ca72..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_drawer.png b/public/textures/mcwbyg/stripped_sakura_drawer.png deleted file mode 100644 index 163a6300..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_drawer_counter.png b/public/textures/mcwbyg/stripped_sakura_drawer_counter.png deleted file mode 100644 index 94e4bd03..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_end_table.png b/public/textures/mcwbyg/stripped_sakura_end_table.png deleted file mode 100644 index 86176d08..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_sakura_glass_kitchen_cabinet.png deleted file mode 100644 index ed644470..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_glass_table.png b/public/textures/mcwbyg/stripped_sakura_glass_table.png deleted file mode 100644 index bc5c4263..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_sakura_kitchen_cabinet.png deleted file mode 100644 index a2cf5df7..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_large_drawer.png b/public/textures/mcwbyg/stripped_sakura_large_drawer.png deleted file mode 100644 index 7a462037..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_log_four_window.png b/public/textures/mcwbyg/stripped_sakura_log_four_window.png deleted file mode 100644 index e654aed5..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_log_window.png b/public/textures/mcwbyg/stripped_sakura_log_window.png deleted file mode 100644 index 602d5a44..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_log_window2.png b/public/textures/mcwbyg/stripped_sakura_log_window2.png deleted file mode 100644 index 23158e1e..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_sakura_lower_bookshelf_drawer.png deleted file mode 100644 index 1682c61b..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_sakura_lower_triple_drawer.png deleted file mode 100644 index 9f23b624..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_modern_chair.png b/public/textures/mcwbyg/stripped_sakura_modern_chair.png deleted file mode 100644 index 22b4338e..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_modern_desk.png b/public/textures/mcwbyg/stripped_sakura_modern_desk.png deleted file mode 100644 index 39087509..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_modern_wardrobe.png b/public/textures/mcwbyg/stripped_sakura_modern_wardrobe.png deleted file mode 100644 index eafc9ae2..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_pane_window.png b/public/textures/mcwbyg/stripped_sakura_pane_window.png deleted file mode 100644 index 6a9c99f2..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_stool_chair.png b/public/textures/mcwbyg/stripped_sakura_stool_chair.png deleted file mode 100644 index 624b300e..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_striped_chair.png b/public/textures/mcwbyg/stripped_sakura_striped_chair.png deleted file mode 100644 index 826bfce8..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_table.png b/public/textures/mcwbyg/stripped_sakura_table.png deleted file mode 100644 index c8b80706..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_triple_drawer.png b/public/textures/mcwbyg/stripped_sakura_triple_drawer.png deleted file mode 100644 index 67c56634..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_sakura_wardrobe.png b/public/textures/mcwbyg/stripped_sakura_wardrobe.png deleted file mode 100644 index 594d80a0..00000000 Binary files a/public/textures/mcwbyg/stripped_sakura_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_bookshelf.png b/public/textures/mcwbyg/stripped_skyris_bookshelf.png deleted file mode 100644 index a25be8c5..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_skyris_bookshelf_cupboard.png deleted file mode 100644 index aeba19e3..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_skyris_bookshelf_drawer.png deleted file mode 100644 index 27020a7e..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_chair.png b/public/textures/mcwbyg/stripped_skyris_chair.png deleted file mode 100644 index 4d8b191f..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_coffee_table.png b/public/textures/mcwbyg/stripped_skyris_coffee_table.png deleted file mode 100644 index 4ce1ad2f..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_counter.png b/public/textures/mcwbyg/stripped_skyris_counter.png deleted file mode 100644 index a99f8d13..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_covered_desk.png b/public/textures/mcwbyg/stripped_skyris_covered_desk.png deleted file mode 100644 index e2b74dbd..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_cupboard_counter.png b/public/textures/mcwbyg/stripped_skyris_cupboard_counter.png deleted file mode 100644 index 0c79e273..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_desk.png b/public/textures/mcwbyg/stripped_skyris_desk.png deleted file mode 100644 index e069094a..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_double_drawer.png b/public/textures/mcwbyg/stripped_skyris_double_drawer.png deleted file mode 100644 index d9c78c4e..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_double_drawer_counter.png b/public/textures/mcwbyg/stripped_skyris_double_drawer_counter.png deleted file mode 100644 index bea78fe3..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_skyris_double_kitchen_cabinet.png deleted file mode 100644 index 7fa37f57..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_double_wardrobe.png b/public/textures/mcwbyg/stripped_skyris_double_wardrobe.png deleted file mode 100644 index 22e9a0c1..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_drawer.png b/public/textures/mcwbyg/stripped_skyris_drawer.png deleted file mode 100644 index 827f5bac..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_drawer_counter.png b/public/textures/mcwbyg/stripped_skyris_drawer_counter.png deleted file mode 100644 index 1eef9c7b..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_end_table.png b/public/textures/mcwbyg/stripped_skyris_end_table.png deleted file mode 100644 index 3b490c4d..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_skyris_glass_kitchen_cabinet.png deleted file mode 100644 index 6b1ac452..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_glass_table.png b/public/textures/mcwbyg/stripped_skyris_glass_table.png deleted file mode 100644 index 42179a2c..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_skyris_kitchen_cabinet.png deleted file mode 100644 index 333308e7..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_large_drawer.png b/public/textures/mcwbyg/stripped_skyris_large_drawer.png deleted file mode 100644 index c987f997..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_log_four_window.png b/public/textures/mcwbyg/stripped_skyris_log_four_window.png deleted file mode 100644 index 6d812de2..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_log_window.png b/public/textures/mcwbyg/stripped_skyris_log_window.png deleted file mode 100644 index 39fd6c4b..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_log_window2.png b/public/textures/mcwbyg/stripped_skyris_log_window2.png deleted file mode 100644 index c28825f5..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_skyris_lower_bookshelf_drawer.png deleted file mode 100644 index 7cd7c951..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_skyris_lower_triple_drawer.png deleted file mode 100644 index cc2155ee..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_modern_chair.png b/public/textures/mcwbyg/stripped_skyris_modern_chair.png deleted file mode 100644 index 81b336e7..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_modern_desk.png b/public/textures/mcwbyg/stripped_skyris_modern_desk.png deleted file mode 100644 index e2e538bd..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_modern_wardrobe.png b/public/textures/mcwbyg/stripped_skyris_modern_wardrobe.png deleted file mode 100644 index 58fa85ee..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_pane_window.png b/public/textures/mcwbyg/stripped_skyris_pane_window.png deleted file mode 100644 index 75973e4e..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_stool_chair.png b/public/textures/mcwbyg/stripped_skyris_stool_chair.png deleted file mode 100644 index 097f0dbc..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_striped_chair.png b/public/textures/mcwbyg/stripped_skyris_striped_chair.png deleted file mode 100644 index 6997d33b..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_table.png b/public/textures/mcwbyg/stripped_skyris_table.png deleted file mode 100644 index 44e0030a..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_triple_drawer.png b/public/textures/mcwbyg/stripped_skyris_triple_drawer.png deleted file mode 100644 index b3358c49..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_skyris_wardrobe.png b/public/textures/mcwbyg/stripped_skyris_wardrobe.png deleted file mode 100644 index 28909413..00000000 Binary files a/public/textures/mcwbyg/stripped_skyris_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_bookshelf.png b/public/textures/mcwbyg/stripped_white_mangrove_bookshelf.png deleted file mode 100644 index 93d04082..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_white_mangrove_bookshelf_cupboard.png deleted file mode 100644 index 49cb5f89..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_white_mangrove_bookshelf_drawer.png deleted file mode 100644 index 53e0210c..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_chair.png b/public/textures/mcwbyg/stripped_white_mangrove_chair.png deleted file mode 100644 index 3f92ec8d..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_coffee_table.png b/public/textures/mcwbyg/stripped_white_mangrove_coffee_table.png deleted file mode 100644 index f2339dbb..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_counter.png b/public/textures/mcwbyg/stripped_white_mangrove_counter.png deleted file mode 100644 index 15b7576b..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_covered_desk.png b/public/textures/mcwbyg/stripped_white_mangrove_covered_desk.png deleted file mode 100644 index eaa121ef..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_cupboard_counter.png b/public/textures/mcwbyg/stripped_white_mangrove_cupboard_counter.png deleted file mode 100644 index c76a45b2..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_desk.png b/public/textures/mcwbyg/stripped_white_mangrove_desk.png deleted file mode 100644 index 9f6feae5..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_double_drawer.png b/public/textures/mcwbyg/stripped_white_mangrove_double_drawer.png deleted file mode 100644 index d964bb55..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_double_drawer_counter.png b/public/textures/mcwbyg/stripped_white_mangrove_double_drawer_counter.png deleted file mode 100644 index 5bc5342f..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_white_mangrove_double_kitchen_cabinet.png deleted file mode 100644 index 19405e34..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_double_wardrobe.png b/public/textures/mcwbyg/stripped_white_mangrove_double_wardrobe.png deleted file mode 100644 index d2a46c9d..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_drawer.png b/public/textures/mcwbyg/stripped_white_mangrove_drawer.png deleted file mode 100644 index 4bfcb229..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_drawer_counter.png b/public/textures/mcwbyg/stripped_white_mangrove_drawer_counter.png deleted file mode 100644 index 8a060c00..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_end_table.png b/public/textures/mcwbyg/stripped_white_mangrove_end_table.png deleted file mode 100644 index fa933bee..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_white_mangrove_glass_kitchen_cabinet.png deleted file mode 100644 index 6537b5e0..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_glass_table.png b/public/textures/mcwbyg/stripped_white_mangrove_glass_table.png deleted file mode 100644 index f0550249..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_white_mangrove_kitchen_cabinet.png deleted file mode 100644 index 1b60a9c3..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_large_drawer.png b/public/textures/mcwbyg/stripped_white_mangrove_large_drawer.png deleted file mode 100644 index 211a5bff..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_log_four_window.png b/public/textures/mcwbyg/stripped_white_mangrove_log_four_window.png deleted file mode 100644 index 6b859bbb..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_log_window.png b/public/textures/mcwbyg/stripped_white_mangrove_log_window.png deleted file mode 100644 index 81765b3e..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_log_window2.png b/public/textures/mcwbyg/stripped_white_mangrove_log_window2.png deleted file mode 100644 index 3e989a2b..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_white_mangrove_lower_bookshelf_drawer.png deleted file mode 100644 index 3130f176..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_white_mangrove_lower_triple_drawer.png deleted file mode 100644 index 5a5e2c2c..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_modern_chair.png b/public/textures/mcwbyg/stripped_white_mangrove_modern_chair.png deleted file mode 100644 index bf124dab..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_modern_desk.png b/public/textures/mcwbyg/stripped_white_mangrove_modern_desk.png deleted file mode 100644 index 78597a05..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_modern_wardrobe.png b/public/textures/mcwbyg/stripped_white_mangrove_modern_wardrobe.png deleted file mode 100644 index c9b3b6f2..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_pane_window.png b/public/textures/mcwbyg/stripped_white_mangrove_pane_window.png deleted file mode 100644 index 89be70e3..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_stool_chair.png b/public/textures/mcwbyg/stripped_white_mangrove_stool_chair.png deleted file mode 100644 index 9243b4b0..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_striped_chair.png b/public/textures/mcwbyg/stripped_white_mangrove_striped_chair.png deleted file mode 100644 index 4faece4b..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_table.png b/public/textures/mcwbyg/stripped_white_mangrove_table.png deleted file mode 100644 index f6161dc5..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_triple_drawer.png b/public/textures/mcwbyg/stripped_white_mangrove_triple_drawer.png deleted file mode 100644 index 6e05c582..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_white_mangrove_wardrobe.png b/public/textures/mcwbyg/stripped_white_mangrove_wardrobe.png deleted file mode 100644 index 6410cc4e..00000000 Binary files a/public/textures/mcwbyg/stripped_white_mangrove_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_bookshelf.png b/public/textures/mcwbyg/stripped_willow_bookshelf.png deleted file mode 100644 index e5adf734..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_willow_bookshelf_cupboard.png deleted file mode 100644 index 784d7ed5..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_willow_bookshelf_drawer.png deleted file mode 100644 index a3b8bd48..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_chair.png b/public/textures/mcwbyg/stripped_willow_chair.png deleted file mode 100644 index f80fd1ac..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_coffee_table.png b/public/textures/mcwbyg/stripped_willow_coffee_table.png deleted file mode 100644 index 32e17024..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_counter.png b/public/textures/mcwbyg/stripped_willow_counter.png deleted file mode 100644 index 221b552a..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_covered_desk.png b/public/textures/mcwbyg/stripped_willow_covered_desk.png deleted file mode 100644 index 712e1393..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_cupboard_counter.png b/public/textures/mcwbyg/stripped_willow_cupboard_counter.png deleted file mode 100644 index 608de880..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_desk.png b/public/textures/mcwbyg/stripped_willow_desk.png deleted file mode 100644 index e36b894b..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_double_drawer.png b/public/textures/mcwbyg/stripped_willow_double_drawer.png deleted file mode 100644 index 3a106ddc..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_double_drawer_counter.png b/public/textures/mcwbyg/stripped_willow_double_drawer_counter.png deleted file mode 100644 index 62ccc7aa..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_willow_double_kitchen_cabinet.png deleted file mode 100644 index 1f736360..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_double_wardrobe.png b/public/textures/mcwbyg/stripped_willow_double_wardrobe.png deleted file mode 100644 index aeb123d1..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_drawer.png b/public/textures/mcwbyg/stripped_willow_drawer.png deleted file mode 100644 index 84c7a367..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_drawer_counter.png b/public/textures/mcwbyg/stripped_willow_drawer_counter.png deleted file mode 100644 index 21dc8ccd..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_end_table.png b/public/textures/mcwbyg/stripped_willow_end_table.png deleted file mode 100644 index ad8ba878..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_willow_glass_kitchen_cabinet.png deleted file mode 100644 index 60376be6..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_glass_table.png b/public/textures/mcwbyg/stripped_willow_glass_table.png deleted file mode 100644 index b38b9b2f..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_willow_kitchen_cabinet.png deleted file mode 100644 index 120f01aa..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_large_drawer.png b/public/textures/mcwbyg/stripped_willow_large_drawer.png deleted file mode 100644 index 44dab013..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_log_four_window.png b/public/textures/mcwbyg/stripped_willow_log_four_window.png deleted file mode 100644 index b480589f..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_log_window.png b/public/textures/mcwbyg/stripped_willow_log_window.png deleted file mode 100644 index 12990788..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_log_window2.png b/public/textures/mcwbyg/stripped_willow_log_window2.png deleted file mode 100644 index 1398b300..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_willow_lower_bookshelf_drawer.png deleted file mode 100644 index e833e60e..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_willow_lower_triple_drawer.png deleted file mode 100644 index 2eaff3a8..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_modern_chair.png b/public/textures/mcwbyg/stripped_willow_modern_chair.png deleted file mode 100644 index 28311283..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_modern_desk.png b/public/textures/mcwbyg/stripped_willow_modern_desk.png deleted file mode 100644 index d07b96ed..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_modern_wardrobe.png b/public/textures/mcwbyg/stripped_willow_modern_wardrobe.png deleted file mode 100644 index 18c87992..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_pane_window.png b/public/textures/mcwbyg/stripped_willow_pane_window.png deleted file mode 100644 index ac9021ee..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_stool_chair.png b/public/textures/mcwbyg/stripped_willow_stool_chair.png deleted file mode 100644 index b1540226..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_striped_chair.png b/public/textures/mcwbyg/stripped_willow_striped_chair.png deleted file mode 100644 index 8eb93265..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_table.png b/public/textures/mcwbyg/stripped_willow_table.png deleted file mode 100644 index beb422e2..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_triple_drawer.png b/public/textures/mcwbyg/stripped_willow_triple_drawer.png deleted file mode 100644 index 0e847a60..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_willow_wardrobe.png b/public/textures/mcwbyg/stripped_willow_wardrobe.png deleted file mode 100644 index 906f40eb..00000000 Binary files a/public/textures/mcwbyg/stripped_willow_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_bookshelf.png b/public/textures/mcwbyg/stripped_witch_hazel_bookshelf.png deleted file mode 100644 index 8b1a0929..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_witch_hazel_bookshelf_cupboard.png deleted file mode 100644 index 8c1f67a1..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_witch_hazel_bookshelf_drawer.png deleted file mode 100644 index f4ce34f1..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_chair.png b/public/textures/mcwbyg/stripped_witch_hazel_chair.png deleted file mode 100644 index 0e3d1055..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_coffee_table.png b/public/textures/mcwbyg/stripped_witch_hazel_coffee_table.png deleted file mode 100644 index dadf1095..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_counter.png b/public/textures/mcwbyg/stripped_witch_hazel_counter.png deleted file mode 100644 index 44968bc0..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_covered_desk.png b/public/textures/mcwbyg/stripped_witch_hazel_covered_desk.png deleted file mode 100644 index 58e2ad9c..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_cupboard_counter.png b/public/textures/mcwbyg/stripped_witch_hazel_cupboard_counter.png deleted file mode 100644 index 7324f78c..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_desk.png b/public/textures/mcwbyg/stripped_witch_hazel_desk.png deleted file mode 100644 index 10f0aed4..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_double_drawer.png b/public/textures/mcwbyg/stripped_witch_hazel_double_drawer.png deleted file mode 100644 index 13081655..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_double_drawer_counter.png b/public/textures/mcwbyg/stripped_witch_hazel_double_drawer_counter.png deleted file mode 100644 index 341b7789..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_witch_hazel_double_kitchen_cabinet.png deleted file mode 100644 index 12334135..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_double_wardrobe.png b/public/textures/mcwbyg/stripped_witch_hazel_double_wardrobe.png deleted file mode 100644 index 1d7a7bd0..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_drawer.png b/public/textures/mcwbyg/stripped_witch_hazel_drawer.png deleted file mode 100644 index 40eca4a2..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_drawer_counter.png b/public/textures/mcwbyg/stripped_witch_hazel_drawer_counter.png deleted file mode 100644 index 195521d3..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_end_table.png b/public/textures/mcwbyg/stripped_witch_hazel_end_table.png deleted file mode 100644 index a0a46a51..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_witch_hazel_glass_kitchen_cabinet.png deleted file mode 100644 index a48d64dd..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_glass_table.png b/public/textures/mcwbyg/stripped_witch_hazel_glass_table.png deleted file mode 100644 index abfde4fd..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_witch_hazel_kitchen_cabinet.png deleted file mode 100644 index b9a99f01..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_large_drawer.png b/public/textures/mcwbyg/stripped_witch_hazel_large_drawer.png deleted file mode 100644 index 1ec9a900..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_log_four_window.png b/public/textures/mcwbyg/stripped_witch_hazel_log_four_window.png deleted file mode 100644 index f98f475a..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_log_window.png b/public/textures/mcwbyg/stripped_witch_hazel_log_window.png deleted file mode 100644 index f021c017..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_log_window2.png b/public/textures/mcwbyg/stripped_witch_hazel_log_window2.png deleted file mode 100644 index 46664f60..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_witch_hazel_lower_bookshelf_drawer.png deleted file mode 100644 index bf430e94..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_witch_hazel_lower_triple_drawer.png deleted file mode 100644 index e7fbccf2..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_modern_chair.png b/public/textures/mcwbyg/stripped_witch_hazel_modern_chair.png deleted file mode 100644 index da61e6ce..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_modern_desk.png b/public/textures/mcwbyg/stripped_witch_hazel_modern_desk.png deleted file mode 100644 index f91f7aaa..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_modern_wardrobe.png b/public/textures/mcwbyg/stripped_witch_hazel_modern_wardrobe.png deleted file mode 100644 index a3d1f7e8..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_pane_window.png b/public/textures/mcwbyg/stripped_witch_hazel_pane_window.png deleted file mode 100644 index de83319e..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_stool_chair.png b/public/textures/mcwbyg/stripped_witch_hazel_stool_chair.png deleted file mode 100644 index ff953e2e..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_striped_chair.png b/public/textures/mcwbyg/stripped_witch_hazel_striped_chair.png deleted file mode 100644 index 6ece35a8..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_table.png b/public/textures/mcwbyg/stripped_witch_hazel_table.png deleted file mode 100644 index f9a91514..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_triple_drawer.png b/public/textures/mcwbyg/stripped_witch_hazel_triple_drawer.png deleted file mode 100644 index 2620fda4..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_witch_hazel_wardrobe.png b/public/textures/mcwbyg/stripped_witch_hazel_wardrobe.png deleted file mode 100644 index 1ee06c8e..00000000 Binary files a/public/textures/mcwbyg/stripped_witch_hazel_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_bookshelf.png b/public/textures/mcwbyg/stripped_zelkova_bookshelf.png deleted file mode 100644 index e583b50b..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_bookshelf_cupboard.png b/public/textures/mcwbyg/stripped_zelkova_bookshelf_cupboard.png deleted file mode 100644 index 2649ea3e..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_zelkova_bookshelf_drawer.png deleted file mode 100644 index 3a75fd38..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_chair.png b/public/textures/mcwbyg/stripped_zelkova_chair.png deleted file mode 100644 index 07a44912..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_coffee_table.png b/public/textures/mcwbyg/stripped_zelkova_coffee_table.png deleted file mode 100644 index 71961552..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_counter.png b/public/textures/mcwbyg/stripped_zelkova_counter.png deleted file mode 100644 index d86f3045..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_covered_desk.png b/public/textures/mcwbyg/stripped_zelkova_covered_desk.png deleted file mode 100644 index dd2c9a8f..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_cupboard_counter.png b/public/textures/mcwbyg/stripped_zelkova_cupboard_counter.png deleted file mode 100644 index a90bd12f..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_desk.png b/public/textures/mcwbyg/stripped_zelkova_desk.png deleted file mode 100644 index cf505596..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_double_drawer.png b/public/textures/mcwbyg/stripped_zelkova_double_drawer.png deleted file mode 100644 index cd13a7ca..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_double_drawer_counter.png b/public/textures/mcwbyg/stripped_zelkova_double_drawer_counter.png deleted file mode 100644 index 3223931e..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_double_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_zelkova_double_kitchen_cabinet.png deleted file mode 100644 index 8618c195..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_double_wardrobe.png b/public/textures/mcwbyg/stripped_zelkova_double_wardrobe.png deleted file mode 100644 index 22ed1466..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_drawer.png b/public/textures/mcwbyg/stripped_zelkova_drawer.png deleted file mode 100644 index 5bb94c56..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_drawer_counter.png b/public/textures/mcwbyg/stripped_zelkova_drawer_counter.png deleted file mode 100644 index bb734cca..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_end_table.png b/public/textures/mcwbyg/stripped_zelkova_end_table.png deleted file mode 100644 index 7515dddf..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_glass_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_zelkova_glass_kitchen_cabinet.png deleted file mode 100644 index cfaff1be..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_glass_table.png b/public/textures/mcwbyg/stripped_zelkova_glass_table.png deleted file mode 100644 index 9cb8fbb6..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_kitchen_cabinet.png b/public/textures/mcwbyg/stripped_zelkova_kitchen_cabinet.png deleted file mode 100644 index bd4ceacc..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_large_drawer.png b/public/textures/mcwbyg/stripped_zelkova_large_drawer.png deleted file mode 100644 index ca356d37..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_log_four_window.png b/public/textures/mcwbyg/stripped_zelkova_log_four_window.png deleted file mode 100644 index fc6d0857..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_log_window.png b/public/textures/mcwbyg/stripped_zelkova_log_window.png deleted file mode 100644 index e162dbd0..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_log_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_log_window2.png b/public/textures/mcwbyg/stripped_zelkova_log_window2.png deleted file mode 100644 index 85180ae4..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_log_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_lower_bookshelf_drawer.png b/public/textures/mcwbyg/stripped_zelkova_lower_bookshelf_drawer.png deleted file mode 100644 index 5dfbb3ab..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_lower_triple_drawer.png b/public/textures/mcwbyg/stripped_zelkova_lower_triple_drawer.png deleted file mode 100644 index 4b4a4ef6..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_modern_chair.png b/public/textures/mcwbyg/stripped_zelkova_modern_chair.png deleted file mode 100644 index a2691b17..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_modern_desk.png b/public/textures/mcwbyg/stripped_zelkova_modern_desk.png deleted file mode 100644 index dfcbb833..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_modern_wardrobe.png b/public/textures/mcwbyg/stripped_zelkova_modern_wardrobe.png deleted file mode 100644 index 05faf01a..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_pane_window.png b/public/textures/mcwbyg/stripped_zelkova_pane_window.png deleted file mode 100644 index 0f4c6df0..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_stool_chair.png b/public/textures/mcwbyg/stripped_zelkova_stool_chair.png deleted file mode 100644 index 326f40ab..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_striped_chair.png b/public/textures/mcwbyg/stripped_zelkova_striped_chair.png deleted file mode 100644 index 1706d99a..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_table.png b/public/textures/mcwbyg/stripped_zelkova_table.png deleted file mode 100644 index d7550c45..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_triple_drawer.png b/public/textures/mcwbyg/stripped_zelkova_triple_drawer.png deleted file mode 100644 index c9a76838..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/stripped_zelkova_wardrobe.png b/public/textures/mcwbyg/stripped_zelkova_wardrobe.png deleted file mode 100644 index 556778b8..00000000 Binary files a/public/textures/mcwbyg/stripped_zelkova_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_attic_roof.png b/public/textures/mcwbyg/white_mangrove_attic_roof.png deleted file mode 100644 index f6e7dae2..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_bamboo_door.png b/public/textures/mcwbyg/white_mangrove_bamboo_door.png deleted file mode 100644 index 7b6c5989..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_bamboo_trapdoor.png b/public/textures/mcwbyg/white_mangrove_bamboo_trapdoor.png deleted file mode 100644 index d5f1dd4e..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_bark_glass_door.png b/public/textures/mcwbyg/white_mangrove_bark_glass_door.png deleted file mode 100644 index 94e54b10..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_bark_trapdoor.png b/public/textures/mcwbyg/white_mangrove_bark_trapdoor.png deleted file mode 100644 index b86af545..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_barn_door.png b/public/textures/mcwbyg/white_mangrove_barn_door.png deleted file mode 100644 index 71aec412..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_barn_glass_door.png b/public/textures/mcwbyg/white_mangrove_barn_glass_door.png deleted file mode 100644 index 7e894ae0..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_barn_trapdoor.png b/public/textures/mcwbyg/white_mangrove_barn_trapdoor.png deleted file mode 100644 index 644f98f0..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_barred_trapdoor.png b/public/textures/mcwbyg/white_mangrove_barred_trapdoor.png deleted file mode 100644 index 3997750e..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_barrel_trapdoor.png b/public/textures/mcwbyg/white_mangrove_barrel_trapdoor.png deleted file mode 100644 index 97c5e2ec..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_beach_door.png b/public/textures/mcwbyg/white_mangrove_beach_door.png deleted file mode 100644 index 62a74a88..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_beach_trapdoor.png b/public/textures/mcwbyg/white_mangrove_beach_trapdoor.png deleted file mode 100644 index c385c8e7..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_blinds.png b/public/textures/mcwbyg/white_mangrove_blinds.png deleted file mode 100644 index d34b3c98..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_blossom_trapdoor.png b/public/textures/mcwbyg/white_mangrove_blossom_trapdoor.png deleted file mode 100644 index 1b97d241..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_bookshelf.png b/public/textures/mcwbyg/white_mangrove_bookshelf.png deleted file mode 100644 index cfaaaa1a..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_bookshelf_cupboard.png b/public/textures/mcwbyg/white_mangrove_bookshelf_cupboard.png deleted file mode 100644 index f043b1c3..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_bookshelf_drawer.png b/public/textures/mcwbyg/white_mangrove_bookshelf_drawer.png deleted file mode 100644 index 76f91a50..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_bridge_pier.png b/public/textures/mcwbyg/white_mangrove_bridge_pier.png deleted file mode 100644 index 7887279e..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_chair.png b/public/textures/mcwbyg/white_mangrove_chair.png deleted file mode 100644 index e2f96614..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_classic_door.png b/public/textures/mcwbyg/white_mangrove_classic_door.png deleted file mode 100644 index 4e98fbfa..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_classic_trapdoor.png b/public/textures/mcwbyg/white_mangrove_classic_trapdoor.png deleted file mode 100644 index 52b1d58d..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_coffee_table.png b/public/textures/mcwbyg/white_mangrove_coffee_table.png deleted file mode 100644 index 94d90acf..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_cottage_door.png b/public/textures/mcwbyg/white_mangrove_cottage_door.png deleted file mode 100644 index 20999ada..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_cottage_trapdoor.png b/public/textures/mcwbyg/white_mangrove_cottage_trapdoor.png deleted file mode 100644 index 915325a8..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_counter.png b/public/textures/mcwbyg/white_mangrove_counter.png deleted file mode 100644 index 93d19335..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_covered_desk.png b/public/textures/mcwbyg/white_mangrove_covered_desk.png deleted file mode 100644 index e2379322..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_cupboard_counter.png b/public/textures/mcwbyg/white_mangrove_cupboard_counter.png deleted file mode 100644 index c4d5d36d..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_curtain_rod.png b/public/textures/mcwbyg/white_mangrove_curtain_rod.png deleted file mode 100644 index 4aa18125..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_curved_gate.png b/public/textures/mcwbyg/white_mangrove_curved_gate.png deleted file mode 100644 index 235db144..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_desk.png b/public/textures/mcwbyg/white_mangrove_desk.png deleted file mode 100644 index 5f809d7a..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_double_drawer.png b/public/textures/mcwbyg/white_mangrove_double_drawer.png deleted file mode 100644 index 2e043e3c..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_double_drawer_counter.png b/public/textures/mcwbyg/white_mangrove_double_drawer_counter.png deleted file mode 100644 index 02d96027..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_double_kitchen_cabinet.png b/public/textures/mcwbyg/white_mangrove_double_kitchen_cabinet.png deleted file mode 100644 index 3a4d3606..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_double_wardrobe.png b/public/textures/mcwbyg/white_mangrove_double_wardrobe.png deleted file mode 100644 index cad3423d..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_drawer.png b/public/textures/mcwbyg/white_mangrove_drawer.png deleted file mode 100644 index b6741be8..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_drawer_counter.png b/public/textures/mcwbyg/white_mangrove_drawer_counter.png deleted file mode 100644 index 68829bc4..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_end_table.png b/public/textures/mcwbyg/white_mangrove_end_table.png deleted file mode 100644 index 5e7e5840..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_four_panel_door.png b/public/textures/mcwbyg/white_mangrove_four_panel_door.png deleted file mode 100644 index d8ba1baf..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_four_panel_trapdoor.png b/public/textures/mcwbyg/white_mangrove_four_panel_trapdoor.png deleted file mode 100644 index d3161863..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_four_window.png b/public/textures/mcwbyg/white_mangrove_four_window.png deleted file mode 100644 index aa5d0ab6..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_glass_door.png b/public/textures/mcwbyg/white_mangrove_glass_door.png deleted file mode 100644 index fe52b25b..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_glass_kitchen_cabinet.png b/public/textures/mcwbyg/white_mangrove_glass_kitchen_cabinet.png deleted file mode 100644 index b0245e9b..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_glass_table.png b/public/textures/mcwbyg/white_mangrove_glass_table.png deleted file mode 100644 index eed4b19e..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_glass_trapdoor.png b/public/textures/mcwbyg/white_mangrove_glass_trapdoor.png deleted file mode 100644 index b8343a01..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_hedge.png b/public/textures/mcwbyg/white_mangrove_hedge.png deleted file mode 100644 index 03ec26f6..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_highley_gate.png b/public/textures/mcwbyg/white_mangrove_highley_gate.png deleted file mode 100644 index 31b90f91..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_horse_fence.png b/public/textures/mcwbyg/white_mangrove_horse_fence.png deleted file mode 100644 index 303573bf..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_japanese2_door.png b/public/textures/mcwbyg/white_mangrove_japanese2_door.png deleted file mode 100644 index 758bcb0c..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_japanese_door.png b/public/textures/mcwbyg/white_mangrove_japanese_door.png deleted file mode 100644 index bdffbc92..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_kitchen_cabinet.png b/public/textures/mcwbyg/white_mangrove_kitchen_cabinet.png deleted file mode 100644 index b50c684c..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_large_drawer.png b/public/textures/mcwbyg/white_mangrove_large_drawer.png deleted file mode 100644 index 89daa740..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_log_bridge_middle.png b/public/textures/mcwbyg/white_mangrove_log_bridge_middle.png deleted file mode 100644 index 8400ea94..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_log_bridge_stair.png b/public/textures/mcwbyg/white_mangrove_log_bridge_stair.png deleted file mode 100644 index 42fd9ff9..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_log_parapet.png b/public/textures/mcwbyg/white_mangrove_log_parapet.png deleted file mode 100644 index 2b03822c..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_louvered_shutter.png b/public/textures/mcwbyg/white_mangrove_louvered_shutter.png deleted file mode 100644 index 238a0796..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_lower_bookshelf_drawer.png b/public/textures/mcwbyg/white_mangrove_lower_bookshelf_drawer.png deleted file mode 100644 index 9f65a07f..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_lower_roof.png b/public/textures/mcwbyg/white_mangrove_lower_roof.png deleted file mode 100644 index 43d63f85..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_lower_triple_drawer.png b/public/textures/mcwbyg/white_mangrove_lower_triple_drawer.png deleted file mode 100644 index 94f1e72e..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_modern_chair.png b/public/textures/mcwbyg/white_mangrove_modern_chair.png deleted file mode 100644 index dd8c81f9..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_modern_desk.png b/public/textures/mcwbyg/white_mangrove_modern_desk.png deleted file mode 100644 index 0e6794d5..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_modern_door.png b/public/textures/mcwbyg/white_mangrove_modern_door.png deleted file mode 100644 index e8ff282f..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_modern_wardrobe.png b/public/textures/mcwbyg/white_mangrove_modern_wardrobe.png deleted file mode 100644 index fcf80285..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_mystic_door.png b/public/textures/mcwbyg/white_mangrove_mystic_door.png deleted file mode 100644 index 9117c1b6..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_mystic_trapdoor.png b/public/textures/mcwbyg/white_mangrove_mystic_trapdoor.png deleted file mode 100644 index 6dd9c865..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_nether_door.png b/public/textures/mcwbyg/white_mangrove_nether_door.png deleted file mode 100644 index 1889b8c5..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_pane_window.png b/public/textures/mcwbyg/white_mangrove_pane_window.png deleted file mode 100644 index ee519552..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_paper_door.png b/public/textures/mcwbyg/white_mangrove_paper_door.png deleted file mode 100644 index 1cada65e..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_paper_trapdoor.png b/public/textures/mcwbyg/white_mangrove_paper_trapdoor.png deleted file mode 100644 index f50d25e0..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_picket_fence.png b/public/textures/mcwbyg/white_mangrove_picket_fence.png deleted file mode 100644 index 259f7e4c..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_plank_four_window.png b/public/textures/mcwbyg/white_mangrove_plank_four_window.png deleted file mode 100644 index 87edf138..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_plank_pane_window.png b/public/textures/mcwbyg/white_mangrove_plank_pane_window.png deleted file mode 100644 index 18f7c6b6..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_plank_parapet.png b/public/textures/mcwbyg/white_mangrove_plank_parapet.png deleted file mode 100644 index d0bdc70e..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_plank_window.png b/public/textures/mcwbyg/white_mangrove_plank_window.png deleted file mode 100644 index 2f03e130..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_plank_window2.png b/public/textures/mcwbyg/white_mangrove_plank_window2.png deleted file mode 100644 index d2dadc04..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_planks_attic_roof.png b/public/textures/mcwbyg/white_mangrove_planks_attic_roof.png deleted file mode 100644 index e8728c20..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_planks_lower_roof.png b/public/textures/mcwbyg/white_mangrove_planks_lower_roof.png deleted file mode 100644 index 2b11705d..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_planks_path.png b/public/textures/mcwbyg/white_mangrove_planks_path.png deleted file mode 100644 index 019ccc39..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_planks_roof.png b/public/textures/mcwbyg/white_mangrove_planks_roof.png deleted file mode 100644 index 28e510d7..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_planks_steep_roof.png b/public/textures/mcwbyg/white_mangrove_planks_steep_roof.png deleted file mode 100644 index e657d0ba..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_planks_top_roof.png b/public/textures/mcwbyg/white_mangrove_planks_top_roof.png deleted file mode 100644 index e0f3da28..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_planks_upper_lower_roof.png b/public/textures/mcwbyg/white_mangrove_planks_upper_lower_roof.png deleted file mode 100644 index 8f02d86e..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_planks_upper_steep_roof.png b/public/textures/mcwbyg/white_mangrove_planks_upper_steep_roof.png deleted file mode 100644 index b4b60016..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_pyramid_gate.png b/public/textures/mcwbyg/white_mangrove_pyramid_gate.png deleted file mode 100644 index 96e5e6a1..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_rail_bridge.png b/public/textures/mcwbyg/white_mangrove_rail_bridge.png deleted file mode 100644 index 705fc626..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_ranch_trapdoor.png b/public/textures/mcwbyg/white_mangrove_ranch_trapdoor.png deleted file mode 100644 index de9184e3..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_roof.png b/public/textures/mcwbyg/white_mangrove_roof.png deleted file mode 100644 index e8dc08b0..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_rope_bridge_stair.png b/public/textures/mcwbyg/white_mangrove_rope_bridge_stair.png deleted file mode 100644 index 2b411a75..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_shutter.png b/public/textures/mcwbyg/white_mangrove_shutter.png deleted file mode 100644 index bc9bb8a6..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_stable_door.png b/public/textures/mcwbyg/white_mangrove_stable_door.png deleted file mode 100644 index 51cc7e18..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_stable_head_door.png b/public/textures/mcwbyg/white_mangrove_stable_head_door.png deleted file mode 100644 index 5fca0dbe..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_steep_roof.png b/public/textures/mcwbyg/white_mangrove_steep_roof.png deleted file mode 100644 index df9c51b1..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_stockade_fence.png b/public/textures/mcwbyg/white_mangrove_stockade_fence.png deleted file mode 100644 index 6494e7b1..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_stool_chair.png b/public/textures/mcwbyg/white_mangrove_stool_chair.png deleted file mode 100644 index e8ed2147..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_striped_chair.png b/public/textures/mcwbyg/white_mangrove_striped_chair.png deleted file mode 100644 index e4e5c784..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_swamp_door.png b/public/textures/mcwbyg/white_mangrove_swamp_door.png deleted file mode 100644 index 8448095d..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_swamp_trapdoor.png b/public/textures/mcwbyg/white_mangrove_swamp_trapdoor.png deleted file mode 100644 index 642336c7..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_table.png b/public/textures/mcwbyg/white_mangrove_table.png deleted file mode 100644 index 36f14f24..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_top_roof.png b/public/textures/mcwbyg/white_mangrove_top_roof.png deleted file mode 100644 index ce871a60..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_triple_drawer.png b/public/textures/mcwbyg/white_mangrove_triple_drawer.png deleted file mode 100644 index 603bfb52..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_tropical_door.png b/public/textures/mcwbyg/white_mangrove_tropical_door.png deleted file mode 100644 index c2e79796..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_tropical_trapdoor.png b/public/textures/mcwbyg/white_mangrove_tropical_trapdoor.png deleted file mode 100644 index 672f0764..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_upper_lower_roof.png b/public/textures/mcwbyg/white_mangrove_upper_lower_roof.png deleted file mode 100644 index 6b4c5664..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_upper_steep_roof.png b/public/textures/mcwbyg/white_mangrove_upper_steep_roof.png deleted file mode 100644 index c10830db..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_waffle_door.png b/public/textures/mcwbyg/white_mangrove_waffle_door.png deleted file mode 100644 index 5479f603..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_wardrobe.png b/public/textures/mcwbyg/white_mangrove_wardrobe.png deleted file mode 100644 index e3102084..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_western_door.png b/public/textures/mcwbyg/white_mangrove_western_door.png deleted file mode 100644 index 54541a49..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_whispering_door.png b/public/textures/mcwbyg/white_mangrove_whispering_door.png deleted file mode 100644 index 9f9fe663..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_whispering_trapdoor.png b/public/textures/mcwbyg/white_mangrove_whispering_trapdoor.png deleted file mode 100644 index df766997..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_window.png b/public/textures/mcwbyg/white_mangrove_window.png deleted file mode 100644 index f3c07203..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_window2.png b/public/textures/mcwbyg/white_mangrove_window2.png deleted file mode 100644 index fc919dff..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_mangrove_wired_fence.png b/public/textures/mcwbyg/white_mangrove_wired_fence.png deleted file mode 100644 index 479e2e6f..00000000 Binary files a/public/textures/mcwbyg/white_mangrove_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sakura_hedge.png b/public/textures/mcwbyg/white_sakura_hedge.png deleted file mode 100644 index eb1ca4dc..00000000 Binary files a/public/textures/mcwbyg/white_sakura_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_attic_roof.png b/public/textures/mcwbyg/white_sandstone_attic_roof.png deleted file mode 100644 index 1732db39..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_bridge.png b/public/textures/mcwbyg/white_sandstone_bridge.png deleted file mode 100644 index e85865d6..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_bridge_pier.png b/public/textures/mcwbyg/white_sandstone_bridge_pier.png deleted file mode 100644 index 0c84ecc2..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_bridge_stair.png b/public/textures/mcwbyg/white_sandstone_bridge_stair.png deleted file mode 100644 index c904685f..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_grass_topped_wall.png b/public/textures/mcwbyg/white_sandstone_grass_topped_wall.png deleted file mode 100644 index dd618afa..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_lower_roof.png b/public/textures/mcwbyg/white_sandstone_lower_roof.png deleted file mode 100644 index 972d77c3..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_pillar_wall.png b/public/textures/mcwbyg/white_sandstone_pillar_wall.png deleted file mode 100644 index 17b7510d..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_railing_gate.png b/public/textures/mcwbyg/white_sandstone_railing_gate.png deleted file mode 100644 index 60cbe61c..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_roof.png b/public/textures/mcwbyg/white_sandstone_roof.png deleted file mode 100644 index 6a4dc362..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_steep_roof.png b/public/textures/mcwbyg/white_sandstone_steep_roof.png deleted file mode 100644 index 8dac39a1..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_top_roof.png b/public/textures/mcwbyg/white_sandstone_top_roof.png deleted file mode 100644 index 873974b6..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_upper_lower_roof.png b/public/textures/mcwbyg/white_sandstone_upper_lower_roof.png deleted file mode 100644 index a6341ec0..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/white_sandstone_upper_steep_roof.png b/public/textures/mcwbyg/white_sandstone_upper_steep_roof.png deleted file mode 100644 index ff8e6084..00000000 Binary files a/public/textures/mcwbyg/white_sandstone_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_attic_roof.png b/public/textures/mcwbyg/willow_attic_roof.png deleted file mode 100644 index abeff41b..00000000 Binary files a/public/textures/mcwbyg/willow_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_bamboo_door.png b/public/textures/mcwbyg/willow_bamboo_door.png deleted file mode 100644 index 061032f8..00000000 Binary files a/public/textures/mcwbyg/willow_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_bamboo_trapdoor.png b/public/textures/mcwbyg/willow_bamboo_trapdoor.png deleted file mode 100644 index 188f1374..00000000 Binary files a/public/textures/mcwbyg/willow_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_bark_glass_door.png b/public/textures/mcwbyg/willow_bark_glass_door.png deleted file mode 100644 index 9c61d24a..00000000 Binary files a/public/textures/mcwbyg/willow_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_bark_trapdoor.png b/public/textures/mcwbyg/willow_bark_trapdoor.png deleted file mode 100644 index 92db0501..00000000 Binary files a/public/textures/mcwbyg/willow_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_barn_door.png b/public/textures/mcwbyg/willow_barn_door.png deleted file mode 100644 index a1d5d057..00000000 Binary files a/public/textures/mcwbyg/willow_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_barn_glass_door.png b/public/textures/mcwbyg/willow_barn_glass_door.png deleted file mode 100644 index a25f70cf..00000000 Binary files a/public/textures/mcwbyg/willow_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_barn_trapdoor.png b/public/textures/mcwbyg/willow_barn_trapdoor.png deleted file mode 100644 index 11f6ac15..00000000 Binary files a/public/textures/mcwbyg/willow_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_barred_trapdoor.png b/public/textures/mcwbyg/willow_barred_trapdoor.png deleted file mode 100644 index 65eb1ffe..00000000 Binary files a/public/textures/mcwbyg/willow_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_barrel_trapdoor.png b/public/textures/mcwbyg/willow_barrel_trapdoor.png deleted file mode 100644 index abe07b1c..00000000 Binary files a/public/textures/mcwbyg/willow_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_beach_door.png b/public/textures/mcwbyg/willow_beach_door.png deleted file mode 100644 index a1700afb..00000000 Binary files a/public/textures/mcwbyg/willow_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_beach_trapdoor.png b/public/textures/mcwbyg/willow_beach_trapdoor.png deleted file mode 100644 index 7d1a77f2..00000000 Binary files a/public/textures/mcwbyg/willow_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_blinds.png b/public/textures/mcwbyg/willow_blinds.png deleted file mode 100644 index 3e8a035a..00000000 Binary files a/public/textures/mcwbyg/willow_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_blossom_trapdoor.png b/public/textures/mcwbyg/willow_blossom_trapdoor.png deleted file mode 100644 index a15b82e3..00000000 Binary files a/public/textures/mcwbyg/willow_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_bookshelf.png b/public/textures/mcwbyg/willow_bookshelf.png deleted file mode 100644 index 647d90f7..00000000 Binary files a/public/textures/mcwbyg/willow_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_bookshelf_cupboard.png b/public/textures/mcwbyg/willow_bookshelf_cupboard.png deleted file mode 100644 index e7a5a15c..00000000 Binary files a/public/textures/mcwbyg/willow_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_bookshelf_drawer.png b/public/textures/mcwbyg/willow_bookshelf_drawer.png deleted file mode 100644 index 39157a72..00000000 Binary files a/public/textures/mcwbyg/willow_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_bridge_pier.png b/public/textures/mcwbyg/willow_bridge_pier.png deleted file mode 100644 index 0ed93792..00000000 Binary files a/public/textures/mcwbyg/willow_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_chair.png b/public/textures/mcwbyg/willow_chair.png deleted file mode 100644 index 88eab502..00000000 Binary files a/public/textures/mcwbyg/willow_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_classic_door.png b/public/textures/mcwbyg/willow_classic_door.png deleted file mode 100644 index 91c647e3..00000000 Binary files a/public/textures/mcwbyg/willow_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_classic_trapdoor.png b/public/textures/mcwbyg/willow_classic_trapdoor.png deleted file mode 100644 index f97271ba..00000000 Binary files a/public/textures/mcwbyg/willow_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_coffee_table.png b/public/textures/mcwbyg/willow_coffee_table.png deleted file mode 100644 index 2b0394b0..00000000 Binary files a/public/textures/mcwbyg/willow_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_cottage_door.png b/public/textures/mcwbyg/willow_cottage_door.png deleted file mode 100644 index 837b1258..00000000 Binary files a/public/textures/mcwbyg/willow_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_cottage_trapdoor.png b/public/textures/mcwbyg/willow_cottage_trapdoor.png deleted file mode 100644 index bb74a908..00000000 Binary files a/public/textures/mcwbyg/willow_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_counter.png b/public/textures/mcwbyg/willow_counter.png deleted file mode 100644 index 585dc951..00000000 Binary files a/public/textures/mcwbyg/willow_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_covered_desk.png b/public/textures/mcwbyg/willow_covered_desk.png deleted file mode 100644 index f1f7c278..00000000 Binary files a/public/textures/mcwbyg/willow_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_cupboard_counter.png b/public/textures/mcwbyg/willow_cupboard_counter.png deleted file mode 100644 index 53e19926..00000000 Binary files a/public/textures/mcwbyg/willow_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_curtain_rod.png b/public/textures/mcwbyg/willow_curtain_rod.png deleted file mode 100644 index 0c709725..00000000 Binary files a/public/textures/mcwbyg/willow_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_curved_gate.png b/public/textures/mcwbyg/willow_curved_gate.png deleted file mode 100644 index eac2b69d..00000000 Binary files a/public/textures/mcwbyg/willow_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_desk.png b/public/textures/mcwbyg/willow_desk.png deleted file mode 100644 index e35a813d..00000000 Binary files a/public/textures/mcwbyg/willow_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_double_drawer.png b/public/textures/mcwbyg/willow_double_drawer.png deleted file mode 100644 index 344b378d..00000000 Binary files a/public/textures/mcwbyg/willow_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_double_drawer_counter.png b/public/textures/mcwbyg/willow_double_drawer_counter.png deleted file mode 100644 index c8162da6..00000000 Binary files a/public/textures/mcwbyg/willow_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_double_kitchen_cabinet.png b/public/textures/mcwbyg/willow_double_kitchen_cabinet.png deleted file mode 100644 index 3ab6f564..00000000 Binary files a/public/textures/mcwbyg/willow_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_double_wardrobe.png b/public/textures/mcwbyg/willow_double_wardrobe.png deleted file mode 100644 index 1a662c85..00000000 Binary files a/public/textures/mcwbyg/willow_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_drawer.png b/public/textures/mcwbyg/willow_drawer.png deleted file mode 100644 index 56b4bb5d..00000000 Binary files a/public/textures/mcwbyg/willow_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_drawer_counter.png b/public/textures/mcwbyg/willow_drawer_counter.png deleted file mode 100644 index 6669d479..00000000 Binary files a/public/textures/mcwbyg/willow_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_end_table.png b/public/textures/mcwbyg/willow_end_table.png deleted file mode 100644 index 7729c589..00000000 Binary files a/public/textures/mcwbyg/willow_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_four_panel_door.png b/public/textures/mcwbyg/willow_four_panel_door.png deleted file mode 100644 index bb654639..00000000 Binary files a/public/textures/mcwbyg/willow_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_four_panel_trapdoor.png b/public/textures/mcwbyg/willow_four_panel_trapdoor.png deleted file mode 100644 index 1a7be888..00000000 Binary files a/public/textures/mcwbyg/willow_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_four_window.png b/public/textures/mcwbyg/willow_four_window.png deleted file mode 100644 index 392d7433..00000000 Binary files a/public/textures/mcwbyg/willow_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_glass_door.png b/public/textures/mcwbyg/willow_glass_door.png deleted file mode 100644 index 096f71d9..00000000 Binary files a/public/textures/mcwbyg/willow_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_glass_kitchen_cabinet.png b/public/textures/mcwbyg/willow_glass_kitchen_cabinet.png deleted file mode 100644 index d76b7b98..00000000 Binary files a/public/textures/mcwbyg/willow_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_glass_table.png b/public/textures/mcwbyg/willow_glass_table.png deleted file mode 100644 index a69aa44f..00000000 Binary files a/public/textures/mcwbyg/willow_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_glass_trapdoor.png b/public/textures/mcwbyg/willow_glass_trapdoor.png deleted file mode 100644 index 7423a195..00000000 Binary files a/public/textures/mcwbyg/willow_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_hedge.png b/public/textures/mcwbyg/willow_hedge.png deleted file mode 100644 index 26ed73bd..00000000 Binary files a/public/textures/mcwbyg/willow_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_highley_gate.png b/public/textures/mcwbyg/willow_highley_gate.png deleted file mode 100644 index 52e159e8..00000000 Binary files a/public/textures/mcwbyg/willow_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_horse_fence.png b/public/textures/mcwbyg/willow_horse_fence.png deleted file mode 100644 index 7af2bb4b..00000000 Binary files a/public/textures/mcwbyg/willow_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_japanese2_door.png b/public/textures/mcwbyg/willow_japanese2_door.png deleted file mode 100644 index ebfa61b9..00000000 Binary files a/public/textures/mcwbyg/willow_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_japanese_door.png b/public/textures/mcwbyg/willow_japanese_door.png deleted file mode 100644 index a13df543..00000000 Binary files a/public/textures/mcwbyg/willow_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_kitchen_cabinet.png b/public/textures/mcwbyg/willow_kitchen_cabinet.png deleted file mode 100644 index 28958660..00000000 Binary files a/public/textures/mcwbyg/willow_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_large_drawer.png b/public/textures/mcwbyg/willow_large_drawer.png deleted file mode 100644 index ef14134d..00000000 Binary files a/public/textures/mcwbyg/willow_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_log_bridge_middle.png b/public/textures/mcwbyg/willow_log_bridge_middle.png deleted file mode 100644 index b999fc03..00000000 Binary files a/public/textures/mcwbyg/willow_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_log_bridge_stair.png b/public/textures/mcwbyg/willow_log_bridge_stair.png deleted file mode 100644 index 42e8b727..00000000 Binary files a/public/textures/mcwbyg/willow_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_log_parapet.png b/public/textures/mcwbyg/willow_log_parapet.png deleted file mode 100644 index e6a7726f..00000000 Binary files a/public/textures/mcwbyg/willow_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_louvered_shutter.png b/public/textures/mcwbyg/willow_louvered_shutter.png deleted file mode 100644 index a9e5567b..00000000 Binary files a/public/textures/mcwbyg/willow_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_lower_bookshelf_drawer.png b/public/textures/mcwbyg/willow_lower_bookshelf_drawer.png deleted file mode 100644 index b1d3e35a..00000000 Binary files a/public/textures/mcwbyg/willow_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_lower_roof.png b/public/textures/mcwbyg/willow_lower_roof.png deleted file mode 100644 index 1e4eed3f..00000000 Binary files a/public/textures/mcwbyg/willow_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_lower_triple_drawer.png b/public/textures/mcwbyg/willow_lower_triple_drawer.png deleted file mode 100644 index 27d009b4..00000000 Binary files a/public/textures/mcwbyg/willow_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_modern_chair.png b/public/textures/mcwbyg/willow_modern_chair.png deleted file mode 100644 index 1f6fb99c..00000000 Binary files a/public/textures/mcwbyg/willow_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_modern_desk.png b/public/textures/mcwbyg/willow_modern_desk.png deleted file mode 100644 index 2fc66fd3..00000000 Binary files a/public/textures/mcwbyg/willow_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_modern_door.png b/public/textures/mcwbyg/willow_modern_door.png deleted file mode 100644 index 421706eb..00000000 Binary files a/public/textures/mcwbyg/willow_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_modern_wardrobe.png b/public/textures/mcwbyg/willow_modern_wardrobe.png deleted file mode 100644 index e8f0c43f..00000000 Binary files a/public/textures/mcwbyg/willow_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_mystic_door.png b/public/textures/mcwbyg/willow_mystic_door.png deleted file mode 100644 index d59a73b6..00000000 Binary files a/public/textures/mcwbyg/willow_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_mystic_trapdoor.png b/public/textures/mcwbyg/willow_mystic_trapdoor.png deleted file mode 100644 index 7985c765..00000000 Binary files a/public/textures/mcwbyg/willow_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_nether_door.png b/public/textures/mcwbyg/willow_nether_door.png deleted file mode 100644 index 709a67ae..00000000 Binary files a/public/textures/mcwbyg/willow_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_pane_window.png b/public/textures/mcwbyg/willow_pane_window.png deleted file mode 100644 index eca48e22..00000000 Binary files a/public/textures/mcwbyg/willow_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_paper_door.png b/public/textures/mcwbyg/willow_paper_door.png deleted file mode 100644 index c522604b..00000000 Binary files a/public/textures/mcwbyg/willow_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_paper_trapdoor.png b/public/textures/mcwbyg/willow_paper_trapdoor.png deleted file mode 100644 index bcdee40f..00000000 Binary files a/public/textures/mcwbyg/willow_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_picket_fence.png b/public/textures/mcwbyg/willow_picket_fence.png deleted file mode 100644 index efdf4f80..00000000 Binary files a/public/textures/mcwbyg/willow_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_plank_four_window.png b/public/textures/mcwbyg/willow_plank_four_window.png deleted file mode 100644 index efb78758..00000000 Binary files a/public/textures/mcwbyg/willow_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_plank_pane_window.png b/public/textures/mcwbyg/willow_plank_pane_window.png deleted file mode 100644 index 91b99a06..00000000 Binary files a/public/textures/mcwbyg/willow_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_plank_parapet.png b/public/textures/mcwbyg/willow_plank_parapet.png deleted file mode 100644 index 3e014e66..00000000 Binary files a/public/textures/mcwbyg/willow_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_plank_window.png b/public/textures/mcwbyg/willow_plank_window.png deleted file mode 100644 index dc4dbdde..00000000 Binary files a/public/textures/mcwbyg/willow_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_plank_window2.png b/public/textures/mcwbyg/willow_plank_window2.png deleted file mode 100644 index e64b8e9d..00000000 Binary files a/public/textures/mcwbyg/willow_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_planks_attic_roof.png b/public/textures/mcwbyg/willow_planks_attic_roof.png deleted file mode 100644 index 3602ef01..00000000 Binary files a/public/textures/mcwbyg/willow_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_planks_lower_roof.png b/public/textures/mcwbyg/willow_planks_lower_roof.png deleted file mode 100644 index 2a61a6e4..00000000 Binary files a/public/textures/mcwbyg/willow_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_planks_path.png b/public/textures/mcwbyg/willow_planks_path.png deleted file mode 100644 index e157e50f..00000000 Binary files a/public/textures/mcwbyg/willow_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_planks_roof.png b/public/textures/mcwbyg/willow_planks_roof.png deleted file mode 100644 index 108f9b39..00000000 Binary files a/public/textures/mcwbyg/willow_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_planks_steep_roof.png b/public/textures/mcwbyg/willow_planks_steep_roof.png deleted file mode 100644 index 4cc8c7e6..00000000 Binary files a/public/textures/mcwbyg/willow_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_planks_top_roof.png b/public/textures/mcwbyg/willow_planks_top_roof.png deleted file mode 100644 index 117d019f..00000000 Binary files a/public/textures/mcwbyg/willow_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_planks_upper_lower_roof.png b/public/textures/mcwbyg/willow_planks_upper_lower_roof.png deleted file mode 100644 index 6728a069..00000000 Binary files a/public/textures/mcwbyg/willow_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_planks_upper_steep_roof.png b/public/textures/mcwbyg/willow_planks_upper_steep_roof.png deleted file mode 100644 index fd4b8c0c..00000000 Binary files a/public/textures/mcwbyg/willow_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_pyramid_gate.png b/public/textures/mcwbyg/willow_pyramid_gate.png deleted file mode 100644 index 959f3079..00000000 Binary files a/public/textures/mcwbyg/willow_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_rail_bridge.png b/public/textures/mcwbyg/willow_rail_bridge.png deleted file mode 100644 index b93e8dd0..00000000 Binary files a/public/textures/mcwbyg/willow_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_ranch_trapdoor.png b/public/textures/mcwbyg/willow_ranch_trapdoor.png deleted file mode 100644 index f2c3e26c..00000000 Binary files a/public/textures/mcwbyg/willow_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_roof.png b/public/textures/mcwbyg/willow_roof.png deleted file mode 100644 index e02d1d9f..00000000 Binary files a/public/textures/mcwbyg/willow_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_rope_bridge_stair.png b/public/textures/mcwbyg/willow_rope_bridge_stair.png deleted file mode 100644 index 4fb121ca..00000000 Binary files a/public/textures/mcwbyg/willow_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_shutter.png b/public/textures/mcwbyg/willow_shutter.png deleted file mode 100644 index ec9309b3..00000000 Binary files a/public/textures/mcwbyg/willow_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_stable_door.png b/public/textures/mcwbyg/willow_stable_door.png deleted file mode 100644 index 5a4fabaf..00000000 Binary files a/public/textures/mcwbyg/willow_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_stable_head_door.png b/public/textures/mcwbyg/willow_stable_head_door.png deleted file mode 100644 index 4cca186b..00000000 Binary files a/public/textures/mcwbyg/willow_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_steep_roof.png b/public/textures/mcwbyg/willow_steep_roof.png deleted file mode 100644 index f4b5a951..00000000 Binary files a/public/textures/mcwbyg/willow_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_stockade_fence.png b/public/textures/mcwbyg/willow_stockade_fence.png deleted file mode 100644 index 2fb8b943..00000000 Binary files a/public/textures/mcwbyg/willow_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_stool_chair.png b/public/textures/mcwbyg/willow_stool_chair.png deleted file mode 100644 index e3bcaf90..00000000 Binary files a/public/textures/mcwbyg/willow_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_striped_chair.png b/public/textures/mcwbyg/willow_striped_chair.png deleted file mode 100644 index 27fce58a..00000000 Binary files a/public/textures/mcwbyg/willow_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_swamp_door.png b/public/textures/mcwbyg/willow_swamp_door.png deleted file mode 100644 index cfcb6fb6..00000000 Binary files a/public/textures/mcwbyg/willow_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_swamp_trapdoor.png b/public/textures/mcwbyg/willow_swamp_trapdoor.png deleted file mode 100644 index d699926a..00000000 Binary files a/public/textures/mcwbyg/willow_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_table.png b/public/textures/mcwbyg/willow_table.png deleted file mode 100644 index 280e7cf5..00000000 Binary files a/public/textures/mcwbyg/willow_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_top_roof.png b/public/textures/mcwbyg/willow_top_roof.png deleted file mode 100644 index 821e795d..00000000 Binary files a/public/textures/mcwbyg/willow_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_triple_drawer.png b/public/textures/mcwbyg/willow_triple_drawer.png deleted file mode 100644 index 25f660f0..00000000 Binary files a/public/textures/mcwbyg/willow_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_tropical_door.png b/public/textures/mcwbyg/willow_tropical_door.png deleted file mode 100644 index 25bae367..00000000 Binary files a/public/textures/mcwbyg/willow_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_tropical_trapdoor.png b/public/textures/mcwbyg/willow_tropical_trapdoor.png deleted file mode 100644 index 03b59f70..00000000 Binary files a/public/textures/mcwbyg/willow_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_upper_lower_roof.png b/public/textures/mcwbyg/willow_upper_lower_roof.png deleted file mode 100644 index b49545f5..00000000 Binary files a/public/textures/mcwbyg/willow_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_upper_steep_roof.png b/public/textures/mcwbyg/willow_upper_steep_roof.png deleted file mode 100644 index 7ba2ebbb..00000000 Binary files a/public/textures/mcwbyg/willow_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_waffle_door.png b/public/textures/mcwbyg/willow_waffle_door.png deleted file mode 100644 index 91ca8013..00000000 Binary files a/public/textures/mcwbyg/willow_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_wardrobe.png b/public/textures/mcwbyg/willow_wardrobe.png deleted file mode 100644 index dbe07bc3..00000000 Binary files a/public/textures/mcwbyg/willow_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_western_door.png b/public/textures/mcwbyg/willow_western_door.png deleted file mode 100644 index 7c066ddb..00000000 Binary files a/public/textures/mcwbyg/willow_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_whispering_door.png b/public/textures/mcwbyg/willow_whispering_door.png deleted file mode 100644 index 1b0b78fc..00000000 Binary files a/public/textures/mcwbyg/willow_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_whispering_trapdoor.png b/public/textures/mcwbyg/willow_whispering_trapdoor.png deleted file mode 100644 index ee3d990d..00000000 Binary files a/public/textures/mcwbyg/willow_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_window.png b/public/textures/mcwbyg/willow_window.png deleted file mode 100644 index f15228c0..00000000 Binary files a/public/textures/mcwbyg/willow_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_window2.png b/public/textures/mcwbyg/willow_window2.png deleted file mode 100644 index ac0c852b..00000000 Binary files a/public/textures/mcwbyg/willow_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/willow_wired_fence.png b/public/textures/mcwbyg/willow_wired_fence.png deleted file mode 100644 index af6b2bd3..00000000 Binary files a/public/textures/mcwbyg/willow_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_attic_roof.png b/public/textures/mcwbyg/windswept_sandstone_attic_roof.png deleted file mode 100644 index a892d43b..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_bridge.png b/public/textures/mcwbyg/windswept_sandstone_bridge.png deleted file mode 100644 index 44edb3d4..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_bridge_pier.png b/public/textures/mcwbyg/windswept_sandstone_bridge_pier.png deleted file mode 100644 index 29c137bc..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_bridge_stair.png b/public/textures/mcwbyg/windswept_sandstone_bridge_stair.png deleted file mode 100644 index da1aa6fe..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_grass_topped_wall.png b/public/textures/mcwbyg/windswept_sandstone_grass_topped_wall.png deleted file mode 100644 index 6c4adbc0..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_lower_roof.png b/public/textures/mcwbyg/windswept_sandstone_lower_roof.png deleted file mode 100644 index c0dd2079..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_pillar_wall.png b/public/textures/mcwbyg/windswept_sandstone_pillar_wall.png deleted file mode 100644 index 11024739..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_railing_gate.png b/public/textures/mcwbyg/windswept_sandstone_railing_gate.png deleted file mode 100644 index 60783a17..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_roof.png b/public/textures/mcwbyg/windswept_sandstone_roof.png deleted file mode 100644 index 9f34b1e7..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_steep_roof.png b/public/textures/mcwbyg/windswept_sandstone_steep_roof.png deleted file mode 100644 index ad701eb6..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_top_roof.png b/public/textures/mcwbyg/windswept_sandstone_top_roof.png deleted file mode 100644 index a8e8bf06..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_upper_lower_roof.png b/public/textures/mcwbyg/windswept_sandstone_upper_lower_roof.png deleted file mode 100644 index 15fc351f..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/windswept_sandstone_upper_steep_roof.png b/public/textures/mcwbyg/windswept_sandstone_upper_steep_roof.png deleted file mode 100644 index c1335f82..00000000 Binary files a/public/textures/mcwbyg/windswept_sandstone_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_attic_roof.png b/public/textures/mcwbyg/witch_hazel_attic_roof.png deleted file mode 100644 index c6959162..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_bamboo_door.png b/public/textures/mcwbyg/witch_hazel_bamboo_door.png deleted file mode 100644 index 986db2ff..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_bamboo_trapdoor.png b/public/textures/mcwbyg/witch_hazel_bamboo_trapdoor.png deleted file mode 100644 index e55d90f8..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_bark_glass_door.png b/public/textures/mcwbyg/witch_hazel_bark_glass_door.png deleted file mode 100644 index 0c84ce40..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_bark_trapdoor.png b/public/textures/mcwbyg/witch_hazel_bark_trapdoor.png deleted file mode 100644 index 9b326d75..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_barn_door.png b/public/textures/mcwbyg/witch_hazel_barn_door.png deleted file mode 100644 index 3c9d6bb5..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_barn_glass_door.png b/public/textures/mcwbyg/witch_hazel_barn_glass_door.png deleted file mode 100644 index 30ff646b..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_barn_trapdoor.png b/public/textures/mcwbyg/witch_hazel_barn_trapdoor.png deleted file mode 100644 index f8fc1ecc..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_barred_trapdoor.png b/public/textures/mcwbyg/witch_hazel_barred_trapdoor.png deleted file mode 100644 index fb5ebbc7..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_barrel_trapdoor.png b/public/textures/mcwbyg/witch_hazel_barrel_trapdoor.png deleted file mode 100644 index 82d22217..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_beach_door.png b/public/textures/mcwbyg/witch_hazel_beach_door.png deleted file mode 100644 index 9b22d182..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_beach_trapdoor.png b/public/textures/mcwbyg/witch_hazel_beach_trapdoor.png deleted file mode 100644 index 1e18dd22..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_blinds.png b/public/textures/mcwbyg/witch_hazel_blinds.png deleted file mode 100644 index da88bc5d..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_blossom_trapdoor.png b/public/textures/mcwbyg/witch_hazel_blossom_trapdoor.png deleted file mode 100644 index 2768a80a..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_bookshelf.png b/public/textures/mcwbyg/witch_hazel_bookshelf.png deleted file mode 100644 index 73a5267c..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_bookshelf_cupboard.png b/public/textures/mcwbyg/witch_hazel_bookshelf_cupboard.png deleted file mode 100644 index 13ed5a2b..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_bookshelf_drawer.png b/public/textures/mcwbyg/witch_hazel_bookshelf_drawer.png deleted file mode 100644 index a96fb3c2..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_bridge_pier.png b/public/textures/mcwbyg/witch_hazel_bridge_pier.png deleted file mode 100644 index db1eb0b7..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_chair.png b/public/textures/mcwbyg/witch_hazel_chair.png deleted file mode 100644 index bb4bcb62..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_classic_door.png b/public/textures/mcwbyg/witch_hazel_classic_door.png deleted file mode 100644 index 4d7c9053..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_classic_trapdoor.png b/public/textures/mcwbyg/witch_hazel_classic_trapdoor.png deleted file mode 100644 index 2fdc7852..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_coffee_table.png b/public/textures/mcwbyg/witch_hazel_coffee_table.png deleted file mode 100644 index 69e4d6bc..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_cottage_door.png b/public/textures/mcwbyg/witch_hazel_cottage_door.png deleted file mode 100644 index fe524d4b..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_cottage_trapdoor.png b/public/textures/mcwbyg/witch_hazel_cottage_trapdoor.png deleted file mode 100644 index f1ab0d4e..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_counter.png b/public/textures/mcwbyg/witch_hazel_counter.png deleted file mode 100644 index 732cfcf2..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_covered_desk.png b/public/textures/mcwbyg/witch_hazel_covered_desk.png deleted file mode 100644 index c685a647..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_cupboard_counter.png b/public/textures/mcwbyg/witch_hazel_cupboard_counter.png deleted file mode 100644 index 180e344b..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_curtain_rod.png b/public/textures/mcwbyg/witch_hazel_curtain_rod.png deleted file mode 100644 index 6c777402..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_curved_gate.png b/public/textures/mcwbyg/witch_hazel_curved_gate.png deleted file mode 100644 index 152ab6d9..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_desk.png b/public/textures/mcwbyg/witch_hazel_desk.png deleted file mode 100644 index 995f74b8..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_double_drawer.png b/public/textures/mcwbyg/witch_hazel_double_drawer.png deleted file mode 100644 index b8be1a7f..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_double_drawer_counter.png b/public/textures/mcwbyg/witch_hazel_double_drawer_counter.png deleted file mode 100644 index 9d15decc..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_double_kitchen_cabinet.png b/public/textures/mcwbyg/witch_hazel_double_kitchen_cabinet.png deleted file mode 100644 index 52257a85..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_double_wardrobe.png b/public/textures/mcwbyg/witch_hazel_double_wardrobe.png deleted file mode 100644 index 218100d9..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_drawer.png b/public/textures/mcwbyg/witch_hazel_drawer.png deleted file mode 100644 index 944395d3..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_drawer_counter.png b/public/textures/mcwbyg/witch_hazel_drawer_counter.png deleted file mode 100644 index ff37bc94..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_end_table.png b/public/textures/mcwbyg/witch_hazel_end_table.png deleted file mode 100644 index a0ea3b7a..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_four_panel_door.png b/public/textures/mcwbyg/witch_hazel_four_panel_door.png deleted file mode 100644 index 74412237..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_four_panel_trapdoor.png b/public/textures/mcwbyg/witch_hazel_four_panel_trapdoor.png deleted file mode 100644 index 23ad79e7..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_four_window.png b/public/textures/mcwbyg/witch_hazel_four_window.png deleted file mode 100644 index 0b31467f..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_glass_door.png b/public/textures/mcwbyg/witch_hazel_glass_door.png deleted file mode 100644 index 04fe887b..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_glass_kitchen_cabinet.png b/public/textures/mcwbyg/witch_hazel_glass_kitchen_cabinet.png deleted file mode 100644 index a716a961..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_glass_table.png b/public/textures/mcwbyg/witch_hazel_glass_table.png deleted file mode 100644 index 9d9bfb94..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_glass_trapdoor.png b/public/textures/mcwbyg/witch_hazel_glass_trapdoor.png deleted file mode 100644 index 1bbf363c..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_hedge.png b/public/textures/mcwbyg/witch_hazel_hedge.png deleted file mode 100644 index 96942995..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_highley_gate.png b/public/textures/mcwbyg/witch_hazel_highley_gate.png deleted file mode 100644 index 4e7c179b..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_horse_fence.png b/public/textures/mcwbyg/witch_hazel_horse_fence.png deleted file mode 100644 index a035ec49..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_japanese2_door.png b/public/textures/mcwbyg/witch_hazel_japanese2_door.png deleted file mode 100644 index a25d2eb4..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_japanese_door.png b/public/textures/mcwbyg/witch_hazel_japanese_door.png deleted file mode 100644 index 38f0839a..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_kitchen_cabinet.png b/public/textures/mcwbyg/witch_hazel_kitchen_cabinet.png deleted file mode 100644 index 32f42238..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_large_drawer.png b/public/textures/mcwbyg/witch_hazel_large_drawer.png deleted file mode 100644 index 07a05e0a..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_log_bridge_middle.png b/public/textures/mcwbyg/witch_hazel_log_bridge_middle.png deleted file mode 100644 index f46f9433..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_log_bridge_stair.png b/public/textures/mcwbyg/witch_hazel_log_bridge_stair.png deleted file mode 100644 index cd83d34a..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_log_parapet.png b/public/textures/mcwbyg/witch_hazel_log_parapet.png deleted file mode 100644 index 2654440f..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_louvered_shutter.png b/public/textures/mcwbyg/witch_hazel_louvered_shutter.png deleted file mode 100644 index 387daa89..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_lower_bookshelf_drawer.png b/public/textures/mcwbyg/witch_hazel_lower_bookshelf_drawer.png deleted file mode 100644 index 952bf83d..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_lower_roof.png b/public/textures/mcwbyg/witch_hazel_lower_roof.png deleted file mode 100644 index 558f66fe..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_lower_triple_drawer.png b/public/textures/mcwbyg/witch_hazel_lower_triple_drawer.png deleted file mode 100644 index 8c047467..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_modern_chair.png b/public/textures/mcwbyg/witch_hazel_modern_chair.png deleted file mode 100644 index a8eb66e7..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_modern_desk.png b/public/textures/mcwbyg/witch_hazel_modern_desk.png deleted file mode 100644 index 196807fc..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_modern_door.png b/public/textures/mcwbyg/witch_hazel_modern_door.png deleted file mode 100644 index 6741cfe6..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_modern_wardrobe.png b/public/textures/mcwbyg/witch_hazel_modern_wardrobe.png deleted file mode 100644 index b5875893..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_mystic_door.png b/public/textures/mcwbyg/witch_hazel_mystic_door.png deleted file mode 100644 index bdb11cd7..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_mystic_trapdoor.png b/public/textures/mcwbyg/witch_hazel_mystic_trapdoor.png deleted file mode 100644 index 4015ab35..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_nether_door.png b/public/textures/mcwbyg/witch_hazel_nether_door.png deleted file mode 100644 index ea679a23..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_pane_window.png b/public/textures/mcwbyg/witch_hazel_pane_window.png deleted file mode 100644 index b05d59b9..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_paper_door.png b/public/textures/mcwbyg/witch_hazel_paper_door.png deleted file mode 100644 index 90343208..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_paper_trapdoor.png b/public/textures/mcwbyg/witch_hazel_paper_trapdoor.png deleted file mode 100644 index 1c355f72..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_picket_fence.png b/public/textures/mcwbyg/witch_hazel_picket_fence.png deleted file mode 100644 index 3388550b..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_plank_four_window.png b/public/textures/mcwbyg/witch_hazel_plank_four_window.png deleted file mode 100644 index 1aab70a4..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_plank_pane_window.png b/public/textures/mcwbyg/witch_hazel_plank_pane_window.png deleted file mode 100644 index c9fcdee6..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_plank_parapet.png b/public/textures/mcwbyg/witch_hazel_plank_parapet.png deleted file mode 100644 index 55cdf0dd..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_plank_window.png b/public/textures/mcwbyg/witch_hazel_plank_window.png deleted file mode 100644 index 3c3a40fe..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_plank_window2.png b/public/textures/mcwbyg/witch_hazel_plank_window2.png deleted file mode 100644 index 92d83ffc..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_planks_attic_roof.png b/public/textures/mcwbyg/witch_hazel_planks_attic_roof.png deleted file mode 100644 index 99f5dc04..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_planks_lower_roof.png b/public/textures/mcwbyg/witch_hazel_planks_lower_roof.png deleted file mode 100644 index 9586e599..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_planks_path.png b/public/textures/mcwbyg/witch_hazel_planks_path.png deleted file mode 100644 index ca84986b..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_planks_roof.png b/public/textures/mcwbyg/witch_hazel_planks_roof.png deleted file mode 100644 index ae9653af..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_planks_steep_roof.png b/public/textures/mcwbyg/witch_hazel_planks_steep_roof.png deleted file mode 100644 index c1fb97cb..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_planks_top_roof.png b/public/textures/mcwbyg/witch_hazel_planks_top_roof.png deleted file mode 100644 index 89404ee7..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_planks_upper_lower_roof.png b/public/textures/mcwbyg/witch_hazel_planks_upper_lower_roof.png deleted file mode 100644 index b1900736..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_planks_upper_steep_roof.png b/public/textures/mcwbyg/witch_hazel_planks_upper_steep_roof.png deleted file mode 100644 index ab2cb25f..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_pyramid_gate.png b/public/textures/mcwbyg/witch_hazel_pyramid_gate.png deleted file mode 100644 index c568b018..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_rail_bridge.png b/public/textures/mcwbyg/witch_hazel_rail_bridge.png deleted file mode 100644 index e22db12c..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_ranch_trapdoor.png b/public/textures/mcwbyg/witch_hazel_ranch_trapdoor.png deleted file mode 100644 index 7e65b168..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_roof.png b/public/textures/mcwbyg/witch_hazel_roof.png deleted file mode 100644 index 00ead065..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_rope_bridge_stair.png b/public/textures/mcwbyg/witch_hazel_rope_bridge_stair.png deleted file mode 100644 index fb235161..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_shutter.png b/public/textures/mcwbyg/witch_hazel_shutter.png deleted file mode 100644 index 60ff41ae..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_stable_door.png b/public/textures/mcwbyg/witch_hazel_stable_door.png deleted file mode 100644 index 9f354762..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_stable_head_door.png b/public/textures/mcwbyg/witch_hazel_stable_head_door.png deleted file mode 100644 index 9f5bbaf7..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_steep_roof.png b/public/textures/mcwbyg/witch_hazel_steep_roof.png deleted file mode 100644 index 3b4431df..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_stockade_fence.png b/public/textures/mcwbyg/witch_hazel_stockade_fence.png deleted file mode 100644 index 3f0fddb9..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_stool_chair.png b/public/textures/mcwbyg/witch_hazel_stool_chair.png deleted file mode 100644 index 2d1536b8..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_striped_chair.png b/public/textures/mcwbyg/witch_hazel_striped_chair.png deleted file mode 100644 index 7562c793..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_swamp_door.png b/public/textures/mcwbyg/witch_hazel_swamp_door.png deleted file mode 100644 index 9af332f9..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_swamp_trapdoor.png b/public/textures/mcwbyg/witch_hazel_swamp_trapdoor.png deleted file mode 100644 index ae4741da..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_table.png b/public/textures/mcwbyg/witch_hazel_table.png deleted file mode 100644 index 06abf61f..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_top_roof.png b/public/textures/mcwbyg/witch_hazel_top_roof.png deleted file mode 100644 index afd35aae..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_triple_drawer.png b/public/textures/mcwbyg/witch_hazel_triple_drawer.png deleted file mode 100644 index 804aa1cd..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_tropical_door.png b/public/textures/mcwbyg/witch_hazel_tropical_door.png deleted file mode 100644 index c883bb15..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_tropical_trapdoor.png b/public/textures/mcwbyg/witch_hazel_tropical_trapdoor.png deleted file mode 100644 index 7c665fdf..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_upper_lower_roof.png b/public/textures/mcwbyg/witch_hazel_upper_lower_roof.png deleted file mode 100644 index 3b099658..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_upper_steep_roof.png b/public/textures/mcwbyg/witch_hazel_upper_steep_roof.png deleted file mode 100644 index f5814da3..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_waffle_door.png b/public/textures/mcwbyg/witch_hazel_waffle_door.png deleted file mode 100644 index 69529af7..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_wardrobe.png b/public/textures/mcwbyg/witch_hazel_wardrobe.png deleted file mode 100644 index a7f2f07e..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_western_door.png b/public/textures/mcwbyg/witch_hazel_western_door.png deleted file mode 100644 index 8b70dbdf..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_whispering_door.png b/public/textures/mcwbyg/witch_hazel_whispering_door.png deleted file mode 100644 index ad035486..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_whispering_trapdoor.png b/public/textures/mcwbyg/witch_hazel_whispering_trapdoor.png deleted file mode 100644 index 99d47b46..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_window.png b/public/textures/mcwbyg/witch_hazel_window.png deleted file mode 100644 index 2a863d46..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_window2.png b/public/textures/mcwbyg/witch_hazel_window2.png deleted file mode 100644 index 84760f61..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/witch_hazel_wired_fence.png b/public/textures/mcwbyg/witch_hazel_wired_fence.png deleted file mode 100644 index a80e25ef..00000000 Binary files a/public/textures/mcwbyg/witch_hazel_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/yellow_birch_hedge.png b/public/textures/mcwbyg/yellow_birch_hedge.png deleted file mode 100644 index 7335e204..00000000 Binary files a/public/textures/mcwbyg/yellow_birch_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/yellow_sakura_hedge.png b/public/textures/mcwbyg/yellow_sakura_hedge.png deleted file mode 100644 index 1fd4de71..00000000 Binary files a/public/textures/mcwbyg/yellow_sakura_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/yellow_spruce_hedge.png b/public/textures/mcwbyg/yellow_spruce_hedge.png deleted file mode 100644 index 05a9ffb3..00000000 Binary files a/public/textures/mcwbyg/yellow_spruce_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_attic_roof.png b/public/textures/mcwbyg/zelkova_attic_roof.png deleted file mode 100644 index c4c9e342..00000000 Binary files a/public/textures/mcwbyg/zelkova_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_bamboo_door.png b/public/textures/mcwbyg/zelkova_bamboo_door.png deleted file mode 100644 index f9388998..00000000 Binary files a/public/textures/mcwbyg/zelkova_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_bamboo_trapdoor.png b/public/textures/mcwbyg/zelkova_bamboo_trapdoor.png deleted file mode 100644 index 4fbd8a56..00000000 Binary files a/public/textures/mcwbyg/zelkova_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_bark_glass_door.png b/public/textures/mcwbyg/zelkova_bark_glass_door.png deleted file mode 100644 index c3c90e5f..00000000 Binary files a/public/textures/mcwbyg/zelkova_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_bark_trapdoor.png b/public/textures/mcwbyg/zelkova_bark_trapdoor.png deleted file mode 100644 index 29a98a71..00000000 Binary files a/public/textures/mcwbyg/zelkova_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_barn_door.png b/public/textures/mcwbyg/zelkova_barn_door.png deleted file mode 100644 index ee063bcb..00000000 Binary files a/public/textures/mcwbyg/zelkova_barn_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_barn_glass_door.png b/public/textures/mcwbyg/zelkova_barn_glass_door.png deleted file mode 100644 index f527feb6..00000000 Binary files a/public/textures/mcwbyg/zelkova_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_barn_trapdoor.png b/public/textures/mcwbyg/zelkova_barn_trapdoor.png deleted file mode 100644 index e659bf5e..00000000 Binary files a/public/textures/mcwbyg/zelkova_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_barred_trapdoor.png b/public/textures/mcwbyg/zelkova_barred_trapdoor.png deleted file mode 100644 index 23bd2b8f..00000000 Binary files a/public/textures/mcwbyg/zelkova_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_barrel_trapdoor.png b/public/textures/mcwbyg/zelkova_barrel_trapdoor.png deleted file mode 100644 index 30e6c58c..00000000 Binary files a/public/textures/mcwbyg/zelkova_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_beach_door.png b/public/textures/mcwbyg/zelkova_beach_door.png deleted file mode 100644 index 55ce3eb1..00000000 Binary files a/public/textures/mcwbyg/zelkova_beach_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_beach_trapdoor.png b/public/textures/mcwbyg/zelkova_beach_trapdoor.png deleted file mode 100644 index 258eb293..00000000 Binary files a/public/textures/mcwbyg/zelkova_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_blinds.png b/public/textures/mcwbyg/zelkova_blinds.png deleted file mode 100644 index 8a497db3..00000000 Binary files a/public/textures/mcwbyg/zelkova_blinds.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_blossom_trapdoor.png b/public/textures/mcwbyg/zelkova_blossom_trapdoor.png deleted file mode 100644 index dc49db4e..00000000 Binary files a/public/textures/mcwbyg/zelkova_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_bookshelf.png b/public/textures/mcwbyg/zelkova_bookshelf.png deleted file mode 100644 index 9dbb8c85..00000000 Binary files a/public/textures/mcwbyg/zelkova_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_bookshelf_cupboard.png b/public/textures/mcwbyg/zelkova_bookshelf_cupboard.png deleted file mode 100644 index c3159845..00000000 Binary files a/public/textures/mcwbyg/zelkova_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_bookshelf_drawer.png b/public/textures/mcwbyg/zelkova_bookshelf_drawer.png deleted file mode 100644 index 8d05550b..00000000 Binary files a/public/textures/mcwbyg/zelkova_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_bridge_pier.png b/public/textures/mcwbyg/zelkova_bridge_pier.png deleted file mode 100644 index e2e11ef9..00000000 Binary files a/public/textures/mcwbyg/zelkova_bridge_pier.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_chair.png b/public/textures/mcwbyg/zelkova_chair.png deleted file mode 100644 index 42936f2c..00000000 Binary files a/public/textures/mcwbyg/zelkova_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_classic_door.png b/public/textures/mcwbyg/zelkova_classic_door.png deleted file mode 100644 index b9f31452..00000000 Binary files a/public/textures/mcwbyg/zelkova_classic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_classic_trapdoor.png b/public/textures/mcwbyg/zelkova_classic_trapdoor.png deleted file mode 100644 index f90fbe92..00000000 Binary files a/public/textures/mcwbyg/zelkova_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_coffee_table.png b/public/textures/mcwbyg/zelkova_coffee_table.png deleted file mode 100644 index 1105b417..00000000 Binary files a/public/textures/mcwbyg/zelkova_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_cottage_door.png b/public/textures/mcwbyg/zelkova_cottage_door.png deleted file mode 100644 index b101a751..00000000 Binary files a/public/textures/mcwbyg/zelkova_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_cottage_trapdoor.png b/public/textures/mcwbyg/zelkova_cottage_trapdoor.png deleted file mode 100644 index 649af98a..00000000 Binary files a/public/textures/mcwbyg/zelkova_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_counter.png b/public/textures/mcwbyg/zelkova_counter.png deleted file mode 100644 index fad3a6f4..00000000 Binary files a/public/textures/mcwbyg/zelkova_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_covered_desk.png b/public/textures/mcwbyg/zelkova_covered_desk.png deleted file mode 100644 index b082822f..00000000 Binary files a/public/textures/mcwbyg/zelkova_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_cupboard_counter.png b/public/textures/mcwbyg/zelkova_cupboard_counter.png deleted file mode 100644 index ac901fec..00000000 Binary files a/public/textures/mcwbyg/zelkova_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_curtain_rod.png b/public/textures/mcwbyg/zelkova_curtain_rod.png deleted file mode 100644 index 75f94ba6..00000000 Binary files a/public/textures/mcwbyg/zelkova_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_curved_gate.png b/public/textures/mcwbyg/zelkova_curved_gate.png deleted file mode 100644 index f7b968e1..00000000 Binary files a/public/textures/mcwbyg/zelkova_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_desk.png b/public/textures/mcwbyg/zelkova_desk.png deleted file mode 100644 index abe242ce..00000000 Binary files a/public/textures/mcwbyg/zelkova_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_double_drawer.png b/public/textures/mcwbyg/zelkova_double_drawer.png deleted file mode 100644 index cc131eda..00000000 Binary files a/public/textures/mcwbyg/zelkova_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_double_drawer_counter.png b/public/textures/mcwbyg/zelkova_double_drawer_counter.png deleted file mode 100644 index 492131a9..00000000 Binary files a/public/textures/mcwbyg/zelkova_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_double_kitchen_cabinet.png b/public/textures/mcwbyg/zelkova_double_kitchen_cabinet.png deleted file mode 100644 index a0c8f1ba..00000000 Binary files a/public/textures/mcwbyg/zelkova_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_double_wardrobe.png b/public/textures/mcwbyg/zelkova_double_wardrobe.png deleted file mode 100644 index 7c624a14..00000000 Binary files a/public/textures/mcwbyg/zelkova_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_drawer.png b/public/textures/mcwbyg/zelkova_drawer.png deleted file mode 100644 index 86738cb1..00000000 Binary files a/public/textures/mcwbyg/zelkova_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_drawer_counter.png b/public/textures/mcwbyg/zelkova_drawer_counter.png deleted file mode 100644 index 95cb08ae..00000000 Binary files a/public/textures/mcwbyg/zelkova_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_end_table.png b/public/textures/mcwbyg/zelkova_end_table.png deleted file mode 100644 index 4e45ce4c..00000000 Binary files a/public/textures/mcwbyg/zelkova_end_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_four_panel_door.png b/public/textures/mcwbyg/zelkova_four_panel_door.png deleted file mode 100644 index a39fe263..00000000 Binary files a/public/textures/mcwbyg/zelkova_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_four_panel_trapdoor.png b/public/textures/mcwbyg/zelkova_four_panel_trapdoor.png deleted file mode 100644 index c8df82fd..00000000 Binary files a/public/textures/mcwbyg/zelkova_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_four_window.png b/public/textures/mcwbyg/zelkova_four_window.png deleted file mode 100644 index c2ad5f7c..00000000 Binary files a/public/textures/mcwbyg/zelkova_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_glass_door.png b/public/textures/mcwbyg/zelkova_glass_door.png deleted file mode 100644 index b137195a..00000000 Binary files a/public/textures/mcwbyg/zelkova_glass_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_glass_kitchen_cabinet.png b/public/textures/mcwbyg/zelkova_glass_kitchen_cabinet.png deleted file mode 100644 index f8c84cff..00000000 Binary files a/public/textures/mcwbyg/zelkova_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_glass_table.png b/public/textures/mcwbyg/zelkova_glass_table.png deleted file mode 100644 index 0c7de98e..00000000 Binary files a/public/textures/mcwbyg/zelkova_glass_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_glass_trapdoor.png b/public/textures/mcwbyg/zelkova_glass_trapdoor.png deleted file mode 100644 index 97b34dd5..00000000 Binary files a/public/textures/mcwbyg/zelkova_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_hedge.png b/public/textures/mcwbyg/zelkova_hedge.png deleted file mode 100644 index 9794a10c..00000000 Binary files a/public/textures/mcwbyg/zelkova_hedge.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_highley_gate.png b/public/textures/mcwbyg/zelkova_highley_gate.png deleted file mode 100644 index 847ec711..00000000 Binary files a/public/textures/mcwbyg/zelkova_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_horse_fence.png b/public/textures/mcwbyg/zelkova_horse_fence.png deleted file mode 100644 index adee83c5..00000000 Binary files a/public/textures/mcwbyg/zelkova_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_japanese2_door.png b/public/textures/mcwbyg/zelkova_japanese2_door.png deleted file mode 100644 index b172fc24..00000000 Binary files a/public/textures/mcwbyg/zelkova_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_japanese_door.png b/public/textures/mcwbyg/zelkova_japanese_door.png deleted file mode 100644 index 89b576ea..00000000 Binary files a/public/textures/mcwbyg/zelkova_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_kitchen_cabinet.png b/public/textures/mcwbyg/zelkova_kitchen_cabinet.png deleted file mode 100644 index ab3ec211..00000000 Binary files a/public/textures/mcwbyg/zelkova_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_large_drawer.png b/public/textures/mcwbyg/zelkova_large_drawer.png deleted file mode 100644 index dda87a90..00000000 Binary files a/public/textures/mcwbyg/zelkova_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_log_bridge_middle.png b/public/textures/mcwbyg/zelkova_log_bridge_middle.png deleted file mode 100644 index 64efee87..00000000 Binary files a/public/textures/mcwbyg/zelkova_log_bridge_middle.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_log_bridge_stair.png b/public/textures/mcwbyg/zelkova_log_bridge_stair.png deleted file mode 100644 index 471176f7..00000000 Binary files a/public/textures/mcwbyg/zelkova_log_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_log_parapet.png b/public/textures/mcwbyg/zelkova_log_parapet.png deleted file mode 100644 index c62fd0c7..00000000 Binary files a/public/textures/mcwbyg/zelkova_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_louvered_shutter.png b/public/textures/mcwbyg/zelkova_louvered_shutter.png deleted file mode 100644 index 84ede8b8..00000000 Binary files a/public/textures/mcwbyg/zelkova_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_lower_bookshelf_drawer.png b/public/textures/mcwbyg/zelkova_lower_bookshelf_drawer.png deleted file mode 100644 index 04332f7e..00000000 Binary files a/public/textures/mcwbyg/zelkova_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_lower_roof.png b/public/textures/mcwbyg/zelkova_lower_roof.png deleted file mode 100644 index ce22603d..00000000 Binary files a/public/textures/mcwbyg/zelkova_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_lower_triple_drawer.png b/public/textures/mcwbyg/zelkova_lower_triple_drawer.png deleted file mode 100644 index a7dd1528..00000000 Binary files a/public/textures/mcwbyg/zelkova_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_modern_chair.png b/public/textures/mcwbyg/zelkova_modern_chair.png deleted file mode 100644 index c6ab24f2..00000000 Binary files a/public/textures/mcwbyg/zelkova_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_modern_desk.png b/public/textures/mcwbyg/zelkova_modern_desk.png deleted file mode 100644 index 87082719..00000000 Binary files a/public/textures/mcwbyg/zelkova_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_modern_door.png b/public/textures/mcwbyg/zelkova_modern_door.png deleted file mode 100644 index 7afb6757..00000000 Binary files a/public/textures/mcwbyg/zelkova_modern_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_modern_wardrobe.png b/public/textures/mcwbyg/zelkova_modern_wardrobe.png deleted file mode 100644 index e6d5c9e2..00000000 Binary files a/public/textures/mcwbyg/zelkova_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_mystic_door.png b/public/textures/mcwbyg/zelkova_mystic_door.png deleted file mode 100644 index 0be3ff8c..00000000 Binary files a/public/textures/mcwbyg/zelkova_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_mystic_trapdoor.png b/public/textures/mcwbyg/zelkova_mystic_trapdoor.png deleted file mode 100644 index 85c15bbe..00000000 Binary files a/public/textures/mcwbyg/zelkova_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_nether_door.png b/public/textures/mcwbyg/zelkova_nether_door.png deleted file mode 100644 index 15965ded..00000000 Binary files a/public/textures/mcwbyg/zelkova_nether_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_pane_window.png b/public/textures/mcwbyg/zelkova_pane_window.png deleted file mode 100644 index 13f4f719..00000000 Binary files a/public/textures/mcwbyg/zelkova_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_paper_door.png b/public/textures/mcwbyg/zelkova_paper_door.png deleted file mode 100644 index a2b76349..00000000 Binary files a/public/textures/mcwbyg/zelkova_paper_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_paper_trapdoor.png b/public/textures/mcwbyg/zelkova_paper_trapdoor.png deleted file mode 100644 index 88f48b6c..00000000 Binary files a/public/textures/mcwbyg/zelkova_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_picket_fence.png b/public/textures/mcwbyg/zelkova_picket_fence.png deleted file mode 100644 index deb050fd..00000000 Binary files a/public/textures/mcwbyg/zelkova_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_plank_four_window.png b/public/textures/mcwbyg/zelkova_plank_four_window.png deleted file mode 100644 index 37a8afa2..00000000 Binary files a/public/textures/mcwbyg/zelkova_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_plank_pane_window.png b/public/textures/mcwbyg/zelkova_plank_pane_window.png deleted file mode 100644 index 1062d642..00000000 Binary files a/public/textures/mcwbyg/zelkova_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_plank_parapet.png b/public/textures/mcwbyg/zelkova_plank_parapet.png deleted file mode 100644 index b1f8724c..00000000 Binary files a/public/textures/mcwbyg/zelkova_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_plank_window.png b/public/textures/mcwbyg/zelkova_plank_window.png deleted file mode 100644 index d6c7016e..00000000 Binary files a/public/textures/mcwbyg/zelkova_plank_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_plank_window2.png b/public/textures/mcwbyg/zelkova_plank_window2.png deleted file mode 100644 index ca5f3b36..00000000 Binary files a/public/textures/mcwbyg/zelkova_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_planks_attic_roof.png b/public/textures/mcwbyg/zelkova_planks_attic_roof.png deleted file mode 100644 index 5400e2ea..00000000 Binary files a/public/textures/mcwbyg/zelkova_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_planks_lower_roof.png b/public/textures/mcwbyg/zelkova_planks_lower_roof.png deleted file mode 100644 index 0506c53c..00000000 Binary files a/public/textures/mcwbyg/zelkova_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_planks_path.png b/public/textures/mcwbyg/zelkova_planks_path.png deleted file mode 100644 index 8d31c020..00000000 Binary files a/public/textures/mcwbyg/zelkova_planks_path.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_planks_roof.png b/public/textures/mcwbyg/zelkova_planks_roof.png deleted file mode 100644 index a5571af3..00000000 Binary files a/public/textures/mcwbyg/zelkova_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_planks_steep_roof.png b/public/textures/mcwbyg/zelkova_planks_steep_roof.png deleted file mode 100644 index 37f6847e..00000000 Binary files a/public/textures/mcwbyg/zelkova_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_planks_top_roof.png b/public/textures/mcwbyg/zelkova_planks_top_roof.png deleted file mode 100644 index 18f1e621..00000000 Binary files a/public/textures/mcwbyg/zelkova_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_planks_upper_lower_roof.png b/public/textures/mcwbyg/zelkova_planks_upper_lower_roof.png deleted file mode 100644 index 3cef1534..00000000 Binary files a/public/textures/mcwbyg/zelkova_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_planks_upper_steep_roof.png b/public/textures/mcwbyg/zelkova_planks_upper_steep_roof.png deleted file mode 100644 index 718edcc6..00000000 Binary files a/public/textures/mcwbyg/zelkova_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_pyramid_gate.png b/public/textures/mcwbyg/zelkova_pyramid_gate.png deleted file mode 100644 index 50d9ce79..00000000 Binary files a/public/textures/mcwbyg/zelkova_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_rail_bridge.png b/public/textures/mcwbyg/zelkova_rail_bridge.png deleted file mode 100644 index c691000d..00000000 Binary files a/public/textures/mcwbyg/zelkova_rail_bridge.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_ranch_trapdoor.png b/public/textures/mcwbyg/zelkova_ranch_trapdoor.png deleted file mode 100644 index 94ace8f0..00000000 Binary files a/public/textures/mcwbyg/zelkova_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_roof.png b/public/textures/mcwbyg/zelkova_roof.png deleted file mode 100644 index 96aed88d..00000000 Binary files a/public/textures/mcwbyg/zelkova_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_rope_bridge_stair.png b/public/textures/mcwbyg/zelkova_rope_bridge_stair.png deleted file mode 100644 index c806ea82..00000000 Binary files a/public/textures/mcwbyg/zelkova_rope_bridge_stair.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_shutter.png b/public/textures/mcwbyg/zelkova_shutter.png deleted file mode 100644 index 02350459..00000000 Binary files a/public/textures/mcwbyg/zelkova_shutter.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_stable_door.png b/public/textures/mcwbyg/zelkova_stable_door.png deleted file mode 100644 index 7c44c38b..00000000 Binary files a/public/textures/mcwbyg/zelkova_stable_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_stable_head_door.png b/public/textures/mcwbyg/zelkova_stable_head_door.png deleted file mode 100644 index 77a1c1c8..00000000 Binary files a/public/textures/mcwbyg/zelkova_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_steep_roof.png b/public/textures/mcwbyg/zelkova_steep_roof.png deleted file mode 100644 index db4b392f..00000000 Binary files a/public/textures/mcwbyg/zelkova_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_stockade_fence.png b/public/textures/mcwbyg/zelkova_stockade_fence.png deleted file mode 100644 index f0b0b51d..00000000 Binary files a/public/textures/mcwbyg/zelkova_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_stool_chair.png b/public/textures/mcwbyg/zelkova_stool_chair.png deleted file mode 100644 index 5f069a59..00000000 Binary files a/public/textures/mcwbyg/zelkova_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_striped_chair.png b/public/textures/mcwbyg/zelkova_striped_chair.png deleted file mode 100644 index 5e35276d..00000000 Binary files a/public/textures/mcwbyg/zelkova_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_swamp_door.png b/public/textures/mcwbyg/zelkova_swamp_door.png deleted file mode 100644 index 32c6d107..00000000 Binary files a/public/textures/mcwbyg/zelkova_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_swamp_trapdoor.png b/public/textures/mcwbyg/zelkova_swamp_trapdoor.png deleted file mode 100644 index acb6612a..00000000 Binary files a/public/textures/mcwbyg/zelkova_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_table.png b/public/textures/mcwbyg/zelkova_table.png deleted file mode 100644 index 389eab9d..00000000 Binary files a/public/textures/mcwbyg/zelkova_table.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_top_roof.png b/public/textures/mcwbyg/zelkova_top_roof.png deleted file mode 100644 index 34b9bb80..00000000 Binary files a/public/textures/mcwbyg/zelkova_top_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_triple_drawer.png b/public/textures/mcwbyg/zelkova_triple_drawer.png deleted file mode 100644 index fe6fd7da..00000000 Binary files a/public/textures/mcwbyg/zelkova_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_tropical_door.png b/public/textures/mcwbyg/zelkova_tropical_door.png deleted file mode 100644 index b6ffb479..00000000 Binary files a/public/textures/mcwbyg/zelkova_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_tropical_trapdoor.png b/public/textures/mcwbyg/zelkova_tropical_trapdoor.png deleted file mode 100644 index 68507d6a..00000000 Binary files a/public/textures/mcwbyg/zelkova_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_upper_lower_roof.png b/public/textures/mcwbyg/zelkova_upper_lower_roof.png deleted file mode 100644 index c5dc8b3a..00000000 Binary files a/public/textures/mcwbyg/zelkova_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_upper_steep_roof.png b/public/textures/mcwbyg/zelkova_upper_steep_roof.png deleted file mode 100644 index 7402c9e1..00000000 Binary files a/public/textures/mcwbyg/zelkova_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_waffle_door.png b/public/textures/mcwbyg/zelkova_waffle_door.png deleted file mode 100644 index 73a47685..00000000 Binary files a/public/textures/mcwbyg/zelkova_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_wardrobe.png b/public/textures/mcwbyg/zelkova_wardrobe.png deleted file mode 100644 index ad183b7a..00000000 Binary files a/public/textures/mcwbyg/zelkova_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_western_door.png b/public/textures/mcwbyg/zelkova_western_door.png deleted file mode 100644 index 6f9c7707..00000000 Binary files a/public/textures/mcwbyg/zelkova_western_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_whispering_door.png b/public/textures/mcwbyg/zelkova_whispering_door.png deleted file mode 100644 index b2da3e86..00000000 Binary files a/public/textures/mcwbyg/zelkova_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_whispering_trapdoor.png b/public/textures/mcwbyg/zelkova_whispering_trapdoor.png deleted file mode 100644 index 1e5f571c..00000000 Binary files a/public/textures/mcwbyg/zelkova_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_window.png b/public/textures/mcwbyg/zelkova_window.png deleted file mode 100644 index 2d98d0c6..00000000 Binary files a/public/textures/mcwbyg/zelkova_window.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_window2.png b/public/textures/mcwbyg/zelkova_window2.png deleted file mode 100644 index e15d32b8..00000000 Binary files a/public/textures/mcwbyg/zelkova_window2.png and /dev/null differ diff --git a/public/textures/mcwbyg/zelkova_wired_fence.png b/public/textures/mcwbyg/zelkova_wired_fence.png deleted file mode 100644 index 2cfa4064..00000000 Binary files a/public/textures/mcwbyg/zelkova_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_bamboo_door.png b/public/textures/mcwdoors/acacia_bamboo_door.png deleted file mode 100644 index c348c5cc..00000000 Binary files a/public/textures/mcwdoors/acacia_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_bark_glass_door.png b/public/textures/mcwdoors/acacia_bark_glass_door.png deleted file mode 100644 index 49be8bf9..00000000 Binary files a/public/textures/mcwdoors/acacia_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_barn_door.png b/public/textures/mcwdoors/acacia_barn_door.png deleted file mode 100644 index c591dd7f..00000000 Binary files a/public/textures/mcwdoors/acacia_barn_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_barn_glass_door.png b/public/textures/mcwdoors/acacia_barn_glass_door.png deleted file mode 100644 index 1d0f1597..00000000 Binary files a/public/textures/mcwdoors/acacia_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_beach_door.png b/public/textures/mcwdoors/acacia_beach_door.png deleted file mode 100644 index 935b36dc..00000000 Binary files a/public/textures/mcwdoors/acacia_beach_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_classic_door.png b/public/textures/mcwdoors/acacia_classic_door.png deleted file mode 100644 index 52f8f010..00000000 Binary files a/public/textures/mcwdoors/acacia_classic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_cottage_door.png b/public/textures/mcwdoors/acacia_cottage_door.png deleted file mode 100644 index 0b24d1b2..00000000 Binary files a/public/textures/mcwdoors/acacia_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_four_panel_door.png b/public/textures/mcwdoors/acacia_four_panel_door.png deleted file mode 100644 index dc615d4a..00000000 Binary files a/public/textures/mcwdoors/acacia_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_glass_door.png b/public/textures/mcwdoors/acacia_glass_door.png deleted file mode 100644 index f6c7001e..00000000 Binary files a/public/textures/mcwdoors/acacia_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_japanese2_door.png b/public/textures/mcwdoors/acacia_japanese2_door.png deleted file mode 100644 index 56ee6951..00000000 Binary files a/public/textures/mcwdoors/acacia_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_japanese_door.png b/public/textures/mcwdoors/acacia_japanese_door.png deleted file mode 100644 index 8b08a973..00000000 Binary files a/public/textures/mcwdoors/acacia_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_modern_door.png b/public/textures/mcwdoors/acacia_modern_door.png deleted file mode 100644 index 0449194b..00000000 Binary files a/public/textures/mcwdoors/acacia_modern_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_mystic_door.png b/public/textures/mcwdoors/acacia_mystic_door.png deleted file mode 100644 index 2f84428e..00000000 Binary files a/public/textures/mcwdoors/acacia_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_nether_door.png b/public/textures/mcwdoors/acacia_nether_door.png deleted file mode 100644 index 1516db9d..00000000 Binary files a/public/textures/mcwdoors/acacia_nether_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_paper_door.png b/public/textures/mcwdoors/acacia_paper_door.png deleted file mode 100644 index c3640c34..00000000 Binary files a/public/textures/mcwdoors/acacia_paper_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_stable_door.png b/public/textures/mcwdoors/acacia_stable_door.png deleted file mode 100644 index 8db1e9b9..00000000 Binary files a/public/textures/mcwdoors/acacia_stable_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_stable_head_door.png b/public/textures/mcwdoors/acacia_stable_head_door.png deleted file mode 100644 index 2fa28a42..00000000 Binary files a/public/textures/mcwdoors/acacia_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_swamp_door.png b/public/textures/mcwdoors/acacia_swamp_door.png deleted file mode 100644 index b514c9de..00000000 Binary files a/public/textures/mcwdoors/acacia_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_waffle_door.png b/public/textures/mcwdoors/acacia_waffle_door.png deleted file mode 100644 index f51fd42a..00000000 Binary files a/public/textures/mcwdoors/acacia_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_western_door.png b/public/textures/mcwdoors/acacia_western_door.png deleted file mode 100644 index 80a1c6d7..00000000 Binary files a/public/textures/mcwdoors/acacia_western_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/acacia_whispering_door.png b/public/textures/mcwdoors/acacia_whispering_door.png deleted file mode 100644 index d7b6d56b..00000000 Binary files a/public/textures/mcwdoors/acacia_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_bark_glass_door.png b/public/textures/mcwdoors/bamboo_bark_glass_door.png deleted file mode 100644 index 2a35f275..00000000 Binary files a/public/textures/mcwdoors/bamboo_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_barn_door.png b/public/textures/mcwdoors/bamboo_barn_door.png deleted file mode 100644 index a2b1926b..00000000 Binary files a/public/textures/mcwdoors/bamboo_barn_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_barn_glass_door.png b/public/textures/mcwdoors/bamboo_barn_glass_door.png deleted file mode 100644 index 2cb7f2d1..00000000 Binary files a/public/textures/mcwdoors/bamboo_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_beach_door.png b/public/textures/mcwdoors/bamboo_beach_door.png deleted file mode 100644 index 3f2c9fe3..00000000 Binary files a/public/textures/mcwdoors/bamboo_beach_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_classic_door.png b/public/textures/mcwdoors/bamboo_classic_door.png deleted file mode 100644 index e37499cf..00000000 Binary files a/public/textures/mcwdoors/bamboo_classic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_cottage_door.png b/public/textures/mcwdoors/bamboo_cottage_door.png deleted file mode 100644 index f31a64f0..00000000 Binary files a/public/textures/mcwdoors/bamboo_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_four_panel_door.png b/public/textures/mcwdoors/bamboo_four_panel_door.png deleted file mode 100644 index 9b4f41dc..00000000 Binary files a/public/textures/mcwdoors/bamboo_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_glass_door.png b/public/textures/mcwdoors/bamboo_glass_door.png deleted file mode 100644 index 0e6a87df..00000000 Binary files a/public/textures/mcwdoors/bamboo_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_japanese2_door.png b/public/textures/mcwdoors/bamboo_japanese2_door.png deleted file mode 100644 index 39957ca4..00000000 Binary files a/public/textures/mcwdoors/bamboo_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_japanese_door.png b/public/textures/mcwdoors/bamboo_japanese_door.png deleted file mode 100644 index 3e6269e8..00000000 Binary files a/public/textures/mcwdoors/bamboo_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_modern_door.png b/public/textures/mcwdoors/bamboo_modern_door.png deleted file mode 100644 index d743e30a..00000000 Binary files a/public/textures/mcwdoors/bamboo_modern_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_mystic_door.png b/public/textures/mcwdoors/bamboo_mystic_door.png deleted file mode 100644 index cf61eb28..00000000 Binary files a/public/textures/mcwdoors/bamboo_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_nether_door.png b/public/textures/mcwdoors/bamboo_nether_door.png deleted file mode 100644 index e26b856e..00000000 Binary files a/public/textures/mcwdoors/bamboo_nether_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_paper_door.png b/public/textures/mcwdoors/bamboo_paper_door.png deleted file mode 100644 index 4d851f09..00000000 Binary files a/public/textures/mcwdoors/bamboo_paper_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_stable_door.png b/public/textures/mcwdoors/bamboo_stable_door.png deleted file mode 100644 index d261e80e..00000000 Binary files a/public/textures/mcwdoors/bamboo_stable_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_stable_head_door.png b/public/textures/mcwdoors/bamboo_stable_head_door.png deleted file mode 100644 index ca089720..00000000 Binary files a/public/textures/mcwdoors/bamboo_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_swamp_door.png b/public/textures/mcwdoors/bamboo_swamp_door.png deleted file mode 100644 index ea8cda01..00000000 Binary files a/public/textures/mcwdoors/bamboo_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_tropical_door.png b/public/textures/mcwdoors/bamboo_tropical_door.png deleted file mode 100644 index 42e5d5aa..00000000 Binary files a/public/textures/mcwdoors/bamboo_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_waffle_door.png b/public/textures/mcwdoors/bamboo_waffle_door.png deleted file mode 100644 index c025517b..00000000 Binary files a/public/textures/mcwdoors/bamboo_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_western_door.png b/public/textures/mcwdoors/bamboo_western_door.png deleted file mode 100644 index 38e530ee..00000000 Binary files a/public/textures/mcwdoors/bamboo_western_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/bamboo_whispering_door.png b/public/textures/mcwdoors/bamboo_whispering_door.png deleted file mode 100644 index aa39a94a..00000000 Binary files a/public/textures/mcwdoors/bamboo_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_bamboo_door.png b/public/textures/mcwdoors/birch_bamboo_door.png deleted file mode 100644 index 450208e2..00000000 Binary files a/public/textures/mcwdoors/birch_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_bark_glass_door.png b/public/textures/mcwdoors/birch_bark_glass_door.png deleted file mode 100644 index d5f539bf..00000000 Binary files a/public/textures/mcwdoors/birch_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_barn_door.png b/public/textures/mcwdoors/birch_barn_door.png deleted file mode 100644 index 261135ee..00000000 Binary files a/public/textures/mcwdoors/birch_barn_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_barn_glass_door.png b/public/textures/mcwdoors/birch_barn_glass_door.png deleted file mode 100644 index 302f13d8..00000000 Binary files a/public/textures/mcwdoors/birch_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_beach_door.png b/public/textures/mcwdoors/birch_beach_door.png deleted file mode 100644 index 29c6b3ec..00000000 Binary files a/public/textures/mcwdoors/birch_beach_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_classic_door.png b/public/textures/mcwdoors/birch_classic_door.png deleted file mode 100644 index f648edb6..00000000 Binary files a/public/textures/mcwdoors/birch_classic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_cottage_door.png b/public/textures/mcwdoors/birch_cottage_door.png deleted file mode 100644 index db34e65c..00000000 Binary files a/public/textures/mcwdoors/birch_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_four_panel_door.png b/public/textures/mcwdoors/birch_four_panel_door.png deleted file mode 100644 index 1c55272c..00000000 Binary files a/public/textures/mcwdoors/birch_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_glass_door.png b/public/textures/mcwdoors/birch_glass_door.png deleted file mode 100644 index ee48171d..00000000 Binary files a/public/textures/mcwdoors/birch_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_japanese2_door.png b/public/textures/mcwdoors/birch_japanese2_door.png deleted file mode 100644 index 1f372c76..00000000 Binary files a/public/textures/mcwdoors/birch_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_japanese_door.png b/public/textures/mcwdoors/birch_japanese_door.png deleted file mode 100644 index e8d8d768..00000000 Binary files a/public/textures/mcwdoors/birch_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_modern_door.png b/public/textures/mcwdoors/birch_modern_door.png deleted file mode 100644 index 576cf649..00000000 Binary files a/public/textures/mcwdoors/birch_modern_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_mystic_door.png b/public/textures/mcwdoors/birch_mystic_door.png deleted file mode 100644 index 536d8dcf..00000000 Binary files a/public/textures/mcwdoors/birch_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_nether_door.png b/public/textures/mcwdoors/birch_nether_door.png deleted file mode 100644 index 2dee6abc..00000000 Binary files a/public/textures/mcwdoors/birch_nether_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_stable_door.png b/public/textures/mcwdoors/birch_stable_door.png deleted file mode 100644 index 4c7c1976..00000000 Binary files a/public/textures/mcwdoors/birch_stable_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_stable_head_door.png b/public/textures/mcwdoors/birch_stable_head_door.png deleted file mode 100644 index 56fe1cb6..00000000 Binary files a/public/textures/mcwdoors/birch_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_swamp_door.png b/public/textures/mcwdoors/birch_swamp_door.png deleted file mode 100644 index 4d4948ca..00000000 Binary files a/public/textures/mcwdoors/birch_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_tropical_door.png b/public/textures/mcwdoors/birch_tropical_door.png deleted file mode 100644 index 22a6eaa4..00000000 Binary files a/public/textures/mcwdoors/birch_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_waffle_door.png b/public/textures/mcwdoors/birch_waffle_door.png deleted file mode 100644 index f9c1c2bc..00000000 Binary files a/public/textures/mcwdoors/birch_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_western_door.png b/public/textures/mcwdoors/birch_western_door.png deleted file mode 100644 index 0423694b..00000000 Binary files a/public/textures/mcwdoors/birch_western_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/birch_whispering_door.png b/public/textures/mcwdoors/birch_whispering_door.png deleted file mode 100644 index 035538ef..00000000 Binary files a/public/textures/mcwdoors/birch_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_bamboo_door.png b/public/textures/mcwdoors/cherry_bamboo_door.png deleted file mode 100644 index 61f3f8d0..00000000 Binary files a/public/textures/mcwdoors/cherry_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_bark_glass_door.png b/public/textures/mcwdoors/cherry_bark_glass_door.png deleted file mode 100644 index 5165e39c..00000000 Binary files a/public/textures/mcwdoors/cherry_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_barn_door.png b/public/textures/mcwdoors/cherry_barn_door.png deleted file mode 100644 index 2c260227..00000000 Binary files a/public/textures/mcwdoors/cherry_barn_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_barn_glass_door.png b/public/textures/mcwdoors/cherry_barn_glass_door.png deleted file mode 100644 index 656f6484..00000000 Binary files a/public/textures/mcwdoors/cherry_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_beach_door.png b/public/textures/mcwdoors/cherry_beach_door.png deleted file mode 100644 index e682c361..00000000 Binary files a/public/textures/mcwdoors/cherry_beach_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_classic_door.png b/public/textures/mcwdoors/cherry_classic_door.png deleted file mode 100644 index 1d1e51d7..00000000 Binary files a/public/textures/mcwdoors/cherry_classic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_cottage_door.png b/public/textures/mcwdoors/cherry_cottage_door.png deleted file mode 100644 index a9ad03a2..00000000 Binary files a/public/textures/mcwdoors/cherry_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_four_panel_door.png b/public/textures/mcwdoors/cherry_four_panel_door.png deleted file mode 100644 index bfd22ff1..00000000 Binary files a/public/textures/mcwdoors/cherry_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_glass_door.png b/public/textures/mcwdoors/cherry_glass_door.png deleted file mode 100644 index cc31ac0d..00000000 Binary files a/public/textures/mcwdoors/cherry_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_japanese2_door.png b/public/textures/mcwdoors/cherry_japanese2_door.png deleted file mode 100644 index abb1cd94..00000000 Binary files a/public/textures/mcwdoors/cherry_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_japanese_door.png b/public/textures/mcwdoors/cherry_japanese_door.png deleted file mode 100644 index 8137dbfd..00000000 Binary files a/public/textures/mcwdoors/cherry_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_modern_door.png b/public/textures/mcwdoors/cherry_modern_door.png deleted file mode 100644 index b0add7f7..00000000 Binary files a/public/textures/mcwdoors/cherry_modern_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_mystic_door.png b/public/textures/mcwdoors/cherry_mystic_door.png deleted file mode 100644 index 12d8acfb..00000000 Binary files a/public/textures/mcwdoors/cherry_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_nether_door.png b/public/textures/mcwdoors/cherry_nether_door.png deleted file mode 100644 index 1b78a364..00000000 Binary files a/public/textures/mcwdoors/cherry_nether_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_paper_door.png b/public/textures/mcwdoors/cherry_paper_door.png deleted file mode 100644 index ddb17188..00000000 Binary files a/public/textures/mcwdoors/cherry_paper_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_stable_door.png b/public/textures/mcwdoors/cherry_stable_door.png deleted file mode 100644 index 701d93a2..00000000 Binary files a/public/textures/mcwdoors/cherry_stable_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_stable_head_door.png b/public/textures/mcwdoors/cherry_stable_head_door.png deleted file mode 100644 index 4227222a..00000000 Binary files a/public/textures/mcwdoors/cherry_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_swamp_door.png b/public/textures/mcwdoors/cherry_swamp_door.png deleted file mode 100644 index 71d4644a..00000000 Binary files a/public/textures/mcwdoors/cherry_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_tropical_door.png b/public/textures/mcwdoors/cherry_tropical_door.png deleted file mode 100644 index 57fc65ad..00000000 Binary files a/public/textures/mcwdoors/cherry_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_western_door.png b/public/textures/mcwdoors/cherry_western_door.png deleted file mode 100644 index 6732819b..00000000 Binary files a/public/textures/mcwdoors/cherry_western_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/cherry_whispering_door.png b/public/textures/mcwdoors/cherry_whispering_door.png deleted file mode 100644 index fcbd4d9a..00000000 Binary files a/public/textures/mcwdoors/cherry_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_bamboo_door.png b/public/textures/mcwdoors/crimson_bamboo_door.png deleted file mode 100644 index 2cf50c3a..00000000 Binary files a/public/textures/mcwdoors/crimson_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_barn_door.png b/public/textures/mcwdoors/crimson_barn_door.png deleted file mode 100644 index 3be5ea0c..00000000 Binary files a/public/textures/mcwdoors/crimson_barn_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_barn_glass_door.png b/public/textures/mcwdoors/crimson_barn_glass_door.png deleted file mode 100644 index 079b5bcb..00000000 Binary files a/public/textures/mcwdoors/crimson_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_beach_door.png b/public/textures/mcwdoors/crimson_beach_door.png deleted file mode 100644 index affa0e11..00000000 Binary files a/public/textures/mcwdoors/crimson_beach_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_classic_door.png b/public/textures/mcwdoors/crimson_classic_door.png deleted file mode 100644 index ba0da57a..00000000 Binary files a/public/textures/mcwdoors/crimson_classic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_cottage_door.png b/public/textures/mcwdoors/crimson_cottage_door.png deleted file mode 100644 index 904c1877..00000000 Binary files a/public/textures/mcwdoors/crimson_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_four_panel_door.png b/public/textures/mcwdoors/crimson_four_panel_door.png deleted file mode 100644 index abc6b2ce..00000000 Binary files a/public/textures/mcwdoors/crimson_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_glass_door.png b/public/textures/mcwdoors/crimson_glass_door.png deleted file mode 100644 index 51cbe79f..00000000 Binary files a/public/textures/mcwdoors/crimson_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_japanese2_door.png b/public/textures/mcwdoors/crimson_japanese2_door.png deleted file mode 100644 index 6249c338..00000000 Binary files a/public/textures/mcwdoors/crimson_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_japanese_door.png b/public/textures/mcwdoors/crimson_japanese_door.png deleted file mode 100644 index 49ac66b9..00000000 Binary files a/public/textures/mcwdoors/crimson_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_modern_door.png b/public/textures/mcwdoors/crimson_modern_door.png deleted file mode 100644 index e37f967f..00000000 Binary files a/public/textures/mcwdoors/crimson_modern_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_mystic_door.png b/public/textures/mcwdoors/crimson_mystic_door.png deleted file mode 100644 index 841ccb2a..00000000 Binary files a/public/textures/mcwdoors/crimson_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_paper_door.png b/public/textures/mcwdoors/crimson_paper_door.png deleted file mode 100644 index 9deb209a..00000000 Binary files a/public/textures/mcwdoors/crimson_paper_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_stable_door.png b/public/textures/mcwdoors/crimson_stable_door.png deleted file mode 100644 index 88acc0ab..00000000 Binary files a/public/textures/mcwdoors/crimson_stable_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_stable_head_door.png b/public/textures/mcwdoors/crimson_stable_head_door.png deleted file mode 100644 index cfa70dc1..00000000 Binary files a/public/textures/mcwdoors/crimson_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_stem_glass_door.png b/public/textures/mcwdoors/crimson_stem_glass_door.png deleted file mode 100644 index d675f69a..00000000 Binary files a/public/textures/mcwdoors/crimson_stem_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_swamp_door.png b/public/textures/mcwdoors/crimson_swamp_door.png deleted file mode 100644 index e7cf6156..00000000 Binary files a/public/textures/mcwdoors/crimson_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_tropical_door.png b/public/textures/mcwdoors/crimson_tropical_door.png deleted file mode 100644 index 43f9264d..00000000 Binary files a/public/textures/mcwdoors/crimson_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_waffle_door.png b/public/textures/mcwdoors/crimson_waffle_door.png deleted file mode 100644 index 4df4e57b..00000000 Binary files a/public/textures/mcwdoors/crimson_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_western_door.png b/public/textures/mcwdoors/crimson_western_door.png deleted file mode 100644 index 3508ac3f..00000000 Binary files a/public/textures/mcwdoors/crimson_western_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/crimson_whispering_door.png b/public/textures/mcwdoors/crimson_whispering_door.png deleted file mode 100644 index 2c2fee1e..00000000 Binary files a/public/textures/mcwdoors/crimson_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_bamboo_door.png b/public/textures/mcwdoors/dark_oak_bamboo_door.png deleted file mode 100644 index 6365d36f..00000000 Binary files a/public/textures/mcwdoors/dark_oak_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_bark_glass_door.png b/public/textures/mcwdoors/dark_oak_bark_glass_door.png deleted file mode 100644 index 34161579..00000000 Binary files a/public/textures/mcwdoors/dark_oak_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_barn_door.png b/public/textures/mcwdoors/dark_oak_barn_door.png deleted file mode 100644 index 5221947e..00000000 Binary files a/public/textures/mcwdoors/dark_oak_barn_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_barn_glass_door.png b/public/textures/mcwdoors/dark_oak_barn_glass_door.png deleted file mode 100644 index 75f66d55..00000000 Binary files a/public/textures/mcwdoors/dark_oak_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_beach_door.png b/public/textures/mcwdoors/dark_oak_beach_door.png deleted file mode 100644 index d46a115f..00000000 Binary files a/public/textures/mcwdoors/dark_oak_beach_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_classic_door.png b/public/textures/mcwdoors/dark_oak_classic_door.png deleted file mode 100644 index affb9de5..00000000 Binary files a/public/textures/mcwdoors/dark_oak_classic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_cottage_door.png b/public/textures/mcwdoors/dark_oak_cottage_door.png deleted file mode 100644 index 739b752b..00000000 Binary files a/public/textures/mcwdoors/dark_oak_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_glass_door.png b/public/textures/mcwdoors/dark_oak_glass_door.png deleted file mode 100644 index 190c42ac..00000000 Binary files a/public/textures/mcwdoors/dark_oak_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_japanese2_door.png b/public/textures/mcwdoors/dark_oak_japanese2_door.png deleted file mode 100644 index 55310d50..00000000 Binary files a/public/textures/mcwdoors/dark_oak_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_japanese_door.png b/public/textures/mcwdoors/dark_oak_japanese_door.png deleted file mode 100644 index 7a6ffed4..00000000 Binary files a/public/textures/mcwdoors/dark_oak_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_modern_door.png b/public/textures/mcwdoors/dark_oak_modern_door.png deleted file mode 100644 index 3c399039..00000000 Binary files a/public/textures/mcwdoors/dark_oak_modern_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_mystic_door.png b/public/textures/mcwdoors/dark_oak_mystic_door.png deleted file mode 100644 index c4b19e0b..00000000 Binary files a/public/textures/mcwdoors/dark_oak_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_nether_door.png b/public/textures/mcwdoors/dark_oak_nether_door.png deleted file mode 100644 index eafb65f7..00000000 Binary files a/public/textures/mcwdoors/dark_oak_nether_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_paper_door.png b/public/textures/mcwdoors/dark_oak_paper_door.png deleted file mode 100644 index 3565e4f7..00000000 Binary files a/public/textures/mcwdoors/dark_oak_paper_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_stable_door.png b/public/textures/mcwdoors/dark_oak_stable_door.png deleted file mode 100644 index ba47b043..00000000 Binary files a/public/textures/mcwdoors/dark_oak_stable_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_stable_head_door.png b/public/textures/mcwdoors/dark_oak_stable_head_door.png deleted file mode 100644 index 5f94f63b..00000000 Binary files a/public/textures/mcwdoors/dark_oak_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_swamp_door.png b/public/textures/mcwdoors/dark_oak_swamp_door.png deleted file mode 100644 index d2deaf5d..00000000 Binary files a/public/textures/mcwdoors/dark_oak_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_tropical_door.png b/public/textures/mcwdoors/dark_oak_tropical_door.png deleted file mode 100644 index 1c0a2fe2..00000000 Binary files a/public/textures/mcwdoors/dark_oak_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_waffle_door.png b/public/textures/mcwdoors/dark_oak_waffle_door.png deleted file mode 100644 index d5874319..00000000 Binary files a/public/textures/mcwdoors/dark_oak_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_western_door.png b/public/textures/mcwdoors/dark_oak_western_door.png deleted file mode 100644 index ecd009ee..00000000 Binary files a/public/textures/mcwdoors/dark_oak_western_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/dark_oak_whispering_door.png b/public/textures/mcwdoors/dark_oak_whispering_door.png deleted file mode 100644 index 7fde6e36..00000000 Binary files a/public/textures/mcwdoors/dark_oak_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/garage_black_door.png b/public/textures/mcwdoors/garage_black_door.png deleted file mode 100644 index fd389e3a..00000000 Binary files a/public/textures/mcwdoors/garage_black_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/garage_gray_door.png b/public/textures/mcwdoors/garage_gray_door.png deleted file mode 100644 index d1d87afe..00000000 Binary files a/public/textures/mcwdoors/garage_gray_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/garage_silver_door.png b/public/textures/mcwdoors/garage_silver_door.png deleted file mode 100644 index c0fc4746..00000000 Binary files a/public/textures/mcwdoors/garage_silver_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/garage_white_door.png b/public/textures/mcwdoors/garage_white_door.png deleted file mode 100644 index 6f4ff1c2..00000000 Binary files a/public/textures/mcwdoors/garage_white_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/iron_portcullis.png b/public/textures/mcwdoors/iron_portcullis.png deleted file mode 100644 index 4ede2ebc..00000000 Binary files a/public/textures/mcwdoors/iron_portcullis.png and /dev/null differ diff --git a/public/textures/mcwdoors/jail_door.png b/public/textures/mcwdoors/jail_door.png deleted file mode 100644 index b3faf584..00000000 Binary files a/public/textures/mcwdoors/jail_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_bamboo_door.png b/public/textures/mcwdoors/jungle_bamboo_door.png deleted file mode 100644 index 6bad685c..00000000 Binary files a/public/textures/mcwdoors/jungle_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_bark_glass_door.png b/public/textures/mcwdoors/jungle_bark_glass_door.png deleted file mode 100644 index 3a9b9a7d..00000000 Binary files a/public/textures/mcwdoors/jungle_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_barn_door.png b/public/textures/mcwdoors/jungle_barn_door.png deleted file mode 100644 index e79fca3d..00000000 Binary files a/public/textures/mcwdoors/jungle_barn_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_barn_glass_door.png b/public/textures/mcwdoors/jungle_barn_glass_door.png deleted file mode 100644 index 12df8086..00000000 Binary files a/public/textures/mcwdoors/jungle_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_classic_door.png b/public/textures/mcwdoors/jungle_classic_door.png deleted file mode 100644 index 0dad2674..00000000 Binary files a/public/textures/mcwdoors/jungle_classic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_cottage_door.png b/public/textures/mcwdoors/jungle_cottage_door.png deleted file mode 100644 index 0891321a..00000000 Binary files a/public/textures/mcwdoors/jungle_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_four_panel_door.png b/public/textures/mcwdoors/jungle_four_panel_door.png deleted file mode 100644 index 692ffa52..00000000 Binary files a/public/textures/mcwdoors/jungle_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_glass_door.png b/public/textures/mcwdoors/jungle_glass_door.png deleted file mode 100644 index 6f89c1bb..00000000 Binary files a/public/textures/mcwdoors/jungle_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_japanese2_door.png b/public/textures/mcwdoors/jungle_japanese2_door.png deleted file mode 100644 index 25943990..00000000 Binary files a/public/textures/mcwdoors/jungle_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_japanese_door.png b/public/textures/mcwdoors/jungle_japanese_door.png deleted file mode 100644 index 3c2169c7..00000000 Binary files a/public/textures/mcwdoors/jungle_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_modern_door.png b/public/textures/mcwdoors/jungle_modern_door.png deleted file mode 100644 index 9614f66b..00000000 Binary files a/public/textures/mcwdoors/jungle_modern_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_mystic_door.png b/public/textures/mcwdoors/jungle_mystic_door.png deleted file mode 100644 index 7a795a3d..00000000 Binary files a/public/textures/mcwdoors/jungle_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_nether_door.png b/public/textures/mcwdoors/jungle_nether_door.png deleted file mode 100644 index a89669d1..00000000 Binary files a/public/textures/mcwdoors/jungle_nether_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_paper_door.png b/public/textures/mcwdoors/jungle_paper_door.png deleted file mode 100644 index 5bbce89a..00000000 Binary files a/public/textures/mcwdoors/jungle_paper_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_stable_door.png b/public/textures/mcwdoors/jungle_stable_door.png deleted file mode 100644 index a96758c0..00000000 Binary files a/public/textures/mcwdoors/jungle_stable_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_stable_head_door.png b/public/textures/mcwdoors/jungle_stable_head_door.png deleted file mode 100644 index d0d009d2..00000000 Binary files a/public/textures/mcwdoors/jungle_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_swamp_door.png b/public/textures/mcwdoors/jungle_swamp_door.png deleted file mode 100644 index 3a1cbbae..00000000 Binary files a/public/textures/mcwdoors/jungle_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_tropical_door.png b/public/textures/mcwdoors/jungle_tropical_door.png deleted file mode 100644 index 673227e7..00000000 Binary files a/public/textures/mcwdoors/jungle_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_waffle_door.png b/public/textures/mcwdoors/jungle_waffle_door.png deleted file mode 100644 index ccabe2aa..00000000 Binary files a/public/textures/mcwdoors/jungle_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_western_door.png b/public/textures/mcwdoors/jungle_western_door.png deleted file mode 100644 index 8c41c264..00000000 Binary files a/public/textures/mcwdoors/jungle_western_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/jungle_whispering_door.png b/public/textures/mcwdoors/jungle_whispering_door.png deleted file mode 100644 index 10b19482..00000000 Binary files a/public/textures/mcwdoors/jungle_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_bamboo_door.png b/public/textures/mcwdoors/mangrove_bamboo_door.png deleted file mode 100644 index f8d5841f..00000000 Binary files a/public/textures/mcwdoors/mangrove_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_bark_glass_door.png b/public/textures/mcwdoors/mangrove_bark_glass_door.png deleted file mode 100644 index 229c056a..00000000 Binary files a/public/textures/mcwdoors/mangrove_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_barn_door.png b/public/textures/mcwdoors/mangrove_barn_door.png deleted file mode 100644 index 29101b0b..00000000 Binary files a/public/textures/mcwdoors/mangrove_barn_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_barn_glass_door.png b/public/textures/mcwdoors/mangrove_barn_glass_door.png deleted file mode 100644 index cef43feb..00000000 Binary files a/public/textures/mcwdoors/mangrove_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_beach_door.png b/public/textures/mcwdoors/mangrove_beach_door.png deleted file mode 100644 index b6ab9056..00000000 Binary files a/public/textures/mcwdoors/mangrove_beach_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_classic_door.png b/public/textures/mcwdoors/mangrove_classic_door.png deleted file mode 100644 index 79c8cf94..00000000 Binary files a/public/textures/mcwdoors/mangrove_classic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_cottage_door.png b/public/textures/mcwdoors/mangrove_cottage_door.png deleted file mode 100644 index a603ece3..00000000 Binary files a/public/textures/mcwdoors/mangrove_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_four_panel_door.png b/public/textures/mcwdoors/mangrove_four_panel_door.png deleted file mode 100644 index 6752db99..00000000 Binary files a/public/textures/mcwdoors/mangrove_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_glass_door.png b/public/textures/mcwdoors/mangrove_glass_door.png deleted file mode 100644 index 7d6bb94f..00000000 Binary files a/public/textures/mcwdoors/mangrove_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_japanese2_door.png b/public/textures/mcwdoors/mangrove_japanese2_door.png deleted file mode 100644 index 4f19bf81..00000000 Binary files a/public/textures/mcwdoors/mangrove_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_japanese_door.png b/public/textures/mcwdoors/mangrove_japanese_door.png deleted file mode 100644 index ddeb44d7..00000000 Binary files a/public/textures/mcwdoors/mangrove_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_modern_door.png b/public/textures/mcwdoors/mangrove_modern_door.png deleted file mode 100644 index 0aa4b140..00000000 Binary files a/public/textures/mcwdoors/mangrove_modern_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_mystic_door.png b/public/textures/mcwdoors/mangrove_mystic_door.png deleted file mode 100644 index b1b5add7..00000000 Binary files a/public/textures/mcwdoors/mangrove_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_nether_door.png b/public/textures/mcwdoors/mangrove_nether_door.png deleted file mode 100644 index f5abddbd..00000000 Binary files a/public/textures/mcwdoors/mangrove_nether_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_paper_door.png b/public/textures/mcwdoors/mangrove_paper_door.png deleted file mode 100644 index 5d13adaf..00000000 Binary files a/public/textures/mcwdoors/mangrove_paper_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_stable_door.png b/public/textures/mcwdoors/mangrove_stable_door.png deleted file mode 100644 index bddcea33..00000000 Binary files a/public/textures/mcwdoors/mangrove_stable_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_stable_head_door.png b/public/textures/mcwdoors/mangrove_stable_head_door.png deleted file mode 100644 index 97637752..00000000 Binary files a/public/textures/mcwdoors/mangrove_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_tropical_door.png b/public/textures/mcwdoors/mangrove_tropical_door.png deleted file mode 100644 index d81cf4ba..00000000 Binary files a/public/textures/mcwdoors/mangrove_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_waffle_door.png b/public/textures/mcwdoors/mangrove_waffle_door.png deleted file mode 100644 index 290c5e9c..00000000 Binary files a/public/textures/mcwdoors/mangrove_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/mangrove_western_door.png b/public/textures/mcwdoors/mangrove_western_door.png deleted file mode 100644 index 993c3577..00000000 Binary files a/public/textures/mcwdoors/mangrove_western_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/metal_door.png b/public/textures/mcwdoors/metal_door.png deleted file mode 100644 index 15ca6a81..00000000 Binary files a/public/textures/mcwdoors/metal_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/metal_hospital_door.png b/public/textures/mcwdoors/metal_hospital_door.png deleted file mode 100644 index dee6a375..00000000 Binary files a/public/textures/mcwdoors/metal_hospital_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/metal_reinforced_door.png b/public/textures/mcwdoors/metal_reinforced_door.png deleted file mode 100644 index 45f63363..00000000 Binary files a/public/textures/mcwdoors/metal_reinforced_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/metal_warning_door.png b/public/textures/mcwdoors/metal_warning_door.png deleted file mode 100644 index ab5c40bf..00000000 Binary files a/public/textures/mcwdoors/metal_warning_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/metal_windowed_door.png b/public/textures/mcwdoors/metal_windowed_door.png deleted file mode 100644 index bb95ea53..00000000 Binary files a/public/textures/mcwdoors/metal_windowed_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_bamboo_door.png b/public/textures/mcwdoors/oak_bamboo_door.png deleted file mode 100644 index 96e25604..00000000 Binary files a/public/textures/mcwdoors/oak_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_bark_glass_door.png b/public/textures/mcwdoors/oak_bark_glass_door.png deleted file mode 100644 index 86e33e04..00000000 Binary files a/public/textures/mcwdoors/oak_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_barn_door.png b/public/textures/mcwdoors/oak_barn_door.png deleted file mode 100644 index fe3e3554..00000000 Binary files a/public/textures/mcwdoors/oak_barn_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_barn_glass_door.png b/public/textures/mcwdoors/oak_barn_glass_door.png deleted file mode 100644 index 85b51660..00000000 Binary files a/public/textures/mcwdoors/oak_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_beach_door.png b/public/textures/mcwdoors/oak_beach_door.png deleted file mode 100644 index 09cbb874..00000000 Binary files a/public/textures/mcwdoors/oak_beach_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_cottage_door.png b/public/textures/mcwdoors/oak_cottage_door.png deleted file mode 100644 index 5d681238..00000000 Binary files a/public/textures/mcwdoors/oak_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_four_panel_door.png b/public/textures/mcwdoors/oak_four_panel_door.png deleted file mode 100644 index d1ab3b3b..00000000 Binary files a/public/textures/mcwdoors/oak_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_glass_door.png b/public/textures/mcwdoors/oak_glass_door.png deleted file mode 100644 index a3d82eb0..00000000 Binary files a/public/textures/mcwdoors/oak_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_japanese2_door.png b/public/textures/mcwdoors/oak_japanese2_door.png deleted file mode 100644 index b0d93801..00000000 Binary files a/public/textures/mcwdoors/oak_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_japanese_door.png b/public/textures/mcwdoors/oak_japanese_door.png deleted file mode 100644 index d4761792..00000000 Binary files a/public/textures/mcwdoors/oak_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_modern_door.png b/public/textures/mcwdoors/oak_modern_door.png deleted file mode 100644 index ed0444bd..00000000 Binary files a/public/textures/mcwdoors/oak_modern_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_mystic_door.png b/public/textures/mcwdoors/oak_mystic_door.png deleted file mode 100644 index 288e088b..00000000 Binary files a/public/textures/mcwdoors/oak_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_nether_door.png b/public/textures/mcwdoors/oak_nether_door.png deleted file mode 100644 index d8226b6b..00000000 Binary files a/public/textures/mcwdoors/oak_nether_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_paper_door.png b/public/textures/mcwdoors/oak_paper_door.png deleted file mode 100644 index 96685177..00000000 Binary files a/public/textures/mcwdoors/oak_paper_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_stable_door.png b/public/textures/mcwdoors/oak_stable_door.png deleted file mode 100644 index 8ac1010d..00000000 Binary files a/public/textures/mcwdoors/oak_stable_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_stable_head_door.png b/public/textures/mcwdoors/oak_stable_head_door.png deleted file mode 100644 index 3fb82a63..00000000 Binary files a/public/textures/mcwdoors/oak_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_swamp_door.png b/public/textures/mcwdoors/oak_swamp_door.png deleted file mode 100644 index 2ad7d1eb..00000000 Binary files a/public/textures/mcwdoors/oak_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_tropical_door.png b/public/textures/mcwdoors/oak_tropical_door.png deleted file mode 100644 index 633621a4..00000000 Binary files a/public/textures/mcwdoors/oak_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_waffle_door.png b/public/textures/mcwdoors/oak_waffle_door.png deleted file mode 100644 index 57aac04e..00000000 Binary files a/public/textures/mcwdoors/oak_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_western_door.png b/public/textures/mcwdoors/oak_western_door.png deleted file mode 100644 index b0a94492..00000000 Binary files a/public/textures/mcwdoors/oak_western_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/oak_whispering_door.png b/public/textures/mcwdoors/oak_whispering_door.png deleted file mode 100644 index 7af69cd3..00000000 Binary files a/public/textures/mcwdoors/oak_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_acacia.png b/public/textures/mcwdoors/print_acacia.png deleted file mode 100644 index ac8e40fc..00000000 Binary files a/public/textures/mcwdoors/print_acacia.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_bamboo.png b/public/textures/mcwdoors/print_bamboo.png deleted file mode 100644 index 4d125d7e..00000000 Binary files a/public/textures/mcwdoors/print_bamboo.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_birch.png b/public/textures/mcwdoors/print_birch.png deleted file mode 100644 index ad89345c..00000000 Binary files a/public/textures/mcwdoors/print_birch.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_dark_oak.png b/public/textures/mcwdoors/print_dark_oak.png deleted file mode 100644 index 9e96ca77..00000000 Binary files a/public/textures/mcwdoors/print_dark_oak.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_jungle.png b/public/textures/mcwdoors/print_jungle.png deleted file mode 100644 index 3912f12d..00000000 Binary files a/public/textures/mcwdoors/print_jungle.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_mystic.png b/public/textures/mcwdoors/print_mystic.png deleted file mode 100644 index dc71fd25..00000000 Binary files a/public/textures/mcwdoors/print_mystic.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_nether.png b/public/textures/mcwdoors/print_nether.png deleted file mode 100644 index 7771fb1c..00000000 Binary files a/public/textures/mcwdoors/print_nether.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_oak.png b/public/textures/mcwdoors/print_oak.png deleted file mode 100644 index e59a9166..00000000 Binary files a/public/textures/mcwdoors/print_oak.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_spruce.png b/public/textures/mcwdoors/print_spruce.png deleted file mode 100644 index 8cd9aaba..00000000 Binary files a/public/textures/mcwdoors/print_spruce.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_swamp.png b/public/textures/mcwdoors/print_swamp.png deleted file mode 100644 index 40966fc4..00000000 Binary files a/public/textures/mcwdoors/print_swamp.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_waffle.png b/public/textures/mcwdoors/print_waffle.png deleted file mode 100644 index b8dff0ff..00000000 Binary files a/public/textures/mcwdoors/print_waffle.png and /dev/null differ diff --git a/public/textures/mcwdoors/print_whispering.png b/public/textures/mcwdoors/print_whispering.png deleted file mode 100644 index 9790f28d..00000000 Binary files a/public/textures/mcwdoors/print_whispering.png and /dev/null differ diff --git a/public/textures/mcwdoors/sliding_glass_door.png b/public/textures/mcwdoors/sliding_glass_door.png deleted file mode 100644 index 6dcfcee1..00000000 Binary files a/public/textures/mcwdoors/sliding_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_bamboo_door.png b/public/textures/mcwdoors/spruce_bamboo_door.png deleted file mode 100644 index c2be07ab..00000000 Binary files a/public/textures/mcwdoors/spruce_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_bark_glass_door.png b/public/textures/mcwdoors/spruce_bark_glass_door.png deleted file mode 100644 index 2068e771..00000000 Binary files a/public/textures/mcwdoors/spruce_bark_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_barn_door.png b/public/textures/mcwdoors/spruce_barn_door.png deleted file mode 100644 index af516a5b..00000000 Binary files a/public/textures/mcwdoors/spruce_barn_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_barn_glass_door.png b/public/textures/mcwdoors/spruce_barn_glass_door.png deleted file mode 100644 index 31fa34ff..00000000 Binary files a/public/textures/mcwdoors/spruce_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_beach_door.png b/public/textures/mcwdoors/spruce_beach_door.png deleted file mode 100644 index cfaa7c53..00000000 Binary files a/public/textures/mcwdoors/spruce_beach_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_classic_door.png b/public/textures/mcwdoors/spruce_classic_door.png deleted file mode 100644 index a79e55c7..00000000 Binary files a/public/textures/mcwdoors/spruce_classic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_four_panel_door.png b/public/textures/mcwdoors/spruce_four_panel_door.png deleted file mode 100644 index 2723dde8..00000000 Binary files a/public/textures/mcwdoors/spruce_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_glass_door.png b/public/textures/mcwdoors/spruce_glass_door.png deleted file mode 100644 index da0355e5..00000000 Binary files a/public/textures/mcwdoors/spruce_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_japanese2_door.png b/public/textures/mcwdoors/spruce_japanese2_door.png deleted file mode 100644 index ca72b091..00000000 Binary files a/public/textures/mcwdoors/spruce_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_japanese_door.png b/public/textures/mcwdoors/spruce_japanese_door.png deleted file mode 100644 index 969761fc..00000000 Binary files a/public/textures/mcwdoors/spruce_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_modern_door.png b/public/textures/mcwdoors/spruce_modern_door.png deleted file mode 100644 index b85195bd..00000000 Binary files a/public/textures/mcwdoors/spruce_modern_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_mystic_door.png b/public/textures/mcwdoors/spruce_mystic_door.png deleted file mode 100644 index 22fcf1c6..00000000 Binary files a/public/textures/mcwdoors/spruce_mystic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_nether_door.png b/public/textures/mcwdoors/spruce_nether_door.png deleted file mode 100644 index c0d0a5a9..00000000 Binary files a/public/textures/mcwdoors/spruce_nether_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_paper_door.png b/public/textures/mcwdoors/spruce_paper_door.png deleted file mode 100644 index cdebf401..00000000 Binary files a/public/textures/mcwdoors/spruce_paper_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_stable_door.png b/public/textures/mcwdoors/spruce_stable_door.png deleted file mode 100644 index f60df330..00000000 Binary files a/public/textures/mcwdoors/spruce_stable_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_stable_head_door.png b/public/textures/mcwdoors/spruce_stable_head_door.png deleted file mode 100644 index 0224a097..00000000 Binary files a/public/textures/mcwdoors/spruce_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_swamp_door.png b/public/textures/mcwdoors/spruce_swamp_door.png deleted file mode 100644 index 36719a4e..00000000 Binary files a/public/textures/mcwdoors/spruce_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_tropical_door.png b/public/textures/mcwdoors/spruce_tropical_door.png deleted file mode 100644 index 701c960f..00000000 Binary files a/public/textures/mcwdoors/spruce_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_waffle_door.png b/public/textures/mcwdoors/spruce_waffle_door.png deleted file mode 100644 index e984d696..00000000 Binary files a/public/textures/mcwdoors/spruce_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_western_door.png b/public/textures/mcwdoors/spruce_western_door.png deleted file mode 100644 index 3763fdaa..00000000 Binary files a/public/textures/mcwdoors/spruce_western_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/spruce_whispering_door.png b/public/textures/mcwdoors/spruce_whispering_door.png deleted file mode 100644 index 9f1bede3..00000000 Binary files a/public/textures/mcwdoors/spruce_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/store_door.png b/public/textures/mcwdoors/store_door.png deleted file mode 100644 index 9e309255..00000000 Binary files a/public/textures/mcwdoors/store_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_bamboo_door.png b/public/textures/mcwdoors/warped_bamboo_door.png deleted file mode 100644 index 8fa346eb..00000000 Binary files a/public/textures/mcwdoors/warped_bamboo_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_barn_door.png b/public/textures/mcwdoors/warped_barn_door.png deleted file mode 100644 index d0da1869..00000000 Binary files a/public/textures/mcwdoors/warped_barn_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_barn_glass_door.png b/public/textures/mcwdoors/warped_barn_glass_door.png deleted file mode 100644 index 17888eba..00000000 Binary files a/public/textures/mcwdoors/warped_barn_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_beach_door.png b/public/textures/mcwdoors/warped_beach_door.png deleted file mode 100644 index 59e38259..00000000 Binary files a/public/textures/mcwdoors/warped_beach_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_classic_door.png b/public/textures/mcwdoors/warped_classic_door.png deleted file mode 100644 index 47425363..00000000 Binary files a/public/textures/mcwdoors/warped_classic_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_cottage_door.png b/public/textures/mcwdoors/warped_cottage_door.png deleted file mode 100644 index 5b63d4d1..00000000 Binary files a/public/textures/mcwdoors/warped_cottage_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_four_panel_door.png b/public/textures/mcwdoors/warped_four_panel_door.png deleted file mode 100644 index 9261b87d..00000000 Binary files a/public/textures/mcwdoors/warped_four_panel_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_glass_door.png b/public/textures/mcwdoors/warped_glass_door.png deleted file mode 100644 index 275cdc48..00000000 Binary files a/public/textures/mcwdoors/warped_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_japanese2_door.png b/public/textures/mcwdoors/warped_japanese2_door.png deleted file mode 100644 index 2c1ac7eb..00000000 Binary files a/public/textures/mcwdoors/warped_japanese2_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_japanese_door.png b/public/textures/mcwdoors/warped_japanese_door.png deleted file mode 100644 index c7f47f4a..00000000 Binary files a/public/textures/mcwdoors/warped_japanese_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_modern_door.png b/public/textures/mcwdoors/warped_modern_door.png deleted file mode 100644 index 0f5a47db..00000000 Binary files a/public/textures/mcwdoors/warped_modern_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_nether_door.png b/public/textures/mcwdoors/warped_nether_door.png deleted file mode 100644 index c31d067c..00000000 Binary files a/public/textures/mcwdoors/warped_nether_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_paper_door.png b/public/textures/mcwdoors/warped_paper_door.png deleted file mode 100644 index 193803b5..00000000 Binary files a/public/textures/mcwdoors/warped_paper_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_stable_door.png b/public/textures/mcwdoors/warped_stable_door.png deleted file mode 100644 index 0d5345e3..00000000 Binary files a/public/textures/mcwdoors/warped_stable_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_stable_head_door.png b/public/textures/mcwdoors/warped_stable_head_door.png deleted file mode 100644 index 3004cf3b..00000000 Binary files a/public/textures/mcwdoors/warped_stable_head_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_stem_glass_door.png b/public/textures/mcwdoors/warped_stem_glass_door.png deleted file mode 100644 index ac31d6f9..00000000 Binary files a/public/textures/mcwdoors/warped_stem_glass_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_swamp_door.png b/public/textures/mcwdoors/warped_swamp_door.png deleted file mode 100644 index 8b25c934..00000000 Binary files a/public/textures/mcwdoors/warped_swamp_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_tropical_door.png b/public/textures/mcwdoors/warped_tropical_door.png deleted file mode 100644 index 0d9f94d6..00000000 Binary files a/public/textures/mcwdoors/warped_tropical_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_waffle_door.png b/public/textures/mcwdoors/warped_waffle_door.png deleted file mode 100644 index 9fc8fbc5..00000000 Binary files a/public/textures/mcwdoors/warped_waffle_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_western_door.png b/public/textures/mcwdoors/warped_western_door.png deleted file mode 100644 index dfa10e2a..00000000 Binary files a/public/textures/mcwdoors/warped_western_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/warped_whispering_door.png b/public/textures/mcwdoors/warped_whispering_door.png deleted file mode 100644 index 219338f7..00000000 Binary files a/public/textures/mcwdoors/warped_whispering_door.png and /dev/null differ diff --git a/public/textures/mcwdoors/wooden_portcullis.png b/public/textures/mcwdoors/wooden_portcullis.png deleted file mode 100644 index 23909da0..00000000 Binary files a/public/textures/mcwdoors/wooden_portcullis.png and /dev/null differ diff --git a/public/textures/mcwfences/acacia_curved_gate.png b/public/textures/mcwfences/acacia_curved_gate.png deleted file mode 100644 index 8937e1af..00000000 Binary files a/public/textures/mcwfences/acacia_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/acacia_hedge.png b/public/textures/mcwfences/acacia_hedge.png deleted file mode 100644 index 8c13e0a2..00000000 Binary files a/public/textures/mcwfences/acacia_hedge.png and /dev/null differ diff --git a/public/textures/mcwfences/acacia_highley_gate.png b/public/textures/mcwfences/acacia_highley_gate.png deleted file mode 100644 index c4f23353..00000000 Binary files a/public/textures/mcwfences/acacia_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/acacia_horse_fence.png b/public/textures/mcwfences/acacia_horse_fence.png deleted file mode 100644 index ccea4582..00000000 Binary files a/public/textures/mcwfences/acacia_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/acacia_picket_fence.png b/public/textures/mcwfences/acacia_picket_fence.png deleted file mode 100644 index e13578e0..00000000 Binary files a/public/textures/mcwfences/acacia_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/acacia_pyramid_gate.png b/public/textures/mcwfences/acacia_pyramid_gate.png deleted file mode 100644 index d155d3ba..00000000 Binary files a/public/textures/mcwfences/acacia_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/acacia_stockade_fence.png b/public/textures/mcwfences/acacia_stockade_fence.png deleted file mode 100644 index 4f5aa6ef..00000000 Binary files a/public/textures/mcwfences/acacia_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/acacia_wired_fence.png b/public/textures/mcwfences/acacia_wired_fence.png deleted file mode 100644 index 15885176..00000000 Binary files a/public/textures/mcwfences/acacia_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/acorn_metal_fence.png b/public/textures/mcwfences/acorn_metal_fence.png deleted file mode 100644 index 1009d29e..00000000 Binary files a/public/textures/mcwfences/acorn_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/andesite_grass_topped_wall.png b/public/textures/mcwfences/andesite_grass_topped_wall.png deleted file mode 100644 index 245d5a0c..00000000 Binary files a/public/textures/mcwfences/andesite_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/andesite_pillar_wall.png b/public/textures/mcwfences/andesite_pillar_wall.png deleted file mode 100644 index 9aa4a505..00000000 Binary files a/public/textures/mcwfences/andesite_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/andesite_railing_gate.png b/public/textures/mcwfences/andesite_railing_gate.png deleted file mode 100644 index 6d641307..00000000 Binary files a/public/textures/mcwfences/andesite_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/azalea_hedge.png b/public/textures/mcwfences/azalea_hedge.png deleted file mode 100644 index 9db843a5..00000000 Binary files a/public/textures/mcwfences/azalea_hedge.png and /dev/null differ diff --git a/public/textures/mcwfences/bamboo_curved_gate.png b/public/textures/mcwfences/bamboo_curved_gate.png deleted file mode 100644 index a1e99d5d..00000000 Binary files a/public/textures/mcwfences/bamboo_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/bamboo_fence.png b/public/textures/mcwfences/bamboo_fence.png deleted file mode 100644 index 354a2fbb..00000000 Binary files a/public/textures/mcwfences/bamboo_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/bamboo_highley_gate.png b/public/textures/mcwfences/bamboo_highley_gate.png deleted file mode 100644 index 9ba734f2..00000000 Binary files a/public/textures/mcwfences/bamboo_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/bamboo_horse_fence.png b/public/textures/mcwfences/bamboo_horse_fence.png deleted file mode 100644 index dcb4582b..00000000 Binary files a/public/textures/mcwfences/bamboo_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/bamboo_picket_fence.png b/public/textures/mcwfences/bamboo_picket_fence.png deleted file mode 100644 index b73b18c3..00000000 Binary files a/public/textures/mcwfences/bamboo_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/bamboo_pyramid_gate.png b/public/textures/mcwfences/bamboo_pyramid_gate.png deleted file mode 100644 index 79e3639d..00000000 Binary files a/public/textures/mcwfences/bamboo_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/bamboo_stockade_fence.png b/public/textures/mcwfences/bamboo_stockade_fence.png deleted file mode 100644 index 4647618a..00000000 Binary files a/public/textures/mcwfences/bamboo_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/bamboo_wired_fence.png b/public/textures/mcwfences/bamboo_wired_fence.png deleted file mode 100644 index c3192c24..00000000 Binary files a/public/textures/mcwfences/bamboo_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/bastion_metal_fence.png b/public/textures/mcwfences/bastion_metal_fence.png deleted file mode 100644 index 7ddd1ff9..00000000 Binary files a/public/textures/mcwfences/bastion_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/bastion_metal_fence_gate.png b/public/textures/mcwfences/bastion_metal_fence_gate.png deleted file mode 100644 index 1192ea4a..00000000 Binary files a/public/textures/mcwfences/bastion_metal_fence_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/birch_curved_gate.png b/public/textures/mcwfences/birch_curved_gate.png deleted file mode 100644 index 3de9c06a..00000000 Binary files a/public/textures/mcwfences/birch_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/birch_hedge.png b/public/textures/mcwfences/birch_hedge.png deleted file mode 100644 index e288f32d..00000000 Binary files a/public/textures/mcwfences/birch_hedge.png and /dev/null differ diff --git a/public/textures/mcwfences/birch_highley_gate.png b/public/textures/mcwfences/birch_highley_gate.png deleted file mode 100644 index 693094b8..00000000 Binary files a/public/textures/mcwfences/birch_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/birch_horse_fence.png b/public/textures/mcwfences/birch_horse_fence.png deleted file mode 100644 index dcc3b1e1..00000000 Binary files a/public/textures/mcwfences/birch_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/birch_picket_fence.png b/public/textures/mcwfences/birch_picket_fence.png deleted file mode 100644 index c5286531..00000000 Binary files a/public/textures/mcwfences/birch_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/birch_pyramid_gate.png b/public/textures/mcwfences/birch_pyramid_gate.png deleted file mode 100644 index 7f5c420e..00000000 Binary files a/public/textures/mcwfences/birch_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/birch_stockade_fence.png b/public/textures/mcwfences/birch_stockade_fence.png deleted file mode 100644 index 39749d66..00000000 Binary files a/public/textures/mcwfences/birch_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/birch_wired_fence.png b/public/textures/mcwfences/birch_wired_fence.png deleted file mode 100644 index e834d481..00000000 Binary files a/public/textures/mcwfences/birch_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/blackstone_brick_railing_gate.png b/public/textures/mcwfences/blackstone_brick_railing_gate.png deleted file mode 100644 index a14f029e..00000000 Binary files a/public/textures/mcwfences/blackstone_brick_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/blackstone_grass_topped_wall.png b/public/textures/mcwfences/blackstone_grass_topped_wall.png deleted file mode 100644 index 7dfbb900..00000000 Binary files a/public/textures/mcwfences/blackstone_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/blackstone_pillar_wall.png b/public/textures/mcwfences/blackstone_pillar_wall.png deleted file mode 100644 index b8240da1..00000000 Binary files a/public/textures/mcwfences/blackstone_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/blackstone_railing_gate.png b/public/textures/mcwfences/blackstone_railing_gate.png deleted file mode 100644 index 3b651631..00000000 Binary files a/public/textures/mcwfences/blackstone_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/cathedral_metal_fence.png b/public/textures/mcwfences/cathedral_metal_fence.png deleted file mode 100644 index 36095e57..00000000 Binary files a/public/textures/mcwfences/cathedral_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/cherry_curved_gate.png b/public/textures/mcwfences/cherry_curved_gate.png deleted file mode 100644 index 6df456f3..00000000 Binary files a/public/textures/mcwfences/cherry_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/cherry_hedge.png b/public/textures/mcwfences/cherry_hedge.png deleted file mode 100644 index 51d0ac1b..00000000 Binary files a/public/textures/mcwfences/cherry_hedge.png and /dev/null differ diff --git a/public/textures/mcwfences/cherry_highley_gate.png b/public/textures/mcwfences/cherry_highley_gate.png deleted file mode 100644 index 11d1e00b..00000000 Binary files a/public/textures/mcwfences/cherry_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/cherry_horse_fence.png b/public/textures/mcwfences/cherry_horse_fence.png deleted file mode 100644 index 8ef7922c..00000000 Binary files a/public/textures/mcwfences/cherry_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/cherry_picket_fence.png b/public/textures/mcwfences/cherry_picket_fence.png deleted file mode 100644 index 6b7a3abc..00000000 Binary files a/public/textures/mcwfences/cherry_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/cherry_pyramid_gate.png b/public/textures/mcwfences/cherry_pyramid_gate.png deleted file mode 100644 index 2543cdae..00000000 Binary files a/public/textures/mcwfences/cherry_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/cherry_stockade_fence.png b/public/textures/mcwfences/cherry_stockade_fence.png deleted file mode 100644 index c3ce0def..00000000 Binary files a/public/textures/mcwfences/cherry_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/cherry_wired_fence.png b/public/textures/mcwfences/cherry_wired_fence.png deleted file mode 100644 index 48b264ff..00000000 Binary files a/public/textures/mcwfences/cherry_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/crimson_curved_gate.png b/public/textures/mcwfences/crimson_curved_gate.png deleted file mode 100644 index 65c148b8..00000000 Binary files a/public/textures/mcwfences/crimson_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/crimson_highley_gate.png b/public/textures/mcwfences/crimson_highley_gate.png deleted file mode 100644 index ab731107..00000000 Binary files a/public/textures/mcwfences/crimson_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/crimson_horse_fence.png b/public/textures/mcwfences/crimson_horse_fence.png deleted file mode 100644 index 48309eb4..00000000 Binary files a/public/textures/mcwfences/crimson_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/crimson_picket_fence.png b/public/textures/mcwfences/crimson_picket_fence.png deleted file mode 100644 index 25d90571..00000000 Binary files a/public/textures/mcwfences/crimson_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/crimson_pyramid_gate.png b/public/textures/mcwfences/crimson_pyramid_gate.png deleted file mode 100644 index f77d68e0..00000000 Binary files a/public/textures/mcwfences/crimson_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/crimson_stockade_fence.png b/public/textures/mcwfences/crimson_stockade_fence.png deleted file mode 100644 index 27c76dda..00000000 Binary files a/public/textures/mcwfences/crimson_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/crimson_wired_fence.png b/public/textures/mcwfences/crimson_wired_fence.png deleted file mode 100644 index 55ee8dfd..00000000 Binary files a/public/textures/mcwfences/crimson_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/curved_metal_fence.png b/public/textures/mcwfences/curved_metal_fence.png deleted file mode 100644 index dffa179e..00000000 Binary files a/public/textures/mcwfences/curved_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/curved_metal_fence_gate.png b/public/textures/mcwfences/curved_metal_fence_gate.png deleted file mode 100644 index c69ec506..00000000 Binary files a/public/textures/mcwfences/curved_metal_fence_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/dark_oak_curved_gate.png b/public/textures/mcwfences/dark_oak_curved_gate.png deleted file mode 100644 index 24f90e44..00000000 Binary files a/public/textures/mcwfences/dark_oak_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/dark_oak_hedge.png b/public/textures/mcwfences/dark_oak_hedge.png deleted file mode 100644 index 5b22c9c7..00000000 Binary files a/public/textures/mcwfences/dark_oak_hedge.png and /dev/null differ diff --git a/public/textures/mcwfences/dark_oak_highley_gate.png b/public/textures/mcwfences/dark_oak_highley_gate.png deleted file mode 100644 index f013a6d9..00000000 Binary files a/public/textures/mcwfences/dark_oak_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/dark_oak_horse_fence.png b/public/textures/mcwfences/dark_oak_horse_fence.png deleted file mode 100644 index 33373696..00000000 Binary files a/public/textures/mcwfences/dark_oak_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/dark_oak_picket_fence.png b/public/textures/mcwfences/dark_oak_picket_fence.png deleted file mode 100644 index 03ba809a..00000000 Binary files a/public/textures/mcwfences/dark_oak_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/dark_oak_pyramid_gate.png b/public/textures/mcwfences/dark_oak_pyramid_gate.png deleted file mode 100644 index 2bafb8a4..00000000 Binary files a/public/textures/mcwfences/dark_oak_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/dark_oak_stockade_fence.png b/public/textures/mcwfences/dark_oak_stockade_fence.png deleted file mode 100644 index ea1a37c2..00000000 Binary files a/public/textures/mcwfences/dark_oak_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/dark_oak_wired_fence.png b/public/textures/mcwfences/dark_oak_wired_fence.png deleted file mode 100644 index 901544e6..00000000 Binary files a/public/textures/mcwfences/dark_oak_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/deepslate_brick_grass_topped_wall.png b/public/textures/mcwfences/deepslate_brick_grass_topped_wall.png deleted file mode 100644 index 08768ebe..00000000 Binary files a/public/textures/mcwfences/deepslate_brick_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/deepslate_brick_pillar_wall.png b/public/textures/mcwfences/deepslate_brick_pillar_wall.png deleted file mode 100644 index 86c24741..00000000 Binary files a/public/textures/mcwfences/deepslate_brick_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/deepslate_brick_railing_gate.png b/public/textures/mcwfences/deepslate_brick_railing_gate.png deleted file mode 100644 index 79226bde..00000000 Binary files a/public/textures/mcwfences/deepslate_brick_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/deepslate_grass_topped_wall.png b/public/textures/mcwfences/deepslate_grass_topped_wall.png deleted file mode 100644 index 39ba2521..00000000 Binary files a/public/textures/mcwfences/deepslate_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/deepslate_pillar_wall.png b/public/textures/mcwfences/deepslate_pillar_wall.png deleted file mode 100644 index 4e29938d..00000000 Binary files a/public/textures/mcwfences/deepslate_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/deepslate_railing_gate.png b/public/textures/mcwfences/deepslate_railing_gate.png deleted file mode 100644 index 94e51a7a..00000000 Binary files a/public/textures/mcwfences/deepslate_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/diorite_grass_topped_wall.png b/public/textures/mcwfences/diorite_grass_topped_wall.png deleted file mode 100644 index 10368d74..00000000 Binary files a/public/textures/mcwfences/diorite_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/diorite_pillar_wall.png b/public/textures/mcwfences/diorite_pillar_wall.png deleted file mode 100644 index a990b772..00000000 Binary files a/public/textures/mcwfences/diorite_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/diorite_railing_gate.png b/public/textures/mcwfences/diorite_railing_gate.png deleted file mode 100644 index 58ef33d7..00000000 Binary files a/public/textures/mcwfences/diorite_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/double_curved_metal_fence.png b/public/textures/mcwfences/double_curved_metal_fence.png deleted file mode 100644 index 474a1c2c..00000000 Binary files a/public/textures/mcwfences/double_curved_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/end_brick_grass_topped_wall.png b/public/textures/mcwfences/end_brick_grass_topped_wall.png deleted file mode 100644 index 1ef5f10d..00000000 Binary files a/public/textures/mcwfences/end_brick_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/end_brick_pillar_wall.png b/public/textures/mcwfences/end_brick_pillar_wall.png deleted file mode 100644 index 287d758a..00000000 Binary files a/public/textures/mcwfences/end_brick_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/end_brick_railing_gate.png b/public/textures/mcwfences/end_brick_railing_gate.png deleted file mode 100644 index a25b8800..00000000 Binary files a/public/textures/mcwfences/end_brick_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/expanded_mesh_metal_fence.png b/public/textures/mcwfences/expanded_mesh_metal_fence.png deleted file mode 100644 index 32e34bd6..00000000 Binary files a/public/textures/mcwfences/expanded_mesh_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/flowering_azalea_hedge.png b/public/textures/mcwfences/flowering_azalea_hedge.png deleted file mode 100644 index 27a7dc0d..00000000 Binary files a/public/textures/mcwfences/flowering_azalea_hedge.png and /dev/null differ diff --git a/public/textures/mcwfences/fortress_metal_fence.png b/public/textures/mcwfences/fortress_metal_fence.png deleted file mode 100644 index 9deb57cc..00000000 Binary files a/public/textures/mcwfences/fortress_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/gothic_metal_fence.png b/public/textures/mcwfences/gothic_metal_fence.png deleted file mode 100644 index c2d33f5b..00000000 Binary files a/public/textures/mcwfences/gothic_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/granite_grass_topped_wall.png b/public/textures/mcwfences/granite_grass_topped_wall.png deleted file mode 100644 index 47b6a569..00000000 Binary files a/public/textures/mcwfences/granite_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/granite_pillar_wall.png b/public/textures/mcwfences/granite_pillar_wall.png deleted file mode 100644 index 94a59187..00000000 Binary files a/public/textures/mcwfences/granite_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/granite_railing_gate.png b/public/textures/mcwfences/granite_railing_gate.png deleted file mode 100644 index 49ba0504..00000000 Binary files a/public/textures/mcwfences/granite_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/guardian_metal_fence.png b/public/textures/mcwfences/guardian_metal_fence.png deleted file mode 100644 index bc0baa45..00000000 Binary files a/public/textures/mcwfences/guardian_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/iron_cheval_de_frise.png b/public/textures/mcwfences/iron_cheval_de_frise.png deleted file mode 100644 index 7c12f30e..00000000 Binary files a/public/textures/mcwfences/iron_cheval_de_frise.png and /dev/null differ diff --git a/public/textures/mcwfences/jungle_curved_gate.png b/public/textures/mcwfences/jungle_curved_gate.png deleted file mode 100644 index 1da4aed1..00000000 Binary files a/public/textures/mcwfences/jungle_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/jungle_hedge.png b/public/textures/mcwfences/jungle_hedge.png deleted file mode 100644 index 1b7e3826..00000000 Binary files a/public/textures/mcwfences/jungle_hedge.png and /dev/null differ diff --git a/public/textures/mcwfences/jungle_highley_gate.png b/public/textures/mcwfences/jungle_highley_gate.png deleted file mode 100644 index bfa42a25..00000000 Binary files a/public/textures/mcwfences/jungle_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/jungle_horse_fence.png b/public/textures/mcwfences/jungle_horse_fence.png deleted file mode 100644 index 23eb73b3..00000000 Binary files a/public/textures/mcwfences/jungle_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/jungle_picket_fence.png b/public/textures/mcwfences/jungle_picket_fence.png deleted file mode 100644 index 5400f571..00000000 Binary files a/public/textures/mcwfences/jungle_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/jungle_pyramid_gate.png b/public/textures/mcwfences/jungle_pyramid_gate.png deleted file mode 100644 index e9a50710..00000000 Binary files a/public/textures/mcwfences/jungle_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/jungle_stockade_fence.png b/public/textures/mcwfences/jungle_stockade_fence.png deleted file mode 100644 index 4b2b3f7b..00000000 Binary files a/public/textures/mcwfences/jungle_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/jungle_wired_fence.png b/public/textures/mcwfences/jungle_wired_fence.png deleted file mode 100644 index bbd7269d..00000000 Binary files a/public/textures/mcwfences/jungle_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/majestic_metal_fence_gate.png b/public/textures/mcwfences/majestic_metal_fence_gate.png deleted file mode 100644 index f996373a..00000000 Binary files a/public/textures/mcwfences/majestic_metal_fence_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/mangrove_curved_gate.png b/public/textures/mcwfences/mangrove_curved_gate.png deleted file mode 100644 index b87f7765..00000000 Binary files a/public/textures/mcwfences/mangrove_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/mangrove_hedge.png b/public/textures/mcwfences/mangrove_hedge.png deleted file mode 100644 index 6311bc21..00000000 Binary files a/public/textures/mcwfences/mangrove_hedge.png and /dev/null differ diff --git a/public/textures/mcwfences/mangrove_highley_gate.png b/public/textures/mcwfences/mangrove_highley_gate.png deleted file mode 100644 index e3187575..00000000 Binary files a/public/textures/mcwfences/mangrove_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/mangrove_horse_fence.png b/public/textures/mcwfences/mangrove_horse_fence.png deleted file mode 100644 index 101d32e9..00000000 Binary files a/public/textures/mcwfences/mangrove_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/mangrove_picket_fence.png b/public/textures/mcwfences/mangrove_picket_fence.png deleted file mode 100644 index 7357fdb4..00000000 Binary files a/public/textures/mcwfences/mangrove_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/mangrove_pyramid_gate.png b/public/textures/mcwfences/mangrove_pyramid_gate.png deleted file mode 100644 index b6fe4f08..00000000 Binary files a/public/textures/mcwfences/mangrove_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/mangrove_stockade_fence.png b/public/textures/mcwfences/mangrove_stockade_fence.png deleted file mode 100644 index 3836841f..00000000 Binary files a/public/textures/mcwfences/mangrove_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/mangrove_wired_fence.png b/public/textures/mcwfences/mangrove_wired_fence.png deleted file mode 100644 index 3a3d66a8..00000000 Binary files a/public/textures/mcwfences/mangrove_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/mesh_metal_fence.png b/public/textures/mcwfences/mesh_metal_fence.png deleted file mode 100644 index 3c7e1736..00000000 Binary files a/public/textures/mcwfences/mesh_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/mesh_metal_fence_gate.png b/public/textures/mcwfences/mesh_metal_fence_gate.png deleted file mode 100644 index 9e4b181e..00000000 Binary files a/public/textures/mcwfences/mesh_metal_fence_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_andesite_wall.png b/public/textures/mcwfences/modern_andesite_wall.png deleted file mode 100644 index 5904b3ad..00000000 Binary files a/public/textures/mcwfences/modern_andesite_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_blackstone_wall.png b/public/textures/mcwfences/modern_blackstone_wall.png deleted file mode 100644 index b8613987..00000000 Binary files a/public/textures/mcwfences/modern_blackstone_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_deepslate_brick_wall.png b/public/textures/mcwfences/modern_deepslate_brick_wall.png deleted file mode 100644 index a81827cc..00000000 Binary files a/public/textures/mcwfences/modern_deepslate_brick_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_deepslate_wall.png b/public/textures/mcwfences/modern_deepslate_wall.png deleted file mode 100644 index 939d86ba..00000000 Binary files a/public/textures/mcwfences/modern_deepslate_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_diorite_wall.png b/public/textures/mcwfences/modern_diorite_wall.png deleted file mode 100644 index cd5066a1..00000000 Binary files a/public/textures/mcwfences/modern_diorite_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_end_brick_wall.png b/public/textures/mcwfences/modern_end_brick_wall.png deleted file mode 100644 index d2070c52..00000000 Binary files a/public/textures/mcwfences/modern_end_brick_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_granite_wall.png b/public/textures/mcwfences/modern_granite_wall.png deleted file mode 100644 index d4abb7d7..00000000 Binary files a/public/textures/mcwfences/modern_granite_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_mud_brick_wall.png b/public/textures/mcwfences/modern_mud_brick_wall.png deleted file mode 100644 index d838d3fd..00000000 Binary files a/public/textures/mcwfences/modern_mud_brick_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_nether_brick_wall.png b/public/textures/mcwfences/modern_nether_brick_wall.png deleted file mode 100644 index 60a3a165..00000000 Binary files a/public/textures/mcwfences/modern_nether_brick_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_prismarine_wall.png b/public/textures/mcwfences/modern_prismarine_wall.png deleted file mode 100644 index f649cd4e..00000000 Binary files a/public/textures/mcwfences/modern_prismarine_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_quartz_wall.png b/public/textures/mcwfences/modern_quartz_wall.png deleted file mode 100644 index ab1b5424..00000000 Binary files a/public/textures/mcwfences/modern_quartz_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_red_sandstone_wall.png b/public/textures/mcwfences/modern_red_sandstone_wall.png deleted file mode 100644 index e6a50f21..00000000 Binary files a/public/textures/mcwfences/modern_red_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_sandstone_wall.png b/public/textures/mcwfences/modern_sandstone_wall.png deleted file mode 100644 index 0ae32b7d..00000000 Binary files a/public/textures/mcwfences/modern_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/modern_stone_brick_wall.png b/public/textures/mcwfences/modern_stone_brick_wall.png deleted file mode 100644 index f7e524d3..00000000 Binary files a/public/textures/mcwfences/modern_stone_brick_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/mud_brick_grass_topped_wall.png b/public/textures/mcwfences/mud_brick_grass_topped_wall.png deleted file mode 100644 index 3e4e0ff8..00000000 Binary files a/public/textures/mcwfences/mud_brick_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/mud_brick_pillar_wall.png b/public/textures/mcwfences/mud_brick_pillar_wall.png deleted file mode 100644 index 24e6ff34..00000000 Binary files a/public/textures/mcwfences/mud_brick_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/mud_brick_railing_gate.png b/public/textures/mcwfences/mud_brick_railing_gate.png deleted file mode 100644 index f76bb96b..00000000 Binary files a/public/textures/mcwfences/mud_brick_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/nether_brick_grass_topped_wall.png b/public/textures/mcwfences/nether_brick_grass_topped_wall.png deleted file mode 100644 index db317aa8..00000000 Binary files a/public/textures/mcwfences/nether_brick_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/nether_brick_pillar_wall.png b/public/textures/mcwfences/nether_brick_pillar_wall.png deleted file mode 100644 index b4161689..00000000 Binary files a/public/textures/mcwfences/nether_brick_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/nether_brick_railing_gate.png b/public/textures/mcwfences/nether_brick_railing_gate.png deleted file mode 100644 index 2828767f..00000000 Binary files a/public/textures/mcwfences/nether_brick_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/oak_curved_gate.png b/public/textures/mcwfences/oak_curved_gate.png deleted file mode 100644 index 00b545b6..00000000 Binary files a/public/textures/mcwfences/oak_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/oak_hedge.png b/public/textures/mcwfences/oak_hedge.png deleted file mode 100644 index 81bacfcc..00000000 Binary files a/public/textures/mcwfences/oak_hedge.png and /dev/null differ diff --git a/public/textures/mcwfences/oak_highley_gate.png b/public/textures/mcwfences/oak_highley_gate.png deleted file mode 100644 index 8e136952..00000000 Binary files a/public/textures/mcwfences/oak_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/oak_horse_fence.png b/public/textures/mcwfences/oak_horse_fence.png deleted file mode 100644 index a67c52bd..00000000 Binary files a/public/textures/mcwfences/oak_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/oak_picket_fence.png b/public/textures/mcwfences/oak_picket_fence.png deleted file mode 100644 index 7a912901..00000000 Binary files a/public/textures/mcwfences/oak_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/oak_pyramid_gate.png b/public/textures/mcwfences/oak_pyramid_gate.png deleted file mode 100644 index 594a1d34..00000000 Binary files a/public/textures/mcwfences/oak_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/oak_stockade_fence.png b/public/textures/mcwfences/oak_stockade_fence.png deleted file mode 100644 index 6c699b2c..00000000 Binary files a/public/textures/mcwfences/oak_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/oak_wired_fence.png b/public/textures/mcwfences/oak_wired_fence.png deleted file mode 100644 index 789770a4..00000000 Binary files a/public/textures/mcwfences/oak_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/ornate_metal_fence.png b/public/textures/mcwfences/ornate_metal_fence.png deleted file mode 100644 index 8b007f80..00000000 Binary files a/public/textures/mcwfences/ornate_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/panelled_metal_fence.png b/public/textures/mcwfences/panelled_metal_fence.png deleted file mode 100644 index 886bec71..00000000 Binary files a/public/textures/mcwfences/panelled_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/panelled_metal_fence_gate.png b/public/textures/mcwfences/panelled_metal_fence_gate.png deleted file mode 100644 index e261bda6..00000000 Binary files a/public/textures/mcwfences/panelled_metal_fence_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/prismarine_grass_topped_wall.png b/public/textures/mcwfences/prismarine_grass_topped_wall.png deleted file mode 100644 index d1987a5b..00000000 Binary files a/public/textures/mcwfences/prismarine_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/prismarine_pillar_wall.png b/public/textures/mcwfences/prismarine_pillar_wall.png deleted file mode 100644 index d8cc6bbd..00000000 Binary files a/public/textures/mcwfences/prismarine_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/prismarine_railing_gate.png b/public/textures/mcwfences/prismarine_railing_gate.png deleted file mode 100644 index 32c12f69..00000000 Binary files a/public/textures/mcwfences/prismarine_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/quartz_grass_topped_wall.png b/public/textures/mcwfences/quartz_grass_topped_wall.png deleted file mode 100644 index 9f6b8e65..00000000 Binary files a/public/textures/mcwfences/quartz_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/quartz_pillar_wall.png b/public/textures/mcwfences/quartz_pillar_wall.png deleted file mode 100644 index 8738ce22..00000000 Binary files a/public/textures/mcwfences/quartz_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/quartz_railing_gate.png b/public/textures/mcwfences/quartz_railing_gate.png deleted file mode 100644 index bae0ae02..00000000 Binary files a/public/textures/mcwfences/quartz_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_andesite_wall.png b/public/textures/mcwfences/railing_andesite_wall.png deleted file mode 100644 index cf5888d8..00000000 Binary files a/public/textures/mcwfences/railing_andesite_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_blackstone_wall.png b/public/textures/mcwfences/railing_blackstone_wall.png deleted file mode 100644 index cbd5134d..00000000 Binary files a/public/textures/mcwfences/railing_blackstone_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_deepslate_brick_wall.png b/public/textures/mcwfences/railing_deepslate_brick_wall.png deleted file mode 100644 index 20d35129..00000000 Binary files a/public/textures/mcwfences/railing_deepslate_brick_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_deepslate_wall.png b/public/textures/mcwfences/railing_deepslate_wall.png deleted file mode 100644 index 216362c8..00000000 Binary files a/public/textures/mcwfences/railing_deepslate_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_diorite_wall.png b/public/textures/mcwfences/railing_diorite_wall.png deleted file mode 100644 index 172fef45..00000000 Binary files a/public/textures/mcwfences/railing_diorite_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_end_brick_wall.png b/public/textures/mcwfences/railing_end_brick_wall.png deleted file mode 100644 index 3e36b935..00000000 Binary files a/public/textures/mcwfences/railing_end_brick_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_granite_wall.png b/public/textures/mcwfences/railing_granite_wall.png deleted file mode 100644 index 8cfcbfd7..00000000 Binary files a/public/textures/mcwfences/railing_granite_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_mud_brick_wall.png b/public/textures/mcwfences/railing_mud_brick_wall.png deleted file mode 100644 index db2e6953..00000000 Binary files a/public/textures/mcwfences/railing_mud_brick_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_nether_brick_wall.png b/public/textures/mcwfences/railing_nether_brick_wall.png deleted file mode 100644 index 3536e3d6..00000000 Binary files a/public/textures/mcwfences/railing_nether_brick_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_prismarine_wall.png b/public/textures/mcwfences/railing_prismarine_wall.png deleted file mode 100644 index c8d20261..00000000 Binary files a/public/textures/mcwfences/railing_prismarine_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_quartz_wall.png b/public/textures/mcwfences/railing_quartz_wall.png deleted file mode 100644 index c5b8b933..00000000 Binary files a/public/textures/mcwfences/railing_quartz_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_red_sandstone_wall.png b/public/textures/mcwfences/railing_red_sandstone_wall.png deleted file mode 100644 index 336cd31e..00000000 Binary files a/public/textures/mcwfences/railing_red_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_sandstone_wall.png b/public/textures/mcwfences/railing_sandstone_wall.png deleted file mode 100644 index 5f76c1c8..00000000 Binary files a/public/textures/mcwfences/railing_sandstone_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/railing_stone_brick_wall.png b/public/textures/mcwfences/railing_stone_brick_wall.png deleted file mode 100644 index 1e3bdd47..00000000 Binary files a/public/textures/mcwfences/railing_stone_brick_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/red_sandstone_grass_topped_wall.png b/public/textures/mcwfences/red_sandstone_grass_topped_wall.png deleted file mode 100644 index 7e54a221..00000000 Binary files a/public/textures/mcwfences/red_sandstone_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/red_sandstone_pillar_wall.png b/public/textures/mcwfences/red_sandstone_pillar_wall.png deleted file mode 100644 index fa834563..00000000 Binary files a/public/textures/mcwfences/red_sandstone_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/red_sandstone_railing_gate.png b/public/textures/mcwfences/red_sandstone_railing_gate.png deleted file mode 100644 index 7b390ca4..00000000 Binary files a/public/textures/mcwfences/red_sandstone_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/sandstone_grass_topped_wall.png b/public/textures/mcwfences/sandstone_grass_topped_wall.png deleted file mode 100644 index 8cc885ac..00000000 Binary files a/public/textures/mcwfences/sandstone_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/sandstone_pillar_wall.png b/public/textures/mcwfences/sandstone_pillar_wall.png deleted file mode 100644 index cadf9a88..00000000 Binary files a/public/textures/mcwfences/sandstone_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/sandstone_railing_gate.png b/public/textures/mcwfences/sandstone_railing_gate.png deleted file mode 100644 index 4fbc631f..00000000 Binary files a/public/textures/mcwfences/sandstone_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/spruce_curved_gate.png b/public/textures/mcwfences/spruce_curved_gate.png deleted file mode 100644 index 000df17b..00000000 Binary files a/public/textures/mcwfences/spruce_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/spruce_hedge.png b/public/textures/mcwfences/spruce_hedge.png deleted file mode 100644 index eec904d4..00000000 Binary files a/public/textures/mcwfences/spruce_hedge.png and /dev/null differ diff --git a/public/textures/mcwfences/spruce_highley_gate.png b/public/textures/mcwfences/spruce_highley_gate.png deleted file mode 100644 index 2d976e2d..00000000 Binary files a/public/textures/mcwfences/spruce_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/spruce_horse_fence.png b/public/textures/mcwfences/spruce_horse_fence.png deleted file mode 100644 index 4d40f94a..00000000 Binary files a/public/textures/mcwfences/spruce_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/spruce_picket_fence.png b/public/textures/mcwfences/spruce_picket_fence.png deleted file mode 100644 index a10b0768..00000000 Binary files a/public/textures/mcwfences/spruce_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/spruce_pyramid_gate.png b/public/textures/mcwfences/spruce_pyramid_gate.png deleted file mode 100644 index 4bb47ecb..00000000 Binary files a/public/textures/mcwfences/spruce_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/spruce_stockade_fence.png b/public/textures/mcwfences/spruce_stockade_fence.png deleted file mode 100644 index 1f30ed81..00000000 Binary files a/public/textures/mcwfences/spruce_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/spruce_wired_fence.png b/public/textures/mcwfences/spruce_wired_fence.png deleted file mode 100644 index c8064130..00000000 Binary files a/public/textures/mcwfences/spruce_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/stone_brick_railing_gate.png b/public/textures/mcwfences/stone_brick_railing_gate.png deleted file mode 100644 index de670e87..00000000 Binary files a/public/textures/mcwfences/stone_brick_railing_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/stone_grass_topped_wall.png b/public/textures/mcwfences/stone_grass_topped_wall.png deleted file mode 100644 index 89f94ade..00000000 Binary files a/public/textures/mcwfences/stone_grass_topped_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/stone_pillar_wall.png b/public/textures/mcwfences/stone_pillar_wall.png deleted file mode 100644 index 95689064..00000000 Binary files a/public/textures/mcwfences/stone_pillar_wall.png and /dev/null differ diff --git a/public/textures/mcwfences/twilight_metal_fence.png b/public/textures/mcwfences/twilight_metal_fence.png deleted file mode 100644 index 5b5cc1d2..00000000 Binary files a/public/textures/mcwfences/twilight_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/vintage_metal_fence.png b/public/textures/mcwfences/vintage_metal_fence.png deleted file mode 100644 index cdf33d2b..00000000 Binary files a/public/textures/mcwfences/vintage_metal_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/warped_curved_gate.png b/public/textures/mcwfences/warped_curved_gate.png deleted file mode 100644 index 0562a0a8..00000000 Binary files a/public/textures/mcwfences/warped_curved_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/warped_highley_gate.png b/public/textures/mcwfences/warped_highley_gate.png deleted file mode 100644 index 95760d51..00000000 Binary files a/public/textures/mcwfences/warped_highley_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/warped_horse_fence.png b/public/textures/mcwfences/warped_horse_fence.png deleted file mode 100644 index 203ee748..00000000 Binary files a/public/textures/mcwfences/warped_horse_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/warped_picket_fence.png b/public/textures/mcwfences/warped_picket_fence.png deleted file mode 100644 index cf2e12fd..00000000 Binary files a/public/textures/mcwfences/warped_picket_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/warped_pyramid_gate.png b/public/textures/mcwfences/warped_pyramid_gate.png deleted file mode 100644 index 71fcb11c..00000000 Binary files a/public/textures/mcwfences/warped_pyramid_gate.png and /dev/null differ diff --git a/public/textures/mcwfences/warped_stockade_fence.png b/public/textures/mcwfences/warped_stockade_fence.png deleted file mode 100644 index 03818588..00000000 Binary files a/public/textures/mcwfences/warped_stockade_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/warped_wired_fence.png b/public/textures/mcwfences/warped_wired_fence.png deleted file mode 100644 index 59e4ecef..00000000 Binary files a/public/textures/mcwfences/warped_wired_fence.png and /dev/null differ diff --git a/public/textures/mcwfences/wooden_cheval_de_frise.png b/public/textures/mcwfences/wooden_cheval_de_frise.png deleted file mode 100644 index cc318117..00000000 Binary files a/public/textures/mcwfences/wooden_cheval_de_frise.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_bookshelf.png b/public/textures/mcwfurnitures/acacia_bookshelf.png deleted file mode 100644 index e55c6753..00000000 Binary files a/public/textures/mcwfurnitures/acacia_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_bookshelf_cupboard.png b/public/textures/mcwfurnitures/acacia_bookshelf_cupboard.png deleted file mode 100644 index 46deacac..00000000 Binary files a/public/textures/mcwfurnitures/acacia_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_bookshelf_drawer.png b/public/textures/mcwfurnitures/acacia_bookshelf_drawer.png deleted file mode 100644 index 0bf2018f..00000000 Binary files a/public/textures/mcwfurnitures/acacia_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_chair.png b/public/textures/mcwfurnitures/acacia_chair.png deleted file mode 100644 index dc3cd33b..00000000 Binary files a/public/textures/mcwfurnitures/acacia_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_coffee_table.png b/public/textures/mcwfurnitures/acacia_coffee_table.png deleted file mode 100644 index 08a45e5d..00000000 Binary files a/public/textures/mcwfurnitures/acacia_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_counter.png b/public/textures/mcwfurnitures/acacia_counter.png deleted file mode 100644 index ed1823be..00000000 Binary files a/public/textures/mcwfurnitures/acacia_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_covered_desk.png b/public/textures/mcwfurnitures/acacia_covered_desk.png deleted file mode 100644 index ab17bf6c..00000000 Binary files a/public/textures/mcwfurnitures/acacia_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_cupboard_counter.png b/public/textures/mcwfurnitures/acacia_cupboard_counter.png deleted file mode 100644 index 55b50e42..00000000 Binary files a/public/textures/mcwfurnitures/acacia_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_desk.png b/public/textures/mcwfurnitures/acacia_desk.png deleted file mode 100644 index bc1ba075..00000000 Binary files a/public/textures/mcwfurnitures/acacia_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_double_drawer.png b/public/textures/mcwfurnitures/acacia_double_drawer.png deleted file mode 100644 index 254f8cfe..00000000 Binary files a/public/textures/mcwfurnitures/acacia_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_double_drawer_counter.png b/public/textures/mcwfurnitures/acacia_double_drawer_counter.png deleted file mode 100644 index 29b3f8f6..00000000 Binary files a/public/textures/mcwfurnitures/acacia_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/acacia_double_kitchen_cabinet.png deleted file mode 100644 index 77012879..00000000 Binary files a/public/textures/mcwfurnitures/acacia_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_double_wardrobe.png b/public/textures/mcwfurnitures/acacia_double_wardrobe.png deleted file mode 100644 index d433ee02..00000000 Binary files a/public/textures/mcwfurnitures/acacia_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_drawer.png b/public/textures/mcwfurnitures/acacia_drawer.png deleted file mode 100644 index 2ed99baf..00000000 Binary files a/public/textures/mcwfurnitures/acacia_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_drawer_counter.png b/public/textures/mcwfurnitures/acacia_drawer_counter.png deleted file mode 100644 index 505e9aa6..00000000 Binary files a/public/textures/mcwfurnitures/acacia_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_end_table.png b/public/textures/mcwfurnitures/acacia_end_table.png deleted file mode 100644 index 80a3c4e8..00000000 Binary files a/public/textures/mcwfurnitures/acacia_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/acacia_glass_kitchen_cabinet.png deleted file mode 100644 index f742e6ce..00000000 Binary files a/public/textures/mcwfurnitures/acacia_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_glass_table.png b/public/textures/mcwfurnitures/acacia_glass_table.png deleted file mode 100644 index f451304c..00000000 Binary files a/public/textures/mcwfurnitures/acacia_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_kitchen_cabinet.png b/public/textures/mcwfurnitures/acacia_kitchen_cabinet.png deleted file mode 100644 index 7e266a08..00000000 Binary files a/public/textures/mcwfurnitures/acacia_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_large_drawer.png b/public/textures/mcwfurnitures/acacia_large_drawer.png deleted file mode 100644 index 680aceac..00000000 Binary files a/public/textures/mcwfurnitures/acacia_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/acacia_lower_bookshelf_drawer.png deleted file mode 100644 index e29b1e7f..00000000 Binary files a/public/textures/mcwfurnitures/acacia_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_lower_triple_drawer.png b/public/textures/mcwfurnitures/acacia_lower_triple_drawer.png deleted file mode 100644 index 9dbe7303..00000000 Binary files a/public/textures/mcwfurnitures/acacia_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_modern_chair.png b/public/textures/mcwfurnitures/acacia_modern_chair.png deleted file mode 100644 index c52632f4..00000000 Binary files a/public/textures/mcwfurnitures/acacia_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_modern_desk.png b/public/textures/mcwfurnitures/acacia_modern_desk.png deleted file mode 100644 index f1dbd324..00000000 Binary files a/public/textures/mcwfurnitures/acacia_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_modern_wardrobe.png b/public/textures/mcwfurnitures/acacia_modern_wardrobe.png deleted file mode 100644 index 781bac5c..00000000 Binary files a/public/textures/mcwfurnitures/acacia_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_stool_chair.png b/public/textures/mcwfurnitures/acacia_stool_chair.png deleted file mode 100644 index b1c4b936..00000000 Binary files a/public/textures/mcwfurnitures/acacia_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_striped_chair.png b/public/textures/mcwfurnitures/acacia_striped_chair.png deleted file mode 100644 index f2b50b92..00000000 Binary files a/public/textures/mcwfurnitures/acacia_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_table.png b/public/textures/mcwfurnitures/acacia_table.png deleted file mode 100644 index e03eeaad..00000000 Binary files a/public/textures/mcwfurnitures/acacia_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_triple_drawer.png b/public/textures/mcwfurnitures/acacia_triple_drawer.png deleted file mode 100644 index 5ab30e73..00000000 Binary files a/public/textures/mcwfurnitures/acacia_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/acacia_wardrobe.png b/public/textures/mcwfurnitures/acacia_wardrobe.png deleted file mode 100644 index feaad474..00000000 Binary files a/public/textures/mcwfurnitures/acacia_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_bookshelf.png b/public/textures/mcwfurnitures/birch_bookshelf.png deleted file mode 100644 index 1edc3325..00000000 Binary files a/public/textures/mcwfurnitures/birch_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_bookshelf_cupboard.png b/public/textures/mcwfurnitures/birch_bookshelf_cupboard.png deleted file mode 100644 index 6d1faec6..00000000 Binary files a/public/textures/mcwfurnitures/birch_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_bookshelf_drawer.png b/public/textures/mcwfurnitures/birch_bookshelf_drawer.png deleted file mode 100644 index 4fb7f5df..00000000 Binary files a/public/textures/mcwfurnitures/birch_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_chair.png b/public/textures/mcwfurnitures/birch_chair.png deleted file mode 100644 index cdbe32d7..00000000 Binary files a/public/textures/mcwfurnitures/birch_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_coffee_table.png b/public/textures/mcwfurnitures/birch_coffee_table.png deleted file mode 100644 index d293edee..00000000 Binary files a/public/textures/mcwfurnitures/birch_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_counter.png b/public/textures/mcwfurnitures/birch_counter.png deleted file mode 100644 index f067f731..00000000 Binary files a/public/textures/mcwfurnitures/birch_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_covered_desk.png b/public/textures/mcwfurnitures/birch_covered_desk.png deleted file mode 100644 index 1325fc8b..00000000 Binary files a/public/textures/mcwfurnitures/birch_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_cupboard_counter.png b/public/textures/mcwfurnitures/birch_cupboard_counter.png deleted file mode 100644 index 88bbdaf3..00000000 Binary files a/public/textures/mcwfurnitures/birch_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_desk.png b/public/textures/mcwfurnitures/birch_desk.png deleted file mode 100644 index b813d4fd..00000000 Binary files a/public/textures/mcwfurnitures/birch_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_double_drawer.png b/public/textures/mcwfurnitures/birch_double_drawer.png deleted file mode 100644 index efe07f18..00000000 Binary files a/public/textures/mcwfurnitures/birch_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_double_drawer_counter.png b/public/textures/mcwfurnitures/birch_double_drawer_counter.png deleted file mode 100644 index 4c5cdd6b..00000000 Binary files a/public/textures/mcwfurnitures/birch_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/birch_double_kitchen_cabinet.png deleted file mode 100644 index 590a39cc..00000000 Binary files a/public/textures/mcwfurnitures/birch_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_double_wardrobe.png b/public/textures/mcwfurnitures/birch_double_wardrobe.png deleted file mode 100644 index 598ee89a..00000000 Binary files a/public/textures/mcwfurnitures/birch_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_drawer.png b/public/textures/mcwfurnitures/birch_drawer.png deleted file mode 100644 index c232db54..00000000 Binary files a/public/textures/mcwfurnitures/birch_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_drawer_counter.png b/public/textures/mcwfurnitures/birch_drawer_counter.png deleted file mode 100644 index 83ce603d..00000000 Binary files a/public/textures/mcwfurnitures/birch_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_end_table.png b/public/textures/mcwfurnitures/birch_end_table.png deleted file mode 100644 index 907688f0..00000000 Binary files a/public/textures/mcwfurnitures/birch_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/birch_glass_kitchen_cabinet.png deleted file mode 100644 index 79b05247..00000000 Binary files a/public/textures/mcwfurnitures/birch_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_glass_table.png b/public/textures/mcwfurnitures/birch_glass_table.png deleted file mode 100644 index 55e7d724..00000000 Binary files a/public/textures/mcwfurnitures/birch_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_kitchen_cabinet.png b/public/textures/mcwfurnitures/birch_kitchen_cabinet.png deleted file mode 100644 index 3f718870..00000000 Binary files a/public/textures/mcwfurnitures/birch_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_large_drawer.png b/public/textures/mcwfurnitures/birch_large_drawer.png deleted file mode 100644 index 0fd45788..00000000 Binary files a/public/textures/mcwfurnitures/birch_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/birch_lower_bookshelf_drawer.png deleted file mode 100644 index 3c62c9f3..00000000 Binary files a/public/textures/mcwfurnitures/birch_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_lower_triple_drawer.png b/public/textures/mcwfurnitures/birch_lower_triple_drawer.png deleted file mode 100644 index b01b9886..00000000 Binary files a/public/textures/mcwfurnitures/birch_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_modern_chair.png b/public/textures/mcwfurnitures/birch_modern_chair.png deleted file mode 100644 index 1fdd808e..00000000 Binary files a/public/textures/mcwfurnitures/birch_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_modern_desk.png b/public/textures/mcwfurnitures/birch_modern_desk.png deleted file mode 100644 index e4764464..00000000 Binary files a/public/textures/mcwfurnitures/birch_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_modern_wardrobe.png b/public/textures/mcwfurnitures/birch_modern_wardrobe.png deleted file mode 100644 index 93d8f3ed..00000000 Binary files a/public/textures/mcwfurnitures/birch_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_stool_chair.png b/public/textures/mcwfurnitures/birch_stool_chair.png deleted file mode 100644 index 9abddded..00000000 Binary files a/public/textures/mcwfurnitures/birch_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_striped_chair.png b/public/textures/mcwfurnitures/birch_striped_chair.png deleted file mode 100644 index 4eca040d..00000000 Binary files a/public/textures/mcwfurnitures/birch_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_table.png b/public/textures/mcwfurnitures/birch_table.png deleted file mode 100644 index e994cdb5..00000000 Binary files a/public/textures/mcwfurnitures/birch_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_triple_drawer.png b/public/textures/mcwfurnitures/birch_triple_drawer.png deleted file mode 100644 index 5bd445b2..00000000 Binary files a/public/textures/mcwfurnitures/birch_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/birch_wardrobe.png b/public/textures/mcwfurnitures/birch_wardrobe.png deleted file mode 100644 index d47027c9..00000000 Binary files a/public/textures/mcwfurnitures/birch_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cabinet_door.png b/public/textures/mcwfurnitures/cabinet_door.png deleted file mode 100644 index cb66dad7..00000000 Binary files a/public/textures/mcwfurnitures/cabinet_door.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cabinet_drawer.png b/public/textures/mcwfurnitures/cabinet_drawer.png deleted file mode 100644 index cf998d83..00000000 Binary files a/public/textures/mcwfurnitures/cabinet_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_bookshelf.png b/public/textures/mcwfurnitures/cherry_bookshelf.png deleted file mode 100644 index bdd92f66..00000000 Binary files a/public/textures/mcwfurnitures/cherry_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_bookshelf_cupboard.png b/public/textures/mcwfurnitures/cherry_bookshelf_cupboard.png deleted file mode 100644 index a1358ce5..00000000 Binary files a/public/textures/mcwfurnitures/cherry_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_bookshelf_drawer.png b/public/textures/mcwfurnitures/cherry_bookshelf_drawer.png deleted file mode 100644 index deac0c13..00000000 Binary files a/public/textures/mcwfurnitures/cherry_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_chair.png b/public/textures/mcwfurnitures/cherry_chair.png deleted file mode 100644 index 0209745f..00000000 Binary files a/public/textures/mcwfurnitures/cherry_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_coffee_table.png b/public/textures/mcwfurnitures/cherry_coffee_table.png deleted file mode 100644 index d94d2566..00000000 Binary files a/public/textures/mcwfurnitures/cherry_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_counter.png b/public/textures/mcwfurnitures/cherry_counter.png deleted file mode 100644 index 187cedf7..00000000 Binary files a/public/textures/mcwfurnitures/cherry_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_covered_desk.png b/public/textures/mcwfurnitures/cherry_covered_desk.png deleted file mode 100644 index e32de4e8..00000000 Binary files a/public/textures/mcwfurnitures/cherry_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_cupboard_counter.png b/public/textures/mcwfurnitures/cherry_cupboard_counter.png deleted file mode 100644 index df4d656c..00000000 Binary files a/public/textures/mcwfurnitures/cherry_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_desk.png b/public/textures/mcwfurnitures/cherry_desk.png deleted file mode 100644 index 006be060..00000000 Binary files a/public/textures/mcwfurnitures/cherry_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_double_drawer.png b/public/textures/mcwfurnitures/cherry_double_drawer.png deleted file mode 100644 index 2d224f3b..00000000 Binary files a/public/textures/mcwfurnitures/cherry_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_double_drawer_counter.png b/public/textures/mcwfurnitures/cherry_double_drawer_counter.png deleted file mode 100644 index 618990a4..00000000 Binary files a/public/textures/mcwfurnitures/cherry_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/cherry_double_kitchen_cabinet.png deleted file mode 100644 index f9f64cf3..00000000 Binary files a/public/textures/mcwfurnitures/cherry_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_double_wardrobe.png b/public/textures/mcwfurnitures/cherry_double_wardrobe.png deleted file mode 100644 index 996798d0..00000000 Binary files a/public/textures/mcwfurnitures/cherry_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_drawer.png b/public/textures/mcwfurnitures/cherry_drawer.png deleted file mode 100644 index ec255622..00000000 Binary files a/public/textures/mcwfurnitures/cherry_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_drawer_counter.png b/public/textures/mcwfurnitures/cherry_drawer_counter.png deleted file mode 100644 index ffa6f01c..00000000 Binary files a/public/textures/mcwfurnitures/cherry_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_end_table.png b/public/textures/mcwfurnitures/cherry_end_table.png deleted file mode 100644 index 46ebd215..00000000 Binary files a/public/textures/mcwfurnitures/cherry_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/cherry_glass_kitchen_cabinet.png deleted file mode 100644 index 8c2bc755..00000000 Binary files a/public/textures/mcwfurnitures/cherry_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_glass_table.png b/public/textures/mcwfurnitures/cherry_glass_table.png deleted file mode 100644 index 43b92a1b..00000000 Binary files a/public/textures/mcwfurnitures/cherry_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_kitchen_cabinet.png b/public/textures/mcwfurnitures/cherry_kitchen_cabinet.png deleted file mode 100644 index 5deba609..00000000 Binary files a/public/textures/mcwfurnitures/cherry_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_large_drawer.png b/public/textures/mcwfurnitures/cherry_large_drawer.png deleted file mode 100644 index 92608b8e..00000000 Binary files a/public/textures/mcwfurnitures/cherry_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/cherry_lower_bookshelf_drawer.png deleted file mode 100644 index 1527f78e..00000000 Binary files a/public/textures/mcwfurnitures/cherry_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_lower_triple_drawer.png b/public/textures/mcwfurnitures/cherry_lower_triple_drawer.png deleted file mode 100644 index 2b6ed270..00000000 Binary files a/public/textures/mcwfurnitures/cherry_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_modern_chair.png b/public/textures/mcwfurnitures/cherry_modern_chair.png deleted file mode 100644 index bf2bb698..00000000 Binary files a/public/textures/mcwfurnitures/cherry_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_modern_desk.png b/public/textures/mcwfurnitures/cherry_modern_desk.png deleted file mode 100644 index d87aebec..00000000 Binary files a/public/textures/mcwfurnitures/cherry_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_modern_wardrobe.png b/public/textures/mcwfurnitures/cherry_modern_wardrobe.png deleted file mode 100644 index 3cc2786f..00000000 Binary files a/public/textures/mcwfurnitures/cherry_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_stool_chair.png b/public/textures/mcwfurnitures/cherry_stool_chair.png deleted file mode 100644 index 9ae9a0ff..00000000 Binary files a/public/textures/mcwfurnitures/cherry_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_striped_chair.png b/public/textures/mcwfurnitures/cherry_striped_chair.png deleted file mode 100644 index 2eca518d..00000000 Binary files a/public/textures/mcwfurnitures/cherry_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_table.png b/public/textures/mcwfurnitures/cherry_table.png deleted file mode 100644 index bd301441..00000000 Binary files a/public/textures/mcwfurnitures/cherry_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_triple_drawer.png b/public/textures/mcwfurnitures/cherry_triple_drawer.png deleted file mode 100644 index 29411d60..00000000 Binary files a/public/textures/mcwfurnitures/cherry_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/cherry_wardrobe.png b/public/textures/mcwfurnitures/cherry_wardrobe.png deleted file mode 100644 index d29372ee..00000000 Binary files a/public/textures/mcwfurnitures/cherry_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_bookshelf.png b/public/textures/mcwfurnitures/crimson_bookshelf.png deleted file mode 100644 index c638aa8a..00000000 Binary files a/public/textures/mcwfurnitures/crimson_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_bookshelf_cupboard.png b/public/textures/mcwfurnitures/crimson_bookshelf_cupboard.png deleted file mode 100644 index b5573a16..00000000 Binary files a/public/textures/mcwfurnitures/crimson_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_bookshelf_drawer.png b/public/textures/mcwfurnitures/crimson_bookshelf_drawer.png deleted file mode 100644 index 8832ce4f..00000000 Binary files a/public/textures/mcwfurnitures/crimson_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_chair.png b/public/textures/mcwfurnitures/crimson_chair.png deleted file mode 100644 index 87411853..00000000 Binary files a/public/textures/mcwfurnitures/crimson_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_coffee_table.png b/public/textures/mcwfurnitures/crimson_coffee_table.png deleted file mode 100644 index fcb011da..00000000 Binary files a/public/textures/mcwfurnitures/crimson_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_counter.png b/public/textures/mcwfurnitures/crimson_counter.png deleted file mode 100644 index 7f4393a1..00000000 Binary files a/public/textures/mcwfurnitures/crimson_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_covered_desk.png b/public/textures/mcwfurnitures/crimson_covered_desk.png deleted file mode 100644 index 1449ac3d..00000000 Binary files a/public/textures/mcwfurnitures/crimson_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_cupboard_counter.png b/public/textures/mcwfurnitures/crimson_cupboard_counter.png deleted file mode 100644 index c7cae30d..00000000 Binary files a/public/textures/mcwfurnitures/crimson_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_desk.png b/public/textures/mcwfurnitures/crimson_desk.png deleted file mode 100644 index 4b2650ad..00000000 Binary files a/public/textures/mcwfurnitures/crimson_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_double_drawer.png b/public/textures/mcwfurnitures/crimson_double_drawer.png deleted file mode 100644 index 33517c63..00000000 Binary files a/public/textures/mcwfurnitures/crimson_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_double_drawer_counter.png b/public/textures/mcwfurnitures/crimson_double_drawer_counter.png deleted file mode 100644 index c40a483e..00000000 Binary files a/public/textures/mcwfurnitures/crimson_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/crimson_double_kitchen_cabinet.png deleted file mode 100644 index 7294272f..00000000 Binary files a/public/textures/mcwfurnitures/crimson_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_double_wardrobe.png b/public/textures/mcwfurnitures/crimson_double_wardrobe.png deleted file mode 100644 index dac7fc1c..00000000 Binary files a/public/textures/mcwfurnitures/crimson_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_drawer.png b/public/textures/mcwfurnitures/crimson_drawer.png deleted file mode 100644 index 3a8beaff..00000000 Binary files a/public/textures/mcwfurnitures/crimson_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_drawer_counter.png b/public/textures/mcwfurnitures/crimson_drawer_counter.png deleted file mode 100644 index 8f3cb5be..00000000 Binary files a/public/textures/mcwfurnitures/crimson_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_end_table.png b/public/textures/mcwfurnitures/crimson_end_table.png deleted file mode 100644 index 0ed2a1fb..00000000 Binary files a/public/textures/mcwfurnitures/crimson_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/crimson_glass_kitchen_cabinet.png deleted file mode 100644 index 282f3d97..00000000 Binary files a/public/textures/mcwfurnitures/crimson_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_glass_table.png b/public/textures/mcwfurnitures/crimson_glass_table.png deleted file mode 100644 index abeda42a..00000000 Binary files a/public/textures/mcwfurnitures/crimson_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_kitchen_cabinet.png b/public/textures/mcwfurnitures/crimson_kitchen_cabinet.png deleted file mode 100644 index 18506364..00000000 Binary files a/public/textures/mcwfurnitures/crimson_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_large_drawer.png b/public/textures/mcwfurnitures/crimson_large_drawer.png deleted file mode 100644 index 481237a8..00000000 Binary files a/public/textures/mcwfurnitures/crimson_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/crimson_lower_bookshelf_drawer.png deleted file mode 100644 index c927f64e..00000000 Binary files a/public/textures/mcwfurnitures/crimson_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_lower_triple_drawer.png b/public/textures/mcwfurnitures/crimson_lower_triple_drawer.png deleted file mode 100644 index c68e1c9c..00000000 Binary files a/public/textures/mcwfurnitures/crimson_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_modern_chair.png b/public/textures/mcwfurnitures/crimson_modern_chair.png deleted file mode 100644 index c288c270..00000000 Binary files a/public/textures/mcwfurnitures/crimson_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_modern_desk.png b/public/textures/mcwfurnitures/crimson_modern_desk.png deleted file mode 100644 index 5d6346b6..00000000 Binary files a/public/textures/mcwfurnitures/crimson_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_modern_wardrobe.png b/public/textures/mcwfurnitures/crimson_modern_wardrobe.png deleted file mode 100644 index 6357ad67..00000000 Binary files a/public/textures/mcwfurnitures/crimson_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_stool_chair.png b/public/textures/mcwfurnitures/crimson_stool_chair.png deleted file mode 100644 index 545299fc..00000000 Binary files a/public/textures/mcwfurnitures/crimson_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_striped_chair.png b/public/textures/mcwfurnitures/crimson_striped_chair.png deleted file mode 100644 index f600e2ea..00000000 Binary files a/public/textures/mcwfurnitures/crimson_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_table.png b/public/textures/mcwfurnitures/crimson_table.png deleted file mode 100644 index e0cf6795..00000000 Binary files a/public/textures/mcwfurnitures/crimson_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_triple_drawer.png b/public/textures/mcwfurnitures/crimson_triple_drawer.png deleted file mode 100644 index d80756ad..00000000 Binary files a/public/textures/mcwfurnitures/crimson_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/crimson_wardrobe.png b/public/textures/mcwfurnitures/crimson_wardrobe.png deleted file mode 100644 index fcb7695b..00000000 Binary files a/public/textures/mcwfurnitures/crimson_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_bookshelf.png b/public/textures/mcwfurnitures/dark_oak_bookshelf.png deleted file mode 100644 index f97901e9..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_bookshelf_cupboard.png b/public/textures/mcwfurnitures/dark_oak_bookshelf_cupboard.png deleted file mode 100644 index 95e99267..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_bookshelf_drawer.png b/public/textures/mcwfurnitures/dark_oak_bookshelf_drawer.png deleted file mode 100644 index 406a43ec..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_chair.png b/public/textures/mcwfurnitures/dark_oak_chair.png deleted file mode 100644 index 0b6b7155..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_coffee_table.png b/public/textures/mcwfurnitures/dark_oak_coffee_table.png deleted file mode 100644 index b3374202..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_counter.png b/public/textures/mcwfurnitures/dark_oak_counter.png deleted file mode 100644 index a073f1c6..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_covered_desk.png b/public/textures/mcwfurnitures/dark_oak_covered_desk.png deleted file mode 100644 index 34da209b..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_cupboard_counter.png b/public/textures/mcwfurnitures/dark_oak_cupboard_counter.png deleted file mode 100644 index 37a806df..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_desk.png b/public/textures/mcwfurnitures/dark_oak_desk.png deleted file mode 100644 index da792808..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_double_drawer.png b/public/textures/mcwfurnitures/dark_oak_double_drawer.png deleted file mode 100644 index f1ae0d48..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_double_drawer_counter.png b/public/textures/mcwfurnitures/dark_oak_double_drawer_counter.png deleted file mode 100644 index f0914e8c..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/dark_oak_double_kitchen_cabinet.png deleted file mode 100644 index f69c9856..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_double_wardrobe.png b/public/textures/mcwfurnitures/dark_oak_double_wardrobe.png deleted file mode 100644 index 7bc96f05..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_drawer.png b/public/textures/mcwfurnitures/dark_oak_drawer.png deleted file mode 100644 index 2c42b20f..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_drawer_counter.png b/public/textures/mcwfurnitures/dark_oak_drawer_counter.png deleted file mode 100644 index ffe02d8c..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_end_table.png b/public/textures/mcwfurnitures/dark_oak_end_table.png deleted file mode 100644 index b0b628f2..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/dark_oak_glass_kitchen_cabinet.png deleted file mode 100644 index f5af90c1..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_glass_table.png b/public/textures/mcwfurnitures/dark_oak_glass_table.png deleted file mode 100644 index 9e6f4363..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_kitchen_cabinet.png b/public/textures/mcwfurnitures/dark_oak_kitchen_cabinet.png deleted file mode 100644 index f75335c3..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_large_drawer.png b/public/textures/mcwfurnitures/dark_oak_large_drawer.png deleted file mode 100644 index f41d9b01..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/dark_oak_lower_bookshelf_drawer.png deleted file mode 100644 index 2ee318f9..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_lower_triple_drawer.png b/public/textures/mcwfurnitures/dark_oak_lower_triple_drawer.png deleted file mode 100644 index 109f113c..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_modern_chair.png b/public/textures/mcwfurnitures/dark_oak_modern_chair.png deleted file mode 100644 index cada83be..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_modern_desk.png b/public/textures/mcwfurnitures/dark_oak_modern_desk.png deleted file mode 100644 index 48d44bd5..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_modern_wardrobe.png b/public/textures/mcwfurnitures/dark_oak_modern_wardrobe.png deleted file mode 100644 index f8fbb06d..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_stool_chair.png b/public/textures/mcwfurnitures/dark_oak_stool_chair.png deleted file mode 100644 index 7784ad0a..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_striped_chair.png b/public/textures/mcwfurnitures/dark_oak_striped_chair.png deleted file mode 100644 index 74573c87..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_table.png b/public/textures/mcwfurnitures/dark_oak_table.png deleted file mode 100644 index 324c78cb..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_triple_drawer.png b/public/textures/mcwfurnitures/dark_oak_triple_drawer.png deleted file mode 100644 index 68f03914..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/dark_oak_wardrobe.png b/public/textures/mcwfurnitures/dark_oak_wardrobe.png deleted file mode 100644 index 64f4d76e..00000000 Binary files a/public/textures/mcwfurnitures/dark_oak_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_bookshelf.png b/public/textures/mcwfurnitures/jungle_bookshelf.png deleted file mode 100644 index 446b1a3b..00000000 Binary files a/public/textures/mcwfurnitures/jungle_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_bookshelf_cupboard.png b/public/textures/mcwfurnitures/jungle_bookshelf_cupboard.png deleted file mode 100644 index 9127f4dc..00000000 Binary files a/public/textures/mcwfurnitures/jungle_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_bookshelf_drawer.png b/public/textures/mcwfurnitures/jungle_bookshelf_drawer.png deleted file mode 100644 index db61b5e3..00000000 Binary files a/public/textures/mcwfurnitures/jungle_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_chair.png b/public/textures/mcwfurnitures/jungle_chair.png deleted file mode 100644 index c9df746f..00000000 Binary files a/public/textures/mcwfurnitures/jungle_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_coffee_table.png b/public/textures/mcwfurnitures/jungle_coffee_table.png deleted file mode 100644 index 89697cc9..00000000 Binary files a/public/textures/mcwfurnitures/jungle_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_counter.png b/public/textures/mcwfurnitures/jungle_counter.png deleted file mode 100644 index 18a68413..00000000 Binary files a/public/textures/mcwfurnitures/jungle_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_covered_desk.png b/public/textures/mcwfurnitures/jungle_covered_desk.png deleted file mode 100644 index 46fe6a7f..00000000 Binary files a/public/textures/mcwfurnitures/jungle_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_cupboard_counter.png b/public/textures/mcwfurnitures/jungle_cupboard_counter.png deleted file mode 100644 index 671967f0..00000000 Binary files a/public/textures/mcwfurnitures/jungle_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_desk.png b/public/textures/mcwfurnitures/jungle_desk.png deleted file mode 100644 index 9a736df9..00000000 Binary files a/public/textures/mcwfurnitures/jungle_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_double_drawer.png b/public/textures/mcwfurnitures/jungle_double_drawer.png deleted file mode 100644 index c6c1e2df..00000000 Binary files a/public/textures/mcwfurnitures/jungle_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_double_drawer_counter.png b/public/textures/mcwfurnitures/jungle_double_drawer_counter.png deleted file mode 100644 index 16f0ad2c..00000000 Binary files a/public/textures/mcwfurnitures/jungle_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/jungle_double_kitchen_cabinet.png deleted file mode 100644 index e93ad2f1..00000000 Binary files a/public/textures/mcwfurnitures/jungle_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_double_wardrobe.png b/public/textures/mcwfurnitures/jungle_double_wardrobe.png deleted file mode 100644 index ef30c37b..00000000 Binary files a/public/textures/mcwfurnitures/jungle_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_drawer.png b/public/textures/mcwfurnitures/jungle_drawer.png deleted file mode 100644 index a5ffe76b..00000000 Binary files a/public/textures/mcwfurnitures/jungle_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_drawer_counter.png b/public/textures/mcwfurnitures/jungle_drawer_counter.png deleted file mode 100644 index d112da2e..00000000 Binary files a/public/textures/mcwfurnitures/jungle_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_end_table.png b/public/textures/mcwfurnitures/jungle_end_table.png deleted file mode 100644 index 8bff77d6..00000000 Binary files a/public/textures/mcwfurnitures/jungle_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/jungle_glass_kitchen_cabinet.png deleted file mode 100644 index cafeb3e3..00000000 Binary files a/public/textures/mcwfurnitures/jungle_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_glass_table.png b/public/textures/mcwfurnitures/jungle_glass_table.png deleted file mode 100644 index f914409a..00000000 Binary files a/public/textures/mcwfurnitures/jungle_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_kitchen_cabinet.png b/public/textures/mcwfurnitures/jungle_kitchen_cabinet.png deleted file mode 100644 index 95ae6a37..00000000 Binary files a/public/textures/mcwfurnitures/jungle_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_large_drawer.png b/public/textures/mcwfurnitures/jungle_large_drawer.png deleted file mode 100644 index 530f6f5b..00000000 Binary files a/public/textures/mcwfurnitures/jungle_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/jungle_lower_bookshelf_drawer.png deleted file mode 100644 index 391d4841..00000000 Binary files a/public/textures/mcwfurnitures/jungle_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_lower_triple_drawer.png b/public/textures/mcwfurnitures/jungle_lower_triple_drawer.png deleted file mode 100644 index b6a11ce3..00000000 Binary files a/public/textures/mcwfurnitures/jungle_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_modern_chair.png b/public/textures/mcwfurnitures/jungle_modern_chair.png deleted file mode 100644 index a048c269..00000000 Binary files a/public/textures/mcwfurnitures/jungle_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_modern_desk.png b/public/textures/mcwfurnitures/jungle_modern_desk.png deleted file mode 100644 index 5b90ef28..00000000 Binary files a/public/textures/mcwfurnitures/jungle_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_modern_wardrobe.png b/public/textures/mcwfurnitures/jungle_modern_wardrobe.png deleted file mode 100644 index 066e0681..00000000 Binary files a/public/textures/mcwfurnitures/jungle_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_stool_chair.png b/public/textures/mcwfurnitures/jungle_stool_chair.png deleted file mode 100644 index d82c0eea..00000000 Binary files a/public/textures/mcwfurnitures/jungle_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_striped_chair.png b/public/textures/mcwfurnitures/jungle_striped_chair.png deleted file mode 100644 index 1b21eb2e..00000000 Binary files a/public/textures/mcwfurnitures/jungle_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_table.png b/public/textures/mcwfurnitures/jungle_table.png deleted file mode 100644 index 2d924602..00000000 Binary files a/public/textures/mcwfurnitures/jungle_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_triple_drawer.png b/public/textures/mcwfurnitures/jungle_triple_drawer.png deleted file mode 100644 index 0dc9354c..00000000 Binary files a/public/textures/mcwfurnitures/jungle_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/jungle_wardrobe.png b/public/textures/mcwfurnitures/jungle_wardrobe.png deleted file mode 100644 index 8bc51294..00000000 Binary files a/public/textures/mcwfurnitures/jungle_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_bookshelf.png b/public/textures/mcwfurnitures/mangrove_bookshelf.png deleted file mode 100644 index 55bee86d..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_bookshelf_cupboard.png b/public/textures/mcwfurnitures/mangrove_bookshelf_cupboard.png deleted file mode 100644 index 2d5a7bb7..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_bookshelf_drawer.png b/public/textures/mcwfurnitures/mangrove_bookshelf_drawer.png deleted file mode 100644 index ebeba458..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_chair.png b/public/textures/mcwfurnitures/mangrove_chair.png deleted file mode 100644 index 5e9e7190..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_coffee_table.png b/public/textures/mcwfurnitures/mangrove_coffee_table.png deleted file mode 100644 index 7aaeea81..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_counter.png b/public/textures/mcwfurnitures/mangrove_counter.png deleted file mode 100644 index 539e6469..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_covered_desk.png b/public/textures/mcwfurnitures/mangrove_covered_desk.png deleted file mode 100644 index 491b0b18..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_cupboard_counter.png b/public/textures/mcwfurnitures/mangrove_cupboard_counter.png deleted file mode 100644 index 1f574709..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_desk.png b/public/textures/mcwfurnitures/mangrove_desk.png deleted file mode 100644 index a47db8a2..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_double_drawer.png b/public/textures/mcwfurnitures/mangrove_double_drawer.png deleted file mode 100644 index 367c3807..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_double_drawer_counter.png b/public/textures/mcwfurnitures/mangrove_double_drawer_counter.png deleted file mode 100644 index 5ec11240..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/mangrove_double_kitchen_cabinet.png deleted file mode 100644 index ac951cd2..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_double_wardrobe.png b/public/textures/mcwfurnitures/mangrove_double_wardrobe.png deleted file mode 100644 index 4226e3ff..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_drawer.png b/public/textures/mcwfurnitures/mangrove_drawer.png deleted file mode 100644 index 653bdbc0..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_drawer_counter.png b/public/textures/mcwfurnitures/mangrove_drawer_counter.png deleted file mode 100644 index 1e9376c2..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_end_table.png b/public/textures/mcwfurnitures/mangrove_end_table.png deleted file mode 100644 index 212efce3..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/mangrove_glass_kitchen_cabinet.png deleted file mode 100644 index e43c9638..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_glass_table.png b/public/textures/mcwfurnitures/mangrove_glass_table.png deleted file mode 100644 index 170fa14a..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_kitchen_cabinet.png b/public/textures/mcwfurnitures/mangrove_kitchen_cabinet.png deleted file mode 100644 index 0a99cef2..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_large_drawer.png b/public/textures/mcwfurnitures/mangrove_large_drawer.png deleted file mode 100644 index 8b0c3f99..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/mangrove_lower_bookshelf_drawer.png deleted file mode 100644 index 30360f56..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_lower_triple_drawer.png b/public/textures/mcwfurnitures/mangrove_lower_triple_drawer.png deleted file mode 100644 index 8ffc4059..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_modern_chair.png b/public/textures/mcwfurnitures/mangrove_modern_chair.png deleted file mode 100644 index 1b04b2bd..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_modern_desk.png b/public/textures/mcwfurnitures/mangrove_modern_desk.png deleted file mode 100644 index 4f0a175d..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_modern_wardrobe.png b/public/textures/mcwfurnitures/mangrove_modern_wardrobe.png deleted file mode 100644 index bf54ea8a..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_stool_chair.png b/public/textures/mcwfurnitures/mangrove_stool_chair.png deleted file mode 100644 index d1368d37..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_striped_chair.png b/public/textures/mcwfurnitures/mangrove_striped_chair.png deleted file mode 100644 index 8129f911..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_table.png b/public/textures/mcwfurnitures/mangrove_table.png deleted file mode 100644 index dc0236bf..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_triple_drawer.png b/public/textures/mcwfurnitures/mangrove_triple_drawer.png deleted file mode 100644 index ec31e2e1..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/mangrove_wardrobe.png b/public/textures/mcwfurnitures/mangrove_wardrobe.png deleted file mode 100644 index de096bc0..00000000 Binary files a/public/textures/mcwfurnitures/mangrove_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_bookshelf.png b/public/textures/mcwfurnitures/oak_bookshelf.png deleted file mode 100644 index 57ffbd6b..00000000 Binary files a/public/textures/mcwfurnitures/oak_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_bookshelf_cupboard.png b/public/textures/mcwfurnitures/oak_bookshelf_cupboard.png deleted file mode 100644 index 5951a6f1..00000000 Binary files a/public/textures/mcwfurnitures/oak_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_bookshelf_drawer.png b/public/textures/mcwfurnitures/oak_bookshelf_drawer.png deleted file mode 100644 index 5aef8610..00000000 Binary files a/public/textures/mcwfurnitures/oak_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_chair.png b/public/textures/mcwfurnitures/oak_chair.png deleted file mode 100644 index f8206965..00000000 Binary files a/public/textures/mcwfurnitures/oak_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_coffee_table.png b/public/textures/mcwfurnitures/oak_coffee_table.png deleted file mode 100644 index ca3e0ec6..00000000 Binary files a/public/textures/mcwfurnitures/oak_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_counter.png b/public/textures/mcwfurnitures/oak_counter.png deleted file mode 100644 index 854b3062..00000000 Binary files a/public/textures/mcwfurnitures/oak_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_covered_desk.png b/public/textures/mcwfurnitures/oak_covered_desk.png deleted file mode 100644 index 3bfac2d3..00000000 Binary files a/public/textures/mcwfurnitures/oak_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_cupboard_counter.png b/public/textures/mcwfurnitures/oak_cupboard_counter.png deleted file mode 100644 index ffaac4b5..00000000 Binary files a/public/textures/mcwfurnitures/oak_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_desk.png b/public/textures/mcwfurnitures/oak_desk.png deleted file mode 100644 index de92037f..00000000 Binary files a/public/textures/mcwfurnitures/oak_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_double_drawer.png b/public/textures/mcwfurnitures/oak_double_drawer.png deleted file mode 100644 index 43c11d60..00000000 Binary files a/public/textures/mcwfurnitures/oak_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_double_drawer_counter.png b/public/textures/mcwfurnitures/oak_double_drawer_counter.png deleted file mode 100644 index 36178179..00000000 Binary files a/public/textures/mcwfurnitures/oak_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/oak_double_kitchen_cabinet.png deleted file mode 100644 index 90cd703d..00000000 Binary files a/public/textures/mcwfurnitures/oak_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_double_wardrobe.png b/public/textures/mcwfurnitures/oak_double_wardrobe.png deleted file mode 100644 index c6a494c7..00000000 Binary files a/public/textures/mcwfurnitures/oak_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_drawer.png b/public/textures/mcwfurnitures/oak_drawer.png deleted file mode 100644 index c3b6b5cc..00000000 Binary files a/public/textures/mcwfurnitures/oak_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_drawer_counter.png b/public/textures/mcwfurnitures/oak_drawer_counter.png deleted file mode 100644 index 1bbb5234..00000000 Binary files a/public/textures/mcwfurnitures/oak_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_end_table.png b/public/textures/mcwfurnitures/oak_end_table.png deleted file mode 100644 index 309c1690..00000000 Binary files a/public/textures/mcwfurnitures/oak_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/oak_glass_kitchen_cabinet.png deleted file mode 100644 index 512c0b10..00000000 Binary files a/public/textures/mcwfurnitures/oak_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_glass_table.png b/public/textures/mcwfurnitures/oak_glass_table.png deleted file mode 100644 index 55281d3a..00000000 Binary files a/public/textures/mcwfurnitures/oak_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_kitchen_cabinet.png b/public/textures/mcwfurnitures/oak_kitchen_cabinet.png deleted file mode 100644 index fd07c5fb..00000000 Binary files a/public/textures/mcwfurnitures/oak_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_large_drawer.png b/public/textures/mcwfurnitures/oak_large_drawer.png deleted file mode 100644 index 3842e1c7..00000000 Binary files a/public/textures/mcwfurnitures/oak_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/oak_lower_bookshelf_drawer.png deleted file mode 100644 index f7242f35..00000000 Binary files a/public/textures/mcwfurnitures/oak_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_lower_triple_drawer.png b/public/textures/mcwfurnitures/oak_lower_triple_drawer.png deleted file mode 100644 index 5cfc22d2..00000000 Binary files a/public/textures/mcwfurnitures/oak_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_modern_chair.png b/public/textures/mcwfurnitures/oak_modern_chair.png deleted file mode 100644 index 45fdb32c..00000000 Binary files a/public/textures/mcwfurnitures/oak_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_modern_desk.png b/public/textures/mcwfurnitures/oak_modern_desk.png deleted file mode 100644 index b956c06c..00000000 Binary files a/public/textures/mcwfurnitures/oak_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_modern_wardrobe.png b/public/textures/mcwfurnitures/oak_modern_wardrobe.png deleted file mode 100644 index 5039557c..00000000 Binary files a/public/textures/mcwfurnitures/oak_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_stool_chair.png b/public/textures/mcwfurnitures/oak_stool_chair.png deleted file mode 100644 index 411f40df..00000000 Binary files a/public/textures/mcwfurnitures/oak_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_striped_chair.png b/public/textures/mcwfurnitures/oak_striped_chair.png deleted file mode 100644 index eaa09910..00000000 Binary files a/public/textures/mcwfurnitures/oak_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_table.png b/public/textures/mcwfurnitures/oak_table.png deleted file mode 100644 index 289bc4e5..00000000 Binary files a/public/textures/mcwfurnitures/oak_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_triple_drawer.png b/public/textures/mcwfurnitures/oak_triple_drawer.png deleted file mode 100644 index 0005bd10..00000000 Binary files a/public/textures/mcwfurnitures/oak_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/oak_wardrobe.png b/public/textures/mcwfurnitures/oak_wardrobe.png deleted file mode 100644 index 92a92869..00000000 Binary files a/public/textures/mcwfurnitures/oak_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_bookshelf.png b/public/textures/mcwfurnitures/spruce_bookshelf.png deleted file mode 100644 index de3f66d0..00000000 Binary files a/public/textures/mcwfurnitures/spruce_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_bookshelf_cupboard.png b/public/textures/mcwfurnitures/spruce_bookshelf_cupboard.png deleted file mode 100644 index 9365ae8c..00000000 Binary files a/public/textures/mcwfurnitures/spruce_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_bookshelf_drawer.png b/public/textures/mcwfurnitures/spruce_bookshelf_drawer.png deleted file mode 100644 index 79dfd93a..00000000 Binary files a/public/textures/mcwfurnitures/spruce_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_chair.png b/public/textures/mcwfurnitures/spruce_chair.png deleted file mode 100644 index a8b3a3ea..00000000 Binary files a/public/textures/mcwfurnitures/spruce_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_coffee_table.png b/public/textures/mcwfurnitures/spruce_coffee_table.png deleted file mode 100644 index 570db906..00000000 Binary files a/public/textures/mcwfurnitures/spruce_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_counter.png b/public/textures/mcwfurnitures/spruce_counter.png deleted file mode 100644 index c0603a08..00000000 Binary files a/public/textures/mcwfurnitures/spruce_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_covered_desk.png b/public/textures/mcwfurnitures/spruce_covered_desk.png deleted file mode 100644 index 2da28442..00000000 Binary files a/public/textures/mcwfurnitures/spruce_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_cupboard_counter.png b/public/textures/mcwfurnitures/spruce_cupboard_counter.png deleted file mode 100644 index 0eec9a68..00000000 Binary files a/public/textures/mcwfurnitures/spruce_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_desk.png b/public/textures/mcwfurnitures/spruce_desk.png deleted file mode 100644 index 25a5fa5b..00000000 Binary files a/public/textures/mcwfurnitures/spruce_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_double_drawer.png b/public/textures/mcwfurnitures/spruce_double_drawer.png deleted file mode 100644 index 2fb8ce74..00000000 Binary files a/public/textures/mcwfurnitures/spruce_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_double_drawer_counter.png b/public/textures/mcwfurnitures/spruce_double_drawer_counter.png deleted file mode 100644 index 840a00b2..00000000 Binary files a/public/textures/mcwfurnitures/spruce_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/spruce_double_kitchen_cabinet.png deleted file mode 100644 index 1943b770..00000000 Binary files a/public/textures/mcwfurnitures/spruce_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_double_wardrobe.png b/public/textures/mcwfurnitures/spruce_double_wardrobe.png deleted file mode 100644 index 1e38ffe2..00000000 Binary files a/public/textures/mcwfurnitures/spruce_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_drawer.png b/public/textures/mcwfurnitures/spruce_drawer.png deleted file mode 100644 index d61758c7..00000000 Binary files a/public/textures/mcwfurnitures/spruce_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_drawer_counter.png b/public/textures/mcwfurnitures/spruce_drawer_counter.png deleted file mode 100644 index 333c25ac..00000000 Binary files a/public/textures/mcwfurnitures/spruce_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_end_table.png b/public/textures/mcwfurnitures/spruce_end_table.png deleted file mode 100644 index e01f39eb..00000000 Binary files a/public/textures/mcwfurnitures/spruce_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/spruce_glass_kitchen_cabinet.png deleted file mode 100644 index 5753a14e..00000000 Binary files a/public/textures/mcwfurnitures/spruce_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_glass_table.png b/public/textures/mcwfurnitures/spruce_glass_table.png deleted file mode 100644 index 135ad858..00000000 Binary files a/public/textures/mcwfurnitures/spruce_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_kitchen_cabinet.png b/public/textures/mcwfurnitures/spruce_kitchen_cabinet.png deleted file mode 100644 index 83b2f6f6..00000000 Binary files a/public/textures/mcwfurnitures/spruce_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_large_drawer.png b/public/textures/mcwfurnitures/spruce_large_drawer.png deleted file mode 100644 index 5bc8eb06..00000000 Binary files a/public/textures/mcwfurnitures/spruce_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/spruce_lower_bookshelf_drawer.png deleted file mode 100644 index bf5ccf06..00000000 Binary files a/public/textures/mcwfurnitures/spruce_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_lower_triple_drawer.png b/public/textures/mcwfurnitures/spruce_lower_triple_drawer.png deleted file mode 100644 index 3aef5d6e..00000000 Binary files a/public/textures/mcwfurnitures/spruce_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_modern_chair.png b/public/textures/mcwfurnitures/spruce_modern_chair.png deleted file mode 100644 index 4b648cd8..00000000 Binary files a/public/textures/mcwfurnitures/spruce_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_modern_desk.png b/public/textures/mcwfurnitures/spruce_modern_desk.png deleted file mode 100644 index 3e74bb94..00000000 Binary files a/public/textures/mcwfurnitures/spruce_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_modern_wardrobe.png b/public/textures/mcwfurnitures/spruce_modern_wardrobe.png deleted file mode 100644 index 8325cd77..00000000 Binary files a/public/textures/mcwfurnitures/spruce_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_stool_chair.png b/public/textures/mcwfurnitures/spruce_stool_chair.png deleted file mode 100644 index 280e7dcc..00000000 Binary files a/public/textures/mcwfurnitures/spruce_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_striped_chair.png b/public/textures/mcwfurnitures/spruce_striped_chair.png deleted file mode 100644 index 2ca360fb..00000000 Binary files a/public/textures/mcwfurnitures/spruce_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_table.png b/public/textures/mcwfurnitures/spruce_table.png deleted file mode 100644 index f40ba342..00000000 Binary files a/public/textures/mcwfurnitures/spruce_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_triple_drawer.png b/public/textures/mcwfurnitures/spruce_triple_drawer.png deleted file mode 100644 index be92b735..00000000 Binary files a/public/textures/mcwfurnitures/spruce_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/spruce_wardrobe.png b/public/textures/mcwfurnitures/spruce_wardrobe.png deleted file mode 100644 index dd439e7c..00000000 Binary files a/public/textures/mcwfurnitures/spruce_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_bookshelf.png b/public/textures/mcwfurnitures/stripped_acacia_bookshelf.png deleted file mode 100644 index 5988eb18..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_bookshelf_cupboard.png b/public/textures/mcwfurnitures/stripped_acacia_bookshelf_cupboard.png deleted file mode 100644 index c74e4167..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_acacia_bookshelf_drawer.png deleted file mode 100644 index d90e5bdd..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_chair.png b/public/textures/mcwfurnitures/stripped_acacia_chair.png deleted file mode 100644 index 5e95e4a3..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_coffee_table.png b/public/textures/mcwfurnitures/stripped_acacia_coffee_table.png deleted file mode 100644 index 3a858ea9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_counter.png b/public/textures/mcwfurnitures/stripped_acacia_counter.png deleted file mode 100644 index b3f085d5..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_covered_desk.png b/public/textures/mcwfurnitures/stripped_acacia_covered_desk.png deleted file mode 100644 index 6d87ea0a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_cupboard_counter.png b/public/textures/mcwfurnitures/stripped_acacia_cupboard_counter.png deleted file mode 100644 index f768f2b9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_desk.png b/public/textures/mcwfurnitures/stripped_acacia_desk.png deleted file mode 100644 index 676adfcd..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_double_drawer.png b/public/textures/mcwfurnitures/stripped_acacia_double_drawer.png deleted file mode 100644 index f70c7d00..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_double_drawer_counter.png b/public/textures/mcwfurnitures/stripped_acacia_double_drawer_counter.png deleted file mode 100644 index 83c4d506..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_acacia_double_kitchen_cabinet.png deleted file mode 100644 index ec0af540..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_double_wardrobe.png b/public/textures/mcwfurnitures/stripped_acacia_double_wardrobe.png deleted file mode 100644 index aff1dc6a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_drawer.png b/public/textures/mcwfurnitures/stripped_acacia_drawer.png deleted file mode 100644 index 56df168f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_drawer_counter.png b/public/textures/mcwfurnitures/stripped_acacia_drawer_counter.png deleted file mode 100644 index c89e6f91..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_end_table.png b/public/textures/mcwfurnitures/stripped_acacia_end_table.png deleted file mode 100644 index 73e871e8..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_acacia_glass_kitchen_cabinet.png deleted file mode 100644 index 07451b4d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_glass_table.png b/public/textures/mcwfurnitures/stripped_acacia_glass_table.png deleted file mode 100644 index 41b86b94..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_acacia_kitchen_cabinet.png deleted file mode 100644 index 7ef6de6d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_large_drawer.png b/public/textures/mcwfurnitures/stripped_acacia_large_drawer.png deleted file mode 100644 index e717e5b4..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_acacia_lower_bookshelf_drawer.png deleted file mode 100644 index 6c74eb8f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_lower_triple_drawer.png b/public/textures/mcwfurnitures/stripped_acacia_lower_triple_drawer.png deleted file mode 100644 index 423db49a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_modern_chair.png b/public/textures/mcwfurnitures/stripped_acacia_modern_chair.png deleted file mode 100644 index d4d235af..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_modern_desk.png b/public/textures/mcwfurnitures/stripped_acacia_modern_desk.png deleted file mode 100644 index 85ac42ca..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_modern_wardrobe.png b/public/textures/mcwfurnitures/stripped_acacia_modern_wardrobe.png deleted file mode 100644 index 32d62fdb..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_stool_chair.png b/public/textures/mcwfurnitures/stripped_acacia_stool_chair.png deleted file mode 100644 index 9ceea836..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_striped_chair.png b/public/textures/mcwfurnitures/stripped_acacia_striped_chair.png deleted file mode 100644 index 4cfd7e4c..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_table.png b/public/textures/mcwfurnitures/stripped_acacia_table.png deleted file mode 100644 index 70f66008..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_triple_drawer.png b/public/textures/mcwfurnitures/stripped_acacia_triple_drawer.png deleted file mode 100644 index f6b16dc9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_acacia_wardrobe.png b/public/textures/mcwfurnitures/stripped_acacia_wardrobe.png deleted file mode 100644 index fd3a1f0e..00000000 Binary files a/public/textures/mcwfurnitures/stripped_acacia_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_bookshelf.png b/public/textures/mcwfurnitures/stripped_birch_bookshelf.png deleted file mode 100644 index e56f7432..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_bookshelf_cupboard.png b/public/textures/mcwfurnitures/stripped_birch_bookshelf_cupboard.png deleted file mode 100644 index e4020087..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_birch_bookshelf_drawer.png deleted file mode 100644 index 75e77b4e..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_chair.png b/public/textures/mcwfurnitures/stripped_birch_chair.png deleted file mode 100644 index c2e3f7dd..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_coffee_table.png b/public/textures/mcwfurnitures/stripped_birch_coffee_table.png deleted file mode 100644 index d44b8bdf..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_counter.png b/public/textures/mcwfurnitures/stripped_birch_counter.png deleted file mode 100644 index 11812de9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_covered_desk.png b/public/textures/mcwfurnitures/stripped_birch_covered_desk.png deleted file mode 100644 index 2d828257..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_cupboard_counter.png b/public/textures/mcwfurnitures/stripped_birch_cupboard_counter.png deleted file mode 100644 index dff0ebd8..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_desk.png b/public/textures/mcwfurnitures/stripped_birch_desk.png deleted file mode 100644 index 5169d6bf..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_double_drawer.png b/public/textures/mcwfurnitures/stripped_birch_double_drawer.png deleted file mode 100644 index 5c022493..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_double_drawer_counter.png b/public/textures/mcwfurnitures/stripped_birch_double_drawer_counter.png deleted file mode 100644 index fc15b552..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_birch_double_kitchen_cabinet.png deleted file mode 100644 index 9bfd884d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_double_wardrobe.png b/public/textures/mcwfurnitures/stripped_birch_double_wardrobe.png deleted file mode 100644 index a803abcb..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_drawer.png b/public/textures/mcwfurnitures/stripped_birch_drawer.png deleted file mode 100644 index 0b90f049..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_drawer_counter.png b/public/textures/mcwfurnitures/stripped_birch_drawer_counter.png deleted file mode 100644 index de9cb849..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_end_table.png b/public/textures/mcwfurnitures/stripped_birch_end_table.png deleted file mode 100644 index 5e7cdd40..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_birch_glass_kitchen_cabinet.png deleted file mode 100644 index 1e248bab..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_glass_table.png b/public/textures/mcwfurnitures/stripped_birch_glass_table.png deleted file mode 100644 index 531d503c..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_birch_kitchen_cabinet.png deleted file mode 100644 index 4798b814..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_large_drawer.png b/public/textures/mcwfurnitures/stripped_birch_large_drawer.png deleted file mode 100644 index c1072f49..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_birch_lower_bookshelf_drawer.png deleted file mode 100644 index 4bb8150c..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_lower_triple_drawer.png b/public/textures/mcwfurnitures/stripped_birch_lower_triple_drawer.png deleted file mode 100644 index 41ff3e0f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_modern_chair.png b/public/textures/mcwfurnitures/stripped_birch_modern_chair.png deleted file mode 100644 index 01ff38a1..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_modern_desk.png b/public/textures/mcwfurnitures/stripped_birch_modern_desk.png deleted file mode 100644 index 639e58f1..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_modern_wardrobe.png b/public/textures/mcwfurnitures/stripped_birch_modern_wardrobe.png deleted file mode 100644 index 810fe2e3..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_stool_chair.png b/public/textures/mcwfurnitures/stripped_birch_stool_chair.png deleted file mode 100644 index 4624499f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_striped_chair.png b/public/textures/mcwfurnitures/stripped_birch_striped_chair.png deleted file mode 100644 index ce8aaaa0..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_table.png b/public/textures/mcwfurnitures/stripped_birch_table.png deleted file mode 100644 index 4936dedb..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_triple_drawer.png b/public/textures/mcwfurnitures/stripped_birch_triple_drawer.png deleted file mode 100644 index d6b6db9a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_birch_wardrobe.png b/public/textures/mcwfurnitures/stripped_birch_wardrobe.png deleted file mode 100644 index d084a276..00000000 Binary files a/public/textures/mcwfurnitures/stripped_birch_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_bookshelf.png b/public/textures/mcwfurnitures/stripped_cherry_bookshelf.png deleted file mode 100644 index c48cf070..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_bookshelf_cupboard.png b/public/textures/mcwfurnitures/stripped_cherry_bookshelf_cupboard.png deleted file mode 100644 index de4a08d5..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_cherry_bookshelf_drawer.png deleted file mode 100644 index bc1f924a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_chair.png b/public/textures/mcwfurnitures/stripped_cherry_chair.png deleted file mode 100644 index 71a811f5..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_coffee_table.png b/public/textures/mcwfurnitures/stripped_cherry_coffee_table.png deleted file mode 100644 index 8b591321..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_counter.png b/public/textures/mcwfurnitures/stripped_cherry_counter.png deleted file mode 100644 index 82f10c09..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_covered_desk.png b/public/textures/mcwfurnitures/stripped_cherry_covered_desk.png deleted file mode 100644 index 11643486..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_cupboard_counter.png b/public/textures/mcwfurnitures/stripped_cherry_cupboard_counter.png deleted file mode 100644 index 47d5d059..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_desk.png b/public/textures/mcwfurnitures/stripped_cherry_desk.png deleted file mode 100644 index 0d6a1c37..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_double_drawer.png b/public/textures/mcwfurnitures/stripped_cherry_double_drawer.png deleted file mode 100644 index e28551f4..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_double_drawer_counter.png b/public/textures/mcwfurnitures/stripped_cherry_double_drawer_counter.png deleted file mode 100644 index 9e6884b1..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_cherry_double_kitchen_cabinet.png deleted file mode 100644 index a5307506..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_double_wardrobe.png b/public/textures/mcwfurnitures/stripped_cherry_double_wardrobe.png deleted file mode 100644 index 15ae7798..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_drawer.png b/public/textures/mcwfurnitures/stripped_cherry_drawer.png deleted file mode 100644 index 9bbcb18c..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_drawer_counter.png b/public/textures/mcwfurnitures/stripped_cherry_drawer_counter.png deleted file mode 100644 index 51394a1d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_end_table.png b/public/textures/mcwfurnitures/stripped_cherry_end_table.png deleted file mode 100644 index 9cedc50f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_cherry_glass_kitchen_cabinet.png deleted file mode 100644 index 1fe1dc71..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_glass_table.png b/public/textures/mcwfurnitures/stripped_cherry_glass_table.png deleted file mode 100644 index 44d367a1..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_cherry_kitchen_cabinet.png deleted file mode 100644 index 324e18a7..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_large_drawer.png b/public/textures/mcwfurnitures/stripped_cherry_large_drawer.png deleted file mode 100644 index c25171bb..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_cherry_lower_bookshelf_drawer.png deleted file mode 100644 index 63b244ad..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_lower_triple_drawer.png b/public/textures/mcwfurnitures/stripped_cherry_lower_triple_drawer.png deleted file mode 100644 index 0ef19be5..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_modern_chair.png b/public/textures/mcwfurnitures/stripped_cherry_modern_chair.png deleted file mode 100644 index 4864c639..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_modern_desk.png b/public/textures/mcwfurnitures/stripped_cherry_modern_desk.png deleted file mode 100644 index 59548c02..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_modern_wardrobe.png b/public/textures/mcwfurnitures/stripped_cherry_modern_wardrobe.png deleted file mode 100644 index 8090e269..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_stool_chair.png b/public/textures/mcwfurnitures/stripped_cherry_stool_chair.png deleted file mode 100644 index 9c62e99a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_striped_chair.png b/public/textures/mcwfurnitures/stripped_cherry_striped_chair.png deleted file mode 100644 index fbf8e8a9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_table.png b/public/textures/mcwfurnitures/stripped_cherry_table.png deleted file mode 100644 index 9d15f30f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_triple_drawer.png b/public/textures/mcwfurnitures/stripped_cherry_triple_drawer.png deleted file mode 100644 index fec817d7..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_cherry_wardrobe.png b/public/textures/mcwfurnitures/stripped_cherry_wardrobe.png deleted file mode 100644 index b09014d5..00000000 Binary files a/public/textures/mcwfurnitures/stripped_cherry_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_bookshelf.png b/public/textures/mcwfurnitures/stripped_crimson_bookshelf.png deleted file mode 100644 index 6f37285c..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_bookshelf_cupboard.png b/public/textures/mcwfurnitures/stripped_crimson_bookshelf_cupboard.png deleted file mode 100644 index 1b6cc15b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_crimson_bookshelf_drawer.png deleted file mode 100644 index 2d0ac61a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_chair.png b/public/textures/mcwfurnitures/stripped_crimson_chair.png deleted file mode 100644 index 34a33d20..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_coffee_table.png b/public/textures/mcwfurnitures/stripped_crimson_coffee_table.png deleted file mode 100644 index 524caf68..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_counter.png b/public/textures/mcwfurnitures/stripped_crimson_counter.png deleted file mode 100644 index 7d08522f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_covered_desk.png b/public/textures/mcwfurnitures/stripped_crimson_covered_desk.png deleted file mode 100644 index a509bf8b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_cupboard_counter.png b/public/textures/mcwfurnitures/stripped_crimson_cupboard_counter.png deleted file mode 100644 index 7e80c620..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_desk.png b/public/textures/mcwfurnitures/stripped_crimson_desk.png deleted file mode 100644 index c282bd75..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_double_drawer.png b/public/textures/mcwfurnitures/stripped_crimson_double_drawer.png deleted file mode 100644 index d559c91a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_double_drawer_counter.png b/public/textures/mcwfurnitures/stripped_crimson_double_drawer_counter.png deleted file mode 100644 index 42d119de..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_crimson_double_kitchen_cabinet.png deleted file mode 100644 index ab777e6a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_double_wardrobe.png b/public/textures/mcwfurnitures/stripped_crimson_double_wardrobe.png deleted file mode 100644 index 2aa3b387..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_drawer.png b/public/textures/mcwfurnitures/stripped_crimson_drawer.png deleted file mode 100644 index e4bcdd61..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_drawer_counter.png b/public/textures/mcwfurnitures/stripped_crimson_drawer_counter.png deleted file mode 100644 index 16ac9412..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_end_table.png b/public/textures/mcwfurnitures/stripped_crimson_end_table.png deleted file mode 100644 index f734b6c8..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_crimson_glass_kitchen_cabinet.png deleted file mode 100644 index dcd425a3..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_glass_table.png b/public/textures/mcwfurnitures/stripped_crimson_glass_table.png deleted file mode 100644 index 3b25a883..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_crimson_kitchen_cabinet.png deleted file mode 100644 index cfa10c8b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_large_drawer.png b/public/textures/mcwfurnitures/stripped_crimson_large_drawer.png deleted file mode 100644 index 90d6b315..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_crimson_lower_bookshelf_drawer.png deleted file mode 100644 index d489c6b9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_lower_triple_drawer.png b/public/textures/mcwfurnitures/stripped_crimson_lower_triple_drawer.png deleted file mode 100644 index 6b1bf04f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_modern_chair.png b/public/textures/mcwfurnitures/stripped_crimson_modern_chair.png deleted file mode 100644 index 10849522..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_modern_desk.png b/public/textures/mcwfurnitures/stripped_crimson_modern_desk.png deleted file mode 100644 index 37692394..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_modern_wardrobe.png b/public/textures/mcwfurnitures/stripped_crimson_modern_wardrobe.png deleted file mode 100644 index 90c1752f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_stool_chair.png b/public/textures/mcwfurnitures/stripped_crimson_stool_chair.png deleted file mode 100644 index 2cf9c467..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_striped_chair.png b/public/textures/mcwfurnitures/stripped_crimson_striped_chair.png deleted file mode 100644 index d551b515..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_table.png b/public/textures/mcwfurnitures/stripped_crimson_table.png deleted file mode 100644 index c2098b0e..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_triple_drawer.png b/public/textures/mcwfurnitures/stripped_crimson_triple_drawer.png deleted file mode 100644 index e5e092a3..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_crimson_wardrobe.png b/public/textures/mcwfurnitures/stripped_crimson_wardrobe.png deleted file mode 100644 index 256683f2..00000000 Binary files a/public/textures/mcwfurnitures/stripped_crimson_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_bookshelf.png b/public/textures/mcwfurnitures/stripped_dark_oak_bookshelf.png deleted file mode 100644 index 380c7940..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_bookshelf_cupboard.png b/public/textures/mcwfurnitures/stripped_dark_oak_bookshelf_cupboard.png deleted file mode 100644 index f04976a9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_dark_oak_bookshelf_drawer.png deleted file mode 100644 index af3f0be0..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_chair.png b/public/textures/mcwfurnitures/stripped_dark_oak_chair.png deleted file mode 100644 index 73143947..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_coffee_table.png b/public/textures/mcwfurnitures/stripped_dark_oak_coffee_table.png deleted file mode 100644 index 511b6b6f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_counter.png b/public/textures/mcwfurnitures/stripped_dark_oak_counter.png deleted file mode 100644 index 2ef92ba5..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_covered_desk.png b/public/textures/mcwfurnitures/stripped_dark_oak_covered_desk.png deleted file mode 100644 index be4fe1d7..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_cupboard_counter.png b/public/textures/mcwfurnitures/stripped_dark_oak_cupboard_counter.png deleted file mode 100644 index c7108c65..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_desk.png b/public/textures/mcwfurnitures/stripped_dark_oak_desk.png deleted file mode 100644 index ad4014fe..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_double_drawer.png b/public/textures/mcwfurnitures/stripped_dark_oak_double_drawer.png deleted file mode 100644 index 99d7bbf6..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_double_drawer_counter.png b/public/textures/mcwfurnitures/stripped_dark_oak_double_drawer_counter.png deleted file mode 100644 index 78bca781..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_dark_oak_double_kitchen_cabinet.png deleted file mode 100644 index 9c0b12df..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_double_wardrobe.png b/public/textures/mcwfurnitures/stripped_dark_oak_double_wardrobe.png deleted file mode 100644 index 2b15089d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_drawer.png b/public/textures/mcwfurnitures/stripped_dark_oak_drawer.png deleted file mode 100644 index 38a7ea89..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_drawer_counter.png b/public/textures/mcwfurnitures/stripped_dark_oak_drawer_counter.png deleted file mode 100644 index 0ee946fd..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_end_table.png b/public/textures/mcwfurnitures/stripped_dark_oak_end_table.png deleted file mode 100644 index 1bbd8fe9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_dark_oak_glass_kitchen_cabinet.png deleted file mode 100644 index 7090f39d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_glass_table.png b/public/textures/mcwfurnitures/stripped_dark_oak_glass_table.png deleted file mode 100644 index 5c234c63..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_dark_oak_kitchen_cabinet.png deleted file mode 100644 index f16df3d6..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_large_drawer.png b/public/textures/mcwfurnitures/stripped_dark_oak_large_drawer.png deleted file mode 100644 index f30d26a4..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_dark_oak_lower_bookshelf_drawer.png deleted file mode 100644 index 85e5d9db..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_lower_triple_drawer.png b/public/textures/mcwfurnitures/stripped_dark_oak_lower_triple_drawer.png deleted file mode 100644 index 473e013b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_modern_chair.png b/public/textures/mcwfurnitures/stripped_dark_oak_modern_chair.png deleted file mode 100644 index 60887a38..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_modern_desk.png b/public/textures/mcwfurnitures/stripped_dark_oak_modern_desk.png deleted file mode 100644 index 1d62cda3..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_modern_wardrobe.png b/public/textures/mcwfurnitures/stripped_dark_oak_modern_wardrobe.png deleted file mode 100644 index 41913e8a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_stool_chair.png b/public/textures/mcwfurnitures/stripped_dark_oak_stool_chair.png deleted file mode 100644 index 5a622c49..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_striped_chair.png b/public/textures/mcwfurnitures/stripped_dark_oak_striped_chair.png deleted file mode 100644 index d7a21fb8..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_table.png b/public/textures/mcwfurnitures/stripped_dark_oak_table.png deleted file mode 100644 index f79c0c75..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_triple_drawer.png b/public/textures/mcwfurnitures/stripped_dark_oak_triple_drawer.png deleted file mode 100644 index 811efa74..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_dark_oak_wardrobe.png b/public/textures/mcwfurnitures/stripped_dark_oak_wardrobe.png deleted file mode 100644 index 63d79ff9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_dark_oak_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_bookshelf.png b/public/textures/mcwfurnitures/stripped_jungle_bookshelf.png deleted file mode 100644 index 504a2d34..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_bookshelf_cupboard.png b/public/textures/mcwfurnitures/stripped_jungle_bookshelf_cupboard.png deleted file mode 100644 index 5a21c225..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_jungle_bookshelf_drawer.png deleted file mode 100644 index 36ae93de..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_chair.png b/public/textures/mcwfurnitures/stripped_jungle_chair.png deleted file mode 100644 index 7ef457e0..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_coffee_table.png b/public/textures/mcwfurnitures/stripped_jungle_coffee_table.png deleted file mode 100644 index e435253b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_counter.png b/public/textures/mcwfurnitures/stripped_jungle_counter.png deleted file mode 100644 index b9330848..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_covered_desk.png b/public/textures/mcwfurnitures/stripped_jungle_covered_desk.png deleted file mode 100644 index edd8de66..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_cupboard_counter.png b/public/textures/mcwfurnitures/stripped_jungle_cupboard_counter.png deleted file mode 100644 index fcc96c3b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_desk.png b/public/textures/mcwfurnitures/stripped_jungle_desk.png deleted file mode 100644 index 25b753f2..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_double_drawer.png b/public/textures/mcwfurnitures/stripped_jungle_double_drawer.png deleted file mode 100644 index 15293826..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_double_drawer_counter.png b/public/textures/mcwfurnitures/stripped_jungle_double_drawer_counter.png deleted file mode 100644 index 9a4ebb8b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_jungle_double_kitchen_cabinet.png deleted file mode 100644 index 6ca7c875..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_double_wardrobe.png b/public/textures/mcwfurnitures/stripped_jungle_double_wardrobe.png deleted file mode 100644 index 5ebda0bd..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_drawer.png b/public/textures/mcwfurnitures/stripped_jungle_drawer.png deleted file mode 100644 index 4dd22720..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_drawer_counter.png b/public/textures/mcwfurnitures/stripped_jungle_drawer_counter.png deleted file mode 100644 index 34e4901d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_end_table.png b/public/textures/mcwfurnitures/stripped_jungle_end_table.png deleted file mode 100644 index 4756c4f8..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_jungle_glass_kitchen_cabinet.png deleted file mode 100644 index ab162203..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_glass_table.png b/public/textures/mcwfurnitures/stripped_jungle_glass_table.png deleted file mode 100644 index 511c557a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_jungle_kitchen_cabinet.png deleted file mode 100644 index bc245521..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_large_drawer.png b/public/textures/mcwfurnitures/stripped_jungle_large_drawer.png deleted file mode 100644 index eb077559..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_jungle_lower_bookshelf_drawer.png deleted file mode 100644 index 79030b06..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_lower_triple_drawer.png b/public/textures/mcwfurnitures/stripped_jungle_lower_triple_drawer.png deleted file mode 100644 index 0fd40042..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_modern_chair.png b/public/textures/mcwfurnitures/stripped_jungle_modern_chair.png deleted file mode 100644 index f664faef..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_modern_desk.png b/public/textures/mcwfurnitures/stripped_jungle_modern_desk.png deleted file mode 100644 index d0faac74..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_modern_wardrobe.png b/public/textures/mcwfurnitures/stripped_jungle_modern_wardrobe.png deleted file mode 100644 index 08afb1dc..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_stool_chair.png b/public/textures/mcwfurnitures/stripped_jungle_stool_chair.png deleted file mode 100644 index 210c8ebe..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_striped_chair.png b/public/textures/mcwfurnitures/stripped_jungle_striped_chair.png deleted file mode 100644 index 1519642f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_table.png b/public/textures/mcwfurnitures/stripped_jungle_table.png deleted file mode 100644 index c2bc8059..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_triple_drawer.png b/public/textures/mcwfurnitures/stripped_jungle_triple_drawer.png deleted file mode 100644 index d91a309f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_jungle_wardrobe.png b/public/textures/mcwfurnitures/stripped_jungle_wardrobe.png deleted file mode 100644 index 79918975..00000000 Binary files a/public/textures/mcwfurnitures/stripped_jungle_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_bookshelf.png b/public/textures/mcwfurnitures/stripped_mangrove_bookshelf.png deleted file mode 100644 index 266fc29d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_bookshelf_cupboard.png b/public/textures/mcwfurnitures/stripped_mangrove_bookshelf_cupboard.png deleted file mode 100644 index 4ff137eb..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_mangrove_bookshelf_drawer.png deleted file mode 100644 index c7cb8ea7..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_chair.png b/public/textures/mcwfurnitures/stripped_mangrove_chair.png deleted file mode 100644 index 82be6974..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_coffee_table.png b/public/textures/mcwfurnitures/stripped_mangrove_coffee_table.png deleted file mode 100644 index b91c799b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_counter.png b/public/textures/mcwfurnitures/stripped_mangrove_counter.png deleted file mode 100644 index db1e880f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_covered_desk.png b/public/textures/mcwfurnitures/stripped_mangrove_covered_desk.png deleted file mode 100644 index daa4bafc..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_cupboard_counter.png b/public/textures/mcwfurnitures/stripped_mangrove_cupboard_counter.png deleted file mode 100644 index 05e8b4b5..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_desk.png b/public/textures/mcwfurnitures/stripped_mangrove_desk.png deleted file mode 100644 index 9e0f61af..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_double_drawer.png b/public/textures/mcwfurnitures/stripped_mangrove_double_drawer.png deleted file mode 100644 index 1d956788..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_double_drawer_counter.png b/public/textures/mcwfurnitures/stripped_mangrove_double_drawer_counter.png deleted file mode 100644 index be53ae2e..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_mangrove_double_kitchen_cabinet.png deleted file mode 100644 index 04ecf4cc..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_double_wardrobe.png b/public/textures/mcwfurnitures/stripped_mangrove_double_wardrobe.png deleted file mode 100644 index 6710a53d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_drawer.png b/public/textures/mcwfurnitures/stripped_mangrove_drawer.png deleted file mode 100644 index fe96129d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_drawer_counter.png b/public/textures/mcwfurnitures/stripped_mangrove_drawer_counter.png deleted file mode 100644 index f16ed111..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_end_table.png b/public/textures/mcwfurnitures/stripped_mangrove_end_table.png deleted file mode 100644 index e76673e7..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_mangrove_glass_kitchen_cabinet.png deleted file mode 100644 index d8ef4310..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_glass_table.png b/public/textures/mcwfurnitures/stripped_mangrove_glass_table.png deleted file mode 100644 index d107f9fa..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_mangrove_kitchen_cabinet.png deleted file mode 100644 index ff1ce665..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_large_drawer.png b/public/textures/mcwfurnitures/stripped_mangrove_large_drawer.png deleted file mode 100644 index 30a71d92..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_mangrove_lower_bookshelf_drawer.png deleted file mode 100644 index af9be1b1..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_lower_triple_drawer.png b/public/textures/mcwfurnitures/stripped_mangrove_lower_triple_drawer.png deleted file mode 100644 index 41b1bd44..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_modern_chair.png b/public/textures/mcwfurnitures/stripped_mangrove_modern_chair.png deleted file mode 100644 index 7d679710..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_modern_desk.png b/public/textures/mcwfurnitures/stripped_mangrove_modern_desk.png deleted file mode 100644 index 121fc887..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_modern_wardrobe.png b/public/textures/mcwfurnitures/stripped_mangrove_modern_wardrobe.png deleted file mode 100644 index ea5420c8..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_stool_chair.png b/public/textures/mcwfurnitures/stripped_mangrove_stool_chair.png deleted file mode 100644 index 399c9ecc..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_striped_chair.png b/public/textures/mcwfurnitures/stripped_mangrove_striped_chair.png deleted file mode 100644 index 9cb51503..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_table.png b/public/textures/mcwfurnitures/stripped_mangrove_table.png deleted file mode 100644 index afc9e418..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_triple_drawer.png b/public/textures/mcwfurnitures/stripped_mangrove_triple_drawer.png deleted file mode 100644 index 287bc225..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_mangrove_wardrobe.png b/public/textures/mcwfurnitures/stripped_mangrove_wardrobe.png deleted file mode 100644 index 0ac1bb2a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_mangrove_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_bookshelf.png b/public/textures/mcwfurnitures/stripped_oak_bookshelf.png deleted file mode 100644 index 7db218db..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_bookshelf_cupboard.png b/public/textures/mcwfurnitures/stripped_oak_bookshelf_cupboard.png deleted file mode 100644 index 2fa5424b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_oak_bookshelf_drawer.png deleted file mode 100644 index 9c5f435b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_chair.png b/public/textures/mcwfurnitures/stripped_oak_chair.png deleted file mode 100644 index 0d4130e9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_coffee_table.png b/public/textures/mcwfurnitures/stripped_oak_coffee_table.png deleted file mode 100644 index 7cc8e702..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_counter.png b/public/textures/mcwfurnitures/stripped_oak_counter.png deleted file mode 100644 index bf3a8db4..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_covered_desk.png b/public/textures/mcwfurnitures/stripped_oak_covered_desk.png deleted file mode 100644 index dc8f6356..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_cupboard_counter.png b/public/textures/mcwfurnitures/stripped_oak_cupboard_counter.png deleted file mode 100644 index b5a6fe30..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_desk.png b/public/textures/mcwfurnitures/stripped_oak_desk.png deleted file mode 100644 index b0637cd5..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_double_drawer.png b/public/textures/mcwfurnitures/stripped_oak_double_drawer.png deleted file mode 100644 index f5a01eca..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_double_drawer_counter.png b/public/textures/mcwfurnitures/stripped_oak_double_drawer_counter.png deleted file mode 100644 index c0288d0d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_oak_double_kitchen_cabinet.png deleted file mode 100644 index b3ee9ccf..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_double_wardrobe.png b/public/textures/mcwfurnitures/stripped_oak_double_wardrobe.png deleted file mode 100644 index 29fc3640..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_drawer.png b/public/textures/mcwfurnitures/stripped_oak_drawer.png deleted file mode 100644 index c4cc48fc..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_drawer_counter.png b/public/textures/mcwfurnitures/stripped_oak_drawer_counter.png deleted file mode 100644 index eb8148c1..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_end_table.png b/public/textures/mcwfurnitures/stripped_oak_end_table.png deleted file mode 100644 index 225b4329..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_oak_glass_kitchen_cabinet.png deleted file mode 100644 index 7fe6768a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_glass_table.png b/public/textures/mcwfurnitures/stripped_oak_glass_table.png deleted file mode 100644 index ce07aceb..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_oak_kitchen_cabinet.png deleted file mode 100644 index c6cecf50..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_large_drawer.png b/public/textures/mcwfurnitures/stripped_oak_large_drawer.png deleted file mode 100644 index 57d2c5c1..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_oak_lower_bookshelf_drawer.png deleted file mode 100644 index e23a7e25..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_lower_triple_drawer.png b/public/textures/mcwfurnitures/stripped_oak_lower_triple_drawer.png deleted file mode 100644 index 62b554be..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_modern_chair.png b/public/textures/mcwfurnitures/stripped_oak_modern_chair.png deleted file mode 100644 index d12dd2e7..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_modern_desk.png b/public/textures/mcwfurnitures/stripped_oak_modern_desk.png deleted file mode 100644 index 90be6d7f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_modern_wardrobe.png b/public/textures/mcwfurnitures/stripped_oak_modern_wardrobe.png deleted file mode 100644 index 074425d8..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_stool_chair.png b/public/textures/mcwfurnitures/stripped_oak_stool_chair.png deleted file mode 100644 index c5ed48a6..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_striped_chair.png b/public/textures/mcwfurnitures/stripped_oak_striped_chair.png deleted file mode 100644 index b0858852..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_table.png b/public/textures/mcwfurnitures/stripped_oak_table.png deleted file mode 100644 index d9ce55d3..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_triple_drawer.png b/public/textures/mcwfurnitures/stripped_oak_triple_drawer.png deleted file mode 100644 index c9ec9727..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_oak_wardrobe.png b/public/textures/mcwfurnitures/stripped_oak_wardrobe.png deleted file mode 100644 index 0ba77947..00000000 Binary files a/public/textures/mcwfurnitures/stripped_oak_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_bookshelf.png b/public/textures/mcwfurnitures/stripped_spruce_bookshelf.png deleted file mode 100644 index 8057269a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_bookshelf_cupboard.png b/public/textures/mcwfurnitures/stripped_spruce_bookshelf_cupboard.png deleted file mode 100644 index a4048161..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_spruce_bookshelf_drawer.png deleted file mode 100644 index a2e13190..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_chair.png b/public/textures/mcwfurnitures/stripped_spruce_chair.png deleted file mode 100644 index 948a4858..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_coffee_table.png b/public/textures/mcwfurnitures/stripped_spruce_coffee_table.png deleted file mode 100644 index 4f695481..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_counter.png b/public/textures/mcwfurnitures/stripped_spruce_counter.png deleted file mode 100644 index 02a0fe81..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_covered_desk.png b/public/textures/mcwfurnitures/stripped_spruce_covered_desk.png deleted file mode 100644 index 98652318..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_cupboard_counter.png b/public/textures/mcwfurnitures/stripped_spruce_cupboard_counter.png deleted file mode 100644 index eeef6ba0..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_desk.png b/public/textures/mcwfurnitures/stripped_spruce_desk.png deleted file mode 100644 index e088ee94..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_double_drawer.png b/public/textures/mcwfurnitures/stripped_spruce_double_drawer.png deleted file mode 100644 index 8091509b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_double_drawer_counter.png b/public/textures/mcwfurnitures/stripped_spruce_double_drawer_counter.png deleted file mode 100644 index 8398786d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_spruce_double_kitchen_cabinet.png deleted file mode 100644 index 18176757..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_double_wardrobe.png b/public/textures/mcwfurnitures/stripped_spruce_double_wardrobe.png deleted file mode 100644 index d739bdda..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_drawer.png b/public/textures/mcwfurnitures/stripped_spruce_drawer.png deleted file mode 100644 index 00d1e767..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_drawer_counter.png b/public/textures/mcwfurnitures/stripped_spruce_drawer_counter.png deleted file mode 100644 index 9f0f4deb..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_end_table.png b/public/textures/mcwfurnitures/stripped_spruce_end_table.png deleted file mode 100644 index 7a307011..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_spruce_glass_kitchen_cabinet.png deleted file mode 100644 index 78f63d20..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_glass_table.png b/public/textures/mcwfurnitures/stripped_spruce_glass_table.png deleted file mode 100644 index 103e5623..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_spruce_kitchen_cabinet.png deleted file mode 100644 index c95df564..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_large_drawer.png b/public/textures/mcwfurnitures/stripped_spruce_large_drawer.png deleted file mode 100644 index 445bde81..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_spruce_lower_bookshelf_drawer.png deleted file mode 100644 index b41d2b8c..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_lower_triple_drawer.png b/public/textures/mcwfurnitures/stripped_spruce_lower_triple_drawer.png deleted file mode 100644 index 2bc17d4c..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_modern_chair.png b/public/textures/mcwfurnitures/stripped_spruce_modern_chair.png deleted file mode 100644 index 0b4509d9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_modern_desk.png b/public/textures/mcwfurnitures/stripped_spruce_modern_desk.png deleted file mode 100644 index d59eb512..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_modern_wardrobe.png b/public/textures/mcwfurnitures/stripped_spruce_modern_wardrobe.png deleted file mode 100644 index 8c9caf3b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_stool_chair.png b/public/textures/mcwfurnitures/stripped_spruce_stool_chair.png deleted file mode 100644 index 5d29e43e..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_striped_chair.png b/public/textures/mcwfurnitures/stripped_spruce_striped_chair.png deleted file mode 100644 index a234c3cd..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_table.png b/public/textures/mcwfurnitures/stripped_spruce_table.png deleted file mode 100644 index be51f6a9..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_triple_drawer.png b/public/textures/mcwfurnitures/stripped_spruce_triple_drawer.png deleted file mode 100644 index 390f089d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_spruce_wardrobe.png b/public/textures/mcwfurnitures/stripped_spruce_wardrobe.png deleted file mode 100644 index 6bba81df..00000000 Binary files a/public/textures/mcwfurnitures/stripped_spruce_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_bookshelf.png b/public/textures/mcwfurnitures/stripped_warped_bookshelf.png deleted file mode 100644 index 6c596e4f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_bookshelf_cupboard.png b/public/textures/mcwfurnitures/stripped_warped_bookshelf_cupboard.png deleted file mode 100644 index 696aa31e..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_warped_bookshelf_drawer.png deleted file mode 100644 index ad20771b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_chair.png b/public/textures/mcwfurnitures/stripped_warped_chair.png deleted file mode 100644 index 7cdac082..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_coffee_table.png b/public/textures/mcwfurnitures/stripped_warped_coffee_table.png deleted file mode 100644 index a9da8324..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_counter.png b/public/textures/mcwfurnitures/stripped_warped_counter.png deleted file mode 100644 index 89c54d5f..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_covered_desk.png b/public/textures/mcwfurnitures/stripped_warped_covered_desk.png deleted file mode 100644 index aaa7ab96..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_cupboard_counter.png b/public/textures/mcwfurnitures/stripped_warped_cupboard_counter.png deleted file mode 100644 index a11c3be6..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_desk.png b/public/textures/mcwfurnitures/stripped_warped_desk.png deleted file mode 100644 index 6dd5378a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_double_drawer.png b/public/textures/mcwfurnitures/stripped_warped_double_drawer.png deleted file mode 100644 index 7ef2d415..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_double_drawer_counter.png b/public/textures/mcwfurnitures/stripped_warped_double_drawer_counter.png deleted file mode 100644 index 26d7414b..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_warped_double_kitchen_cabinet.png deleted file mode 100644 index 02021b6d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_double_wardrobe.png b/public/textures/mcwfurnitures/stripped_warped_double_wardrobe.png deleted file mode 100644 index 86558ed4..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_drawer.png b/public/textures/mcwfurnitures/stripped_warped_drawer.png deleted file mode 100644 index 0542151e..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_drawer_counter.png b/public/textures/mcwfurnitures/stripped_warped_drawer_counter.png deleted file mode 100644 index 4897b288..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_end_table.png b/public/textures/mcwfurnitures/stripped_warped_end_table.png deleted file mode 100644 index 180d0446..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_warped_glass_kitchen_cabinet.png deleted file mode 100644 index 7f70e69a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_glass_table.png b/public/textures/mcwfurnitures/stripped_warped_glass_table.png deleted file mode 100644 index d6d47303..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_kitchen_cabinet.png b/public/textures/mcwfurnitures/stripped_warped_kitchen_cabinet.png deleted file mode 100644 index b5634d4a..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_large_drawer.png b/public/textures/mcwfurnitures/stripped_warped_large_drawer.png deleted file mode 100644 index 5b4b6d08..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/stripped_warped_lower_bookshelf_drawer.png deleted file mode 100644 index 28802318..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_lower_triple_drawer.png b/public/textures/mcwfurnitures/stripped_warped_lower_triple_drawer.png deleted file mode 100644 index ab2270f6..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_modern_chair.png b/public/textures/mcwfurnitures/stripped_warped_modern_chair.png deleted file mode 100644 index a8ad7836..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_modern_desk.png b/public/textures/mcwfurnitures/stripped_warped_modern_desk.png deleted file mode 100644 index 57682d06..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_modern_wardrobe.png b/public/textures/mcwfurnitures/stripped_warped_modern_wardrobe.png deleted file mode 100644 index 348a5630..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_stool_chair.png b/public/textures/mcwfurnitures/stripped_warped_stool_chair.png deleted file mode 100644 index ff1640dd..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_striped_chair.png b/public/textures/mcwfurnitures/stripped_warped_striped_chair.png deleted file mode 100644 index c75b30a7..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_table.png b/public/textures/mcwfurnitures/stripped_warped_table.png deleted file mode 100644 index 4f17628d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_triple_drawer.png b/public/textures/mcwfurnitures/stripped_warped_triple_drawer.png deleted file mode 100644 index 63e22444..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/stripped_warped_wardrobe.png b/public/textures/mcwfurnitures/stripped_warped_wardrobe.png deleted file mode 100644 index 4aa2ea0d..00000000 Binary files a/public/textures/mcwfurnitures/stripped_warped_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_bookshelf.png b/public/textures/mcwfurnitures/warped_bookshelf.png deleted file mode 100644 index eadc8a33..00000000 Binary files a/public/textures/mcwfurnitures/warped_bookshelf.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_bookshelf_cupboard.png b/public/textures/mcwfurnitures/warped_bookshelf_cupboard.png deleted file mode 100644 index 9d11fdbe..00000000 Binary files a/public/textures/mcwfurnitures/warped_bookshelf_cupboard.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_bookshelf_drawer.png b/public/textures/mcwfurnitures/warped_bookshelf_drawer.png deleted file mode 100644 index 19570439..00000000 Binary files a/public/textures/mcwfurnitures/warped_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_chair.png b/public/textures/mcwfurnitures/warped_chair.png deleted file mode 100644 index 6e2b00e5..00000000 Binary files a/public/textures/mcwfurnitures/warped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_coffee_table.png b/public/textures/mcwfurnitures/warped_coffee_table.png deleted file mode 100644 index 6c78d6e0..00000000 Binary files a/public/textures/mcwfurnitures/warped_coffee_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_counter.png b/public/textures/mcwfurnitures/warped_counter.png deleted file mode 100644 index 8d0b0962..00000000 Binary files a/public/textures/mcwfurnitures/warped_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_covered_desk.png b/public/textures/mcwfurnitures/warped_covered_desk.png deleted file mode 100644 index 4a27f2b3..00000000 Binary files a/public/textures/mcwfurnitures/warped_covered_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_cupboard_counter.png b/public/textures/mcwfurnitures/warped_cupboard_counter.png deleted file mode 100644 index 5beb4ef8..00000000 Binary files a/public/textures/mcwfurnitures/warped_cupboard_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_desk.png b/public/textures/mcwfurnitures/warped_desk.png deleted file mode 100644 index 121b77e2..00000000 Binary files a/public/textures/mcwfurnitures/warped_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_double_drawer.png b/public/textures/mcwfurnitures/warped_double_drawer.png deleted file mode 100644 index e756e3e6..00000000 Binary files a/public/textures/mcwfurnitures/warped_double_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_double_drawer_counter.png b/public/textures/mcwfurnitures/warped_double_drawer_counter.png deleted file mode 100644 index 3a585f23..00000000 Binary files a/public/textures/mcwfurnitures/warped_double_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_double_kitchen_cabinet.png b/public/textures/mcwfurnitures/warped_double_kitchen_cabinet.png deleted file mode 100644 index ca27d19c..00000000 Binary files a/public/textures/mcwfurnitures/warped_double_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_double_wardrobe.png b/public/textures/mcwfurnitures/warped_double_wardrobe.png deleted file mode 100644 index dd5ecd2f..00000000 Binary files a/public/textures/mcwfurnitures/warped_double_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_drawer.png b/public/textures/mcwfurnitures/warped_drawer.png deleted file mode 100644 index 9f296904..00000000 Binary files a/public/textures/mcwfurnitures/warped_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_drawer_counter.png b/public/textures/mcwfurnitures/warped_drawer_counter.png deleted file mode 100644 index 1d5d7537..00000000 Binary files a/public/textures/mcwfurnitures/warped_drawer_counter.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_end_table.png b/public/textures/mcwfurnitures/warped_end_table.png deleted file mode 100644 index 72976311..00000000 Binary files a/public/textures/mcwfurnitures/warped_end_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_glass_kitchen_cabinet.png b/public/textures/mcwfurnitures/warped_glass_kitchen_cabinet.png deleted file mode 100644 index a2adf06f..00000000 Binary files a/public/textures/mcwfurnitures/warped_glass_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_glass_table.png b/public/textures/mcwfurnitures/warped_glass_table.png deleted file mode 100644 index ca149eaa..00000000 Binary files a/public/textures/mcwfurnitures/warped_glass_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_kitchen_cabinet.png b/public/textures/mcwfurnitures/warped_kitchen_cabinet.png deleted file mode 100644 index d482905a..00000000 Binary files a/public/textures/mcwfurnitures/warped_kitchen_cabinet.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_large_drawer.png b/public/textures/mcwfurnitures/warped_large_drawer.png deleted file mode 100644 index fec59b7a..00000000 Binary files a/public/textures/mcwfurnitures/warped_large_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_lower_bookshelf_drawer.png b/public/textures/mcwfurnitures/warped_lower_bookshelf_drawer.png deleted file mode 100644 index 2d03fd73..00000000 Binary files a/public/textures/mcwfurnitures/warped_lower_bookshelf_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_lower_triple_drawer.png b/public/textures/mcwfurnitures/warped_lower_triple_drawer.png deleted file mode 100644 index fa54d957..00000000 Binary files a/public/textures/mcwfurnitures/warped_lower_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_modern_chair.png b/public/textures/mcwfurnitures/warped_modern_chair.png deleted file mode 100644 index 790e9edf..00000000 Binary files a/public/textures/mcwfurnitures/warped_modern_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_modern_desk.png b/public/textures/mcwfurnitures/warped_modern_desk.png deleted file mode 100644 index a77ae57d..00000000 Binary files a/public/textures/mcwfurnitures/warped_modern_desk.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_modern_wardrobe.png b/public/textures/mcwfurnitures/warped_modern_wardrobe.png deleted file mode 100644 index 557f63ab..00000000 Binary files a/public/textures/mcwfurnitures/warped_modern_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_stool_chair.png b/public/textures/mcwfurnitures/warped_stool_chair.png deleted file mode 100644 index 1bc99c2d..00000000 Binary files a/public/textures/mcwfurnitures/warped_stool_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_striped_chair.png b/public/textures/mcwfurnitures/warped_striped_chair.png deleted file mode 100644 index f122813f..00000000 Binary files a/public/textures/mcwfurnitures/warped_striped_chair.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_table.png b/public/textures/mcwfurnitures/warped_table.png deleted file mode 100644 index 447e43f4..00000000 Binary files a/public/textures/mcwfurnitures/warped_table.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_triple_drawer.png b/public/textures/mcwfurnitures/warped_triple_drawer.png deleted file mode 100644 index 586505de..00000000 Binary files a/public/textures/mcwfurnitures/warped_triple_drawer.png and /dev/null differ diff --git a/public/textures/mcwfurnitures/warped_wardrobe.png b/public/textures/mcwfurnitures/warped_wardrobe.png deleted file mode 100644 index 3bdb75db..00000000 Binary files a/public/textures/mcwfurnitures/warped_wardrobe.png and /dev/null differ diff --git a/public/textures/mcwpaths/acacia_planks_path.png b/public/textures/mcwpaths/acacia_planks_path.png deleted file mode 100644 index 2f7be2c7..00000000 Binary files a/public/textures/mcwpaths/acacia_planks_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_basket_weave_paving.png b/public/textures/mcwpaths/andesite_basket_weave_paving.png deleted file mode 100644 index da92ee23..00000000 Binary files a/public/textures/mcwpaths/andesite_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_clover_paving.png b/public/textures/mcwpaths/andesite_clover_paving.png deleted file mode 100644 index aa6a636b..00000000 Binary files a/public/textures/mcwpaths/andesite_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_crystal_floor.png b/public/textures/mcwpaths/andesite_crystal_floor.png deleted file mode 100644 index c5f27b88..00000000 Binary files a/public/textures/mcwpaths/andesite_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_crystal_floor_path.png b/public/textures/mcwpaths/andesite_crystal_floor_path.png deleted file mode 100644 index 4bfb4cca..00000000 Binary files a/public/textures/mcwpaths/andesite_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_crystal_floor_slab.png b/public/textures/mcwpaths/andesite_crystal_floor_slab.png deleted file mode 100644 index aed441bd..00000000 Binary files a/public/textures/mcwpaths/andesite_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_crystal_floor_stairs.png b/public/textures/mcwpaths/andesite_crystal_floor_stairs.png deleted file mode 100644 index b949f6e3..00000000 Binary files a/public/textures/mcwpaths/andesite_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_diamond_paving.png b/public/textures/mcwpaths/andesite_diamond_paving.png deleted file mode 100644 index df9aeb09..00000000 Binary files a/public/textures/mcwpaths/andesite_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_dumble_paving.png b/public/textures/mcwpaths/andesite_dumble_paving.png deleted file mode 100644 index fe9e8f5f..00000000 Binary files a/public/textures/mcwpaths/andesite_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_flagstone.png b/public/textures/mcwpaths/andesite_flagstone.png deleted file mode 100644 index fa98f553..00000000 Binary files a/public/textures/mcwpaths/andesite_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_flagstone_path.png b/public/textures/mcwpaths/andesite_flagstone_path.png deleted file mode 100644 index 6f9372a9..00000000 Binary files a/public/textures/mcwpaths/andesite_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_flagstone_slab.png b/public/textures/mcwpaths/andesite_flagstone_slab.png deleted file mode 100644 index 98829b46..00000000 Binary files a/public/textures/mcwpaths/andesite_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_flagstone_stairs.png b/public/textures/mcwpaths/andesite_flagstone_stairs.png deleted file mode 100644 index 58369c94..00000000 Binary files a/public/textures/mcwpaths/andesite_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_honeycomb_paving.png b/public/textures/mcwpaths/andesite_honeycomb_paving.png deleted file mode 100644 index 2f132d43..00000000 Binary files a/public/textures/mcwpaths/andesite_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_running_bond.png b/public/textures/mcwpaths/andesite_running_bond.png deleted file mode 100644 index 51e81ed1..00000000 Binary files a/public/textures/mcwpaths/andesite_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_running_bond_path.png b/public/textures/mcwpaths/andesite_running_bond_path.png deleted file mode 100644 index 7fc75788..00000000 Binary files a/public/textures/mcwpaths/andesite_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_running_bond_slab.png b/public/textures/mcwpaths/andesite_running_bond_slab.png deleted file mode 100644 index 286a442b..00000000 Binary files a/public/textures/mcwpaths/andesite_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_running_bond_stairs.png b/public/textures/mcwpaths/andesite_running_bond_stairs.png deleted file mode 100644 index 1205cae8..00000000 Binary files a/public/textures/mcwpaths/andesite_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_square_paving.png b/public/textures/mcwpaths/andesite_square_paving.png deleted file mode 100644 index e9ca4f20..00000000 Binary files a/public/textures/mcwpaths/andesite_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_strewn_rocky_path.png b/public/textures/mcwpaths/andesite_strewn_rocky_path.png deleted file mode 100644 index e4a30210..00000000 Binary files a/public/textures/mcwpaths/andesite_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_windmill_weave.png b/public/textures/mcwpaths/andesite_windmill_weave.png deleted file mode 100644 index 8a0e765e..00000000 Binary files a/public/textures/mcwpaths/andesite_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_windmill_weave_path.png b/public/textures/mcwpaths/andesite_windmill_weave_path.png deleted file mode 100644 index 499ae867..00000000 Binary files a/public/textures/mcwpaths/andesite_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_windmill_weave_slab.png b/public/textures/mcwpaths/andesite_windmill_weave_slab.png deleted file mode 100644 index 5a812763..00000000 Binary files a/public/textures/mcwpaths/andesite_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/andesite_windmill_weave_stairs.png b/public/textures/mcwpaths/andesite_windmill_weave_stairs.png deleted file mode 100644 index 66836de1..00000000 Binary files a/public/textures/mcwpaths/andesite_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/bamboo_planks_path.png b/public/textures/mcwpaths/bamboo_planks_path.png deleted file mode 100644 index 11650d9a..00000000 Binary files a/public/textures/mcwpaths/bamboo_planks_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/birch_planks_path.png b/public/textures/mcwpaths/birch_planks_path.png deleted file mode 100644 index ba7e70d7..00000000 Binary files a/public/textures/mcwpaths/birch_planks_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_basket_weave_paving.png b/public/textures/mcwpaths/blackstone_basket_weave_paving.png deleted file mode 100644 index 8d569274..00000000 Binary files a/public/textures/mcwpaths/blackstone_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_clover_paving.png b/public/textures/mcwpaths/blackstone_clover_paving.png deleted file mode 100644 index 3187b998..00000000 Binary files a/public/textures/mcwpaths/blackstone_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_crystal_floor.png b/public/textures/mcwpaths/blackstone_crystal_floor.png deleted file mode 100644 index 5315dbb0..00000000 Binary files a/public/textures/mcwpaths/blackstone_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_crystal_floor_path.png b/public/textures/mcwpaths/blackstone_crystal_floor_path.png deleted file mode 100644 index 46a2a1ac..00000000 Binary files a/public/textures/mcwpaths/blackstone_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_crystal_floor_slab.png b/public/textures/mcwpaths/blackstone_crystal_floor_slab.png deleted file mode 100644 index 2de44a90..00000000 Binary files a/public/textures/mcwpaths/blackstone_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_crystal_floor_stairs.png b/public/textures/mcwpaths/blackstone_crystal_floor_stairs.png deleted file mode 100644 index a96d9435..00000000 Binary files a/public/textures/mcwpaths/blackstone_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_diamond_paving.png b/public/textures/mcwpaths/blackstone_diamond_paving.png deleted file mode 100644 index 0946325b..00000000 Binary files a/public/textures/mcwpaths/blackstone_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_dumble_paving.png b/public/textures/mcwpaths/blackstone_dumble_paving.png deleted file mode 100644 index 1fd8f6ad..00000000 Binary files a/public/textures/mcwpaths/blackstone_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_flagstone.png b/public/textures/mcwpaths/blackstone_flagstone.png deleted file mode 100644 index 77fd0d5b..00000000 Binary files a/public/textures/mcwpaths/blackstone_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_flagstone_path.png b/public/textures/mcwpaths/blackstone_flagstone_path.png deleted file mode 100644 index 45cdf356..00000000 Binary files a/public/textures/mcwpaths/blackstone_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_flagstone_slab.png b/public/textures/mcwpaths/blackstone_flagstone_slab.png deleted file mode 100644 index 8e96e6e5..00000000 Binary files a/public/textures/mcwpaths/blackstone_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_flagstone_stairs.png b/public/textures/mcwpaths/blackstone_flagstone_stairs.png deleted file mode 100644 index ea8c2e46..00000000 Binary files a/public/textures/mcwpaths/blackstone_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_honeycomb_paving.png b/public/textures/mcwpaths/blackstone_honeycomb_paving.png deleted file mode 100644 index 947b526e..00000000 Binary files a/public/textures/mcwpaths/blackstone_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_running_bond.png b/public/textures/mcwpaths/blackstone_running_bond.png deleted file mode 100644 index 86b78b5b..00000000 Binary files a/public/textures/mcwpaths/blackstone_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_running_bond_path.png b/public/textures/mcwpaths/blackstone_running_bond_path.png deleted file mode 100644 index 3ffd314f..00000000 Binary files a/public/textures/mcwpaths/blackstone_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_running_bond_slab.png b/public/textures/mcwpaths/blackstone_running_bond_slab.png deleted file mode 100644 index 8c69b97e..00000000 Binary files a/public/textures/mcwpaths/blackstone_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_running_bond_stairs.png b/public/textures/mcwpaths/blackstone_running_bond_stairs.png deleted file mode 100644 index da7e8f17..00000000 Binary files a/public/textures/mcwpaths/blackstone_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_square_paving.png b/public/textures/mcwpaths/blackstone_square_paving.png deleted file mode 100644 index 5fb43fb4..00000000 Binary files a/public/textures/mcwpaths/blackstone_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_strewn_rocky_path.png b/public/textures/mcwpaths/blackstone_strewn_rocky_path.png deleted file mode 100644 index a7049e20..00000000 Binary files a/public/textures/mcwpaths/blackstone_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_windmill_weave.png b/public/textures/mcwpaths/blackstone_windmill_weave.png deleted file mode 100644 index c9393645..00000000 Binary files a/public/textures/mcwpaths/blackstone_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_windmill_weave_path.png b/public/textures/mcwpaths/blackstone_windmill_weave_path.png deleted file mode 100644 index ab023495..00000000 Binary files a/public/textures/mcwpaths/blackstone_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_windmill_weave_slab.png b/public/textures/mcwpaths/blackstone_windmill_weave_slab.png deleted file mode 100644 index 67ef841e..00000000 Binary files a/public/textures/mcwpaths/blackstone_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/blackstone_windmill_weave_stairs.png b/public/textures/mcwpaths/blackstone_windmill_weave_stairs.png deleted file mode 100644 index 94240657..00000000 Binary files a/public/textures/mcwpaths/blackstone_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_basket_weave_paving.png b/public/textures/mcwpaths/brick_basket_weave_paving.png deleted file mode 100644 index 1fb4515c..00000000 Binary files a/public/textures/mcwpaths/brick_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_clover_paving.png b/public/textures/mcwpaths/brick_clover_paving.png deleted file mode 100644 index cf8d5c2f..00000000 Binary files a/public/textures/mcwpaths/brick_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_crystal_floor.png b/public/textures/mcwpaths/brick_crystal_floor.png deleted file mode 100644 index 2447bfd8..00000000 Binary files a/public/textures/mcwpaths/brick_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_crystal_floor_path.png b/public/textures/mcwpaths/brick_crystal_floor_path.png deleted file mode 100644 index 180b1d21..00000000 Binary files a/public/textures/mcwpaths/brick_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_crystal_floor_slab.png b/public/textures/mcwpaths/brick_crystal_floor_slab.png deleted file mode 100644 index bf126778..00000000 Binary files a/public/textures/mcwpaths/brick_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_crystal_floor_stairs.png b/public/textures/mcwpaths/brick_crystal_floor_stairs.png deleted file mode 100644 index feb9da4a..00000000 Binary files a/public/textures/mcwpaths/brick_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_diamond_paving.png b/public/textures/mcwpaths/brick_diamond_paving.png deleted file mode 100644 index dd2849f2..00000000 Binary files a/public/textures/mcwpaths/brick_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_dumble_paving.png b/public/textures/mcwpaths/brick_dumble_paving.png deleted file mode 100644 index 089f37c9..00000000 Binary files a/public/textures/mcwpaths/brick_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_flagstone.png b/public/textures/mcwpaths/brick_flagstone.png deleted file mode 100644 index 722eae6b..00000000 Binary files a/public/textures/mcwpaths/brick_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_flagstone_path.png b/public/textures/mcwpaths/brick_flagstone_path.png deleted file mode 100644 index c99c84f3..00000000 Binary files a/public/textures/mcwpaths/brick_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_flagstone_slab.png b/public/textures/mcwpaths/brick_flagstone_slab.png deleted file mode 100644 index d41b72c1..00000000 Binary files a/public/textures/mcwpaths/brick_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_flagstone_stairs.png b/public/textures/mcwpaths/brick_flagstone_stairs.png deleted file mode 100644 index a1deedbe..00000000 Binary files a/public/textures/mcwpaths/brick_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_honeycomb_paving.png b/public/textures/mcwpaths/brick_honeycomb_paving.png deleted file mode 100644 index ce9f1c12..00000000 Binary files a/public/textures/mcwpaths/brick_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_running_bond.png b/public/textures/mcwpaths/brick_running_bond.png deleted file mode 100644 index 036ff68d..00000000 Binary files a/public/textures/mcwpaths/brick_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_running_bond_path.png b/public/textures/mcwpaths/brick_running_bond_path.png deleted file mode 100644 index 1a913e95..00000000 Binary files a/public/textures/mcwpaths/brick_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_running_bond_slab.png b/public/textures/mcwpaths/brick_running_bond_slab.png deleted file mode 100644 index 4a4323e1..00000000 Binary files a/public/textures/mcwpaths/brick_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_running_bond_stairs.png b/public/textures/mcwpaths/brick_running_bond_stairs.png deleted file mode 100644 index 35ea7aa8..00000000 Binary files a/public/textures/mcwpaths/brick_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_square_paving.png b/public/textures/mcwpaths/brick_square_paving.png deleted file mode 100644 index 76ca65c2..00000000 Binary files a/public/textures/mcwpaths/brick_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_strewn_rocky_path.png b/public/textures/mcwpaths/brick_strewn_rocky_path.png deleted file mode 100644 index cc89e7bb..00000000 Binary files a/public/textures/mcwpaths/brick_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_windmill_weave.png b/public/textures/mcwpaths/brick_windmill_weave.png deleted file mode 100644 index fb2fed15..00000000 Binary files a/public/textures/mcwpaths/brick_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_windmill_weave_path.png b/public/textures/mcwpaths/brick_windmill_weave_path.png deleted file mode 100644 index 13ce82c4..00000000 Binary files a/public/textures/mcwpaths/brick_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_windmill_weave_slab.png b/public/textures/mcwpaths/brick_windmill_weave_slab.png deleted file mode 100644 index c3e63d08..00000000 Binary files a/public/textures/mcwpaths/brick_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/brick_windmill_weave_stairs.png b/public/textures/mcwpaths/brick_windmill_weave_stairs.png deleted file mode 100644 index 81c0d755..00000000 Binary files a/public/textures/mcwpaths/brick_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/cherry_planks_path.png b/public/textures/mcwpaths/cherry_planks_path.png deleted file mode 100644 index 9d75763e..00000000 Binary files a/public/textures/mcwpaths/cherry_planks_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_basket_weave_paving.png b/public/textures/mcwpaths/cobbled_deepslate_basket_weave_paving.png deleted file mode 100644 index a919cbce..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_clover_paving.png b/public/textures/mcwpaths/cobbled_deepslate_clover_paving.png deleted file mode 100644 index 225406cc..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_crystal_floor.png b/public/textures/mcwpaths/cobbled_deepslate_crystal_floor.png deleted file mode 100644 index 94c12f0b..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_crystal_floor_path.png b/public/textures/mcwpaths/cobbled_deepslate_crystal_floor_path.png deleted file mode 100644 index 48750c57..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_crystal_floor_slab.png b/public/textures/mcwpaths/cobbled_deepslate_crystal_floor_slab.png deleted file mode 100644 index 920a8118..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_crystal_floor_stairs.png b/public/textures/mcwpaths/cobbled_deepslate_crystal_floor_stairs.png deleted file mode 100644 index 2fbfb316..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_diamond_paving.png b/public/textures/mcwpaths/cobbled_deepslate_diamond_paving.png deleted file mode 100644 index a4446a29..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_dumble_paving.png b/public/textures/mcwpaths/cobbled_deepslate_dumble_paving.png deleted file mode 100644 index b8505da3..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_flagstone.png b/public/textures/mcwpaths/cobbled_deepslate_flagstone.png deleted file mode 100644 index ae248006..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_flagstone_path.png b/public/textures/mcwpaths/cobbled_deepslate_flagstone_path.png deleted file mode 100644 index b3162169..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_flagstone_slab.png b/public/textures/mcwpaths/cobbled_deepslate_flagstone_slab.png deleted file mode 100644 index ee983db0..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_flagstone_stairs.png b/public/textures/mcwpaths/cobbled_deepslate_flagstone_stairs.png deleted file mode 100644 index 1a384409..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_honeycomb_paving.png b/public/textures/mcwpaths/cobbled_deepslate_honeycomb_paving.png deleted file mode 100644 index 39f7ed5f..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_running_bond.png b/public/textures/mcwpaths/cobbled_deepslate_running_bond.png deleted file mode 100644 index 0903eda0..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_running_bond_path.png b/public/textures/mcwpaths/cobbled_deepslate_running_bond_path.png deleted file mode 100644 index 524df0a2..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_running_bond_slab.png b/public/textures/mcwpaths/cobbled_deepslate_running_bond_slab.png deleted file mode 100644 index 60377536..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_running_bond_stairs.png b/public/textures/mcwpaths/cobbled_deepslate_running_bond_stairs.png deleted file mode 100644 index 8c20e4d1..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_square_paving.png b/public/textures/mcwpaths/cobbled_deepslate_square_paving.png deleted file mode 100644 index 477a05b6..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_strewn_rocky_path.png b/public/textures/mcwpaths/cobbled_deepslate_strewn_rocky_path.png deleted file mode 100644 index 1bcb4f02..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_windmill_weave.png b/public/textures/mcwpaths/cobbled_deepslate_windmill_weave.png deleted file mode 100644 index 5b4078ae..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_windmill_weave_path.png b/public/textures/mcwpaths/cobbled_deepslate_windmill_weave_path.png deleted file mode 100644 index 634cdca9..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_windmill_weave_slab.png b/public/textures/mcwpaths/cobbled_deepslate_windmill_weave_slab.png deleted file mode 100644 index 29ecca39..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobbled_deepslate_windmill_weave_stairs.png b/public/textures/mcwpaths/cobbled_deepslate_windmill_weave_stairs.png deleted file mode 100644 index dce40f50..00000000 Binary files a/public/textures/mcwpaths/cobbled_deepslate_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobblestone_basket_weave_paving.png b/public/textures/mcwpaths/cobblestone_basket_weave_paving.png deleted file mode 100644 index 994c08d0..00000000 Binary files a/public/textures/mcwpaths/cobblestone_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobblestone_clover_paving.png b/public/textures/mcwpaths/cobblestone_clover_paving.png deleted file mode 100644 index c22051f0..00000000 Binary files a/public/textures/mcwpaths/cobblestone_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobblestone_diamond_paving.png b/public/textures/mcwpaths/cobblestone_diamond_paving.png deleted file mode 100644 index c2c37011..00000000 Binary files a/public/textures/mcwpaths/cobblestone_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobblestone_dumble_paving.png b/public/textures/mcwpaths/cobblestone_dumble_paving.png deleted file mode 100644 index 3b18ea1d..00000000 Binary files a/public/textures/mcwpaths/cobblestone_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobblestone_honeycomb_paving.png b/public/textures/mcwpaths/cobblestone_honeycomb_paving.png deleted file mode 100644 index e4d88b92..00000000 Binary files a/public/textures/mcwpaths/cobblestone_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/cobblestone_square_paving.png b/public/textures/mcwpaths/cobblestone_square_paving.png deleted file mode 100644 index 89ec62a2..00000000 Binary files a/public/textures/mcwpaths/cobblestone_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/crimson_planks_path.png b/public/textures/mcwpaths/crimson_planks_path.png deleted file mode 100644 index b8bda57f..00000000 Binary files a/public/textures/mcwpaths/crimson_planks_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_oak_planks_path.png b/public/textures/mcwpaths/dark_oak_planks_path.png deleted file mode 100644 index 231f45af..00000000 Binary files a/public/textures/mcwpaths/dark_oak_planks_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_basket_weave_paving.png b/public/textures/mcwpaths/dark_prismarine_basket_weave_paving.png deleted file mode 100644 index 4f57482b..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_clover_paving.png b/public/textures/mcwpaths/dark_prismarine_clover_paving.png deleted file mode 100644 index ceaf2661..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_crystal_floor.png b/public/textures/mcwpaths/dark_prismarine_crystal_floor.png deleted file mode 100644 index 07d12615..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_crystal_floor_path.png b/public/textures/mcwpaths/dark_prismarine_crystal_floor_path.png deleted file mode 100644 index b3836617..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_crystal_floor_slab.png b/public/textures/mcwpaths/dark_prismarine_crystal_floor_slab.png deleted file mode 100644 index 8271332f..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_crystal_floor_stairs.png b/public/textures/mcwpaths/dark_prismarine_crystal_floor_stairs.png deleted file mode 100644 index 7c7f5e27..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_diamond_paving.png b/public/textures/mcwpaths/dark_prismarine_diamond_paving.png deleted file mode 100644 index 296e7837..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_dumble_paving.png b/public/textures/mcwpaths/dark_prismarine_dumble_paving.png deleted file mode 100644 index adec0ff5..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_flagstone.png b/public/textures/mcwpaths/dark_prismarine_flagstone.png deleted file mode 100644 index 069041e6..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_flagstone_path.png b/public/textures/mcwpaths/dark_prismarine_flagstone_path.png deleted file mode 100644 index f331f92f..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_flagstone_slab.png b/public/textures/mcwpaths/dark_prismarine_flagstone_slab.png deleted file mode 100644 index f14fd115..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_flagstone_stairs.png b/public/textures/mcwpaths/dark_prismarine_flagstone_stairs.png deleted file mode 100644 index b27f8971..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_honeycomb_paving.png b/public/textures/mcwpaths/dark_prismarine_honeycomb_paving.png deleted file mode 100644 index 908ecba5..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_running_bond.png b/public/textures/mcwpaths/dark_prismarine_running_bond.png deleted file mode 100644 index eae53c6c..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_running_bond_path.png b/public/textures/mcwpaths/dark_prismarine_running_bond_path.png deleted file mode 100644 index 1149c979..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_running_bond_slab.png b/public/textures/mcwpaths/dark_prismarine_running_bond_slab.png deleted file mode 100644 index ac8cfa96..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_running_bond_stairs.png b/public/textures/mcwpaths/dark_prismarine_running_bond_stairs.png deleted file mode 100644 index f3aeb140..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_square_paving.png b/public/textures/mcwpaths/dark_prismarine_square_paving.png deleted file mode 100644 index 3aebf83e..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_strewn_rocky_path.png b/public/textures/mcwpaths/dark_prismarine_strewn_rocky_path.png deleted file mode 100644 index f8821dfc..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_windmill_weave.png b/public/textures/mcwpaths/dark_prismarine_windmill_weave.png deleted file mode 100644 index 5bd7727d..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_windmill_weave_path.png b/public/textures/mcwpaths/dark_prismarine_windmill_weave_path.png deleted file mode 100644 index 4aaa54e6..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_windmill_weave_slab.png b/public/textures/mcwpaths/dark_prismarine_windmill_weave_slab.png deleted file mode 100644 index 00fe0131..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/dark_prismarine_windmill_weave_stairs.png b/public/textures/mcwpaths/dark_prismarine_windmill_weave_stairs.png deleted file mode 100644 index 5c73e264..00000000 Binary files a/public/textures/mcwpaths/dark_prismarine_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_basket_weave_paving.png b/public/textures/mcwpaths/deepslate_basket_weave_paving.png deleted file mode 100644 index 1d225608..00000000 Binary files a/public/textures/mcwpaths/deepslate_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_clover_paving.png b/public/textures/mcwpaths/deepslate_clover_paving.png deleted file mode 100644 index c38e1567..00000000 Binary files a/public/textures/mcwpaths/deepslate_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_crystal_floor.png b/public/textures/mcwpaths/deepslate_crystal_floor.png deleted file mode 100644 index 6d102b05..00000000 Binary files a/public/textures/mcwpaths/deepslate_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_crystal_floor_path.png b/public/textures/mcwpaths/deepslate_crystal_floor_path.png deleted file mode 100644 index 8dda8e14..00000000 Binary files a/public/textures/mcwpaths/deepslate_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_crystal_floor_slab.png b/public/textures/mcwpaths/deepslate_crystal_floor_slab.png deleted file mode 100644 index c0ba832d..00000000 Binary files a/public/textures/mcwpaths/deepslate_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_crystal_floor_stairs.png b/public/textures/mcwpaths/deepslate_crystal_floor_stairs.png deleted file mode 100644 index ac3608a2..00000000 Binary files a/public/textures/mcwpaths/deepslate_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_diamond_paving.png b/public/textures/mcwpaths/deepslate_diamond_paving.png deleted file mode 100644 index 3aec3aa4..00000000 Binary files a/public/textures/mcwpaths/deepslate_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_dumble_paving.png b/public/textures/mcwpaths/deepslate_dumble_paving.png deleted file mode 100644 index 71a5fc46..00000000 Binary files a/public/textures/mcwpaths/deepslate_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_flagstone.png b/public/textures/mcwpaths/deepslate_flagstone.png deleted file mode 100644 index 5847bccc..00000000 Binary files a/public/textures/mcwpaths/deepslate_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_flagstone_path.png b/public/textures/mcwpaths/deepslate_flagstone_path.png deleted file mode 100644 index f27e5dca..00000000 Binary files a/public/textures/mcwpaths/deepslate_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_flagstone_slab.png b/public/textures/mcwpaths/deepslate_flagstone_slab.png deleted file mode 100644 index 42c35666..00000000 Binary files a/public/textures/mcwpaths/deepslate_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_flagstone_stairs.png b/public/textures/mcwpaths/deepslate_flagstone_stairs.png deleted file mode 100644 index 709f0358..00000000 Binary files a/public/textures/mcwpaths/deepslate_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_honeycomb_paving.png b/public/textures/mcwpaths/deepslate_honeycomb_paving.png deleted file mode 100644 index 2e47220f..00000000 Binary files a/public/textures/mcwpaths/deepslate_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_running_bond.png b/public/textures/mcwpaths/deepslate_running_bond.png deleted file mode 100644 index 4ae1823a..00000000 Binary files a/public/textures/mcwpaths/deepslate_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_running_bond_path.png b/public/textures/mcwpaths/deepslate_running_bond_path.png deleted file mode 100644 index 73f44f41..00000000 Binary files a/public/textures/mcwpaths/deepslate_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_running_bond_slab.png b/public/textures/mcwpaths/deepslate_running_bond_slab.png deleted file mode 100644 index e332f66f..00000000 Binary files a/public/textures/mcwpaths/deepslate_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_running_bond_stairs.png b/public/textures/mcwpaths/deepslate_running_bond_stairs.png deleted file mode 100644 index f442bbbc..00000000 Binary files a/public/textures/mcwpaths/deepslate_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_square_paving.png b/public/textures/mcwpaths/deepslate_square_paving.png deleted file mode 100644 index e67cd819..00000000 Binary files a/public/textures/mcwpaths/deepslate_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_strewn_rocky_path.png b/public/textures/mcwpaths/deepslate_strewn_rocky_path.png deleted file mode 100644 index 1262cc9c..00000000 Binary files a/public/textures/mcwpaths/deepslate_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_windmill_weave.png b/public/textures/mcwpaths/deepslate_windmill_weave.png deleted file mode 100644 index 7e842466..00000000 Binary files a/public/textures/mcwpaths/deepslate_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_windmill_weave_path.png b/public/textures/mcwpaths/deepslate_windmill_weave_path.png deleted file mode 100644 index f9082566..00000000 Binary files a/public/textures/mcwpaths/deepslate_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_windmill_weave_slab.png b/public/textures/mcwpaths/deepslate_windmill_weave_slab.png deleted file mode 100644 index fef91cf3..00000000 Binary files a/public/textures/mcwpaths/deepslate_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/deepslate_windmill_weave_stairs.png b/public/textures/mcwpaths/deepslate_windmill_weave_stairs.png deleted file mode 100644 index f4a7fcee..00000000 Binary files a/public/textures/mcwpaths/deepslate_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_basket_weave_paving.png b/public/textures/mcwpaths/diorite_basket_weave_paving.png deleted file mode 100644 index 764c8dc0..00000000 Binary files a/public/textures/mcwpaths/diorite_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_clover_paving.png b/public/textures/mcwpaths/diorite_clover_paving.png deleted file mode 100644 index 825f5878..00000000 Binary files a/public/textures/mcwpaths/diorite_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_crystal_floor.png b/public/textures/mcwpaths/diorite_crystal_floor.png deleted file mode 100644 index 9eef9931..00000000 Binary files a/public/textures/mcwpaths/diorite_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_crystal_floor_path.png b/public/textures/mcwpaths/diorite_crystal_floor_path.png deleted file mode 100644 index 48b73b4c..00000000 Binary files a/public/textures/mcwpaths/diorite_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_crystal_floor_slab.png b/public/textures/mcwpaths/diorite_crystal_floor_slab.png deleted file mode 100644 index 2583b6d7..00000000 Binary files a/public/textures/mcwpaths/diorite_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_crystal_floor_stairs.png b/public/textures/mcwpaths/diorite_crystal_floor_stairs.png deleted file mode 100644 index 3f8e4960..00000000 Binary files a/public/textures/mcwpaths/diorite_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_diamond_paving.png b/public/textures/mcwpaths/diorite_diamond_paving.png deleted file mode 100644 index 538b6024..00000000 Binary files a/public/textures/mcwpaths/diorite_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_dumble_paving.png b/public/textures/mcwpaths/diorite_dumble_paving.png deleted file mode 100644 index 41d0fd4b..00000000 Binary files a/public/textures/mcwpaths/diorite_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_flagstone.png b/public/textures/mcwpaths/diorite_flagstone.png deleted file mode 100644 index 48cd4e18..00000000 Binary files a/public/textures/mcwpaths/diorite_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_flagstone_path.png b/public/textures/mcwpaths/diorite_flagstone_path.png deleted file mode 100644 index 8f5eecb9..00000000 Binary files a/public/textures/mcwpaths/diorite_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_flagstone_slab.png b/public/textures/mcwpaths/diorite_flagstone_slab.png deleted file mode 100644 index e4e4026e..00000000 Binary files a/public/textures/mcwpaths/diorite_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_flagstone_stairs.png b/public/textures/mcwpaths/diorite_flagstone_stairs.png deleted file mode 100644 index a861a9dd..00000000 Binary files a/public/textures/mcwpaths/diorite_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_honeycomb_paving.png b/public/textures/mcwpaths/diorite_honeycomb_paving.png deleted file mode 100644 index 326943df..00000000 Binary files a/public/textures/mcwpaths/diorite_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_running_bond.png b/public/textures/mcwpaths/diorite_running_bond.png deleted file mode 100644 index db759526..00000000 Binary files a/public/textures/mcwpaths/diorite_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_running_bond_path.png b/public/textures/mcwpaths/diorite_running_bond_path.png deleted file mode 100644 index c5b71687..00000000 Binary files a/public/textures/mcwpaths/diorite_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_running_bond_slab.png b/public/textures/mcwpaths/diorite_running_bond_slab.png deleted file mode 100644 index 95ab41e9..00000000 Binary files a/public/textures/mcwpaths/diorite_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_running_bond_stairs.png b/public/textures/mcwpaths/diorite_running_bond_stairs.png deleted file mode 100644 index 39067b06..00000000 Binary files a/public/textures/mcwpaths/diorite_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_square_paving.png b/public/textures/mcwpaths/diorite_square_paving.png deleted file mode 100644 index 4e18ab16..00000000 Binary files a/public/textures/mcwpaths/diorite_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_strewn_rocky_path.png b/public/textures/mcwpaths/diorite_strewn_rocky_path.png deleted file mode 100644 index 6c45e750..00000000 Binary files a/public/textures/mcwpaths/diorite_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_windmill_weave.png b/public/textures/mcwpaths/diorite_windmill_weave.png deleted file mode 100644 index b0141840..00000000 Binary files a/public/textures/mcwpaths/diorite_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_windmill_weave_path.png b/public/textures/mcwpaths/diorite_windmill_weave_path.png deleted file mode 100644 index 6221469b..00000000 Binary files a/public/textures/mcwpaths/diorite_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_windmill_weave_slab.png b/public/textures/mcwpaths/diorite_windmill_weave_slab.png deleted file mode 100644 index 8cec58a5..00000000 Binary files a/public/textures/mcwpaths/diorite_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/diorite_windmill_weave_stairs.png b/public/textures/mcwpaths/diorite_windmill_weave_stairs.png deleted file mode 100644 index 16298635..00000000 Binary files a/public/textures/mcwpaths/diorite_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/dirt_path_block.png b/public/textures/mcwpaths/dirt_path_block.png deleted file mode 100644 index 1425c323..00000000 Binary files a/public/textures/mcwpaths/dirt_path_block.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_basket_weave_paving.png b/public/textures/mcwpaths/granite_basket_weave_paving.png deleted file mode 100644 index 4bfb8c07..00000000 Binary files a/public/textures/mcwpaths/granite_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_clover_paving.png b/public/textures/mcwpaths/granite_clover_paving.png deleted file mode 100644 index e9e0dd61..00000000 Binary files a/public/textures/mcwpaths/granite_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_crystal_floor.png b/public/textures/mcwpaths/granite_crystal_floor.png deleted file mode 100644 index e54120a9..00000000 Binary files a/public/textures/mcwpaths/granite_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_crystal_floor_path.png b/public/textures/mcwpaths/granite_crystal_floor_path.png deleted file mode 100644 index f0d838b4..00000000 Binary files a/public/textures/mcwpaths/granite_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_crystal_floor_slab.png b/public/textures/mcwpaths/granite_crystal_floor_slab.png deleted file mode 100644 index e57d794a..00000000 Binary files a/public/textures/mcwpaths/granite_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_crystal_floor_stairs.png b/public/textures/mcwpaths/granite_crystal_floor_stairs.png deleted file mode 100644 index a85b3c3d..00000000 Binary files a/public/textures/mcwpaths/granite_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_diamond_paving.png b/public/textures/mcwpaths/granite_diamond_paving.png deleted file mode 100644 index 798831bb..00000000 Binary files a/public/textures/mcwpaths/granite_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_dumble_paving.png b/public/textures/mcwpaths/granite_dumble_paving.png deleted file mode 100644 index 1387387e..00000000 Binary files a/public/textures/mcwpaths/granite_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_flagstone.png b/public/textures/mcwpaths/granite_flagstone.png deleted file mode 100644 index 664ebccc..00000000 Binary files a/public/textures/mcwpaths/granite_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_flagstone_path.png b/public/textures/mcwpaths/granite_flagstone_path.png deleted file mode 100644 index da9e2f43..00000000 Binary files a/public/textures/mcwpaths/granite_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_flagstone_slab.png b/public/textures/mcwpaths/granite_flagstone_slab.png deleted file mode 100644 index f34d094c..00000000 Binary files a/public/textures/mcwpaths/granite_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_flagstone_stairs.png b/public/textures/mcwpaths/granite_flagstone_stairs.png deleted file mode 100644 index de9455a5..00000000 Binary files a/public/textures/mcwpaths/granite_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_honeycomb_paving.png b/public/textures/mcwpaths/granite_honeycomb_paving.png deleted file mode 100644 index b8dbf28c..00000000 Binary files a/public/textures/mcwpaths/granite_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_running_bond.png b/public/textures/mcwpaths/granite_running_bond.png deleted file mode 100644 index 689d0196..00000000 Binary files a/public/textures/mcwpaths/granite_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_running_bond_path.png b/public/textures/mcwpaths/granite_running_bond_path.png deleted file mode 100644 index 2ac4f639..00000000 Binary files a/public/textures/mcwpaths/granite_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_running_bond_slab.png b/public/textures/mcwpaths/granite_running_bond_slab.png deleted file mode 100644 index 9ebab49b..00000000 Binary files a/public/textures/mcwpaths/granite_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_running_bond_stairs.png b/public/textures/mcwpaths/granite_running_bond_stairs.png deleted file mode 100644 index 8c37dfbd..00000000 Binary files a/public/textures/mcwpaths/granite_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_square_paving.png b/public/textures/mcwpaths/granite_square_paving.png deleted file mode 100644 index 06fd9fdf..00000000 Binary files a/public/textures/mcwpaths/granite_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_strewn_rocky_path.png b/public/textures/mcwpaths/granite_strewn_rocky_path.png deleted file mode 100644 index 919a9a28..00000000 Binary files a/public/textures/mcwpaths/granite_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_windmill_weave.png b/public/textures/mcwpaths/granite_windmill_weave.png deleted file mode 100644 index 5f8fce1b..00000000 Binary files a/public/textures/mcwpaths/granite_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_windmill_weave_path.png b/public/textures/mcwpaths/granite_windmill_weave_path.png deleted file mode 100644 index 798a5e67..00000000 Binary files a/public/textures/mcwpaths/granite_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_windmill_weave_slab.png b/public/textures/mcwpaths/granite_windmill_weave_slab.png deleted file mode 100644 index 36426d56..00000000 Binary files a/public/textures/mcwpaths/granite_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/granite_windmill_weave_stairs.png b/public/textures/mcwpaths/granite_windmill_weave_stairs.png deleted file mode 100644 index bc39aa85..00000000 Binary files a/public/textures/mcwpaths/granite_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/gravel_path_block.png b/public/textures/mcwpaths/gravel_path_block.png deleted file mode 100644 index 2f39b08e..00000000 Binary files a/public/textures/mcwpaths/gravel_path_block.png and /dev/null differ diff --git a/public/textures/mcwpaths/jungle_planks_path.png b/public/textures/mcwpaths/jungle_planks_path.png deleted file mode 100644 index 049340b7..00000000 Binary files a/public/textures/mcwpaths/jungle_planks_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mangrove_planks_path.png b/public/textures/mcwpaths/mangrove_planks_path.png deleted file mode 100644 index 10a12f0e..00000000 Binary files a/public/textures/mcwpaths/mangrove_planks_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_cobblestone_basket_weave_paving.png b/public/textures/mcwpaths/mossy_cobblestone_basket_weave_paving.png deleted file mode 100644 index 93cebbfa..00000000 Binary files a/public/textures/mcwpaths/mossy_cobblestone_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_cobblestone_clover_paving.png b/public/textures/mcwpaths/mossy_cobblestone_clover_paving.png deleted file mode 100644 index 8fce497c..00000000 Binary files a/public/textures/mcwpaths/mossy_cobblestone_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_cobblestone_diamond_paving.png b/public/textures/mcwpaths/mossy_cobblestone_diamond_paving.png deleted file mode 100644 index c0b73886..00000000 Binary files a/public/textures/mcwpaths/mossy_cobblestone_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_cobblestone_dumble_paving.png b/public/textures/mcwpaths/mossy_cobblestone_dumble_paving.png deleted file mode 100644 index 5e30f1a8..00000000 Binary files a/public/textures/mcwpaths/mossy_cobblestone_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_cobblestone_honeycomb_paving.png b/public/textures/mcwpaths/mossy_cobblestone_honeycomb_paving.png deleted file mode 100644 index 2fd614f6..00000000 Binary files a/public/textures/mcwpaths/mossy_cobblestone_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_cobblestone_square_paving.png b/public/textures/mcwpaths/mossy_cobblestone_square_paving.png deleted file mode 100644 index b365b35f..00000000 Binary files a/public/textures/mcwpaths/mossy_cobblestone_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_crystal_floor.png b/public/textures/mcwpaths/mossy_stone_crystal_floor.png deleted file mode 100644 index 2f0e8b7e..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_crystal_floor_path.png b/public/textures/mcwpaths/mossy_stone_crystal_floor_path.png deleted file mode 100644 index fd8a04e6..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_crystal_floor_slab.png b/public/textures/mcwpaths/mossy_stone_crystal_floor_slab.png deleted file mode 100644 index 70fd7591..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_crystal_floor_stairs.png b/public/textures/mcwpaths/mossy_stone_crystal_floor_stairs.png deleted file mode 100644 index 2d17afc5..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_flagstone.png b/public/textures/mcwpaths/mossy_stone_flagstone.png deleted file mode 100644 index d43e447f..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_flagstone_path.png b/public/textures/mcwpaths/mossy_stone_flagstone_path.png deleted file mode 100644 index 0d0a6a62..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_flagstone_slab.png b/public/textures/mcwpaths/mossy_stone_flagstone_slab.png deleted file mode 100644 index 2bc317b2..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_flagstone_stairs.png b/public/textures/mcwpaths/mossy_stone_flagstone_stairs.png deleted file mode 100644 index e3316089..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_running_bond.png b/public/textures/mcwpaths/mossy_stone_running_bond.png deleted file mode 100644 index be38f603..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_running_bond_path.png b/public/textures/mcwpaths/mossy_stone_running_bond_path.png deleted file mode 100644 index 22f38ee9..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_running_bond_slab.png b/public/textures/mcwpaths/mossy_stone_running_bond_slab.png deleted file mode 100644 index e58041ef..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_running_bond_stairs.png b/public/textures/mcwpaths/mossy_stone_running_bond_stairs.png deleted file mode 100644 index 7e0ba988..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_strewn_rocky_path.png b/public/textures/mcwpaths/mossy_stone_strewn_rocky_path.png deleted file mode 100644 index 68382172..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_windmill_weave.png b/public/textures/mcwpaths/mossy_stone_windmill_weave.png deleted file mode 100644 index b2504f7d..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_windmill_weave_path.png b/public/textures/mcwpaths/mossy_stone_windmill_weave_path.png deleted file mode 100644 index 4eb53120..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_windmill_weave_slab.png b/public/textures/mcwpaths/mossy_stone_windmill_weave_slab.png deleted file mode 100644 index 31ce8269..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/mossy_stone_windmill_weave_stairs.png b/public/textures/mcwpaths/mossy_stone_windmill_weave_stairs.png deleted file mode 100644 index 0a633ade..00000000 Binary files a/public/textures/mcwpaths/mossy_stone_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_basket_weave_paving.png b/public/textures/mcwpaths/mud_brick_basket_weave_paving.png deleted file mode 100644 index 3db770f7..00000000 Binary files a/public/textures/mcwpaths/mud_brick_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_clover_paving.png b/public/textures/mcwpaths/mud_brick_clover_paving.png deleted file mode 100644 index 8ba772ff..00000000 Binary files a/public/textures/mcwpaths/mud_brick_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_crystal_floor.png b/public/textures/mcwpaths/mud_brick_crystal_floor.png deleted file mode 100644 index 66e6516c..00000000 Binary files a/public/textures/mcwpaths/mud_brick_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_crystal_floor_path.png b/public/textures/mcwpaths/mud_brick_crystal_floor_path.png deleted file mode 100644 index f83ff1f0..00000000 Binary files a/public/textures/mcwpaths/mud_brick_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_crystal_floor_slab.png b/public/textures/mcwpaths/mud_brick_crystal_floor_slab.png deleted file mode 100644 index 8f628804..00000000 Binary files a/public/textures/mcwpaths/mud_brick_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_crystal_floor_stairs.png b/public/textures/mcwpaths/mud_brick_crystal_floor_stairs.png deleted file mode 100644 index a01f2f19..00000000 Binary files a/public/textures/mcwpaths/mud_brick_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_diamond_paving.png b/public/textures/mcwpaths/mud_brick_diamond_paving.png deleted file mode 100644 index 5f1803d4..00000000 Binary files a/public/textures/mcwpaths/mud_brick_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_dumble_paving.png b/public/textures/mcwpaths/mud_brick_dumble_paving.png deleted file mode 100644 index db0099e4..00000000 Binary files a/public/textures/mcwpaths/mud_brick_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_flagstone.png b/public/textures/mcwpaths/mud_brick_flagstone.png deleted file mode 100644 index 1ce95e11..00000000 Binary files a/public/textures/mcwpaths/mud_brick_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_flagstone_path.png b/public/textures/mcwpaths/mud_brick_flagstone_path.png deleted file mode 100644 index 3244c109..00000000 Binary files a/public/textures/mcwpaths/mud_brick_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_flagstone_slab.png b/public/textures/mcwpaths/mud_brick_flagstone_slab.png deleted file mode 100644 index 89088898..00000000 Binary files a/public/textures/mcwpaths/mud_brick_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_flagstone_stairs.png b/public/textures/mcwpaths/mud_brick_flagstone_stairs.png deleted file mode 100644 index 6b05798b..00000000 Binary files a/public/textures/mcwpaths/mud_brick_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_honeycomb_paving.png b/public/textures/mcwpaths/mud_brick_honeycomb_paving.png deleted file mode 100644 index 99563f14..00000000 Binary files a/public/textures/mcwpaths/mud_brick_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_running_bond.png b/public/textures/mcwpaths/mud_brick_running_bond.png deleted file mode 100644 index a94c4e46..00000000 Binary files a/public/textures/mcwpaths/mud_brick_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_running_bond_path.png b/public/textures/mcwpaths/mud_brick_running_bond_path.png deleted file mode 100644 index 568deff1..00000000 Binary files a/public/textures/mcwpaths/mud_brick_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_running_bond_slab.png b/public/textures/mcwpaths/mud_brick_running_bond_slab.png deleted file mode 100644 index ef4dabf7..00000000 Binary files a/public/textures/mcwpaths/mud_brick_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_running_bond_stairs.png b/public/textures/mcwpaths/mud_brick_running_bond_stairs.png deleted file mode 100644 index 892cb1ea..00000000 Binary files a/public/textures/mcwpaths/mud_brick_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_square_paving.png b/public/textures/mcwpaths/mud_brick_square_paving.png deleted file mode 100644 index 03fe6f5f..00000000 Binary files a/public/textures/mcwpaths/mud_brick_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_strewn_rocky_path.png b/public/textures/mcwpaths/mud_brick_strewn_rocky_path.png deleted file mode 100644 index 658c0a9a..00000000 Binary files a/public/textures/mcwpaths/mud_brick_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_windmill_weave.png b/public/textures/mcwpaths/mud_brick_windmill_weave.png deleted file mode 100644 index 09c90a58..00000000 Binary files a/public/textures/mcwpaths/mud_brick_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_windmill_weave_path.png b/public/textures/mcwpaths/mud_brick_windmill_weave_path.png deleted file mode 100644 index 37bca5f3..00000000 Binary files a/public/textures/mcwpaths/mud_brick_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_windmill_weave_slab.png b/public/textures/mcwpaths/mud_brick_windmill_weave_slab.png deleted file mode 100644 index 425260dc..00000000 Binary files a/public/textures/mcwpaths/mud_brick_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/mud_brick_windmill_weave_stairs.png b/public/textures/mcwpaths/mud_brick_windmill_weave_stairs.png deleted file mode 100644 index 587f3ad9..00000000 Binary files a/public/textures/mcwpaths/mud_brick_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/oak_planks_path.png b/public/textures/mcwpaths/oak_planks_path.png deleted file mode 100644 index 6ed8b20f..00000000 Binary files a/public/textures/mcwpaths/oak_planks_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/podzol_path_block.png b/public/textures/mcwpaths/podzol_path_block.png deleted file mode 100644 index c7bf3d01..00000000 Binary files a/public/textures/mcwpaths/podzol_path_block.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sand_path_block.png b/public/textures/mcwpaths/red_sand_path_block.png deleted file mode 100644 index ece4aec7..00000000 Binary files a/public/textures/mcwpaths/red_sand_path_block.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_basket_weave_paving.png b/public/textures/mcwpaths/red_sandstone_basket_weave_paving.png deleted file mode 100644 index fb02224a..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_clover_paving.png b/public/textures/mcwpaths/red_sandstone_clover_paving.png deleted file mode 100644 index ab4513b4..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_crystal_floor.png b/public/textures/mcwpaths/red_sandstone_crystal_floor.png deleted file mode 100644 index 109554aa..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_crystal_floor_path.png b/public/textures/mcwpaths/red_sandstone_crystal_floor_path.png deleted file mode 100644 index 4e54dbb9..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_crystal_floor_slab.png b/public/textures/mcwpaths/red_sandstone_crystal_floor_slab.png deleted file mode 100644 index 71119bc6..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_crystal_floor_stairs.png b/public/textures/mcwpaths/red_sandstone_crystal_floor_stairs.png deleted file mode 100644 index 0e5abbc4..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_diamond_paving.png b/public/textures/mcwpaths/red_sandstone_diamond_paving.png deleted file mode 100644 index f7ee3be4..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_dumble_paving.png b/public/textures/mcwpaths/red_sandstone_dumble_paving.png deleted file mode 100644 index 4a1cfc8b..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_flagstone.png b/public/textures/mcwpaths/red_sandstone_flagstone.png deleted file mode 100644 index af78b0a0..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_flagstone_path.png b/public/textures/mcwpaths/red_sandstone_flagstone_path.png deleted file mode 100644 index d50d7b88..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_flagstone_slab.png b/public/textures/mcwpaths/red_sandstone_flagstone_slab.png deleted file mode 100644 index c9f2c10a..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_flagstone_stairs.png b/public/textures/mcwpaths/red_sandstone_flagstone_stairs.png deleted file mode 100644 index 7d29dc8f..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_honeycomb_paving.png b/public/textures/mcwpaths/red_sandstone_honeycomb_paving.png deleted file mode 100644 index 6ca32ad0..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_running_bond.png b/public/textures/mcwpaths/red_sandstone_running_bond.png deleted file mode 100644 index 6ce7829f..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_running_bond_path.png b/public/textures/mcwpaths/red_sandstone_running_bond_path.png deleted file mode 100644 index 05fbd071..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_running_bond_slab.png b/public/textures/mcwpaths/red_sandstone_running_bond_slab.png deleted file mode 100644 index 9b38d1e4..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_running_bond_stairs.png b/public/textures/mcwpaths/red_sandstone_running_bond_stairs.png deleted file mode 100644 index 0896eb20..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_square_paving.png b/public/textures/mcwpaths/red_sandstone_square_paving.png deleted file mode 100644 index a7aedefa..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_strewn_rocky_path.png b/public/textures/mcwpaths/red_sandstone_strewn_rocky_path.png deleted file mode 100644 index 072453b5..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_windmill_weave.png b/public/textures/mcwpaths/red_sandstone_windmill_weave.png deleted file mode 100644 index 87528e67..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_windmill_weave_path.png b/public/textures/mcwpaths/red_sandstone_windmill_weave_path.png deleted file mode 100644 index e2687ea6..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_windmill_weave_slab.png b/public/textures/mcwpaths/red_sandstone_windmill_weave_slab.png deleted file mode 100644 index 54f733a4..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/red_sandstone_windmill_weave_stairs.png b/public/textures/mcwpaths/red_sandstone_windmill_weave_stairs.png deleted file mode 100644 index ed91290d..00000000 Binary files a/public/textures/mcwpaths/red_sandstone_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/sand_path_block.png b/public/textures/mcwpaths/sand_path_block.png deleted file mode 100644 index d5c9cb1a..00000000 Binary files a/public/textures/mcwpaths/sand_path_block.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_basket_weave_paving.png b/public/textures/mcwpaths/sandstone_basket_weave_paving.png deleted file mode 100644 index 44b61211..00000000 Binary files a/public/textures/mcwpaths/sandstone_basket_weave_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_clover_paving.png b/public/textures/mcwpaths/sandstone_clover_paving.png deleted file mode 100644 index 12fbc1a7..00000000 Binary files a/public/textures/mcwpaths/sandstone_clover_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_crystal_floor.png b/public/textures/mcwpaths/sandstone_crystal_floor.png deleted file mode 100644 index 10b54df2..00000000 Binary files a/public/textures/mcwpaths/sandstone_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_crystal_floor_path.png b/public/textures/mcwpaths/sandstone_crystal_floor_path.png deleted file mode 100644 index 48f80374..00000000 Binary files a/public/textures/mcwpaths/sandstone_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_crystal_floor_slab.png b/public/textures/mcwpaths/sandstone_crystal_floor_slab.png deleted file mode 100644 index 080e2803..00000000 Binary files a/public/textures/mcwpaths/sandstone_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_crystal_floor_stairs.png b/public/textures/mcwpaths/sandstone_crystal_floor_stairs.png deleted file mode 100644 index f9050f98..00000000 Binary files a/public/textures/mcwpaths/sandstone_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_diamond_paving.png b/public/textures/mcwpaths/sandstone_diamond_paving.png deleted file mode 100644 index 2937a395..00000000 Binary files a/public/textures/mcwpaths/sandstone_diamond_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_dumble_paving.png b/public/textures/mcwpaths/sandstone_dumble_paving.png deleted file mode 100644 index a410da62..00000000 Binary files a/public/textures/mcwpaths/sandstone_dumble_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_flagstone.png b/public/textures/mcwpaths/sandstone_flagstone.png deleted file mode 100644 index c421b67a..00000000 Binary files a/public/textures/mcwpaths/sandstone_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_flagstone_path.png b/public/textures/mcwpaths/sandstone_flagstone_path.png deleted file mode 100644 index d7b12302..00000000 Binary files a/public/textures/mcwpaths/sandstone_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_flagstone_slab.png b/public/textures/mcwpaths/sandstone_flagstone_slab.png deleted file mode 100644 index 05acfde3..00000000 Binary files a/public/textures/mcwpaths/sandstone_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_flagstone_stairs.png b/public/textures/mcwpaths/sandstone_flagstone_stairs.png deleted file mode 100644 index 9e7151fa..00000000 Binary files a/public/textures/mcwpaths/sandstone_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_honeycomb_paving.png b/public/textures/mcwpaths/sandstone_honeycomb_paving.png deleted file mode 100644 index 2ad04111..00000000 Binary files a/public/textures/mcwpaths/sandstone_honeycomb_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_running_bond.png b/public/textures/mcwpaths/sandstone_running_bond.png deleted file mode 100644 index ae1179de..00000000 Binary files a/public/textures/mcwpaths/sandstone_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_running_bond_path.png b/public/textures/mcwpaths/sandstone_running_bond_path.png deleted file mode 100644 index b1e1abfb..00000000 Binary files a/public/textures/mcwpaths/sandstone_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_running_bond_slab.png b/public/textures/mcwpaths/sandstone_running_bond_slab.png deleted file mode 100644 index d6f2f983..00000000 Binary files a/public/textures/mcwpaths/sandstone_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_running_bond_stairs.png b/public/textures/mcwpaths/sandstone_running_bond_stairs.png deleted file mode 100644 index b88c97d5..00000000 Binary files a/public/textures/mcwpaths/sandstone_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_square_paving.png b/public/textures/mcwpaths/sandstone_square_paving.png deleted file mode 100644 index c636d50a..00000000 Binary files a/public/textures/mcwpaths/sandstone_square_paving.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_strewn_rocky_path.png b/public/textures/mcwpaths/sandstone_strewn_rocky_path.png deleted file mode 100644 index c1effce5..00000000 Binary files a/public/textures/mcwpaths/sandstone_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_windmill_weave.png b/public/textures/mcwpaths/sandstone_windmill_weave.png deleted file mode 100644 index 5885a220..00000000 Binary files a/public/textures/mcwpaths/sandstone_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_windmill_weave_path.png b/public/textures/mcwpaths/sandstone_windmill_weave_path.png deleted file mode 100644 index db137ba1..00000000 Binary files a/public/textures/mcwpaths/sandstone_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_windmill_weave_slab.png b/public/textures/mcwpaths/sandstone_windmill_weave_slab.png deleted file mode 100644 index 620841e1..00000000 Binary files a/public/textures/mcwpaths/sandstone_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/sandstone_windmill_weave_stairs.png b/public/textures/mcwpaths/sandstone_windmill_weave_stairs.png deleted file mode 100644 index 96e5de6a..00000000 Binary files a/public/textures/mcwpaths/sandstone_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/spruce_planks_path.png b/public/textures/mcwpaths/spruce_planks_path.png deleted file mode 100644 index 9bf5d391..00000000 Binary files a/public/textures/mcwpaths/spruce_planks_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_crystal_floor.png b/public/textures/mcwpaths/stone_crystal_floor.png deleted file mode 100644 index 2fa9d5de..00000000 Binary files a/public/textures/mcwpaths/stone_crystal_floor.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_crystal_floor_path.png b/public/textures/mcwpaths/stone_crystal_floor_path.png deleted file mode 100644 index b4b3368a..00000000 Binary files a/public/textures/mcwpaths/stone_crystal_floor_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_crystal_floor_slab.png b/public/textures/mcwpaths/stone_crystal_floor_slab.png deleted file mode 100644 index ec42b58a..00000000 Binary files a/public/textures/mcwpaths/stone_crystal_floor_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_crystal_floor_stairs.png b/public/textures/mcwpaths/stone_crystal_floor_stairs.png deleted file mode 100644 index cd2d6202..00000000 Binary files a/public/textures/mcwpaths/stone_crystal_floor_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_flagstone.png b/public/textures/mcwpaths/stone_flagstone.png deleted file mode 100644 index 169ac371..00000000 Binary files a/public/textures/mcwpaths/stone_flagstone.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_flagstone_path.png b/public/textures/mcwpaths/stone_flagstone_path.png deleted file mode 100644 index 5655129e..00000000 Binary files a/public/textures/mcwpaths/stone_flagstone_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_flagstone_slab.png b/public/textures/mcwpaths/stone_flagstone_slab.png deleted file mode 100644 index 413012f1..00000000 Binary files a/public/textures/mcwpaths/stone_flagstone_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_flagstone_stairs.png b/public/textures/mcwpaths/stone_flagstone_stairs.png deleted file mode 100644 index b32daadc..00000000 Binary files a/public/textures/mcwpaths/stone_flagstone_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_running_bond.png b/public/textures/mcwpaths/stone_running_bond.png deleted file mode 100644 index 2c6c00a0..00000000 Binary files a/public/textures/mcwpaths/stone_running_bond.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_running_bond_path.png b/public/textures/mcwpaths/stone_running_bond_path.png deleted file mode 100644 index 2e86602c..00000000 Binary files a/public/textures/mcwpaths/stone_running_bond_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_running_bond_slab.png b/public/textures/mcwpaths/stone_running_bond_slab.png deleted file mode 100644 index 04d15e4b..00000000 Binary files a/public/textures/mcwpaths/stone_running_bond_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_running_bond_stairs.png b/public/textures/mcwpaths/stone_running_bond_stairs.png deleted file mode 100644 index f12b287a..00000000 Binary files a/public/textures/mcwpaths/stone_running_bond_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_strewn_rocky_path.png b/public/textures/mcwpaths/stone_strewn_rocky_path.png deleted file mode 100644 index 3cdc5b5f..00000000 Binary files a/public/textures/mcwpaths/stone_strewn_rocky_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_windmill_weave.png b/public/textures/mcwpaths/stone_windmill_weave.png deleted file mode 100644 index f566a869..00000000 Binary files a/public/textures/mcwpaths/stone_windmill_weave.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_windmill_weave_path.png b/public/textures/mcwpaths/stone_windmill_weave_path.png deleted file mode 100644 index 770126f6..00000000 Binary files a/public/textures/mcwpaths/stone_windmill_weave_path.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_windmill_weave_slab.png b/public/textures/mcwpaths/stone_windmill_weave_slab.png deleted file mode 100644 index 10b880e9..00000000 Binary files a/public/textures/mcwpaths/stone_windmill_weave_slab.png and /dev/null differ diff --git a/public/textures/mcwpaths/stone_windmill_weave_stairs.png b/public/textures/mcwpaths/stone_windmill_weave_stairs.png deleted file mode 100644 index a618617f..00000000 Binary files a/public/textures/mcwpaths/stone_windmill_weave_stairs.png and /dev/null differ diff --git a/public/textures/mcwpaths/warped_planks_path.png b/public/textures/mcwpaths/warped_planks_path.png deleted file mode 100644 index db51a422..00000000 Binary files a/public/textures/mcwpaths/warped_planks_path.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_attic_roof.png b/public/textures/mcwroofs/acacia_attic_roof.png deleted file mode 100644 index 34e42b22..00000000 Binary files a/public/textures/mcwroofs/acacia_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_lower_roof.png b/public/textures/mcwroofs/acacia_lower_roof.png deleted file mode 100644 index 3342dbe7..00000000 Binary files a/public/textures/mcwroofs/acacia_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_planks_attic_roof.png b/public/textures/mcwroofs/acacia_planks_attic_roof.png deleted file mode 100644 index 3780ac0b..00000000 Binary files a/public/textures/mcwroofs/acacia_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_planks_lower_roof.png b/public/textures/mcwroofs/acacia_planks_lower_roof.png deleted file mode 100644 index e2d77a62..00000000 Binary files a/public/textures/mcwroofs/acacia_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_planks_roof.png b/public/textures/mcwroofs/acacia_planks_roof.png deleted file mode 100644 index ce362407..00000000 Binary files a/public/textures/mcwroofs/acacia_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_planks_steep_roof.png b/public/textures/mcwroofs/acacia_planks_steep_roof.png deleted file mode 100644 index 06fd40a6..00000000 Binary files a/public/textures/mcwroofs/acacia_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_planks_top_roof.png b/public/textures/mcwroofs/acacia_planks_top_roof.png deleted file mode 100644 index cdb3fe23..00000000 Binary files a/public/textures/mcwroofs/acacia_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_planks_upper_lower_roof.png b/public/textures/mcwroofs/acacia_planks_upper_lower_roof.png deleted file mode 100644 index 0292eea8..00000000 Binary files a/public/textures/mcwroofs/acacia_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_planks_upper_steep_roof.png b/public/textures/mcwroofs/acacia_planks_upper_steep_roof.png deleted file mode 100644 index 8bf91f79..00000000 Binary files a/public/textures/mcwroofs/acacia_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_roof.png b/public/textures/mcwroofs/acacia_roof.png deleted file mode 100644 index 3fdad018..00000000 Binary files a/public/textures/mcwroofs/acacia_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_steep_roof.png b/public/textures/mcwroofs/acacia_steep_roof.png deleted file mode 100644 index f271e7df..00000000 Binary files a/public/textures/mcwroofs/acacia_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_top_roof.png b/public/textures/mcwroofs/acacia_top_roof.png deleted file mode 100644 index 25f35950..00000000 Binary files a/public/textures/mcwroofs/acacia_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_upper_lower_roof.png b/public/textures/mcwroofs/acacia_upper_lower_roof.png deleted file mode 100644 index ccc032b1..00000000 Binary files a/public/textures/mcwroofs/acacia_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/acacia_upper_steep_roof.png b/public/textures/mcwroofs/acacia_upper_steep_roof.png deleted file mode 100644 index ca62063a..00000000 Binary files a/public/textures/mcwroofs/acacia_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/andesite_attic_roof.png b/public/textures/mcwroofs/andesite_attic_roof.png deleted file mode 100644 index f4f812aa..00000000 Binary files a/public/textures/mcwroofs/andesite_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/andesite_lower_roof.png b/public/textures/mcwroofs/andesite_lower_roof.png deleted file mode 100644 index e0ae450e..00000000 Binary files a/public/textures/mcwroofs/andesite_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/andesite_roof.png b/public/textures/mcwroofs/andesite_roof.png deleted file mode 100644 index ce9328a4..00000000 Binary files a/public/textures/mcwroofs/andesite_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/andesite_steep_roof.png b/public/textures/mcwroofs/andesite_steep_roof.png deleted file mode 100644 index e959aa09..00000000 Binary files a/public/textures/mcwroofs/andesite_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/andesite_top_roof.png b/public/textures/mcwroofs/andesite_top_roof.png deleted file mode 100644 index 120282ff..00000000 Binary files a/public/textures/mcwroofs/andesite_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/andesite_upper_lower_roof.png b/public/textures/mcwroofs/andesite_upper_lower_roof.png deleted file mode 100644 index bc8d3769..00000000 Binary files a/public/textures/mcwroofs/andesite_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/andesite_upper_steep_roof.png b/public/textures/mcwroofs/andesite_upper_steep_roof.png deleted file mode 100644 index 5c38fd4b..00000000 Binary files a/public/textures/mcwroofs/andesite_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_attic_roof.png b/public/textures/mcwroofs/bamboo_attic_roof.png deleted file mode 100644 index 2f29fed9..00000000 Binary files a/public/textures/mcwroofs/bamboo_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_lower_roof.png b/public/textures/mcwroofs/bamboo_lower_roof.png deleted file mode 100644 index 23247d76..00000000 Binary files a/public/textures/mcwroofs/bamboo_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_mosaic_attic_roof.png b/public/textures/mcwroofs/bamboo_mosaic_attic_roof.png deleted file mode 100644 index 4dc15773..00000000 Binary files a/public/textures/mcwroofs/bamboo_mosaic_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_mosaic_lower_roof.png b/public/textures/mcwroofs/bamboo_mosaic_lower_roof.png deleted file mode 100644 index f21aca2c..00000000 Binary files a/public/textures/mcwroofs/bamboo_mosaic_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_mosaic_roof.png b/public/textures/mcwroofs/bamboo_mosaic_roof.png deleted file mode 100644 index fd702296..00000000 Binary files a/public/textures/mcwroofs/bamboo_mosaic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_mosaic_steep_roof.png b/public/textures/mcwroofs/bamboo_mosaic_steep_roof.png deleted file mode 100644 index a6deab0d..00000000 Binary files a/public/textures/mcwroofs/bamboo_mosaic_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_mosaic_top_roof.png b/public/textures/mcwroofs/bamboo_mosaic_top_roof.png deleted file mode 100644 index da9dec62..00000000 Binary files a/public/textures/mcwroofs/bamboo_mosaic_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_mosaic_upper_lower_roof.png b/public/textures/mcwroofs/bamboo_mosaic_upper_lower_roof.png deleted file mode 100644 index 4bf7a000..00000000 Binary files a/public/textures/mcwroofs/bamboo_mosaic_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_mosaic_upper_steep_roof.png b/public/textures/mcwroofs/bamboo_mosaic_upper_steep_roof.png deleted file mode 100644 index d4906894..00000000 Binary files a/public/textures/mcwroofs/bamboo_mosaic_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_planks_attic_roof.png b/public/textures/mcwroofs/bamboo_planks_attic_roof.png deleted file mode 100644 index 79c970ab..00000000 Binary files a/public/textures/mcwroofs/bamboo_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_planks_lower_roof.png b/public/textures/mcwroofs/bamboo_planks_lower_roof.png deleted file mode 100644 index e5436aaf..00000000 Binary files a/public/textures/mcwroofs/bamboo_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_planks_roof.png b/public/textures/mcwroofs/bamboo_planks_roof.png deleted file mode 100644 index 49b55b1b..00000000 Binary files a/public/textures/mcwroofs/bamboo_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_planks_steep_roof.png b/public/textures/mcwroofs/bamboo_planks_steep_roof.png deleted file mode 100644 index 722944be..00000000 Binary files a/public/textures/mcwroofs/bamboo_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_planks_top_roof.png b/public/textures/mcwroofs/bamboo_planks_top_roof.png deleted file mode 100644 index 7608d467..00000000 Binary files a/public/textures/mcwroofs/bamboo_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_planks_upper_lower_roof.png b/public/textures/mcwroofs/bamboo_planks_upper_lower_roof.png deleted file mode 100644 index ce77208c..00000000 Binary files a/public/textures/mcwroofs/bamboo_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_planks_upper_steep_roof.png b/public/textures/mcwroofs/bamboo_planks_upper_steep_roof.png deleted file mode 100644 index bbf53d83..00000000 Binary files a/public/textures/mcwroofs/bamboo_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_roof.png b/public/textures/mcwroofs/bamboo_roof.png deleted file mode 100644 index d30dffa0..00000000 Binary files a/public/textures/mcwroofs/bamboo_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_steep_roof.png b/public/textures/mcwroofs/bamboo_steep_roof.png deleted file mode 100644 index ac7b28e8..00000000 Binary files a/public/textures/mcwroofs/bamboo_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_top_roof.png b/public/textures/mcwroofs/bamboo_top_roof.png deleted file mode 100644 index 535921f9..00000000 Binary files a/public/textures/mcwroofs/bamboo_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_upper_lower_roof.png b/public/textures/mcwroofs/bamboo_upper_lower_roof.png deleted file mode 100644 index 1f1a1144..00000000 Binary files a/public/textures/mcwroofs/bamboo_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bamboo_upper_steep_roof.png b/public/textures/mcwroofs/bamboo_upper_steep_roof.png deleted file mode 100644 index efbd89a1..00000000 Binary files a/public/textures/mcwroofs/bamboo_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/base_attic_roof.png b/public/textures/mcwroofs/base_attic_roof.png deleted file mode 100644 index 423075f3..00000000 Binary files a/public/textures/mcwroofs/base_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/base_lower_roof.png b/public/textures/mcwroofs/base_lower_roof.png deleted file mode 100644 index 8d572f02..00000000 Binary files a/public/textures/mcwroofs/base_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/base_roof.png b/public/textures/mcwroofs/base_roof.png deleted file mode 100644 index 753e715a..00000000 Binary files a/public/textures/mcwroofs/base_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/base_roof_block.png b/public/textures/mcwroofs/base_roof_block.png deleted file mode 100644 index f4a467b2..00000000 Binary files a/public/textures/mcwroofs/base_roof_block.png and /dev/null differ diff --git a/public/textures/mcwroofs/base_roof_slab.png b/public/textures/mcwroofs/base_roof_slab.png deleted file mode 100644 index e1506bc3..00000000 Binary files a/public/textures/mcwroofs/base_roof_slab.png and /dev/null differ diff --git a/public/textures/mcwroofs/base_steep_roof.png b/public/textures/mcwroofs/base_steep_roof.png deleted file mode 100644 index 23770181..00000000 Binary files a/public/textures/mcwroofs/base_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/base_top_roof.png b/public/textures/mcwroofs/base_top_roof.png deleted file mode 100644 index 446b7df2..00000000 Binary files a/public/textures/mcwroofs/base_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/base_upper_lower_roof.png b/public/textures/mcwroofs/base_upper_lower_roof.png deleted file mode 100644 index 38e3b5a7..00000000 Binary files a/public/textures/mcwroofs/base_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/base_upper_steep_roof.png b/public/textures/mcwroofs/base_upper_steep_roof.png deleted file mode 100644 index 90f3f479..00000000 Binary files a/public/textures/mcwroofs/base_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_attic_roof.png b/public/textures/mcwroofs/birch_attic_roof.png deleted file mode 100644 index a219b331..00000000 Binary files a/public/textures/mcwroofs/birch_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_lower_roof.png b/public/textures/mcwroofs/birch_lower_roof.png deleted file mode 100644 index 52011012..00000000 Binary files a/public/textures/mcwroofs/birch_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_planks_attic_roof.png b/public/textures/mcwroofs/birch_planks_attic_roof.png deleted file mode 100644 index 5cbfc728..00000000 Binary files a/public/textures/mcwroofs/birch_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_planks_lower_roof.png b/public/textures/mcwroofs/birch_planks_lower_roof.png deleted file mode 100644 index 1245068b..00000000 Binary files a/public/textures/mcwroofs/birch_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_planks_roof.png b/public/textures/mcwroofs/birch_planks_roof.png deleted file mode 100644 index 9c1d71f9..00000000 Binary files a/public/textures/mcwroofs/birch_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_planks_steep_roof.png b/public/textures/mcwroofs/birch_planks_steep_roof.png deleted file mode 100644 index 815f4fe4..00000000 Binary files a/public/textures/mcwroofs/birch_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_planks_top_roof.png b/public/textures/mcwroofs/birch_planks_top_roof.png deleted file mode 100644 index 43f63742..00000000 Binary files a/public/textures/mcwroofs/birch_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_planks_upper_lower_roof.png b/public/textures/mcwroofs/birch_planks_upper_lower_roof.png deleted file mode 100644 index a791386b..00000000 Binary files a/public/textures/mcwroofs/birch_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_planks_upper_steep_roof.png b/public/textures/mcwroofs/birch_planks_upper_steep_roof.png deleted file mode 100644 index 4c2cdcab..00000000 Binary files a/public/textures/mcwroofs/birch_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_roof.png b/public/textures/mcwroofs/birch_roof.png deleted file mode 100644 index f057fe72..00000000 Binary files a/public/textures/mcwroofs/birch_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_steep_roof.png b/public/textures/mcwroofs/birch_steep_roof.png deleted file mode 100644 index 9d050d52..00000000 Binary files a/public/textures/mcwroofs/birch_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_top_roof.png b/public/textures/mcwroofs/birch_top_roof.png deleted file mode 100644 index 21581c0c..00000000 Binary files a/public/textures/mcwroofs/birch_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_upper_lower_roof.png b/public/textures/mcwroofs/birch_upper_lower_roof.png deleted file mode 100644 index f73bd8f4..00000000 Binary files a/public/textures/mcwroofs/birch_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/birch_upper_steep_roof.png b/public/textures/mcwroofs/birch_upper_steep_roof.png deleted file mode 100644 index 7473695f..00000000 Binary files a/public/textures/mcwroofs/birch_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_attic_roof.png b/public/textures/mcwroofs/black_attic_roof.png deleted file mode 100644 index 12b5f04e..00000000 Binary files a/public/textures/mcwroofs/black_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_concrete_attic_roof.png b/public/textures/mcwroofs/black_concrete_attic_roof.png deleted file mode 100644 index 25e4bf97..00000000 Binary files a/public/textures/mcwroofs/black_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_concrete_lower_roof.png b/public/textures/mcwroofs/black_concrete_lower_roof.png deleted file mode 100644 index 6aae7832..00000000 Binary files a/public/textures/mcwroofs/black_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_concrete_roof.png b/public/textures/mcwroofs/black_concrete_roof.png deleted file mode 100644 index e728a462..00000000 Binary files a/public/textures/mcwroofs/black_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_concrete_steep_roof.png b/public/textures/mcwroofs/black_concrete_steep_roof.png deleted file mode 100644 index ab6ad421..00000000 Binary files a/public/textures/mcwroofs/black_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_concrete_top_roof.png b/public/textures/mcwroofs/black_concrete_top_roof.png deleted file mode 100644 index 129df907..00000000 Binary files a/public/textures/mcwroofs/black_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_concrete_upper_lower_roof.png b/public/textures/mcwroofs/black_concrete_upper_lower_roof.png deleted file mode 100644 index d2bc3d7d..00000000 Binary files a/public/textures/mcwroofs/black_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_concrete_upper_steep_roof.png b/public/textures/mcwroofs/black_concrete_upper_steep_roof.png deleted file mode 100644 index e9650a0f..00000000 Binary files a/public/textures/mcwroofs/black_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_lower_roof.png b/public/textures/mcwroofs/black_lower_roof.png deleted file mode 100644 index 09b10f9d..00000000 Binary files a/public/textures/mcwroofs/black_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_roof.png b/public/textures/mcwroofs/black_roof.png deleted file mode 100644 index b0eb9951..00000000 Binary files a/public/textures/mcwroofs/black_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_roof_block.png b/public/textures/mcwroofs/black_roof_block.png deleted file mode 100644 index 55728b81..00000000 Binary files a/public/textures/mcwroofs/black_roof_block.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_roof_slab.png b/public/textures/mcwroofs/black_roof_slab.png deleted file mode 100644 index 0240ed02..00000000 Binary files a/public/textures/mcwroofs/black_roof_slab.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_steep_roof.png b/public/textures/mcwroofs/black_steep_roof.png deleted file mode 100644 index bbf319d3..00000000 Binary files a/public/textures/mcwroofs/black_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_striped_awning.png b/public/textures/mcwroofs/black_striped_awning.png deleted file mode 100644 index c4da5393..00000000 Binary files a/public/textures/mcwroofs/black_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_terracotta_attic_roof.png b/public/textures/mcwroofs/black_terracotta_attic_roof.png deleted file mode 100644 index d4152c66..00000000 Binary files a/public/textures/mcwroofs/black_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_terracotta_lower_roof.png b/public/textures/mcwroofs/black_terracotta_lower_roof.png deleted file mode 100644 index 6e8e0629..00000000 Binary files a/public/textures/mcwroofs/black_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_terracotta_roof.png b/public/textures/mcwroofs/black_terracotta_roof.png deleted file mode 100644 index bf585f01..00000000 Binary files a/public/textures/mcwroofs/black_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_terracotta_steep_roof.png b/public/textures/mcwroofs/black_terracotta_steep_roof.png deleted file mode 100644 index 7237e881..00000000 Binary files a/public/textures/mcwroofs/black_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_terracotta_top_roof.png b/public/textures/mcwroofs/black_terracotta_top_roof.png deleted file mode 100644 index 915faa40..00000000 Binary files a/public/textures/mcwroofs/black_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/black_terracotta_upper_lower_roof.png deleted file mode 100644 index daf171e5..00000000 Binary files a/public/textures/mcwroofs/black_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/black_terracotta_upper_steep_roof.png deleted file mode 100644 index dd067966..00000000 Binary files a/public/textures/mcwroofs/black_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_top_roof.png b/public/textures/mcwroofs/black_top_roof.png deleted file mode 100644 index bd5a1c51..00000000 Binary files a/public/textures/mcwroofs/black_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_upper_lower_roof.png b/public/textures/mcwroofs/black_upper_lower_roof.png deleted file mode 100644 index cc43cd11..00000000 Binary files a/public/textures/mcwroofs/black_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/black_upper_steep_roof.png b/public/textures/mcwroofs/black_upper_steep_roof.png deleted file mode 100644 index bf84622e..00000000 Binary files a/public/textures/mcwroofs/black_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blackstone_attic_roof.png b/public/textures/mcwroofs/blackstone_attic_roof.png deleted file mode 100644 index f0bdc120..00000000 Binary files a/public/textures/mcwroofs/blackstone_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blackstone_lower_roof.png b/public/textures/mcwroofs/blackstone_lower_roof.png deleted file mode 100644 index 1c5b40ae..00000000 Binary files a/public/textures/mcwroofs/blackstone_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blackstone_roof.png b/public/textures/mcwroofs/blackstone_roof.png deleted file mode 100644 index a37dec52..00000000 Binary files a/public/textures/mcwroofs/blackstone_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blackstone_steep_roof.png b/public/textures/mcwroofs/blackstone_steep_roof.png deleted file mode 100644 index 818e706b..00000000 Binary files a/public/textures/mcwroofs/blackstone_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blackstone_top_roof.png b/public/textures/mcwroofs/blackstone_top_roof.png deleted file mode 100644 index 9aeb1ce9..00000000 Binary files a/public/textures/mcwroofs/blackstone_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blackstone_upper_lower_roof.png b/public/textures/mcwroofs/blackstone_upper_lower_roof.png deleted file mode 100644 index 00687df1..00000000 Binary files a/public/textures/mcwroofs/blackstone_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blackstone_upper_steep_roof.png b/public/textures/mcwroofs/blackstone_upper_steep_roof.png deleted file mode 100644 index 6615f5a2..00000000 Binary files a/public/textures/mcwroofs/blackstone_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_concrete_attic_roof.png b/public/textures/mcwroofs/blue_concrete_attic_roof.png deleted file mode 100644 index e36226d8..00000000 Binary files a/public/textures/mcwroofs/blue_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_concrete_lower_roof.png b/public/textures/mcwroofs/blue_concrete_lower_roof.png deleted file mode 100644 index 66ae271c..00000000 Binary files a/public/textures/mcwroofs/blue_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_concrete_roof.png b/public/textures/mcwroofs/blue_concrete_roof.png deleted file mode 100644 index bb8dd979..00000000 Binary files a/public/textures/mcwroofs/blue_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_concrete_steep_roof.png b/public/textures/mcwroofs/blue_concrete_steep_roof.png deleted file mode 100644 index 36708e49..00000000 Binary files a/public/textures/mcwroofs/blue_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_concrete_top_roof.png b/public/textures/mcwroofs/blue_concrete_top_roof.png deleted file mode 100644 index ed24462d..00000000 Binary files a/public/textures/mcwroofs/blue_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_concrete_upper_lower_roof.png b/public/textures/mcwroofs/blue_concrete_upper_lower_roof.png deleted file mode 100644 index 8d23653d..00000000 Binary files a/public/textures/mcwroofs/blue_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_concrete_upper_steep_roof.png b/public/textures/mcwroofs/blue_concrete_upper_steep_roof.png deleted file mode 100644 index bbad559b..00000000 Binary files a/public/textures/mcwroofs/blue_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_striped_awning.png b/public/textures/mcwroofs/blue_striped_awning.png deleted file mode 100644 index 91e4b7c9..00000000 Binary files a/public/textures/mcwroofs/blue_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_terracotta_attic_roof.png b/public/textures/mcwroofs/blue_terracotta_attic_roof.png deleted file mode 100644 index a46092f3..00000000 Binary files a/public/textures/mcwroofs/blue_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_terracotta_lower_roof.png b/public/textures/mcwroofs/blue_terracotta_lower_roof.png deleted file mode 100644 index aef5f1b8..00000000 Binary files a/public/textures/mcwroofs/blue_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_terracotta_roof.png b/public/textures/mcwroofs/blue_terracotta_roof.png deleted file mode 100644 index a3b8ef11..00000000 Binary files a/public/textures/mcwroofs/blue_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_terracotta_steep_roof.png b/public/textures/mcwroofs/blue_terracotta_steep_roof.png deleted file mode 100644 index 82d8178c..00000000 Binary files a/public/textures/mcwroofs/blue_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_terracotta_top_roof.png b/public/textures/mcwroofs/blue_terracotta_top_roof.png deleted file mode 100644 index 16b8af48..00000000 Binary files a/public/textures/mcwroofs/blue_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/blue_terracotta_upper_lower_roof.png deleted file mode 100644 index e5464d4a..00000000 Binary files a/public/textures/mcwroofs/blue_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/blue_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/blue_terracotta_upper_steep_roof.png deleted file mode 100644 index f40c15d7..00000000 Binary files a/public/textures/mcwroofs/blue_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bricks_attic_roof.png b/public/textures/mcwroofs/bricks_attic_roof.png deleted file mode 100644 index 78a4ec7e..00000000 Binary files a/public/textures/mcwroofs/bricks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bricks_lower_roof.png b/public/textures/mcwroofs/bricks_lower_roof.png deleted file mode 100644 index f1c81a87..00000000 Binary files a/public/textures/mcwroofs/bricks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bricks_roof.png b/public/textures/mcwroofs/bricks_roof.png deleted file mode 100644 index f6618664..00000000 Binary files a/public/textures/mcwroofs/bricks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bricks_steep_roof.png b/public/textures/mcwroofs/bricks_steep_roof.png deleted file mode 100644 index f385a911..00000000 Binary files a/public/textures/mcwroofs/bricks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bricks_top_roof.png b/public/textures/mcwroofs/bricks_top_roof.png deleted file mode 100644 index 4ca1c5f5..00000000 Binary files a/public/textures/mcwroofs/bricks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bricks_upper_lower_roof.png b/public/textures/mcwroofs/bricks_upper_lower_roof.png deleted file mode 100644 index c7dab96f..00000000 Binary files a/public/textures/mcwroofs/bricks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/bricks_upper_steep_roof.png b/public/textures/mcwroofs/bricks_upper_steep_roof.png deleted file mode 100644 index 25591a7f..00000000 Binary files a/public/textures/mcwroofs/bricks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_concrete_attic_roof.png b/public/textures/mcwroofs/brown_concrete_attic_roof.png deleted file mode 100644 index 84f8427c..00000000 Binary files a/public/textures/mcwroofs/brown_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_concrete_lower_roof.png b/public/textures/mcwroofs/brown_concrete_lower_roof.png deleted file mode 100644 index eb822e0d..00000000 Binary files a/public/textures/mcwroofs/brown_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_concrete_roof.png b/public/textures/mcwroofs/brown_concrete_roof.png deleted file mode 100644 index 8e10b1cf..00000000 Binary files a/public/textures/mcwroofs/brown_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_concrete_steep_roof.png b/public/textures/mcwroofs/brown_concrete_steep_roof.png deleted file mode 100644 index 048c921a..00000000 Binary files a/public/textures/mcwroofs/brown_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_concrete_top_roof.png b/public/textures/mcwroofs/brown_concrete_top_roof.png deleted file mode 100644 index b480fdfa..00000000 Binary files a/public/textures/mcwroofs/brown_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_concrete_upper_lower_roof.png b/public/textures/mcwroofs/brown_concrete_upper_lower_roof.png deleted file mode 100644 index 61cebd5b..00000000 Binary files a/public/textures/mcwroofs/brown_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_concrete_upper_steep_roof.png b/public/textures/mcwroofs/brown_concrete_upper_steep_roof.png deleted file mode 100644 index d5aad751..00000000 Binary files a/public/textures/mcwroofs/brown_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_striped_awning.png b/public/textures/mcwroofs/brown_striped_awning.png deleted file mode 100644 index 390f846c..00000000 Binary files a/public/textures/mcwroofs/brown_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_terracotta_attic_roof.png b/public/textures/mcwroofs/brown_terracotta_attic_roof.png deleted file mode 100644 index 93c87707..00000000 Binary files a/public/textures/mcwroofs/brown_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_terracotta_lower_roof.png b/public/textures/mcwroofs/brown_terracotta_lower_roof.png deleted file mode 100644 index 86ad3876..00000000 Binary files a/public/textures/mcwroofs/brown_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_terracotta_roof.png b/public/textures/mcwroofs/brown_terracotta_roof.png deleted file mode 100644 index 472fdd8e..00000000 Binary files a/public/textures/mcwroofs/brown_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_terracotta_steep_roof.png b/public/textures/mcwroofs/brown_terracotta_steep_roof.png deleted file mode 100644 index cb78e77a..00000000 Binary files a/public/textures/mcwroofs/brown_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_terracotta_top_roof.png b/public/textures/mcwroofs/brown_terracotta_top_roof.png deleted file mode 100644 index 072ad7f5..00000000 Binary files a/public/textures/mcwroofs/brown_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/brown_terracotta_upper_lower_roof.png deleted file mode 100644 index c046ba64..00000000 Binary files a/public/textures/mcwroofs/brown_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/brown_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/brown_terracotta_upper_steep_roof.png deleted file mode 100644 index 414daf92..00000000 Binary files a/public/textures/mcwroofs/brown_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_attic_roof.png b/public/textures/mcwroofs/cherry_attic_roof.png deleted file mode 100644 index 90783cf6..00000000 Binary files a/public/textures/mcwroofs/cherry_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_lower_roof.png b/public/textures/mcwroofs/cherry_lower_roof.png deleted file mode 100644 index 9a5d4563..00000000 Binary files a/public/textures/mcwroofs/cherry_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_planks_attic_roof.png b/public/textures/mcwroofs/cherry_planks_attic_roof.png deleted file mode 100644 index 4f48c2de..00000000 Binary files a/public/textures/mcwroofs/cherry_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_planks_lower_roof.png b/public/textures/mcwroofs/cherry_planks_lower_roof.png deleted file mode 100644 index 432fba6a..00000000 Binary files a/public/textures/mcwroofs/cherry_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_planks_roof.png b/public/textures/mcwroofs/cherry_planks_roof.png deleted file mode 100644 index 5c562941..00000000 Binary files a/public/textures/mcwroofs/cherry_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_planks_steep_roof.png b/public/textures/mcwroofs/cherry_planks_steep_roof.png deleted file mode 100644 index db52ca66..00000000 Binary files a/public/textures/mcwroofs/cherry_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_planks_top_roof.png b/public/textures/mcwroofs/cherry_planks_top_roof.png deleted file mode 100644 index f84f61d2..00000000 Binary files a/public/textures/mcwroofs/cherry_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_planks_upper_lower_roof.png b/public/textures/mcwroofs/cherry_planks_upper_lower_roof.png deleted file mode 100644 index 1309ae1e..00000000 Binary files a/public/textures/mcwroofs/cherry_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_planks_upper_steep_roof.png b/public/textures/mcwroofs/cherry_planks_upper_steep_roof.png deleted file mode 100644 index 4c235aaa..00000000 Binary files a/public/textures/mcwroofs/cherry_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_roof.png b/public/textures/mcwroofs/cherry_roof.png deleted file mode 100644 index abadccea..00000000 Binary files a/public/textures/mcwroofs/cherry_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_steep_roof.png b/public/textures/mcwroofs/cherry_steep_roof.png deleted file mode 100644 index fa29b3f5..00000000 Binary files a/public/textures/mcwroofs/cherry_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_top_roof.png b/public/textures/mcwroofs/cherry_top_roof.png deleted file mode 100644 index 635be8cd..00000000 Binary files a/public/textures/mcwroofs/cherry_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_upper_lower_roof.png b/public/textures/mcwroofs/cherry_upper_lower_roof.png deleted file mode 100644 index 8c9a2e5b..00000000 Binary files a/public/textures/mcwroofs/cherry_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cherry_upper_steep_roof.png b/public/textures/mcwroofs/cherry_upper_steep_roof.png deleted file mode 100644 index 29921839..00000000 Binary files a/public/textures/mcwroofs/cherry_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cobblestone_attic_roof.png b/public/textures/mcwroofs/cobblestone_attic_roof.png deleted file mode 100644 index fc3b6475..00000000 Binary files a/public/textures/mcwroofs/cobblestone_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cobblestone_lower_roof.png b/public/textures/mcwroofs/cobblestone_lower_roof.png deleted file mode 100644 index f1ec88c7..00000000 Binary files a/public/textures/mcwroofs/cobblestone_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cobblestone_roof.png b/public/textures/mcwroofs/cobblestone_roof.png deleted file mode 100644 index 055e2470..00000000 Binary files a/public/textures/mcwroofs/cobblestone_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cobblestone_steep_roof.png b/public/textures/mcwroofs/cobblestone_steep_roof.png deleted file mode 100644 index 050c9bc6..00000000 Binary files a/public/textures/mcwroofs/cobblestone_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cobblestone_top_roof.png b/public/textures/mcwroofs/cobblestone_top_roof.png deleted file mode 100644 index 3f3469f4..00000000 Binary files a/public/textures/mcwroofs/cobblestone_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cobblestone_upper_lower_roof.png b/public/textures/mcwroofs/cobblestone_upper_lower_roof.png deleted file mode 100644 index 3416eef4..00000000 Binary files a/public/textures/mcwroofs/cobblestone_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cobblestone_upper_steep_roof.png b/public/textures/mcwroofs/cobblestone_upper_steep_roof.png deleted file mode 100644 index d2e7cf89..00000000 Binary files a/public/textures/mcwroofs/cobblestone_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_attic_roof.png b/public/textures/mcwroofs/crimson_attic_roof.png deleted file mode 100644 index ea0196a3..00000000 Binary files a/public/textures/mcwroofs/crimson_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_lower_roof.png b/public/textures/mcwroofs/crimson_lower_roof.png deleted file mode 100644 index bef49b0a..00000000 Binary files a/public/textures/mcwroofs/crimson_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_planks_attic_roof.png b/public/textures/mcwroofs/crimson_planks_attic_roof.png deleted file mode 100644 index fc5e19fc..00000000 Binary files a/public/textures/mcwroofs/crimson_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_planks_lower_roof.png b/public/textures/mcwroofs/crimson_planks_lower_roof.png deleted file mode 100644 index 839f422d..00000000 Binary files a/public/textures/mcwroofs/crimson_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_planks_roof.png b/public/textures/mcwroofs/crimson_planks_roof.png deleted file mode 100644 index d0d1b97e..00000000 Binary files a/public/textures/mcwroofs/crimson_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_planks_steep_roof.png b/public/textures/mcwroofs/crimson_planks_steep_roof.png deleted file mode 100644 index 9931a1ae..00000000 Binary files a/public/textures/mcwroofs/crimson_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_planks_top_roof.png b/public/textures/mcwroofs/crimson_planks_top_roof.png deleted file mode 100644 index c4564f71..00000000 Binary files a/public/textures/mcwroofs/crimson_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_planks_upper_lower_roof.png b/public/textures/mcwroofs/crimson_planks_upper_lower_roof.png deleted file mode 100644 index ec950936..00000000 Binary files a/public/textures/mcwroofs/crimson_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_planks_upper_steep_roof.png b/public/textures/mcwroofs/crimson_planks_upper_steep_roof.png deleted file mode 100644 index 929f517a..00000000 Binary files a/public/textures/mcwroofs/crimson_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_roof.png b/public/textures/mcwroofs/crimson_roof.png deleted file mode 100644 index e219eee1..00000000 Binary files a/public/textures/mcwroofs/crimson_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_steep_roof.png b/public/textures/mcwroofs/crimson_steep_roof.png deleted file mode 100644 index 970bc4e3..00000000 Binary files a/public/textures/mcwroofs/crimson_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_top_roof.png b/public/textures/mcwroofs/crimson_top_roof.png deleted file mode 100644 index 59d279ee..00000000 Binary files a/public/textures/mcwroofs/crimson_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_upper_lower_roof.png b/public/textures/mcwroofs/crimson_upper_lower_roof.png deleted file mode 100644 index 016bd851..00000000 Binary files a/public/textures/mcwroofs/crimson_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/crimson_upper_steep_roof.png b/public/textures/mcwroofs/crimson_upper_steep_roof.png deleted file mode 100644 index 9b807228..00000000 Binary files a/public/textures/mcwroofs/crimson_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_concrete_attic_roof.png b/public/textures/mcwroofs/cyan_concrete_attic_roof.png deleted file mode 100644 index c880dad7..00000000 Binary files a/public/textures/mcwroofs/cyan_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_concrete_lower_roof.png b/public/textures/mcwroofs/cyan_concrete_lower_roof.png deleted file mode 100644 index 68bbcc0b..00000000 Binary files a/public/textures/mcwroofs/cyan_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_concrete_roof.png b/public/textures/mcwroofs/cyan_concrete_roof.png deleted file mode 100644 index 5dd98dc3..00000000 Binary files a/public/textures/mcwroofs/cyan_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_concrete_steep_roof.png b/public/textures/mcwroofs/cyan_concrete_steep_roof.png deleted file mode 100644 index 879f9225..00000000 Binary files a/public/textures/mcwroofs/cyan_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_concrete_top_roof.png b/public/textures/mcwroofs/cyan_concrete_top_roof.png deleted file mode 100644 index 894c3565..00000000 Binary files a/public/textures/mcwroofs/cyan_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_concrete_upper_lower_roof.png b/public/textures/mcwroofs/cyan_concrete_upper_lower_roof.png deleted file mode 100644 index a0c47120..00000000 Binary files a/public/textures/mcwroofs/cyan_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_concrete_upper_steep_roof.png b/public/textures/mcwroofs/cyan_concrete_upper_steep_roof.png deleted file mode 100644 index c8146b87..00000000 Binary files a/public/textures/mcwroofs/cyan_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_striped_awning.png b/public/textures/mcwroofs/cyan_striped_awning.png deleted file mode 100644 index f48b2746..00000000 Binary files a/public/textures/mcwroofs/cyan_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_terracotta_attic_roof.png b/public/textures/mcwroofs/cyan_terracotta_attic_roof.png deleted file mode 100644 index b1c4072d..00000000 Binary files a/public/textures/mcwroofs/cyan_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_terracotta_lower_roof.png b/public/textures/mcwroofs/cyan_terracotta_lower_roof.png deleted file mode 100644 index cb8f8cce..00000000 Binary files a/public/textures/mcwroofs/cyan_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_terracotta_roof.png b/public/textures/mcwroofs/cyan_terracotta_roof.png deleted file mode 100644 index ca566946..00000000 Binary files a/public/textures/mcwroofs/cyan_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_terracotta_steep_roof.png b/public/textures/mcwroofs/cyan_terracotta_steep_roof.png deleted file mode 100644 index b170d2d6..00000000 Binary files a/public/textures/mcwroofs/cyan_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_terracotta_top_roof.png b/public/textures/mcwroofs/cyan_terracotta_top_roof.png deleted file mode 100644 index c181192c..00000000 Binary files a/public/textures/mcwroofs/cyan_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/cyan_terracotta_upper_lower_roof.png deleted file mode 100644 index 304c28e2..00000000 Binary files a/public/textures/mcwroofs/cyan_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/cyan_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/cyan_terracotta_upper_steep_roof.png deleted file mode 100644 index d6c69257..00000000 Binary files a/public/textures/mcwroofs/cyan_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_attic_roof.png b/public/textures/mcwroofs/dark_oak_attic_roof.png deleted file mode 100644 index 24fb2e02..00000000 Binary files a/public/textures/mcwroofs/dark_oak_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_lower_roof.png b/public/textures/mcwroofs/dark_oak_lower_roof.png deleted file mode 100644 index c549e20c..00000000 Binary files a/public/textures/mcwroofs/dark_oak_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_planks_attic_roof.png b/public/textures/mcwroofs/dark_oak_planks_attic_roof.png deleted file mode 100644 index f3edb46d..00000000 Binary files a/public/textures/mcwroofs/dark_oak_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_planks_lower_roof.png b/public/textures/mcwroofs/dark_oak_planks_lower_roof.png deleted file mode 100644 index 8e7e62c6..00000000 Binary files a/public/textures/mcwroofs/dark_oak_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_planks_roof.png b/public/textures/mcwroofs/dark_oak_planks_roof.png deleted file mode 100644 index 7126d48a..00000000 Binary files a/public/textures/mcwroofs/dark_oak_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_planks_steep_roof.png b/public/textures/mcwroofs/dark_oak_planks_steep_roof.png deleted file mode 100644 index 9ec8851c..00000000 Binary files a/public/textures/mcwroofs/dark_oak_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_planks_top_roof.png b/public/textures/mcwroofs/dark_oak_planks_top_roof.png deleted file mode 100644 index 8e2a4e3a..00000000 Binary files a/public/textures/mcwroofs/dark_oak_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_planks_upper_lower_roof.png b/public/textures/mcwroofs/dark_oak_planks_upper_lower_roof.png deleted file mode 100644 index fbbc0fdd..00000000 Binary files a/public/textures/mcwroofs/dark_oak_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_planks_upper_steep_roof.png b/public/textures/mcwroofs/dark_oak_planks_upper_steep_roof.png deleted file mode 100644 index 752919e4..00000000 Binary files a/public/textures/mcwroofs/dark_oak_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_roof.png b/public/textures/mcwroofs/dark_oak_roof.png deleted file mode 100644 index 1b286296..00000000 Binary files a/public/textures/mcwroofs/dark_oak_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_steep_roof.png b/public/textures/mcwroofs/dark_oak_steep_roof.png deleted file mode 100644 index 6a38ef17..00000000 Binary files a/public/textures/mcwroofs/dark_oak_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_top_roof.png b/public/textures/mcwroofs/dark_oak_top_roof.png deleted file mode 100644 index 386f2724..00000000 Binary files a/public/textures/mcwroofs/dark_oak_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_upper_lower_roof.png b/public/textures/mcwroofs/dark_oak_upper_lower_roof.png deleted file mode 100644 index b38fbb60..00000000 Binary files a/public/textures/mcwroofs/dark_oak_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_oak_upper_steep_roof.png b/public/textures/mcwroofs/dark_oak_upper_steep_roof.png deleted file mode 100644 index ea25eac8..00000000 Binary files a/public/textures/mcwroofs/dark_oak_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_prismarine_attic_roof.png b/public/textures/mcwroofs/dark_prismarine_attic_roof.png deleted file mode 100644 index 2b5bdb0b..00000000 Binary files a/public/textures/mcwroofs/dark_prismarine_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_prismarine_lower_roof.png b/public/textures/mcwroofs/dark_prismarine_lower_roof.png deleted file mode 100644 index 19e11ccb..00000000 Binary files a/public/textures/mcwroofs/dark_prismarine_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_prismarine_roof.png b/public/textures/mcwroofs/dark_prismarine_roof.png deleted file mode 100644 index f98e5e91..00000000 Binary files a/public/textures/mcwroofs/dark_prismarine_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_prismarine_steep_roof.png b/public/textures/mcwroofs/dark_prismarine_steep_roof.png deleted file mode 100644 index 13c3501c..00000000 Binary files a/public/textures/mcwroofs/dark_prismarine_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_prismarine_top_roof.png b/public/textures/mcwroofs/dark_prismarine_top_roof.png deleted file mode 100644 index 71378424..00000000 Binary files a/public/textures/mcwroofs/dark_prismarine_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_prismarine_upper_lower_roof.png b/public/textures/mcwroofs/dark_prismarine_upper_lower_roof.png deleted file mode 100644 index 7feadb4b..00000000 Binary files a/public/textures/mcwroofs/dark_prismarine_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/dark_prismarine_upper_steep_roof.png b/public/textures/mcwroofs/dark_prismarine_upper_steep_roof.png deleted file mode 100644 index 79fb5a03..00000000 Binary files a/public/textures/mcwroofs/dark_prismarine_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/deepslate_attic_roof.png b/public/textures/mcwroofs/deepslate_attic_roof.png deleted file mode 100644 index 5cfa23e4..00000000 Binary files a/public/textures/mcwroofs/deepslate_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/deepslate_lower_roof.png b/public/textures/mcwroofs/deepslate_lower_roof.png deleted file mode 100644 index 4225b3f7..00000000 Binary files a/public/textures/mcwroofs/deepslate_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/deepslate_roof.png b/public/textures/mcwroofs/deepslate_roof.png deleted file mode 100644 index 57c500aa..00000000 Binary files a/public/textures/mcwroofs/deepslate_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/deepslate_steep_roof.png b/public/textures/mcwroofs/deepslate_steep_roof.png deleted file mode 100644 index c21b4b49..00000000 Binary files a/public/textures/mcwroofs/deepslate_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/deepslate_top_roof.png b/public/textures/mcwroofs/deepslate_top_roof.png deleted file mode 100644 index 4f20c20b..00000000 Binary files a/public/textures/mcwroofs/deepslate_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/deepslate_upper_lower_roof.png b/public/textures/mcwroofs/deepslate_upper_lower_roof.png deleted file mode 100644 index 37b80057..00000000 Binary files a/public/textures/mcwroofs/deepslate_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/deepslate_upper_steep_roof.png b/public/textures/mcwroofs/deepslate_upper_steep_roof.png deleted file mode 100644 index b7978da4..00000000 Binary files a/public/textures/mcwroofs/deepslate_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/diorite_attic_roof.png b/public/textures/mcwroofs/diorite_attic_roof.png deleted file mode 100644 index 49ddff5b..00000000 Binary files a/public/textures/mcwroofs/diorite_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/diorite_lower_roof.png b/public/textures/mcwroofs/diorite_lower_roof.png deleted file mode 100644 index 6ea8d630..00000000 Binary files a/public/textures/mcwroofs/diorite_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/diorite_roof.png b/public/textures/mcwroofs/diorite_roof.png deleted file mode 100644 index 592d236f..00000000 Binary files a/public/textures/mcwroofs/diorite_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/diorite_steep_roof.png b/public/textures/mcwroofs/diorite_steep_roof.png deleted file mode 100644 index b306e75a..00000000 Binary files a/public/textures/mcwroofs/diorite_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/diorite_top_roof.png b/public/textures/mcwroofs/diorite_top_roof.png deleted file mode 100644 index f9d6951e..00000000 Binary files a/public/textures/mcwroofs/diorite_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/diorite_upper_lower_roof.png b/public/textures/mcwroofs/diorite_upper_lower_roof.png deleted file mode 100644 index a6f1f30c..00000000 Binary files a/public/textures/mcwroofs/diorite_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/diorite_upper_steep_roof.png b/public/textures/mcwroofs/diorite_upper_steep_roof.png deleted file mode 100644 index 0e34dc00..00000000 Binary files a/public/textures/mcwroofs/diorite_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/granite_attic_roof.png b/public/textures/mcwroofs/granite_attic_roof.png deleted file mode 100644 index 8f97c600..00000000 Binary files a/public/textures/mcwroofs/granite_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/granite_lower_roof.png b/public/textures/mcwroofs/granite_lower_roof.png deleted file mode 100644 index 750ed98d..00000000 Binary files a/public/textures/mcwroofs/granite_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/granite_roof.png b/public/textures/mcwroofs/granite_roof.png deleted file mode 100644 index 474de787..00000000 Binary files a/public/textures/mcwroofs/granite_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/granite_steep_roof.png b/public/textures/mcwroofs/granite_steep_roof.png deleted file mode 100644 index ad156d12..00000000 Binary files a/public/textures/mcwroofs/granite_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/granite_top_roof.png b/public/textures/mcwroofs/granite_top_roof.png deleted file mode 100644 index f1a9a28a..00000000 Binary files a/public/textures/mcwroofs/granite_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/granite_upper_lower_roof.png b/public/textures/mcwroofs/granite_upper_lower_roof.png deleted file mode 100644 index bd8147b3..00000000 Binary files a/public/textures/mcwroofs/granite_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/granite_upper_steep_roof.png b/public/textures/mcwroofs/granite_upper_steep_roof.png deleted file mode 100644 index bc92e7e9..00000000 Binary files a/public/textures/mcwroofs/granite_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/grass_attic_roof.png b/public/textures/mcwroofs/grass_attic_roof.png deleted file mode 100644 index eac1af6f..00000000 Binary files a/public/textures/mcwroofs/grass_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/grass_lower_roof.png b/public/textures/mcwroofs/grass_lower_roof.png deleted file mode 100644 index a757563c..00000000 Binary files a/public/textures/mcwroofs/grass_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/grass_roof.png b/public/textures/mcwroofs/grass_roof.png deleted file mode 100644 index 782e1c9d..00000000 Binary files a/public/textures/mcwroofs/grass_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/grass_steep_roof.png b/public/textures/mcwroofs/grass_steep_roof.png deleted file mode 100644 index 472175f3..00000000 Binary files a/public/textures/mcwroofs/grass_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/grass_top_roof.png b/public/textures/mcwroofs/grass_top_roof.png deleted file mode 100644 index 231d424c..00000000 Binary files a/public/textures/mcwroofs/grass_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/grass_upper_lower_roof.png b/public/textures/mcwroofs/grass_upper_lower_roof.png deleted file mode 100644 index 21b025eb..00000000 Binary files a/public/textures/mcwroofs/grass_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/grass_upper_steep_roof.png b/public/textures/mcwroofs/grass_upper_steep_roof.png deleted file mode 100644 index 98f8b959..00000000 Binary files a/public/textures/mcwroofs/grass_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_attic_roof.png b/public/textures/mcwroofs/gray_attic_roof.png deleted file mode 100644 index e759cfc7..00000000 Binary files a/public/textures/mcwroofs/gray_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_concrete_attic_roof.png b/public/textures/mcwroofs/gray_concrete_attic_roof.png deleted file mode 100644 index c0af59b8..00000000 Binary files a/public/textures/mcwroofs/gray_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_concrete_lower_roof.png b/public/textures/mcwroofs/gray_concrete_lower_roof.png deleted file mode 100644 index f3a5d4e3..00000000 Binary files a/public/textures/mcwroofs/gray_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_concrete_roof.png b/public/textures/mcwroofs/gray_concrete_roof.png deleted file mode 100644 index f5225ec9..00000000 Binary files a/public/textures/mcwroofs/gray_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_concrete_steep_roof.png b/public/textures/mcwroofs/gray_concrete_steep_roof.png deleted file mode 100644 index 71b6559e..00000000 Binary files a/public/textures/mcwroofs/gray_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_concrete_top_roof.png b/public/textures/mcwroofs/gray_concrete_top_roof.png deleted file mode 100644 index d6d4902d..00000000 Binary files a/public/textures/mcwroofs/gray_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_concrete_upper_lower_roof.png b/public/textures/mcwroofs/gray_concrete_upper_lower_roof.png deleted file mode 100644 index 1ac54a13..00000000 Binary files a/public/textures/mcwroofs/gray_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_concrete_upper_steep_roof.png b/public/textures/mcwroofs/gray_concrete_upper_steep_roof.png deleted file mode 100644 index 7432a757..00000000 Binary files a/public/textures/mcwroofs/gray_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_lower_roof.png b/public/textures/mcwroofs/gray_lower_roof.png deleted file mode 100644 index 4650a5b2..00000000 Binary files a/public/textures/mcwroofs/gray_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_roof.png b/public/textures/mcwroofs/gray_roof.png deleted file mode 100644 index c684a484..00000000 Binary files a/public/textures/mcwroofs/gray_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_roof_block.png b/public/textures/mcwroofs/gray_roof_block.png deleted file mode 100644 index 61cb0864..00000000 Binary files a/public/textures/mcwroofs/gray_roof_block.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_roof_slab.png b/public/textures/mcwroofs/gray_roof_slab.png deleted file mode 100644 index 3b71cdfa..00000000 Binary files a/public/textures/mcwroofs/gray_roof_slab.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_steep_roof.png b/public/textures/mcwroofs/gray_steep_roof.png deleted file mode 100644 index ed40acf0..00000000 Binary files a/public/textures/mcwroofs/gray_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_striped_awning.png b/public/textures/mcwroofs/gray_striped_awning.png deleted file mode 100644 index f78b33a8..00000000 Binary files a/public/textures/mcwroofs/gray_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_terracotta_attic_roof.png b/public/textures/mcwroofs/gray_terracotta_attic_roof.png deleted file mode 100644 index 24876678..00000000 Binary files a/public/textures/mcwroofs/gray_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_terracotta_lower_roof.png b/public/textures/mcwroofs/gray_terracotta_lower_roof.png deleted file mode 100644 index f73bde94..00000000 Binary files a/public/textures/mcwroofs/gray_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_terracotta_roof.png b/public/textures/mcwroofs/gray_terracotta_roof.png deleted file mode 100644 index 9f34b88b..00000000 Binary files a/public/textures/mcwroofs/gray_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_terracotta_steep_roof.png b/public/textures/mcwroofs/gray_terracotta_steep_roof.png deleted file mode 100644 index 06fb7646..00000000 Binary files a/public/textures/mcwroofs/gray_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_terracotta_top_roof.png b/public/textures/mcwroofs/gray_terracotta_top_roof.png deleted file mode 100644 index 6436f8fd..00000000 Binary files a/public/textures/mcwroofs/gray_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/gray_terracotta_upper_lower_roof.png deleted file mode 100644 index dabee335..00000000 Binary files a/public/textures/mcwroofs/gray_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/gray_terracotta_upper_steep_roof.png deleted file mode 100644 index f51eb916..00000000 Binary files a/public/textures/mcwroofs/gray_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_top_roof.png b/public/textures/mcwroofs/gray_top_roof.png deleted file mode 100644 index 59723ec6..00000000 Binary files a/public/textures/mcwroofs/gray_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_upper_lower_roof.png b/public/textures/mcwroofs/gray_upper_lower_roof.png deleted file mode 100644 index eff46ddc..00000000 Binary files a/public/textures/mcwroofs/gray_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gray_upper_steep_roof.png b/public/textures/mcwroofs/gray_upper_steep_roof.png deleted file mode 100644 index 43960773..00000000 Binary files a/public/textures/mcwroofs/gray_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_concrete_attic_roof.png b/public/textures/mcwroofs/green_concrete_attic_roof.png deleted file mode 100644 index 0f145640..00000000 Binary files a/public/textures/mcwroofs/green_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_concrete_lower_roof.png b/public/textures/mcwroofs/green_concrete_lower_roof.png deleted file mode 100644 index daab4967..00000000 Binary files a/public/textures/mcwroofs/green_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_concrete_roof.png b/public/textures/mcwroofs/green_concrete_roof.png deleted file mode 100644 index 3693b0fd..00000000 Binary files a/public/textures/mcwroofs/green_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_concrete_steep_roof.png b/public/textures/mcwroofs/green_concrete_steep_roof.png deleted file mode 100644 index 7a295176..00000000 Binary files a/public/textures/mcwroofs/green_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_concrete_top_roof.png b/public/textures/mcwroofs/green_concrete_top_roof.png deleted file mode 100644 index 969ac378..00000000 Binary files a/public/textures/mcwroofs/green_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_concrete_upper_lower_roof.png b/public/textures/mcwroofs/green_concrete_upper_lower_roof.png deleted file mode 100644 index a91cd97f..00000000 Binary files a/public/textures/mcwroofs/green_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_concrete_upper_steep_roof.png b/public/textures/mcwroofs/green_concrete_upper_steep_roof.png deleted file mode 100644 index e7732b6a..00000000 Binary files a/public/textures/mcwroofs/green_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_striped_awning.png b/public/textures/mcwroofs/green_striped_awning.png deleted file mode 100644 index 4bc4c5a8..00000000 Binary files a/public/textures/mcwroofs/green_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_terracotta_attic_roof.png b/public/textures/mcwroofs/green_terracotta_attic_roof.png deleted file mode 100644 index f36d0d5b..00000000 Binary files a/public/textures/mcwroofs/green_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_terracotta_lower_roof.png b/public/textures/mcwroofs/green_terracotta_lower_roof.png deleted file mode 100644 index f7831232..00000000 Binary files a/public/textures/mcwroofs/green_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_terracotta_roof.png b/public/textures/mcwroofs/green_terracotta_roof.png deleted file mode 100644 index 559202d0..00000000 Binary files a/public/textures/mcwroofs/green_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_terracotta_steep_roof.png b/public/textures/mcwroofs/green_terracotta_steep_roof.png deleted file mode 100644 index f4a3ae50..00000000 Binary files a/public/textures/mcwroofs/green_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_terracotta_top_roof.png b/public/textures/mcwroofs/green_terracotta_top_roof.png deleted file mode 100644 index 6d6eaf9f..00000000 Binary files a/public/textures/mcwroofs/green_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/green_terracotta_upper_lower_roof.png deleted file mode 100644 index 78df62b8..00000000 Binary files a/public/textures/mcwroofs/green_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/green_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/green_terracotta_upper_steep_roof.png deleted file mode 100644 index 43b34965..00000000 Binary files a/public/textures/mcwroofs/green_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base.png b/public/textures/mcwroofs/gutter_base.png deleted file mode 100644 index 2a5a79c8..00000000 Binary files a/public/textures/mcwroofs/gutter_base.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_black.png b/public/textures/mcwroofs/gutter_base_black.png deleted file mode 100644 index 202b868a..00000000 Binary files a/public/textures/mcwroofs/gutter_base_black.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_blue.png b/public/textures/mcwroofs/gutter_base_blue.png deleted file mode 100644 index 658f4e33..00000000 Binary files a/public/textures/mcwroofs/gutter_base_blue.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_brown.png b/public/textures/mcwroofs/gutter_base_brown.png deleted file mode 100644 index 114dcb2a..00000000 Binary files a/public/textures/mcwroofs/gutter_base_brown.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_cyan.png b/public/textures/mcwroofs/gutter_base_cyan.png deleted file mode 100644 index 4f8ff031..00000000 Binary files a/public/textures/mcwroofs/gutter_base_cyan.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_gray.png b/public/textures/mcwroofs/gutter_base_gray.png deleted file mode 100644 index 4a3cddfc..00000000 Binary files a/public/textures/mcwroofs/gutter_base_gray.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_green.png b/public/textures/mcwroofs/gutter_base_green.png deleted file mode 100644 index 1938ebc3..00000000 Binary files a/public/textures/mcwroofs/gutter_base_green.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_light_blue.png b/public/textures/mcwroofs/gutter_base_light_blue.png deleted file mode 100644 index 8b0df041..00000000 Binary files a/public/textures/mcwroofs/gutter_base_light_blue.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_light_gray.png b/public/textures/mcwroofs/gutter_base_light_gray.png deleted file mode 100644 index 11168760..00000000 Binary files a/public/textures/mcwroofs/gutter_base_light_gray.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_lime.png b/public/textures/mcwroofs/gutter_base_lime.png deleted file mode 100644 index 532dfda8..00000000 Binary files a/public/textures/mcwroofs/gutter_base_lime.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_magenta.png b/public/textures/mcwroofs/gutter_base_magenta.png deleted file mode 100644 index 776912a2..00000000 Binary files a/public/textures/mcwroofs/gutter_base_magenta.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_orange.png b/public/textures/mcwroofs/gutter_base_orange.png deleted file mode 100644 index 579673ff..00000000 Binary files a/public/textures/mcwroofs/gutter_base_orange.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_pink.png b/public/textures/mcwroofs/gutter_base_pink.png deleted file mode 100644 index 06051497..00000000 Binary files a/public/textures/mcwroofs/gutter_base_pink.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_purple.png b/public/textures/mcwroofs/gutter_base_purple.png deleted file mode 100644 index 41ed653f..00000000 Binary files a/public/textures/mcwroofs/gutter_base_purple.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_red.png b/public/textures/mcwroofs/gutter_base_red.png deleted file mode 100644 index 833f74c4..00000000 Binary files a/public/textures/mcwroofs/gutter_base_red.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_white.png b/public/textures/mcwroofs/gutter_base_white.png deleted file mode 100644 index dab3e5bd..00000000 Binary files a/public/textures/mcwroofs/gutter_base_white.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_base_yellow.png b/public/textures/mcwroofs/gutter_base_yellow.png deleted file mode 100644 index 37f6bacc..00000000 Binary files a/public/textures/mcwroofs/gutter_base_yellow.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle.png b/public/textures/mcwroofs/gutter_middle.png deleted file mode 100644 index 4a2e9458..00000000 Binary files a/public/textures/mcwroofs/gutter_middle.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_black.png b/public/textures/mcwroofs/gutter_middle_black.png deleted file mode 100644 index 4cee229b..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_black.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_blue.png b/public/textures/mcwroofs/gutter_middle_blue.png deleted file mode 100644 index b37600c8..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_blue.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_brown.png b/public/textures/mcwroofs/gutter_middle_brown.png deleted file mode 100644 index 93f65200..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_brown.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_cyan.png b/public/textures/mcwroofs/gutter_middle_cyan.png deleted file mode 100644 index 819f6811..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_cyan.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_gray.png b/public/textures/mcwroofs/gutter_middle_gray.png deleted file mode 100644 index 5f0f820f..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_gray.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_green.png b/public/textures/mcwroofs/gutter_middle_green.png deleted file mode 100644 index dd326233..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_green.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_light_blue.png b/public/textures/mcwroofs/gutter_middle_light_blue.png deleted file mode 100644 index 0ad07b48..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_light_blue.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_light_gray.png b/public/textures/mcwroofs/gutter_middle_light_gray.png deleted file mode 100644 index 47818af7..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_light_gray.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_lime.png b/public/textures/mcwroofs/gutter_middle_lime.png deleted file mode 100644 index bc5732e0..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_lime.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_magenta.png b/public/textures/mcwroofs/gutter_middle_magenta.png deleted file mode 100644 index a4983172..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_magenta.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_orange.png b/public/textures/mcwroofs/gutter_middle_orange.png deleted file mode 100644 index 1a312428..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_orange.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_pink.png b/public/textures/mcwroofs/gutter_middle_pink.png deleted file mode 100644 index 2e2ea49b..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_pink.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_purple.png b/public/textures/mcwroofs/gutter_middle_purple.png deleted file mode 100644 index 110e0a2d..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_purple.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_red.png b/public/textures/mcwroofs/gutter_middle_red.png deleted file mode 100644 index a61a929f..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_red.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_white.png b/public/textures/mcwroofs/gutter_middle_white.png deleted file mode 100644 index 8d85d1f1..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_white.png and /dev/null differ diff --git a/public/textures/mcwroofs/gutter_middle_yellow.png b/public/textures/mcwroofs/gutter_middle_yellow.png deleted file mode 100644 index a22e8549..00000000 Binary files a/public/textures/mcwroofs/gutter_middle_yellow.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_attic_roof.png b/public/textures/mcwroofs/jungle_attic_roof.png deleted file mode 100644 index 8d103ad2..00000000 Binary files a/public/textures/mcwroofs/jungle_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_lower_roof.png b/public/textures/mcwroofs/jungle_lower_roof.png deleted file mode 100644 index 34285fa6..00000000 Binary files a/public/textures/mcwroofs/jungle_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_planks_attic_roof.png b/public/textures/mcwroofs/jungle_planks_attic_roof.png deleted file mode 100644 index 8d65e19b..00000000 Binary files a/public/textures/mcwroofs/jungle_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_planks_lower_roof.png b/public/textures/mcwroofs/jungle_planks_lower_roof.png deleted file mode 100644 index 62a860c1..00000000 Binary files a/public/textures/mcwroofs/jungle_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_planks_roof.png b/public/textures/mcwroofs/jungle_planks_roof.png deleted file mode 100644 index 5c1b1102..00000000 Binary files a/public/textures/mcwroofs/jungle_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_planks_steep_roof.png b/public/textures/mcwroofs/jungle_planks_steep_roof.png deleted file mode 100644 index a65d210e..00000000 Binary files a/public/textures/mcwroofs/jungle_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_planks_top_roof.png b/public/textures/mcwroofs/jungle_planks_top_roof.png deleted file mode 100644 index f53388af..00000000 Binary files a/public/textures/mcwroofs/jungle_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_planks_upper_lower_roof.png b/public/textures/mcwroofs/jungle_planks_upper_lower_roof.png deleted file mode 100644 index 77eaf613..00000000 Binary files a/public/textures/mcwroofs/jungle_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_planks_upper_steep_roof.png b/public/textures/mcwroofs/jungle_planks_upper_steep_roof.png deleted file mode 100644 index dca6a52b..00000000 Binary files a/public/textures/mcwroofs/jungle_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_roof.png b/public/textures/mcwroofs/jungle_roof.png deleted file mode 100644 index e75b5f41..00000000 Binary files a/public/textures/mcwroofs/jungle_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_steep_roof.png b/public/textures/mcwroofs/jungle_steep_roof.png deleted file mode 100644 index cf5fb142..00000000 Binary files a/public/textures/mcwroofs/jungle_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_top_roof.png b/public/textures/mcwroofs/jungle_top_roof.png deleted file mode 100644 index cf14ed85..00000000 Binary files a/public/textures/mcwroofs/jungle_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_upper_lower_roof.png b/public/textures/mcwroofs/jungle_upper_lower_roof.png deleted file mode 100644 index 9d585bbc..00000000 Binary files a/public/textures/mcwroofs/jungle_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/jungle_upper_steep_roof.png b/public/textures/mcwroofs/jungle_upper_steep_roof.png deleted file mode 100644 index cc161637..00000000 Binary files a/public/textures/mcwroofs/jungle_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_concrete_attic_roof.png b/public/textures/mcwroofs/light_blue_concrete_attic_roof.png deleted file mode 100644 index ddaa2d91..00000000 Binary files a/public/textures/mcwroofs/light_blue_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_concrete_lower_roof.png b/public/textures/mcwroofs/light_blue_concrete_lower_roof.png deleted file mode 100644 index 17b0567d..00000000 Binary files a/public/textures/mcwroofs/light_blue_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_concrete_roof.png b/public/textures/mcwroofs/light_blue_concrete_roof.png deleted file mode 100644 index eb46217d..00000000 Binary files a/public/textures/mcwroofs/light_blue_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_concrete_steep_roof.png b/public/textures/mcwroofs/light_blue_concrete_steep_roof.png deleted file mode 100644 index 3a6a7452..00000000 Binary files a/public/textures/mcwroofs/light_blue_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_concrete_top_roof.png b/public/textures/mcwroofs/light_blue_concrete_top_roof.png deleted file mode 100644 index 87529dbf..00000000 Binary files a/public/textures/mcwroofs/light_blue_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_concrete_upper_lower_roof.png b/public/textures/mcwroofs/light_blue_concrete_upper_lower_roof.png deleted file mode 100644 index 87f68c49..00000000 Binary files a/public/textures/mcwroofs/light_blue_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_concrete_upper_steep_roof.png b/public/textures/mcwroofs/light_blue_concrete_upper_steep_roof.png deleted file mode 100644 index 2393b1b4..00000000 Binary files a/public/textures/mcwroofs/light_blue_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_striped_awning.png b/public/textures/mcwroofs/light_blue_striped_awning.png deleted file mode 100644 index ec97a823..00000000 Binary files a/public/textures/mcwroofs/light_blue_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_terracotta_attic_roof.png b/public/textures/mcwroofs/light_blue_terracotta_attic_roof.png deleted file mode 100644 index 9160bf60..00000000 Binary files a/public/textures/mcwroofs/light_blue_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_terracotta_lower_roof.png b/public/textures/mcwroofs/light_blue_terracotta_lower_roof.png deleted file mode 100644 index dfa128bf..00000000 Binary files a/public/textures/mcwroofs/light_blue_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_terracotta_roof.png b/public/textures/mcwroofs/light_blue_terracotta_roof.png deleted file mode 100644 index af95c410..00000000 Binary files a/public/textures/mcwroofs/light_blue_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_terracotta_steep_roof.png b/public/textures/mcwroofs/light_blue_terracotta_steep_roof.png deleted file mode 100644 index 2a9a654b..00000000 Binary files a/public/textures/mcwroofs/light_blue_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_terracotta_top_roof.png b/public/textures/mcwroofs/light_blue_terracotta_top_roof.png deleted file mode 100644 index 016a9d6e..00000000 Binary files a/public/textures/mcwroofs/light_blue_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/light_blue_terracotta_upper_lower_roof.png deleted file mode 100644 index a7374c88..00000000 Binary files a/public/textures/mcwroofs/light_blue_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_blue_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/light_blue_terracotta_upper_steep_roof.png deleted file mode 100644 index 2c1d7dd2..00000000 Binary files a/public/textures/mcwroofs/light_blue_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_attic_roof.png b/public/textures/mcwroofs/light_gray_attic_roof.png deleted file mode 100644 index 4473b842..00000000 Binary files a/public/textures/mcwroofs/light_gray_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_concrete_attic_roof.png b/public/textures/mcwroofs/light_gray_concrete_attic_roof.png deleted file mode 100644 index fc203fb5..00000000 Binary files a/public/textures/mcwroofs/light_gray_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_concrete_lower_roof.png b/public/textures/mcwroofs/light_gray_concrete_lower_roof.png deleted file mode 100644 index 60f88d42..00000000 Binary files a/public/textures/mcwroofs/light_gray_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_concrete_roof.png b/public/textures/mcwroofs/light_gray_concrete_roof.png deleted file mode 100644 index 2fb7e024..00000000 Binary files a/public/textures/mcwroofs/light_gray_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_concrete_steep_roof.png b/public/textures/mcwroofs/light_gray_concrete_steep_roof.png deleted file mode 100644 index 7f5f8575..00000000 Binary files a/public/textures/mcwroofs/light_gray_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_concrete_top_roof.png b/public/textures/mcwroofs/light_gray_concrete_top_roof.png deleted file mode 100644 index 2e2c18b7..00000000 Binary files a/public/textures/mcwroofs/light_gray_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_concrete_upper_lower_roof.png b/public/textures/mcwroofs/light_gray_concrete_upper_lower_roof.png deleted file mode 100644 index 25d43f61..00000000 Binary files a/public/textures/mcwroofs/light_gray_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_concrete_upper_steep_roof.png b/public/textures/mcwroofs/light_gray_concrete_upper_steep_roof.png deleted file mode 100644 index e2f68858..00000000 Binary files a/public/textures/mcwroofs/light_gray_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_lower_roof.png b/public/textures/mcwroofs/light_gray_lower_roof.png deleted file mode 100644 index b3e1531f..00000000 Binary files a/public/textures/mcwroofs/light_gray_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_roof.png b/public/textures/mcwroofs/light_gray_roof.png deleted file mode 100644 index 278f37ce..00000000 Binary files a/public/textures/mcwroofs/light_gray_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_roof_block.png b/public/textures/mcwroofs/light_gray_roof_block.png deleted file mode 100644 index 0352dfb9..00000000 Binary files a/public/textures/mcwroofs/light_gray_roof_block.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_roof_slab.png b/public/textures/mcwroofs/light_gray_roof_slab.png deleted file mode 100644 index 13a739ca..00000000 Binary files a/public/textures/mcwroofs/light_gray_roof_slab.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_steep_roof.png b/public/textures/mcwroofs/light_gray_steep_roof.png deleted file mode 100644 index 5a3ed322..00000000 Binary files a/public/textures/mcwroofs/light_gray_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_striped_awning.png b/public/textures/mcwroofs/light_gray_striped_awning.png deleted file mode 100644 index 649953f3..00000000 Binary files a/public/textures/mcwroofs/light_gray_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_terracotta_attic_roof.png b/public/textures/mcwroofs/light_gray_terracotta_attic_roof.png deleted file mode 100644 index bd668c1f..00000000 Binary files a/public/textures/mcwroofs/light_gray_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_terracotta_lower_roof.png b/public/textures/mcwroofs/light_gray_terracotta_lower_roof.png deleted file mode 100644 index ad34b543..00000000 Binary files a/public/textures/mcwroofs/light_gray_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_terracotta_roof.png b/public/textures/mcwroofs/light_gray_terracotta_roof.png deleted file mode 100644 index efc9fa80..00000000 Binary files a/public/textures/mcwroofs/light_gray_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_terracotta_steep_roof.png b/public/textures/mcwroofs/light_gray_terracotta_steep_roof.png deleted file mode 100644 index 8a2e6c61..00000000 Binary files a/public/textures/mcwroofs/light_gray_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_terracotta_top_roof.png b/public/textures/mcwroofs/light_gray_terracotta_top_roof.png deleted file mode 100644 index f47aa30e..00000000 Binary files a/public/textures/mcwroofs/light_gray_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/light_gray_terracotta_upper_lower_roof.png deleted file mode 100644 index 5b57e5c8..00000000 Binary files a/public/textures/mcwroofs/light_gray_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/light_gray_terracotta_upper_steep_roof.png deleted file mode 100644 index 2e95287a..00000000 Binary files a/public/textures/mcwroofs/light_gray_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_top_roof.png b/public/textures/mcwroofs/light_gray_top_roof.png deleted file mode 100644 index bc7219a2..00000000 Binary files a/public/textures/mcwroofs/light_gray_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_upper_lower_roof.png b/public/textures/mcwroofs/light_gray_upper_lower_roof.png deleted file mode 100644 index d88da284..00000000 Binary files a/public/textures/mcwroofs/light_gray_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/light_gray_upper_steep_roof.png b/public/textures/mcwroofs/light_gray_upper_steep_roof.png deleted file mode 100644 index 9d537520..00000000 Binary files a/public/textures/mcwroofs/light_gray_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_concrete_attic_roof.png b/public/textures/mcwroofs/lime_concrete_attic_roof.png deleted file mode 100644 index f4f00bb6..00000000 Binary files a/public/textures/mcwroofs/lime_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_concrete_lower_roof.png b/public/textures/mcwroofs/lime_concrete_lower_roof.png deleted file mode 100644 index 25985da9..00000000 Binary files a/public/textures/mcwroofs/lime_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_concrete_roof.png b/public/textures/mcwroofs/lime_concrete_roof.png deleted file mode 100644 index 960f5d96..00000000 Binary files a/public/textures/mcwroofs/lime_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_concrete_steep_roof.png b/public/textures/mcwroofs/lime_concrete_steep_roof.png deleted file mode 100644 index 1d29b676..00000000 Binary files a/public/textures/mcwroofs/lime_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_concrete_top_roof.png b/public/textures/mcwroofs/lime_concrete_top_roof.png deleted file mode 100644 index 63113d49..00000000 Binary files a/public/textures/mcwroofs/lime_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_concrete_upper_lower_roof.png b/public/textures/mcwroofs/lime_concrete_upper_lower_roof.png deleted file mode 100644 index 179711b1..00000000 Binary files a/public/textures/mcwroofs/lime_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_concrete_upper_steep_roof.png b/public/textures/mcwroofs/lime_concrete_upper_steep_roof.png deleted file mode 100644 index bceb2c12..00000000 Binary files a/public/textures/mcwroofs/lime_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_striped_awning.png b/public/textures/mcwroofs/lime_striped_awning.png deleted file mode 100644 index 7da2afec..00000000 Binary files a/public/textures/mcwroofs/lime_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_terracotta_attic_roof.png b/public/textures/mcwroofs/lime_terracotta_attic_roof.png deleted file mode 100644 index ec17dfbb..00000000 Binary files a/public/textures/mcwroofs/lime_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_terracotta_lower_roof.png b/public/textures/mcwroofs/lime_terracotta_lower_roof.png deleted file mode 100644 index 0fc9beda..00000000 Binary files a/public/textures/mcwroofs/lime_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_terracotta_roof.png b/public/textures/mcwroofs/lime_terracotta_roof.png deleted file mode 100644 index 19db48ce..00000000 Binary files a/public/textures/mcwroofs/lime_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_terracotta_steep_roof.png b/public/textures/mcwroofs/lime_terracotta_steep_roof.png deleted file mode 100644 index ff930588..00000000 Binary files a/public/textures/mcwroofs/lime_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_terracotta_top_roof.png b/public/textures/mcwroofs/lime_terracotta_top_roof.png deleted file mode 100644 index 054706dd..00000000 Binary files a/public/textures/mcwroofs/lime_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/lime_terracotta_upper_lower_roof.png deleted file mode 100644 index b1583d15..00000000 Binary files a/public/textures/mcwroofs/lime_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/lime_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/lime_terracotta_upper_steep_roof.png deleted file mode 100644 index 46d42568..00000000 Binary files a/public/textures/mcwroofs/lime_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_concrete_attic_roof.png b/public/textures/mcwroofs/magenta_concrete_attic_roof.png deleted file mode 100644 index a17813d9..00000000 Binary files a/public/textures/mcwroofs/magenta_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_concrete_lower_roof.png b/public/textures/mcwroofs/magenta_concrete_lower_roof.png deleted file mode 100644 index 63bca4c1..00000000 Binary files a/public/textures/mcwroofs/magenta_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_concrete_roof.png b/public/textures/mcwroofs/magenta_concrete_roof.png deleted file mode 100644 index 8c7d154b..00000000 Binary files a/public/textures/mcwroofs/magenta_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_concrete_steep_roof.png b/public/textures/mcwroofs/magenta_concrete_steep_roof.png deleted file mode 100644 index a05410bf..00000000 Binary files a/public/textures/mcwroofs/magenta_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_concrete_top_roof.png b/public/textures/mcwroofs/magenta_concrete_top_roof.png deleted file mode 100644 index 4a955628..00000000 Binary files a/public/textures/mcwroofs/magenta_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_concrete_upper_lower_roof.png b/public/textures/mcwroofs/magenta_concrete_upper_lower_roof.png deleted file mode 100644 index 152f0e2d..00000000 Binary files a/public/textures/mcwroofs/magenta_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_concrete_upper_steep_roof.png b/public/textures/mcwroofs/magenta_concrete_upper_steep_roof.png deleted file mode 100644 index ca9da783..00000000 Binary files a/public/textures/mcwroofs/magenta_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_striped_awning.png b/public/textures/mcwroofs/magenta_striped_awning.png deleted file mode 100644 index c71375c6..00000000 Binary files a/public/textures/mcwroofs/magenta_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_terracotta_attic_roof.png b/public/textures/mcwroofs/magenta_terracotta_attic_roof.png deleted file mode 100644 index 6749691d..00000000 Binary files a/public/textures/mcwroofs/magenta_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_terracotta_lower_roof.png b/public/textures/mcwroofs/magenta_terracotta_lower_roof.png deleted file mode 100644 index d5a03caf..00000000 Binary files a/public/textures/mcwroofs/magenta_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_terracotta_roof.png b/public/textures/mcwroofs/magenta_terracotta_roof.png deleted file mode 100644 index d5df54c5..00000000 Binary files a/public/textures/mcwroofs/magenta_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_terracotta_steep_roof.png b/public/textures/mcwroofs/magenta_terracotta_steep_roof.png deleted file mode 100644 index b90424a3..00000000 Binary files a/public/textures/mcwroofs/magenta_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_terracotta_top_roof.png b/public/textures/mcwroofs/magenta_terracotta_top_roof.png deleted file mode 100644 index 4ad7a152..00000000 Binary files a/public/textures/mcwroofs/magenta_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/magenta_terracotta_upper_lower_roof.png deleted file mode 100644 index 0e6f82e6..00000000 Binary files a/public/textures/mcwroofs/magenta_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/magenta_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/magenta_terracotta_upper_steep_roof.png deleted file mode 100644 index e10afd8d..00000000 Binary files a/public/textures/mcwroofs/magenta_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_attic_roof.png b/public/textures/mcwroofs/mangrove_attic_roof.png deleted file mode 100644 index 68be815b..00000000 Binary files a/public/textures/mcwroofs/mangrove_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_lower_roof.png b/public/textures/mcwroofs/mangrove_lower_roof.png deleted file mode 100644 index d619ae86..00000000 Binary files a/public/textures/mcwroofs/mangrove_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_planks_attic_roof.png b/public/textures/mcwroofs/mangrove_planks_attic_roof.png deleted file mode 100644 index d2ea0cab..00000000 Binary files a/public/textures/mcwroofs/mangrove_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_planks_lower_roof.png b/public/textures/mcwroofs/mangrove_planks_lower_roof.png deleted file mode 100644 index 34658ed5..00000000 Binary files a/public/textures/mcwroofs/mangrove_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_planks_roof.png b/public/textures/mcwroofs/mangrove_planks_roof.png deleted file mode 100644 index fa9c77c7..00000000 Binary files a/public/textures/mcwroofs/mangrove_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_planks_steep_roof.png b/public/textures/mcwroofs/mangrove_planks_steep_roof.png deleted file mode 100644 index b2ed0609..00000000 Binary files a/public/textures/mcwroofs/mangrove_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_planks_top_roof.png b/public/textures/mcwroofs/mangrove_planks_top_roof.png deleted file mode 100644 index cdb61f07..00000000 Binary files a/public/textures/mcwroofs/mangrove_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_planks_upper_lower_roof.png b/public/textures/mcwroofs/mangrove_planks_upper_lower_roof.png deleted file mode 100644 index d08275b4..00000000 Binary files a/public/textures/mcwroofs/mangrove_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_planks_upper_steep_roof.png b/public/textures/mcwroofs/mangrove_planks_upper_steep_roof.png deleted file mode 100644 index a9643035..00000000 Binary files a/public/textures/mcwroofs/mangrove_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_roof.png b/public/textures/mcwroofs/mangrove_roof.png deleted file mode 100644 index d48479c2..00000000 Binary files a/public/textures/mcwroofs/mangrove_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_steep_roof.png b/public/textures/mcwroofs/mangrove_steep_roof.png deleted file mode 100644 index 38586f5a..00000000 Binary files a/public/textures/mcwroofs/mangrove_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_top_roof.png b/public/textures/mcwroofs/mangrove_top_roof.png deleted file mode 100644 index 718779c2..00000000 Binary files a/public/textures/mcwroofs/mangrove_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_upper_lower_roof.png b/public/textures/mcwroofs/mangrove_upper_lower_roof.png deleted file mode 100644 index 38aa96b8..00000000 Binary files a/public/textures/mcwroofs/mangrove_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mangrove_upper_steep_roof.png b/public/textures/mcwroofs/mangrove_upper_steep_roof.png deleted file mode 100644 index 9bdf9640..00000000 Binary files a/public/textures/mcwroofs/mangrove_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mud_brick_attic_roof.png b/public/textures/mcwroofs/mud_brick_attic_roof.png deleted file mode 100644 index 69ae7d41..00000000 Binary files a/public/textures/mcwroofs/mud_brick_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mud_brick_lower_roof.png b/public/textures/mcwroofs/mud_brick_lower_roof.png deleted file mode 100644 index 67777d83..00000000 Binary files a/public/textures/mcwroofs/mud_brick_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mud_brick_roof.png b/public/textures/mcwroofs/mud_brick_roof.png deleted file mode 100644 index f6698059..00000000 Binary files a/public/textures/mcwroofs/mud_brick_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mud_brick_steep_roof.png b/public/textures/mcwroofs/mud_brick_steep_roof.png deleted file mode 100644 index eb28408a..00000000 Binary files a/public/textures/mcwroofs/mud_brick_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mud_brick_top_roof.png b/public/textures/mcwroofs/mud_brick_top_roof.png deleted file mode 100644 index bae09a30..00000000 Binary files a/public/textures/mcwroofs/mud_brick_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mud_brick_upper_lower_roof.png b/public/textures/mcwroofs/mud_brick_upper_lower_roof.png deleted file mode 100644 index 63062247..00000000 Binary files a/public/textures/mcwroofs/mud_brick_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/mud_brick_upper_steep_roof.png b/public/textures/mcwroofs/mud_brick_upper_steep_roof.png deleted file mode 100644 index 89d2a2ec..00000000 Binary files a/public/textures/mcwroofs/mud_brick_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/nether_bricks_attic_roof.png b/public/textures/mcwroofs/nether_bricks_attic_roof.png deleted file mode 100644 index 6cf88c9d..00000000 Binary files a/public/textures/mcwroofs/nether_bricks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/nether_bricks_lower_roof.png b/public/textures/mcwroofs/nether_bricks_lower_roof.png deleted file mode 100644 index cecb1f58..00000000 Binary files a/public/textures/mcwroofs/nether_bricks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/nether_bricks_roof.png b/public/textures/mcwroofs/nether_bricks_roof.png deleted file mode 100644 index ead3f5f8..00000000 Binary files a/public/textures/mcwroofs/nether_bricks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/nether_bricks_steep_roof.png b/public/textures/mcwroofs/nether_bricks_steep_roof.png deleted file mode 100644 index 90cd432c..00000000 Binary files a/public/textures/mcwroofs/nether_bricks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/nether_bricks_top_roof.png b/public/textures/mcwroofs/nether_bricks_top_roof.png deleted file mode 100644 index 622563f4..00000000 Binary files a/public/textures/mcwroofs/nether_bricks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/nether_bricks_upper_lower_roof.png b/public/textures/mcwroofs/nether_bricks_upper_lower_roof.png deleted file mode 100644 index 92bb9d70..00000000 Binary files a/public/textures/mcwroofs/nether_bricks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/nether_bricks_upper_steep_roof.png b/public/textures/mcwroofs/nether_bricks_upper_steep_roof.png deleted file mode 100644 index 207b012c..00000000 Binary files a/public/textures/mcwroofs/nether_bricks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_attic_roof.png b/public/textures/mcwroofs/oak_attic_roof.png deleted file mode 100644 index d24fecca..00000000 Binary files a/public/textures/mcwroofs/oak_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_lower_roof.png b/public/textures/mcwroofs/oak_lower_roof.png deleted file mode 100644 index cac58102..00000000 Binary files a/public/textures/mcwroofs/oak_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_planks_attic_roof.png b/public/textures/mcwroofs/oak_planks_attic_roof.png deleted file mode 100644 index 12781093..00000000 Binary files a/public/textures/mcwroofs/oak_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_planks_lower_roof.png b/public/textures/mcwroofs/oak_planks_lower_roof.png deleted file mode 100644 index 9797bdc7..00000000 Binary files a/public/textures/mcwroofs/oak_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_planks_roof.png b/public/textures/mcwroofs/oak_planks_roof.png deleted file mode 100644 index d09f5028..00000000 Binary files a/public/textures/mcwroofs/oak_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_planks_steep_roof.png b/public/textures/mcwroofs/oak_planks_steep_roof.png deleted file mode 100644 index 266ded75..00000000 Binary files a/public/textures/mcwroofs/oak_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_planks_top_roof.png b/public/textures/mcwroofs/oak_planks_top_roof.png deleted file mode 100644 index 9801fd1d..00000000 Binary files a/public/textures/mcwroofs/oak_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_planks_upper_lower_roof.png b/public/textures/mcwroofs/oak_planks_upper_lower_roof.png deleted file mode 100644 index 6f6126a1..00000000 Binary files a/public/textures/mcwroofs/oak_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_planks_upper_steep_roof.png b/public/textures/mcwroofs/oak_planks_upper_steep_roof.png deleted file mode 100644 index 2ed03771..00000000 Binary files a/public/textures/mcwroofs/oak_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_roof.png b/public/textures/mcwroofs/oak_roof.png deleted file mode 100644 index 647ebafc..00000000 Binary files a/public/textures/mcwroofs/oak_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_steep_roof.png b/public/textures/mcwroofs/oak_steep_roof.png deleted file mode 100644 index 34c2d3b7..00000000 Binary files a/public/textures/mcwroofs/oak_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_top_roof.png b/public/textures/mcwroofs/oak_top_roof.png deleted file mode 100644 index 071c3845..00000000 Binary files a/public/textures/mcwroofs/oak_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_upper_lower_roof.png b/public/textures/mcwroofs/oak_upper_lower_roof.png deleted file mode 100644 index 9accb9f3..00000000 Binary files a/public/textures/mcwroofs/oak_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/oak_upper_steep_roof.png b/public/textures/mcwroofs/oak_upper_steep_roof.png deleted file mode 100644 index 9fb7cdc8..00000000 Binary files a/public/textures/mcwroofs/oak_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_concrete_attic_roof.png b/public/textures/mcwroofs/orange_concrete_attic_roof.png deleted file mode 100644 index 532e97b1..00000000 Binary files a/public/textures/mcwroofs/orange_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_concrete_lower_roof.png b/public/textures/mcwroofs/orange_concrete_lower_roof.png deleted file mode 100644 index 51e03a12..00000000 Binary files a/public/textures/mcwroofs/orange_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_concrete_roof.png b/public/textures/mcwroofs/orange_concrete_roof.png deleted file mode 100644 index 4142fce7..00000000 Binary files a/public/textures/mcwroofs/orange_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_concrete_steep_roof.png b/public/textures/mcwroofs/orange_concrete_steep_roof.png deleted file mode 100644 index 4c88bc66..00000000 Binary files a/public/textures/mcwroofs/orange_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_concrete_top_roof.png b/public/textures/mcwroofs/orange_concrete_top_roof.png deleted file mode 100644 index 3a450e2b..00000000 Binary files a/public/textures/mcwroofs/orange_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_concrete_upper_lower_roof.png b/public/textures/mcwroofs/orange_concrete_upper_lower_roof.png deleted file mode 100644 index f7109209..00000000 Binary files a/public/textures/mcwroofs/orange_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_concrete_upper_steep_roof.png b/public/textures/mcwroofs/orange_concrete_upper_steep_roof.png deleted file mode 100644 index fca35da2..00000000 Binary files a/public/textures/mcwroofs/orange_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_striped_awning.png b/public/textures/mcwroofs/orange_striped_awning.png deleted file mode 100644 index d6615370..00000000 Binary files a/public/textures/mcwroofs/orange_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_terracotta_attic_roof.png b/public/textures/mcwroofs/orange_terracotta_attic_roof.png deleted file mode 100644 index be09c724..00000000 Binary files a/public/textures/mcwroofs/orange_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_terracotta_lower_roof.png b/public/textures/mcwroofs/orange_terracotta_lower_roof.png deleted file mode 100644 index 08016bb3..00000000 Binary files a/public/textures/mcwroofs/orange_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_terracotta_roof.png b/public/textures/mcwroofs/orange_terracotta_roof.png deleted file mode 100644 index 9c1ff764..00000000 Binary files a/public/textures/mcwroofs/orange_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_terracotta_steep_roof.png b/public/textures/mcwroofs/orange_terracotta_steep_roof.png deleted file mode 100644 index a487cdb4..00000000 Binary files a/public/textures/mcwroofs/orange_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_terracotta_top_roof.png b/public/textures/mcwroofs/orange_terracotta_top_roof.png deleted file mode 100644 index a968eaf9..00000000 Binary files a/public/textures/mcwroofs/orange_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/orange_terracotta_upper_lower_roof.png deleted file mode 100644 index 71138213..00000000 Binary files a/public/textures/mcwroofs/orange_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/orange_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/orange_terracotta_upper_steep_roof.png deleted file mode 100644 index ea1f7376..00000000 Binary files a/public/textures/mcwroofs/orange_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_concrete_attic_roof.png b/public/textures/mcwroofs/pink_concrete_attic_roof.png deleted file mode 100644 index f284a4da..00000000 Binary files a/public/textures/mcwroofs/pink_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_concrete_lower_roof.png b/public/textures/mcwroofs/pink_concrete_lower_roof.png deleted file mode 100644 index 444fdc3e..00000000 Binary files a/public/textures/mcwroofs/pink_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_concrete_roof.png b/public/textures/mcwroofs/pink_concrete_roof.png deleted file mode 100644 index 08b1b89b..00000000 Binary files a/public/textures/mcwroofs/pink_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_concrete_steep_roof.png b/public/textures/mcwroofs/pink_concrete_steep_roof.png deleted file mode 100644 index 8771218c..00000000 Binary files a/public/textures/mcwroofs/pink_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_concrete_top_roof.png b/public/textures/mcwroofs/pink_concrete_top_roof.png deleted file mode 100644 index bffc1ef0..00000000 Binary files a/public/textures/mcwroofs/pink_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_concrete_upper_lower_roof.png b/public/textures/mcwroofs/pink_concrete_upper_lower_roof.png deleted file mode 100644 index 2814ce45..00000000 Binary files a/public/textures/mcwroofs/pink_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_concrete_upper_steep_roof.png b/public/textures/mcwroofs/pink_concrete_upper_steep_roof.png deleted file mode 100644 index ddc39348..00000000 Binary files a/public/textures/mcwroofs/pink_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_striped_awning.png b/public/textures/mcwroofs/pink_striped_awning.png deleted file mode 100644 index 2674acf2..00000000 Binary files a/public/textures/mcwroofs/pink_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_terracotta_attic_roof.png b/public/textures/mcwroofs/pink_terracotta_attic_roof.png deleted file mode 100644 index 8d044aa9..00000000 Binary files a/public/textures/mcwroofs/pink_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_terracotta_lower_roof.png b/public/textures/mcwroofs/pink_terracotta_lower_roof.png deleted file mode 100644 index 8770dd8c..00000000 Binary files a/public/textures/mcwroofs/pink_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_terracotta_roof.png b/public/textures/mcwroofs/pink_terracotta_roof.png deleted file mode 100644 index 56167313..00000000 Binary files a/public/textures/mcwroofs/pink_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_terracotta_steep_roof.png b/public/textures/mcwroofs/pink_terracotta_steep_roof.png deleted file mode 100644 index 40d3c7c2..00000000 Binary files a/public/textures/mcwroofs/pink_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_terracotta_top_roof.png b/public/textures/mcwroofs/pink_terracotta_top_roof.png deleted file mode 100644 index a0e9c2e5..00000000 Binary files a/public/textures/mcwroofs/pink_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/pink_terracotta_upper_lower_roof.png deleted file mode 100644 index 02fc0d47..00000000 Binary files a/public/textures/mcwroofs/pink_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/pink_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/pink_terracotta_upper_steep_roof.png deleted file mode 100644 index afbd41c0..00000000 Binary files a/public/textures/mcwroofs/pink_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/prismarine_brick_attic_roof.png b/public/textures/mcwroofs/prismarine_brick_attic_roof.png deleted file mode 100644 index 5a5db569..00000000 Binary files a/public/textures/mcwroofs/prismarine_brick_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/prismarine_brick_lower_roof.png b/public/textures/mcwroofs/prismarine_brick_lower_roof.png deleted file mode 100644 index c73e49d6..00000000 Binary files a/public/textures/mcwroofs/prismarine_brick_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/prismarine_brick_roof.png b/public/textures/mcwroofs/prismarine_brick_roof.png deleted file mode 100644 index e88ef304..00000000 Binary files a/public/textures/mcwroofs/prismarine_brick_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/prismarine_brick_steep_roof.png b/public/textures/mcwroofs/prismarine_brick_steep_roof.png deleted file mode 100644 index 4b0a77a5..00000000 Binary files a/public/textures/mcwroofs/prismarine_brick_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/prismarine_brick_top_roof.png b/public/textures/mcwroofs/prismarine_brick_top_roof.png deleted file mode 100644 index 3b8566f7..00000000 Binary files a/public/textures/mcwroofs/prismarine_brick_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/prismarine_brick_upper_lower_roof.png b/public/textures/mcwroofs/prismarine_brick_upper_lower_roof.png deleted file mode 100644 index 9a75aaac..00000000 Binary files a/public/textures/mcwroofs/prismarine_brick_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/prismarine_brick_upper_steep_roof.png b/public/textures/mcwroofs/prismarine_brick_upper_steep_roof.png deleted file mode 100644 index 8b50e4ff..00000000 Binary files a/public/textures/mcwroofs/prismarine_brick_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_concrete_attic_roof.png b/public/textures/mcwroofs/purple_concrete_attic_roof.png deleted file mode 100644 index 4aa74c5a..00000000 Binary files a/public/textures/mcwroofs/purple_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_concrete_lower_roof.png b/public/textures/mcwroofs/purple_concrete_lower_roof.png deleted file mode 100644 index b925ab64..00000000 Binary files a/public/textures/mcwroofs/purple_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_concrete_roof.png b/public/textures/mcwroofs/purple_concrete_roof.png deleted file mode 100644 index 14132a85..00000000 Binary files a/public/textures/mcwroofs/purple_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_concrete_steep_roof.png b/public/textures/mcwroofs/purple_concrete_steep_roof.png deleted file mode 100644 index 868caa67..00000000 Binary files a/public/textures/mcwroofs/purple_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_concrete_top_roof.png b/public/textures/mcwroofs/purple_concrete_top_roof.png deleted file mode 100644 index 0035facd..00000000 Binary files a/public/textures/mcwroofs/purple_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_concrete_upper_lower_roof.png b/public/textures/mcwroofs/purple_concrete_upper_lower_roof.png deleted file mode 100644 index cbb84fa6..00000000 Binary files a/public/textures/mcwroofs/purple_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_concrete_upper_steep_roof.png b/public/textures/mcwroofs/purple_concrete_upper_steep_roof.png deleted file mode 100644 index 70683c0d..00000000 Binary files a/public/textures/mcwroofs/purple_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_striped_awning.png b/public/textures/mcwroofs/purple_striped_awning.png deleted file mode 100644 index d97949b5..00000000 Binary files a/public/textures/mcwroofs/purple_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_terracotta_attic_roof.png b/public/textures/mcwroofs/purple_terracotta_attic_roof.png deleted file mode 100644 index 2fc746d9..00000000 Binary files a/public/textures/mcwroofs/purple_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_terracotta_lower_roof.png b/public/textures/mcwroofs/purple_terracotta_lower_roof.png deleted file mode 100644 index c9bd57c8..00000000 Binary files a/public/textures/mcwroofs/purple_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_terracotta_roof.png b/public/textures/mcwroofs/purple_terracotta_roof.png deleted file mode 100644 index 806b99cf..00000000 Binary files a/public/textures/mcwroofs/purple_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_terracotta_steep_roof.png b/public/textures/mcwroofs/purple_terracotta_steep_roof.png deleted file mode 100644 index 79fce8de..00000000 Binary files a/public/textures/mcwroofs/purple_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_terracotta_top_roof.png b/public/textures/mcwroofs/purple_terracotta_top_roof.png deleted file mode 100644 index 54b04b1a..00000000 Binary files a/public/textures/mcwroofs/purple_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/purple_terracotta_upper_lower_roof.png deleted file mode 100644 index 74c0dc5b..00000000 Binary files a/public/textures/mcwroofs/purple_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/purple_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/purple_terracotta_upper_steep_roof.png deleted file mode 100644 index d2a2365f..00000000 Binary files a/public/textures/mcwroofs/purple_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/rain_gutter.png b/public/textures/mcwroofs/rain_gutter.png deleted file mode 100644 index 09215067..00000000 Binary files a/public/textures/mcwroofs/rain_gutter.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_concrete_attic_roof.png b/public/textures/mcwroofs/red_concrete_attic_roof.png deleted file mode 100644 index 0c6e7c61..00000000 Binary files a/public/textures/mcwroofs/red_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_concrete_lower_roof.png b/public/textures/mcwroofs/red_concrete_lower_roof.png deleted file mode 100644 index 2013e5cb..00000000 Binary files a/public/textures/mcwroofs/red_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_concrete_roof.png b/public/textures/mcwroofs/red_concrete_roof.png deleted file mode 100644 index 18560252..00000000 Binary files a/public/textures/mcwroofs/red_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_concrete_steep_roof.png b/public/textures/mcwroofs/red_concrete_steep_roof.png deleted file mode 100644 index 31a08caf..00000000 Binary files a/public/textures/mcwroofs/red_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_concrete_top_roof.png b/public/textures/mcwroofs/red_concrete_top_roof.png deleted file mode 100644 index 252600d0..00000000 Binary files a/public/textures/mcwroofs/red_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_concrete_upper_lower_roof.png b/public/textures/mcwroofs/red_concrete_upper_lower_roof.png deleted file mode 100644 index 3e9bb7e3..00000000 Binary files a/public/textures/mcwroofs/red_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_concrete_upper_steep_roof.png b/public/textures/mcwroofs/red_concrete_upper_steep_roof.png deleted file mode 100644 index 2c728f5b..00000000 Binary files a/public/textures/mcwroofs/red_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_nether_bricks_attic_roof.png b/public/textures/mcwroofs/red_nether_bricks_attic_roof.png deleted file mode 100644 index 21cdf06b..00000000 Binary files a/public/textures/mcwroofs/red_nether_bricks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_nether_bricks_lower_roof.png b/public/textures/mcwroofs/red_nether_bricks_lower_roof.png deleted file mode 100644 index 15713c62..00000000 Binary files a/public/textures/mcwroofs/red_nether_bricks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_nether_bricks_roof.png b/public/textures/mcwroofs/red_nether_bricks_roof.png deleted file mode 100644 index dd48732f..00000000 Binary files a/public/textures/mcwroofs/red_nether_bricks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_nether_bricks_steep_roof.png b/public/textures/mcwroofs/red_nether_bricks_steep_roof.png deleted file mode 100644 index 824d0b94..00000000 Binary files a/public/textures/mcwroofs/red_nether_bricks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_nether_bricks_top_roof.png b/public/textures/mcwroofs/red_nether_bricks_top_roof.png deleted file mode 100644 index c410a5aa..00000000 Binary files a/public/textures/mcwroofs/red_nether_bricks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_nether_bricks_upper_lower_roof.png b/public/textures/mcwroofs/red_nether_bricks_upper_lower_roof.png deleted file mode 100644 index 170e50b1..00000000 Binary files a/public/textures/mcwroofs/red_nether_bricks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_nether_bricks_upper_steep_roof.png b/public/textures/mcwroofs/red_nether_bricks_upper_steep_roof.png deleted file mode 100644 index 2fd97f6f..00000000 Binary files a/public/textures/mcwroofs/red_nether_bricks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_sandstone_attic_roof.png b/public/textures/mcwroofs/red_sandstone_attic_roof.png deleted file mode 100644 index 23221c36..00000000 Binary files a/public/textures/mcwroofs/red_sandstone_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_sandstone_lower_roof.png b/public/textures/mcwroofs/red_sandstone_lower_roof.png deleted file mode 100644 index fe1b07c6..00000000 Binary files a/public/textures/mcwroofs/red_sandstone_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_sandstone_roof.png b/public/textures/mcwroofs/red_sandstone_roof.png deleted file mode 100644 index dcea66c3..00000000 Binary files a/public/textures/mcwroofs/red_sandstone_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_sandstone_steep_roof.png b/public/textures/mcwroofs/red_sandstone_steep_roof.png deleted file mode 100644 index 88288231..00000000 Binary files a/public/textures/mcwroofs/red_sandstone_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_sandstone_top_roof.png b/public/textures/mcwroofs/red_sandstone_top_roof.png deleted file mode 100644 index d2e1deee..00000000 Binary files a/public/textures/mcwroofs/red_sandstone_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_sandstone_upper_lower_roof.png b/public/textures/mcwroofs/red_sandstone_upper_lower_roof.png deleted file mode 100644 index 0b44b155..00000000 Binary files a/public/textures/mcwroofs/red_sandstone_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_sandstone_upper_steep_roof.png b/public/textures/mcwroofs/red_sandstone_upper_steep_roof.png deleted file mode 100644 index 8349d283..00000000 Binary files a/public/textures/mcwroofs/red_sandstone_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_striped_awning.png b/public/textures/mcwroofs/red_striped_awning.png deleted file mode 100644 index 7a3a1e6d..00000000 Binary files a/public/textures/mcwroofs/red_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_terracotta_attic_roof.png b/public/textures/mcwroofs/red_terracotta_attic_roof.png deleted file mode 100644 index ddfe811b..00000000 Binary files a/public/textures/mcwroofs/red_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_terracotta_lower_roof.png b/public/textures/mcwroofs/red_terracotta_lower_roof.png deleted file mode 100644 index 3f4efcfb..00000000 Binary files a/public/textures/mcwroofs/red_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_terracotta_roof.png b/public/textures/mcwroofs/red_terracotta_roof.png deleted file mode 100644 index d186e424..00000000 Binary files a/public/textures/mcwroofs/red_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_terracotta_steep_roof.png b/public/textures/mcwroofs/red_terracotta_steep_roof.png deleted file mode 100644 index 6946c9e4..00000000 Binary files a/public/textures/mcwroofs/red_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_terracotta_top_roof.png b/public/textures/mcwroofs/red_terracotta_top_roof.png deleted file mode 100644 index 151cddfe..00000000 Binary files a/public/textures/mcwroofs/red_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/red_terracotta_upper_lower_roof.png deleted file mode 100644 index 128e7780..00000000 Binary files a/public/textures/mcwroofs/red_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/red_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/red_terracotta_upper_steep_roof.png deleted file mode 100644 index 942e6a00..00000000 Binary files a/public/textures/mcwroofs/red_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/roofing_hammer.png b/public/textures/mcwroofs/roofing_hammer.png deleted file mode 100644 index ee387432..00000000 Binary files a/public/textures/mcwroofs/roofing_hammer.png and /dev/null differ diff --git a/public/textures/mcwroofs/sandstone_attic_roof.png b/public/textures/mcwroofs/sandstone_attic_roof.png deleted file mode 100644 index 12f0a53b..00000000 Binary files a/public/textures/mcwroofs/sandstone_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/sandstone_lower_roof.png b/public/textures/mcwroofs/sandstone_lower_roof.png deleted file mode 100644 index bf9f79f8..00000000 Binary files a/public/textures/mcwroofs/sandstone_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/sandstone_roof.png b/public/textures/mcwroofs/sandstone_roof.png deleted file mode 100644 index 22974652..00000000 Binary files a/public/textures/mcwroofs/sandstone_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/sandstone_steep_roof.png b/public/textures/mcwroofs/sandstone_steep_roof.png deleted file mode 100644 index 9bcd9c5b..00000000 Binary files a/public/textures/mcwroofs/sandstone_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/sandstone_top_roof.png b/public/textures/mcwroofs/sandstone_top_roof.png deleted file mode 100644 index f66559a2..00000000 Binary files a/public/textures/mcwroofs/sandstone_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/sandstone_upper_lower_roof.png b/public/textures/mcwroofs/sandstone_upper_lower_roof.png deleted file mode 100644 index 8ae1b03f..00000000 Binary files a/public/textures/mcwroofs/sandstone_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/sandstone_upper_steep_roof.png b/public/textures/mcwroofs/sandstone_upper_steep_roof.png deleted file mode 100644 index a3e0fbb5..00000000 Binary files a/public/textures/mcwroofs/sandstone_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_attic_roof.png b/public/textures/mcwroofs/spruce_attic_roof.png deleted file mode 100644 index 239ad3fd..00000000 Binary files a/public/textures/mcwroofs/spruce_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_lower_roof.png b/public/textures/mcwroofs/spruce_lower_roof.png deleted file mode 100644 index 629ee514..00000000 Binary files a/public/textures/mcwroofs/spruce_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_planks_attic_roof.png b/public/textures/mcwroofs/spruce_planks_attic_roof.png deleted file mode 100644 index 67441c19..00000000 Binary files a/public/textures/mcwroofs/spruce_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_planks_lower_roof.png b/public/textures/mcwroofs/spruce_planks_lower_roof.png deleted file mode 100644 index 8ca22d55..00000000 Binary files a/public/textures/mcwroofs/spruce_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_planks_roof.png b/public/textures/mcwroofs/spruce_planks_roof.png deleted file mode 100644 index 1d2ae7a2..00000000 Binary files a/public/textures/mcwroofs/spruce_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_planks_steep_roof.png b/public/textures/mcwroofs/spruce_planks_steep_roof.png deleted file mode 100644 index 447fba51..00000000 Binary files a/public/textures/mcwroofs/spruce_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_planks_top_roof.png b/public/textures/mcwroofs/spruce_planks_top_roof.png deleted file mode 100644 index 5e555519..00000000 Binary files a/public/textures/mcwroofs/spruce_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_planks_upper_lower_roof.png b/public/textures/mcwroofs/spruce_planks_upper_lower_roof.png deleted file mode 100644 index b548217c..00000000 Binary files a/public/textures/mcwroofs/spruce_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_planks_upper_steep_roof.png b/public/textures/mcwroofs/spruce_planks_upper_steep_roof.png deleted file mode 100644 index c07467f0..00000000 Binary files a/public/textures/mcwroofs/spruce_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_roof.png b/public/textures/mcwroofs/spruce_roof.png deleted file mode 100644 index c6010cc8..00000000 Binary files a/public/textures/mcwroofs/spruce_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_steep_roof.png b/public/textures/mcwroofs/spruce_steep_roof.png deleted file mode 100644 index c5117649..00000000 Binary files a/public/textures/mcwroofs/spruce_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_top_roof.png b/public/textures/mcwroofs/spruce_top_roof.png deleted file mode 100644 index da074e23..00000000 Binary files a/public/textures/mcwroofs/spruce_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_upper_lower_roof.png b/public/textures/mcwroofs/spruce_upper_lower_roof.png deleted file mode 100644 index 01dd3cb3..00000000 Binary files a/public/textures/mcwroofs/spruce_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/spruce_upper_steep_roof.png b/public/textures/mcwroofs/spruce_upper_steep_roof.png deleted file mode 100644 index 1b566a23..00000000 Binary files a/public/textures/mcwroofs/spruce_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_attic_roof.png b/public/textures/mcwroofs/stone_attic_roof.png deleted file mode 100644 index e7c3f7d4..00000000 Binary files a/public/textures/mcwroofs/stone_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_bricks_attic_roof.png b/public/textures/mcwroofs/stone_bricks_attic_roof.png deleted file mode 100644 index 8cdf7019..00000000 Binary files a/public/textures/mcwroofs/stone_bricks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_bricks_lower_roof.png b/public/textures/mcwroofs/stone_bricks_lower_roof.png deleted file mode 100644 index 2aa349b7..00000000 Binary files a/public/textures/mcwroofs/stone_bricks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_bricks_roof.png b/public/textures/mcwroofs/stone_bricks_roof.png deleted file mode 100644 index 501dd41d..00000000 Binary files a/public/textures/mcwroofs/stone_bricks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_bricks_steep_roof.png b/public/textures/mcwroofs/stone_bricks_steep_roof.png deleted file mode 100644 index b8d9f1dc..00000000 Binary files a/public/textures/mcwroofs/stone_bricks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_bricks_top_roof.png b/public/textures/mcwroofs/stone_bricks_top_roof.png deleted file mode 100644 index 54b30119..00000000 Binary files a/public/textures/mcwroofs/stone_bricks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_bricks_upper_lower_roof.png b/public/textures/mcwroofs/stone_bricks_upper_lower_roof.png deleted file mode 100644 index c9c66a22..00000000 Binary files a/public/textures/mcwroofs/stone_bricks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_bricks_upper_steep_roof.png b/public/textures/mcwroofs/stone_bricks_upper_steep_roof.png deleted file mode 100644 index 7e1e48a3..00000000 Binary files a/public/textures/mcwroofs/stone_bricks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_lower_roof.png b/public/textures/mcwroofs/stone_lower_roof.png deleted file mode 100644 index 0d0154aa..00000000 Binary files a/public/textures/mcwroofs/stone_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_roof.png b/public/textures/mcwroofs/stone_roof.png deleted file mode 100644 index c35e2131..00000000 Binary files a/public/textures/mcwroofs/stone_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_steep_roof.png b/public/textures/mcwroofs/stone_steep_roof.png deleted file mode 100644 index 106e5ff6..00000000 Binary files a/public/textures/mcwroofs/stone_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_top_roof.png b/public/textures/mcwroofs/stone_top_roof.png deleted file mode 100644 index e55d42ae..00000000 Binary files a/public/textures/mcwroofs/stone_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_upper_lower_roof.png b/public/textures/mcwroofs/stone_upper_lower_roof.png deleted file mode 100644 index d61a4343..00000000 Binary files a/public/textures/mcwroofs/stone_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/stone_upper_steep_roof.png b/public/textures/mcwroofs/stone_upper_steep_roof.png deleted file mode 100644 index 65997b18..00000000 Binary files a/public/textures/mcwroofs/stone_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/thatch_attic_roof.png b/public/textures/mcwroofs/thatch_attic_roof.png deleted file mode 100644 index 394cc3d4..00000000 Binary files a/public/textures/mcwroofs/thatch_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/thatch_lower_roof.png b/public/textures/mcwroofs/thatch_lower_roof.png deleted file mode 100644 index 92d5605b..00000000 Binary files a/public/textures/mcwroofs/thatch_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/thatch_roof.png b/public/textures/mcwroofs/thatch_roof.png deleted file mode 100644 index 0a85eb90..00000000 Binary files a/public/textures/mcwroofs/thatch_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/thatch_steep_roof.png b/public/textures/mcwroofs/thatch_steep_roof.png deleted file mode 100644 index c9529ef8..00000000 Binary files a/public/textures/mcwroofs/thatch_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/thatch_top_roof.png b/public/textures/mcwroofs/thatch_top_roof.png deleted file mode 100644 index 559fec46..00000000 Binary files a/public/textures/mcwroofs/thatch_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/thatch_upper_lower_roof.png b/public/textures/mcwroofs/thatch_upper_lower_roof.png deleted file mode 100644 index 88f6740c..00000000 Binary files a/public/textures/mcwroofs/thatch_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/thatch_upper_steep_roof.png b/public/textures/mcwroofs/thatch_upper_steep_roof.png deleted file mode 100644 index e6de8c30..00000000 Binary files a/public/textures/mcwroofs/thatch_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_attic_roof.png b/public/textures/mcwroofs/warped_attic_roof.png deleted file mode 100644 index 5d1a5e86..00000000 Binary files a/public/textures/mcwroofs/warped_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_lower_roof.png b/public/textures/mcwroofs/warped_lower_roof.png deleted file mode 100644 index 48b8ab80..00000000 Binary files a/public/textures/mcwroofs/warped_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_planks_attic_roof.png b/public/textures/mcwroofs/warped_planks_attic_roof.png deleted file mode 100644 index d9f5244c..00000000 Binary files a/public/textures/mcwroofs/warped_planks_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_planks_lower_roof.png b/public/textures/mcwroofs/warped_planks_lower_roof.png deleted file mode 100644 index 4dea3277..00000000 Binary files a/public/textures/mcwroofs/warped_planks_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_planks_roof.png b/public/textures/mcwroofs/warped_planks_roof.png deleted file mode 100644 index fc2c79e9..00000000 Binary files a/public/textures/mcwroofs/warped_planks_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_planks_steep_roof.png b/public/textures/mcwroofs/warped_planks_steep_roof.png deleted file mode 100644 index 34bbeb48..00000000 Binary files a/public/textures/mcwroofs/warped_planks_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_planks_top_roof.png b/public/textures/mcwroofs/warped_planks_top_roof.png deleted file mode 100644 index 1f3ddf2d..00000000 Binary files a/public/textures/mcwroofs/warped_planks_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_planks_upper_lower_roof.png b/public/textures/mcwroofs/warped_planks_upper_lower_roof.png deleted file mode 100644 index 989dbc3a..00000000 Binary files a/public/textures/mcwroofs/warped_planks_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_planks_upper_steep_roof.png b/public/textures/mcwroofs/warped_planks_upper_steep_roof.png deleted file mode 100644 index 9e832c38..00000000 Binary files a/public/textures/mcwroofs/warped_planks_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_roof.png b/public/textures/mcwroofs/warped_roof.png deleted file mode 100644 index f07c7abe..00000000 Binary files a/public/textures/mcwroofs/warped_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_steep_roof.png b/public/textures/mcwroofs/warped_steep_roof.png deleted file mode 100644 index ad9166c7..00000000 Binary files a/public/textures/mcwroofs/warped_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_top_roof.png b/public/textures/mcwroofs/warped_top_roof.png deleted file mode 100644 index 00c59d7e..00000000 Binary files a/public/textures/mcwroofs/warped_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_upper_lower_roof.png b/public/textures/mcwroofs/warped_upper_lower_roof.png deleted file mode 100644 index 36b17598..00000000 Binary files a/public/textures/mcwroofs/warped_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/warped_upper_steep_roof.png b/public/textures/mcwroofs/warped_upper_steep_roof.png deleted file mode 100644 index 468f61c5..00000000 Binary files a/public/textures/mcwroofs/warped_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_attic_roof.png b/public/textures/mcwroofs/white_attic_roof.png deleted file mode 100644 index 1a33e16b..00000000 Binary files a/public/textures/mcwroofs/white_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_concrete_attic_roof.png b/public/textures/mcwroofs/white_concrete_attic_roof.png deleted file mode 100644 index 298181c8..00000000 Binary files a/public/textures/mcwroofs/white_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_concrete_lower_roof.png b/public/textures/mcwroofs/white_concrete_lower_roof.png deleted file mode 100644 index 3a085a15..00000000 Binary files a/public/textures/mcwroofs/white_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_concrete_roof.png b/public/textures/mcwroofs/white_concrete_roof.png deleted file mode 100644 index 6679fed7..00000000 Binary files a/public/textures/mcwroofs/white_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_concrete_steep_roof.png b/public/textures/mcwroofs/white_concrete_steep_roof.png deleted file mode 100644 index 9321aaae..00000000 Binary files a/public/textures/mcwroofs/white_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_concrete_top_roof.png b/public/textures/mcwroofs/white_concrete_top_roof.png deleted file mode 100644 index 9ebb83fc..00000000 Binary files a/public/textures/mcwroofs/white_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_concrete_upper_lower_roof.png b/public/textures/mcwroofs/white_concrete_upper_lower_roof.png deleted file mode 100644 index 91488f8f..00000000 Binary files a/public/textures/mcwroofs/white_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_concrete_upper_steep_roof.png b/public/textures/mcwroofs/white_concrete_upper_steep_roof.png deleted file mode 100644 index 86b50405..00000000 Binary files a/public/textures/mcwroofs/white_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_lower_roof.png b/public/textures/mcwroofs/white_lower_roof.png deleted file mode 100644 index 3dc25f43..00000000 Binary files a/public/textures/mcwroofs/white_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_roof.png b/public/textures/mcwroofs/white_roof.png deleted file mode 100644 index 10811538..00000000 Binary files a/public/textures/mcwroofs/white_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_roof_block.png b/public/textures/mcwroofs/white_roof_block.png deleted file mode 100644 index bfe17a1f..00000000 Binary files a/public/textures/mcwroofs/white_roof_block.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_roof_slab.png b/public/textures/mcwroofs/white_roof_slab.png deleted file mode 100644 index 58e54abc..00000000 Binary files a/public/textures/mcwroofs/white_roof_slab.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_steep_roof.png b/public/textures/mcwroofs/white_steep_roof.png deleted file mode 100644 index 99285a40..00000000 Binary files a/public/textures/mcwroofs/white_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_terracotta_attic_roof.png b/public/textures/mcwroofs/white_terracotta_attic_roof.png deleted file mode 100644 index 1d85b53a..00000000 Binary files a/public/textures/mcwroofs/white_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_terracotta_lower_roof.png b/public/textures/mcwroofs/white_terracotta_lower_roof.png deleted file mode 100644 index eb0638f5..00000000 Binary files a/public/textures/mcwroofs/white_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_terracotta_roof.png b/public/textures/mcwroofs/white_terracotta_roof.png deleted file mode 100644 index f1c378e9..00000000 Binary files a/public/textures/mcwroofs/white_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_terracotta_steep_roof.png b/public/textures/mcwroofs/white_terracotta_steep_roof.png deleted file mode 100644 index efbb2511..00000000 Binary files a/public/textures/mcwroofs/white_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_terracotta_top_roof.png b/public/textures/mcwroofs/white_terracotta_top_roof.png deleted file mode 100644 index 80f5461b..00000000 Binary files a/public/textures/mcwroofs/white_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/white_terracotta_upper_lower_roof.png deleted file mode 100644 index 330fb6a9..00000000 Binary files a/public/textures/mcwroofs/white_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/white_terracotta_upper_steep_roof.png deleted file mode 100644 index 24acbb03..00000000 Binary files a/public/textures/mcwroofs/white_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_top_roof.png b/public/textures/mcwroofs/white_top_roof.png deleted file mode 100644 index 4fe6c1ea..00000000 Binary files a/public/textures/mcwroofs/white_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_upper_lower_roof.png b/public/textures/mcwroofs/white_upper_lower_roof.png deleted file mode 100644 index 1747a988..00000000 Binary files a/public/textures/mcwroofs/white_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/white_upper_steep_roof.png b/public/textures/mcwroofs/white_upper_steep_roof.png deleted file mode 100644 index c7b3d224..00000000 Binary files a/public/textures/mcwroofs/white_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_concrete_attic_roof.png b/public/textures/mcwroofs/yellow_concrete_attic_roof.png deleted file mode 100644 index d61ee968..00000000 Binary files a/public/textures/mcwroofs/yellow_concrete_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_concrete_lower_roof.png b/public/textures/mcwroofs/yellow_concrete_lower_roof.png deleted file mode 100644 index 3223c6ea..00000000 Binary files a/public/textures/mcwroofs/yellow_concrete_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_concrete_roof.png b/public/textures/mcwroofs/yellow_concrete_roof.png deleted file mode 100644 index a64d8442..00000000 Binary files a/public/textures/mcwroofs/yellow_concrete_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_concrete_steep_roof.png b/public/textures/mcwroofs/yellow_concrete_steep_roof.png deleted file mode 100644 index 8ccdb013..00000000 Binary files a/public/textures/mcwroofs/yellow_concrete_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_concrete_top_roof.png b/public/textures/mcwroofs/yellow_concrete_top_roof.png deleted file mode 100644 index aec5520a..00000000 Binary files a/public/textures/mcwroofs/yellow_concrete_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_concrete_upper_lower_roof.png b/public/textures/mcwroofs/yellow_concrete_upper_lower_roof.png deleted file mode 100644 index d179588a..00000000 Binary files a/public/textures/mcwroofs/yellow_concrete_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_concrete_upper_steep_roof.png b/public/textures/mcwroofs/yellow_concrete_upper_steep_roof.png deleted file mode 100644 index fbaf159e..00000000 Binary files a/public/textures/mcwroofs/yellow_concrete_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_striped_awning.png b/public/textures/mcwroofs/yellow_striped_awning.png deleted file mode 100644 index ff925512..00000000 Binary files a/public/textures/mcwroofs/yellow_striped_awning.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_terracotta_attic_roof.png b/public/textures/mcwroofs/yellow_terracotta_attic_roof.png deleted file mode 100644 index 2639c389..00000000 Binary files a/public/textures/mcwroofs/yellow_terracotta_attic_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_terracotta_lower_roof.png b/public/textures/mcwroofs/yellow_terracotta_lower_roof.png deleted file mode 100644 index 877963f8..00000000 Binary files a/public/textures/mcwroofs/yellow_terracotta_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_terracotta_roof.png b/public/textures/mcwroofs/yellow_terracotta_roof.png deleted file mode 100644 index f42d7a36..00000000 Binary files a/public/textures/mcwroofs/yellow_terracotta_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_terracotta_steep_roof.png b/public/textures/mcwroofs/yellow_terracotta_steep_roof.png deleted file mode 100644 index 478294d3..00000000 Binary files a/public/textures/mcwroofs/yellow_terracotta_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_terracotta_top_roof.png b/public/textures/mcwroofs/yellow_terracotta_top_roof.png deleted file mode 100644 index f2e7a7bb..00000000 Binary files a/public/textures/mcwroofs/yellow_terracotta_top_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_terracotta_upper_lower_roof.png b/public/textures/mcwroofs/yellow_terracotta_upper_lower_roof.png deleted file mode 100644 index 421fbb05..00000000 Binary files a/public/textures/mcwroofs/yellow_terracotta_upper_lower_roof.png and /dev/null differ diff --git a/public/textures/mcwroofs/yellow_terracotta_upper_steep_roof.png b/public/textures/mcwroofs/yellow_terracotta_upper_steep_roof.png deleted file mode 100644 index a7836583..00000000 Binary files a/public/textures/mcwroofs/yellow_terracotta_upper_steep_roof.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_bamboo_trapdoor.png b/public/textures/mcwtrpdoors/acacia_bamboo_trapdoor.png deleted file mode 100644 index fb11d7ef..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_bark_trapdoor.png b/public/textures/mcwtrpdoors/acacia_bark_trapdoor.png deleted file mode 100644 index 93af5d8e..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_barn_trapdoor.png b/public/textures/mcwtrpdoors/acacia_barn_trapdoor.png deleted file mode 100644 index 0db32f44..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_barred_trapdoor.png b/public/textures/mcwtrpdoors/acacia_barred_trapdoor.png deleted file mode 100644 index 1c217523..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_barrel_trapdoor.png b/public/textures/mcwtrpdoors/acacia_barrel_trapdoor.png deleted file mode 100644 index 2132bfb0..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_beach_trapdoor.png b/public/textures/mcwtrpdoors/acacia_beach_trapdoor.png deleted file mode 100644 index 2737b286..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_blossom_trapdoor.png b/public/textures/mcwtrpdoors/acacia_blossom_trapdoor.png deleted file mode 100644 index f6f34797..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_classic_trapdoor.png b/public/textures/mcwtrpdoors/acacia_classic_trapdoor.png deleted file mode 100644 index 83eaeac7..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_cottage_trapdoor.png b/public/textures/mcwtrpdoors/acacia_cottage_trapdoor.png deleted file mode 100644 index 1a81233b..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_four_panel_trapdoor.png b/public/textures/mcwtrpdoors/acacia_four_panel_trapdoor.png deleted file mode 100644 index 17318197..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_glass_trapdoor.png b/public/textures/mcwtrpdoors/acacia_glass_trapdoor.png deleted file mode 100644 index 17ea2b33..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_mystic_trapdoor.png b/public/textures/mcwtrpdoors/acacia_mystic_trapdoor.png deleted file mode 100644 index 4b8a5811..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_paper_trapdoor.png b/public/textures/mcwtrpdoors/acacia_paper_trapdoor.png deleted file mode 100644 index 80435d0a..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_ranch_trapdoor.png b/public/textures/mcwtrpdoors/acacia_ranch_trapdoor.png deleted file mode 100644 index 88429d3d..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_swamp_trapdoor.png b/public/textures/mcwtrpdoors/acacia_swamp_trapdoor.png deleted file mode 100644 index d9918a41..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/acacia_whispering_trapdoor.png b/public/textures/mcwtrpdoors/acacia_whispering_trapdoor.png deleted file mode 100644 index 85543af7..00000000 Binary files a/public/textures/mcwtrpdoors/acacia_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_bark_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_bark_trapdoor.png deleted file mode 100644 index 8c8016ba..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_barn_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_barn_trapdoor.png deleted file mode 100644 index f242bb35..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_barred_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_barred_trapdoor.png deleted file mode 100644 index bda127be..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_barrel_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_barrel_trapdoor.png deleted file mode 100644 index 19859926..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_beach_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_beach_trapdoor.png deleted file mode 100644 index c9b93502..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_blossom_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_blossom_trapdoor.png deleted file mode 100644 index 8d880e25..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_classic_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_classic_trapdoor.png deleted file mode 100644 index 8965fc64..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_cottage_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_cottage_trapdoor.png deleted file mode 100644 index b0f28e86..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_four_panel_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_four_panel_trapdoor.png deleted file mode 100644 index 520ccac9..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_glass_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_glass_trapdoor.png deleted file mode 100644 index 60d0f4bf..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_mystic_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_mystic_trapdoor.png deleted file mode 100644 index ef3ffab1..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_paper_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_paper_trapdoor.png deleted file mode 100644 index b94b59b0..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_swamp_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_swamp_trapdoor.png deleted file mode 100644 index 944bf4ba..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_trapdoor.png deleted file mode 100644 index 3d5bc959..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_tropical_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_tropical_trapdoor.png deleted file mode 100644 index c538d87c..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/bamboo_whispering_trapdoor.png b/public/textures/mcwtrpdoors/bamboo_whispering_trapdoor.png deleted file mode 100644 index 71086a17..00000000 Binary files a/public/textures/mcwtrpdoors/bamboo_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_bamboo_trapdoor.png b/public/textures/mcwtrpdoors/birch_bamboo_trapdoor.png deleted file mode 100644 index 3765e43f..00000000 Binary files a/public/textures/mcwtrpdoors/birch_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_bark_trapdoor.png b/public/textures/mcwtrpdoors/birch_bark_trapdoor.png deleted file mode 100644 index cb0584bb..00000000 Binary files a/public/textures/mcwtrpdoors/birch_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_barn_trapdoor.png b/public/textures/mcwtrpdoors/birch_barn_trapdoor.png deleted file mode 100644 index 508e91a9..00000000 Binary files a/public/textures/mcwtrpdoors/birch_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_barred_trapdoor.png b/public/textures/mcwtrpdoors/birch_barred_trapdoor.png deleted file mode 100644 index 16b00125..00000000 Binary files a/public/textures/mcwtrpdoors/birch_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_barrel_trapdoor.png b/public/textures/mcwtrpdoors/birch_barrel_trapdoor.png deleted file mode 100644 index 3549023b..00000000 Binary files a/public/textures/mcwtrpdoors/birch_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_beach_trapdoor.png b/public/textures/mcwtrpdoors/birch_beach_trapdoor.png deleted file mode 100644 index 1b332233..00000000 Binary files a/public/textures/mcwtrpdoors/birch_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_blossom_trapdoor.png b/public/textures/mcwtrpdoors/birch_blossom_trapdoor.png deleted file mode 100644 index 7ab63be4..00000000 Binary files a/public/textures/mcwtrpdoors/birch_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_classic_trapdoor.png b/public/textures/mcwtrpdoors/birch_classic_trapdoor.png deleted file mode 100644 index e8617d77..00000000 Binary files a/public/textures/mcwtrpdoors/birch_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_cottage_trapdoor.png b/public/textures/mcwtrpdoors/birch_cottage_trapdoor.png deleted file mode 100644 index cf5af409..00000000 Binary files a/public/textures/mcwtrpdoors/birch_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_four_panel_trapdoor.png b/public/textures/mcwtrpdoors/birch_four_panel_trapdoor.png deleted file mode 100644 index 83f87e1b..00000000 Binary files a/public/textures/mcwtrpdoors/birch_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_glass_trapdoor.png b/public/textures/mcwtrpdoors/birch_glass_trapdoor.png deleted file mode 100644 index 5370a430..00000000 Binary files a/public/textures/mcwtrpdoors/birch_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_mystic_trapdoor.png b/public/textures/mcwtrpdoors/birch_mystic_trapdoor.png deleted file mode 100644 index 7beeee2e..00000000 Binary files a/public/textures/mcwtrpdoors/birch_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_ranch_trapdoor.png b/public/textures/mcwtrpdoors/birch_ranch_trapdoor.png deleted file mode 100644 index 55d9edb4..00000000 Binary files a/public/textures/mcwtrpdoors/birch_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_swamp_trapdoor.png b/public/textures/mcwtrpdoors/birch_swamp_trapdoor.png deleted file mode 100644 index 972892bc..00000000 Binary files a/public/textures/mcwtrpdoors/birch_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_tropical_trapdoor.png b/public/textures/mcwtrpdoors/birch_tropical_trapdoor.png deleted file mode 100644 index 530ac2a4..00000000 Binary files a/public/textures/mcwtrpdoors/birch_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/birch_whispering_trapdoor.png b/public/textures/mcwtrpdoors/birch_whispering_trapdoor.png deleted file mode 100644 index 53d62e1c..00000000 Binary files a/public/textures/mcwtrpdoors/birch_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_bamboo_trapdoor.png b/public/textures/mcwtrpdoors/cherry_bamboo_trapdoor.png deleted file mode 100644 index a0a8e883..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_bark_trapdoor.png b/public/textures/mcwtrpdoors/cherry_bark_trapdoor.png deleted file mode 100644 index fbfe236c..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_barn_trapdoor.png b/public/textures/mcwtrpdoors/cherry_barn_trapdoor.png deleted file mode 100644 index f9438d34..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_barred_trapdoor.png b/public/textures/mcwtrpdoors/cherry_barred_trapdoor.png deleted file mode 100644 index 6232a7cf..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_barrel_trapdoor.png b/public/textures/mcwtrpdoors/cherry_barrel_trapdoor.png deleted file mode 100644 index dafb6a5b..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_beach_trapdoor.png b/public/textures/mcwtrpdoors/cherry_beach_trapdoor.png deleted file mode 100644 index 9c9ecdaf..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_classic_trapdoor.png b/public/textures/mcwtrpdoors/cherry_classic_trapdoor.png deleted file mode 100644 index 253d1198..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_cottage_trapdoor.png b/public/textures/mcwtrpdoors/cherry_cottage_trapdoor.png deleted file mode 100644 index c3222053..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_four_panel_trapdoor.png b/public/textures/mcwtrpdoors/cherry_four_panel_trapdoor.png deleted file mode 100644 index 2602036e..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_glass_trapdoor.png b/public/textures/mcwtrpdoors/cherry_glass_trapdoor.png deleted file mode 100644 index e3b64a17..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_mystic_trapdoor.png b/public/textures/mcwtrpdoors/cherry_mystic_trapdoor.png deleted file mode 100644 index 4be0c970..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_paper_trapdoor.png b/public/textures/mcwtrpdoors/cherry_paper_trapdoor.png deleted file mode 100644 index 5d035e22..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_ranch_trapdoor.png b/public/textures/mcwtrpdoors/cherry_ranch_trapdoor.png deleted file mode 100644 index c067dbf4..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_swamp_trapdoor.png b/public/textures/mcwtrpdoors/cherry_swamp_trapdoor.png deleted file mode 100644 index 6c1a05ce..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_tropical_trapdoor.png b/public/textures/mcwtrpdoors/cherry_tropical_trapdoor.png deleted file mode 100644 index fc97f264..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/cherry_whispering_trapdoor.png b/public/textures/mcwtrpdoors/cherry_whispering_trapdoor.png deleted file mode 100644 index 76b9706e..00000000 Binary files a/public/textures/mcwtrpdoors/cherry_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_bamboo_trapdoor.png b/public/textures/mcwtrpdoors/crimson_bamboo_trapdoor.png deleted file mode 100644 index aa7565fc..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_bark_trapdoor.png b/public/textures/mcwtrpdoors/crimson_bark_trapdoor.png deleted file mode 100644 index f95ac335..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_barn_trapdoor.png b/public/textures/mcwtrpdoors/crimson_barn_trapdoor.png deleted file mode 100644 index c63d812f..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_barrel_trapdoor.png b/public/textures/mcwtrpdoors/crimson_barrel_trapdoor.png deleted file mode 100644 index 8f2317dd..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_beach_trapdoor.png b/public/textures/mcwtrpdoors/crimson_beach_trapdoor.png deleted file mode 100644 index 6c235513..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_blossom_trapdoor.png b/public/textures/mcwtrpdoors/crimson_blossom_trapdoor.png deleted file mode 100644 index 2ba195c1..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_classic_trapdoor.png b/public/textures/mcwtrpdoors/crimson_classic_trapdoor.png deleted file mode 100644 index f7943a56..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_cottage_trapdoor.png b/public/textures/mcwtrpdoors/crimson_cottage_trapdoor.png deleted file mode 100644 index 4e774060..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_four_panel_trapdoor.png b/public/textures/mcwtrpdoors/crimson_four_panel_trapdoor.png deleted file mode 100644 index 64047a16..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_glass_trapdoor.png b/public/textures/mcwtrpdoors/crimson_glass_trapdoor.png deleted file mode 100644 index fbd84534..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_mystic_trapdoor.png b/public/textures/mcwtrpdoors/crimson_mystic_trapdoor.png deleted file mode 100644 index 35fbfafd..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_paper_trapdoor.png b/public/textures/mcwtrpdoors/crimson_paper_trapdoor.png deleted file mode 100644 index 3f60c794..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_ranch_trapdoor.png b/public/textures/mcwtrpdoors/crimson_ranch_trapdoor.png deleted file mode 100644 index 7e246d53..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_swamp_trapdoor.png b/public/textures/mcwtrpdoors/crimson_swamp_trapdoor.png deleted file mode 100644 index b5684755..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_tropical_trapdoor.png b/public/textures/mcwtrpdoors/crimson_tropical_trapdoor.png deleted file mode 100644 index 003f5a5f..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/crimson_whispering_trapdoor.png b/public/textures/mcwtrpdoors/crimson_whispering_trapdoor.png deleted file mode 100644 index e8389a83..00000000 Binary files a/public/textures/mcwtrpdoors/crimson_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_bamboo_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_bamboo_trapdoor.png deleted file mode 100644 index 49474bf8..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_bark_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_bark_trapdoor.png deleted file mode 100644 index d7bb12e0..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_barn_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_barn_trapdoor.png deleted file mode 100644 index 4124d4d8..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_barred_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_barred_trapdoor.png deleted file mode 100644 index 2f9d6dce..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_barrel_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_barrel_trapdoor.png deleted file mode 100644 index 1e65d40d..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_beach_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_beach_trapdoor.png deleted file mode 100644 index 3d323a4d..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_blossom_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_blossom_trapdoor.png deleted file mode 100644 index 00111009..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_classic_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_classic_trapdoor.png deleted file mode 100644 index cc65d55d..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_cottage_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_cottage_trapdoor.png deleted file mode 100644 index 783e354e..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_glass_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_glass_trapdoor.png deleted file mode 100644 index 2bfb7833..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_mystic_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_mystic_trapdoor.png deleted file mode 100644 index b956e6e2..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_paper_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_paper_trapdoor.png deleted file mode 100644 index 503d1140..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_ranch_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_ranch_trapdoor.png deleted file mode 100644 index d54eb46c..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_swamp_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_swamp_trapdoor.png deleted file mode 100644 index 3d53a969..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_tropical_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_tropical_trapdoor.png deleted file mode 100644 index 21f6a3a1..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/dark_oak_whispering_trapdoor.png b/public/textures/mcwtrpdoors/dark_oak_whispering_trapdoor.png deleted file mode 100644 index 3a0eb03c..00000000 Binary files a/public/textures/mcwtrpdoors/dark_oak_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_bamboo_trapdoor.png b/public/textures/mcwtrpdoors/jungle_bamboo_trapdoor.png deleted file mode 100644 index 94be1401..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_bark_trapdoor.png b/public/textures/mcwtrpdoors/jungle_bark_trapdoor.png deleted file mode 100644 index 75fa9ed7..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_barn_trapdoor.png b/public/textures/mcwtrpdoors/jungle_barn_trapdoor.png deleted file mode 100644 index 72fa33d3..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_barred_trapdoor.png b/public/textures/mcwtrpdoors/jungle_barred_trapdoor.png deleted file mode 100644 index 51701f73..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_barrel_trapdoor.png b/public/textures/mcwtrpdoors/jungle_barrel_trapdoor.png deleted file mode 100644 index 41025994..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_blossom_trapdoor.png b/public/textures/mcwtrpdoors/jungle_blossom_trapdoor.png deleted file mode 100644 index d1038852..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_classic_trapdoor.png b/public/textures/mcwtrpdoors/jungle_classic_trapdoor.png deleted file mode 100644 index 9fd4d848..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_cottage_trapdoor.png b/public/textures/mcwtrpdoors/jungle_cottage_trapdoor.png deleted file mode 100644 index 02603434..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_four_panel_trapdoor.png b/public/textures/mcwtrpdoors/jungle_four_panel_trapdoor.png deleted file mode 100644 index 73f98e11..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_glass_trapdoor.png b/public/textures/mcwtrpdoors/jungle_glass_trapdoor.png deleted file mode 100644 index ebc64767..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_mystic_trapdoor.png b/public/textures/mcwtrpdoors/jungle_mystic_trapdoor.png deleted file mode 100644 index 6f51d2c4..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_paper_trapdoor.png b/public/textures/mcwtrpdoors/jungle_paper_trapdoor.png deleted file mode 100644 index 6ac82377..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_ranch_trapdoor.png b/public/textures/mcwtrpdoors/jungle_ranch_trapdoor.png deleted file mode 100644 index e948305e..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_swamp_trapdoor.png b/public/textures/mcwtrpdoors/jungle_swamp_trapdoor.png deleted file mode 100644 index 31372d43..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_tropical_trapdoor.png b/public/textures/mcwtrpdoors/jungle_tropical_trapdoor.png deleted file mode 100644 index 571a000c..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/jungle_whispering_trapdoor.png b/public/textures/mcwtrpdoors/jungle_whispering_trapdoor.png deleted file mode 100644 index f670b443..00000000 Binary files a/public/textures/mcwtrpdoors/jungle_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_bamboo_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_bamboo_trapdoor.png deleted file mode 100644 index 502a4075..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_bark_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_bark_trapdoor.png deleted file mode 100644 index e31bbf8b..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_barn_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_barn_trapdoor.png deleted file mode 100644 index beec1d6f..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_barred_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_barred_trapdoor.png deleted file mode 100644 index 8e351c73..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_barrel_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_barrel_trapdoor.png deleted file mode 100644 index 67a31795..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_beach_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_beach_trapdoor.png deleted file mode 100644 index 6125c877..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_blossom_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_blossom_trapdoor.png deleted file mode 100644 index 93fa5bd6..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_classic_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_classic_trapdoor.png deleted file mode 100644 index b270f0fe..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_cottage_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_cottage_trapdoor.png deleted file mode 100644 index 06e2c5ca..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_four_panel_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_four_panel_trapdoor.png deleted file mode 100644 index ac0adf97..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_glass_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_glass_trapdoor.png deleted file mode 100644 index 1b2e486a..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_mystic_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_mystic_trapdoor.png deleted file mode 100644 index 120daa2a..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_paper_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_paper_trapdoor.png deleted file mode 100644 index a5973033..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_ranch_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_ranch_trapdoor.png deleted file mode 100644 index 5232ed46..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_tropical_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_tropical_trapdoor.png deleted file mode 100644 index 564ba61b..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/mangrove_whispering_trapdoor.png b/public/textures/mcwtrpdoors/mangrove_whispering_trapdoor.png deleted file mode 100644 index 7cfe7ebe..00000000 Binary files a/public/textures/mcwtrpdoors/mangrove_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/metal_full_trapdoor.png b/public/textures/mcwtrpdoors/metal_full_trapdoor.png deleted file mode 100644 index e53a827a..00000000 Binary files a/public/textures/mcwtrpdoors/metal_full_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/metal_trapdoor.png b/public/textures/mcwtrpdoors/metal_trapdoor.png deleted file mode 100644 index 010ea9d2..00000000 Binary files a/public/textures/mcwtrpdoors/metal_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/metal_warning_trapdoor.png b/public/textures/mcwtrpdoors/metal_warning_trapdoor.png deleted file mode 100644 index d201008c..00000000 Binary files a/public/textures/mcwtrpdoors/metal_warning_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_bamboo_trapdoor.png b/public/textures/mcwtrpdoors/oak_bamboo_trapdoor.png deleted file mode 100644 index 2309d2f6..00000000 Binary files a/public/textures/mcwtrpdoors/oak_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_bark_trapdoor.png b/public/textures/mcwtrpdoors/oak_bark_trapdoor.png deleted file mode 100644 index ff37de21..00000000 Binary files a/public/textures/mcwtrpdoors/oak_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_barn_trapdoor.png b/public/textures/mcwtrpdoors/oak_barn_trapdoor.png deleted file mode 100644 index 8fa01768..00000000 Binary files a/public/textures/mcwtrpdoors/oak_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_barred_trapdoor.png b/public/textures/mcwtrpdoors/oak_barred_trapdoor.png deleted file mode 100644 index 31da4384..00000000 Binary files a/public/textures/mcwtrpdoors/oak_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_barrel_trapdoor.png b/public/textures/mcwtrpdoors/oak_barrel_trapdoor.png deleted file mode 100644 index 0124769f..00000000 Binary files a/public/textures/mcwtrpdoors/oak_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_beach_trapdoor.png b/public/textures/mcwtrpdoors/oak_beach_trapdoor.png deleted file mode 100644 index 9ded4001..00000000 Binary files a/public/textures/mcwtrpdoors/oak_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_blossom_trapdoor.png b/public/textures/mcwtrpdoors/oak_blossom_trapdoor.png deleted file mode 100644 index b8074cb2..00000000 Binary files a/public/textures/mcwtrpdoors/oak_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_cottage_trapdoor.png b/public/textures/mcwtrpdoors/oak_cottage_trapdoor.png deleted file mode 100644 index 3f42a182..00000000 Binary files a/public/textures/mcwtrpdoors/oak_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_four_panel_trapdoor.png b/public/textures/mcwtrpdoors/oak_four_panel_trapdoor.png deleted file mode 100644 index c5bdb077..00000000 Binary files a/public/textures/mcwtrpdoors/oak_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_glass_trapdoor.png b/public/textures/mcwtrpdoors/oak_glass_trapdoor.png deleted file mode 100644 index cd6eb868..00000000 Binary files a/public/textures/mcwtrpdoors/oak_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_mystic_trapdoor.png b/public/textures/mcwtrpdoors/oak_mystic_trapdoor.png deleted file mode 100644 index a0edbd8d..00000000 Binary files a/public/textures/mcwtrpdoors/oak_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_paper_trapdoor.png b/public/textures/mcwtrpdoors/oak_paper_trapdoor.png deleted file mode 100644 index 3ad3fdb9..00000000 Binary files a/public/textures/mcwtrpdoors/oak_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_ranch_trapdoor.png b/public/textures/mcwtrpdoors/oak_ranch_trapdoor.png deleted file mode 100644 index 36560ae8..00000000 Binary files a/public/textures/mcwtrpdoors/oak_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_swamp_trapdoor.png b/public/textures/mcwtrpdoors/oak_swamp_trapdoor.png deleted file mode 100644 index bb19a3da..00000000 Binary files a/public/textures/mcwtrpdoors/oak_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_tropical_trapdoor.png b/public/textures/mcwtrpdoors/oak_tropical_trapdoor.png deleted file mode 100644 index e218ce18..00000000 Binary files a/public/textures/mcwtrpdoors/oak_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/oak_whispering_trapdoor.png b/public/textures/mcwtrpdoors/oak_whispering_trapdoor.png deleted file mode 100644 index b5031c6f..00000000 Binary files a/public/textures/mcwtrpdoors/oak_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_bamboo.png b/public/textures/mcwtrpdoors/print_bamboo.png deleted file mode 100644 index 5ab710d5..00000000 Binary files a/public/textures/mcwtrpdoors/print_bamboo.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_barred.png b/public/textures/mcwtrpdoors/print_barred.png deleted file mode 100644 index 12982f19..00000000 Binary files a/public/textures/mcwtrpdoors/print_barred.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_beach.png b/public/textures/mcwtrpdoors/print_beach.png deleted file mode 100644 index b455641f..00000000 Binary files a/public/textures/mcwtrpdoors/print_beach.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_blossom.png b/public/textures/mcwtrpdoors/print_blossom.png deleted file mode 100644 index 63fb6ab1..00000000 Binary files a/public/textures/mcwtrpdoors/print_blossom.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_classic.png b/public/textures/mcwtrpdoors/print_classic.png deleted file mode 100644 index 558ddeab..00000000 Binary files a/public/textures/mcwtrpdoors/print_classic.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_cottage.png b/public/textures/mcwtrpdoors/print_cottage.png deleted file mode 100644 index b4755837..00000000 Binary files a/public/textures/mcwtrpdoors/print_cottage.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_four_panel.png b/public/textures/mcwtrpdoors/print_four_panel.png deleted file mode 100644 index 622b4f82..00000000 Binary files a/public/textures/mcwtrpdoors/print_four_panel.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_mystic.png b/public/textures/mcwtrpdoors/print_mystic.png deleted file mode 100644 index 87930bc0..00000000 Binary files a/public/textures/mcwtrpdoors/print_mystic.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_paper.png b/public/textures/mcwtrpdoors/print_paper.png deleted file mode 100644 index 95bab32c..00000000 Binary files a/public/textures/mcwtrpdoors/print_paper.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_swamp.png b/public/textures/mcwtrpdoors/print_swamp.png deleted file mode 100644 index 69c040ef..00000000 Binary files a/public/textures/mcwtrpdoors/print_swamp.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_tropical.png b/public/textures/mcwtrpdoors/print_tropical.png deleted file mode 100644 index ab8e8f04..00000000 Binary files a/public/textures/mcwtrpdoors/print_tropical.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/print_whispering.png b/public/textures/mcwtrpdoors/print_whispering.png deleted file mode 100644 index 56070a9a..00000000 Binary files a/public/textures/mcwtrpdoors/print_whispering.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_bamboo_trapdoor.png b/public/textures/mcwtrpdoors/spruce_bamboo_trapdoor.png deleted file mode 100644 index 594d9e3a..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_bark_trapdoor.png b/public/textures/mcwtrpdoors/spruce_bark_trapdoor.png deleted file mode 100644 index 953e5986..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_barn_trapdoor.png b/public/textures/mcwtrpdoors/spruce_barn_trapdoor.png deleted file mode 100644 index 82fc9816..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_barred_trapdoor.png b/public/textures/mcwtrpdoors/spruce_barred_trapdoor.png deleted file mode 100644 index 1f3d5fbd..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_barrel_trapdoor.png b/public/textures/mcwtrpdoors/spruce_barrel_trapdoor.png deleted file mode 100644 index 14d0964f..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_beach_trapdoor.png b/public/textures/mcwtrpdoors/spruce_beach_trapdoor.png deleted file mode 100644 index 53413295..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_blossom_trapdoor.png b/public/textures/mcwtrpdoors/spruce_blossom_trapdoor.png deleted file mode 100644 index 6b324563..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_classic_trapdoor.png b/public/textures/mcwtrpdoors/spruce_classic_trapdoor.png deleted file mode 100644 index 2baa9b0d..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_four_panel_trapdoor.png b/public/textures/mcwtrpdoors/spruce_four_panel_trapdoor.png deleted file mode 100644 index 3b8335ba..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_glass_trapdoor.png b/public/textures/mcwtrpdoors/spruce_glass_trapdoor.png deleted file mode 100644 index 69450940..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_mystic_trapdoor.png b/public/textures/mcwtrpdoors/spruce_mystic_trapdoor.png deleted file mode 100644 index afa0be1f..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_mystic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_paper_trapdoor.png b/public/textures/mcwtrpdoors/spruce_paper_trapdoor.png deleted file mode 100644 index 2a69bfbe..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_ranch_trapdoor.png b/public/textures/mcwtrpdoors/spruce_ranch_trapdoor.png deleted file mode 100644 index 8d2e30f3..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_swamp_trapdoor.png b/public/textures/mcwtrpdoors/spruce_swamp_trapdoor.png deleted file mode 100644 index c71341d6..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_tropical_trapdoor.png b/public/textures/mcwtrpdoors/spruce_tropical_trapdoor.png deleted file mode 100644 index 3ae18afb..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/spruce_whispering_trapdoor.png b/public/textures/mcwtrpdoors/spruce_whispering_trapdoor.png deleted file mode 100644 index 3e831f1b..00000000 Binary files a/public/textures/mcwtrpdoors/spruce_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_bamboo_trapdoor.png b/public/textures/mcwtrpdoors/warped_bamboo_trapdoor.png deleted file mode 100644 index 17aa9007..00000000 Binary files a/public/textures/mcwtrpdoors/warped_bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_bark_trapdoor.png b/public/textures/mcwtrpdoors/warped_bark_trapdoor.png deleted file mode 100644 index 1af9a1bc..00000000 Binary files a/public/textures/mcwtrpdoors/warped_bark_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_barn_trapdoor.png b/public/textures/mcwtrpdoors/warped_barn_trapdoor.png deleted file mode 100644 index a0ab6dfa..00000000 Binary files a/public/textures/mcwtrpdoors/warped_barn_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_barred_trapdoor.png b/public/textures/mcwtrpdoors/warped_barred_trapdoor.png deleted file mode 100644 index 649a7e28..00000000 Binary files a/public/textures/mcwtrpdoors/warped_barred_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_barrel_trapdoor.png b/public/textures/mcwtrpdoors/warped_barrel_trapdoor.png deleted file mode 100644 index 0121cf91..00000000 Binary files a/public/textures/mcwtrpdoors/warped_barrel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_beach_trapdoor.png b/public/textures/mcwtrpdoors/warped_beach_trapdoor.png deleted file mode 100644 index ee031f1a..00000000 Binary files a/public/textures/mcwtrpdoors/warped_beach_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_blossom_trapdoor.png b/public/textures/mcwtrpdoors/warped_blossom_trapdoor.png deleted file mode 100644 index 0569b12e..00000000 Binary files a/public/textures/mcwtrpdoors/warped_blossom_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_classic_trapdoor.png b/public/textures/mcwtrpdoors/warped_classic_trapdoor.png deleted file mode 100644 index 1ef7c5f0..00000000 Binary files a/public/textures/mcwtrpdoors/warped_classic_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_cottage_trapdoor.png b/public/textures/mcwtrpdoors/warped_cottage_trapdoor.png deleted file mode 100644 index 36c76717..00000000 Binary files a/public/textures/mcwtrpdoors/warped_cottage_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_four_panel_trapdoor.png b/public/textures/mcwtrpdoors/warped_four_panel_trapdoor.png deleted file mode 100644 index 87427eab..00000000 Binary files a/public/textures/mcwtrpdoors/warped_four_panel_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_glass_trapdoor.png b/public/textures/mcwtrpdoors/warped_glass_trapdoor.png deleted file mode 100644 index 777a4f8e..00000000 Binary files a/public/textures/mcwtrpdoors/warped_glass_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_paper_trapdoor.png b/public/textures/mcwtrpdoors/warped_paper_trapdoor.png deleted file mode 100644 index 82970ac3..00000000 Binary files a/public/textures/mcwtrpdoors/warped_paper_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_ranch_trapdoor.png b/public/textures/mcwtrpdoors/warped_ranch_trapdoor.png deleted file mode 100644 index f6595d85..00000000 Binary files a/public/textures/mcwtrpdoors/warped_ranch_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_swamp_trapdoor.png b/public/textures/mcwtrpdoors/warped_swamp_trapdoor.png deleted file mode 100644 index d501cd24..00000000 Binary files a/public/textures/mcwtrpdoors/warped_swamp_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_tropical_trapdoor.png b/public/textures/mcwtrpdoors/warped_tropical_trapdoor.png deleted file mode 100644 index 7486a53c..00000000 Binary files a/public/textures/mcwtrpdoors/warped_tropical_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwtrpdoors/warped_whispering_trapdoor.png b/public/textures/mcwtrpdoors/warped_whispering_trapdoor.png deleted file mode 100644 index 879453b2..00000000 Binary files a/public/textures/mcwtrpdoors/warped_whispering_trapdoor.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_blinds.png b/public/textures/mcwwindows/acacia_blinds.png deleted file mode 100644 index 3ce6f47a..00000000 Binary files a/public/textures/mcwwindows/acacia_blinds.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_curtain_rod.png b/public/textures/mcwwindows/acacia_curtain_rod.png deleted file mode 100644 index 9a58a6c5..00000000 Binary files a/public/textures/mcwwindows/acacia_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_four_window.png b/public/textures/mcwwindows/acacia_four_window.png deleted file mode 100644 index d96384a8..00000000 Binary files a/public/textures/mcwwindows/acacia_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_log_parapet.png b/public/textures/mcwwindows/acacia_log_parapet.png deleted file mode 100644 index 1ff0a79c..00000000 Binary files a/public/textures/mcwwindows/acacia_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_louvered_shutter.png b/public/textures/mcwwindows/acacia_louvered_shutter.png deleted file mode 100644 index 940a1a7b..00000000 Binary files a/public/textures/mcwwindows/acacia_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_pane_window.png b/public/textures/mcwwindows/acacia_pane_window.png deleted file mode 100644 index b6ed1254..00000000 Binary files a/public/textures/mcwwindows/acacia_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_plank_four_window.png b/public/textures/mcwwindows/acacia_plank_four_window.png deleted file mode 100644 index 55024e2b..00000000 Binary files a/public/textures/mcwwindows/acacia_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_plank_pane_window.png b/public/textures/mcwwindows/acacia_plank_pane_window.png deleted file mode 100644 index a30793ac..00000000 Binary files a/public/textures/mcwwindows/acacia_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_plank_parapet.png b/public/textures/mcwwindows/acacia_plank_parapet.png deleted file mode 100644 index c61f5d4d..00000000 Binary files a/public/textures/mcwwindows/acacia_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_plank_window.png b/public/textures/mcwwindows/acacia_plank_window.png deleted file mode 100644 index d55f7ed6..00000000 Binary files a/public/textures/mcwwindows/acacia_plank_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_plank_window2.png b/public/textures/mcwwindows/acacia_plank_window2.png deleted file mode 100644 index 8d3a79dd..00000000 Binary files a/public/textures/mcwwindows/acacia_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_shutter.png b/public/textures/mcwwindows/acacia_shutter.png deleted file mode 100644 index ab0c605c..00000000 Binary files a/public/textures/mcwwindows/acacia_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_window.png b/public/textures/mcwwindows/acacia_window.png deleted file mode 100644 index a4eb4b88..00000000 Binary files a/public/textures/mcwwindows/acacia_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/acacia_window2.png b/public/textures/mcwwindows/acacia_window2.png deleted file mode 100644 index dbf7f053..00000000 Binary files a/public/textures/mcwwindows/acacia_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/andesite_four_window.png b/public/textures/mcwwindows/andesite_four_window.png deleted file mode 100644 index 04606af8..00000000 Binary files a/public/textures/mcwwindows/andesite_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/andesite_louvered_shutter.png b/public/textures/mcwwindows/andesite_louvered_shutter.png deleted file mode 100644 index 61fb9f97..00000000 Binary files a/public/textures/mcwwindows/andesite_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/andesite_pane_window.png b/public/textures/mcwwindows/andesite_pane_window.png deleted file mode 100644 index 71818730..00000000 Binary files a/public/textures/mcwwindows/andesite_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/andesite_parapet.png b/public/textures/mcwwindows/andesite_parapet.png deleted file mode 100644 index 5fe23ea5..00000000 Binary files a/public/textures/mcwwindows/andesite_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/andesite_window.png b/public/textures/mcwwindows/andesite_window.png deleted file mode 100644 index 7cab2909..00000000 Binary files a/public/textures/mcwwindows/andesite_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/andesite_window2.png b/public/textures/mcwwindows/andesite_window2.png deleted file mode 100644 index 7cea8ec3..00000000 Binary files a/public/textures/mcwwindows/andesite_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/bamboo_shutter.png b/public/textures/mcwwindows/bamboo_shutter.png deleted file mode 100644 index 8a0874f9..00000000 Binary files a/public/textures/mcwwindows/bamboo_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_blinds.png b/public/textures/mcwwindows/birch_blinds.png deleted file mode 100644 index 1f9f13e9..00000000 Binary files a/public/textures/mcwwindows/birch_blinds.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_curtain_rod.png b/public/textures/mcwwindows/birch_curtain_rod.png deleted file mode 100644 index 6011b1ea..00000000 Binary files a/public/textures/mcwwindows/birch_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_four_window.png b/public/textures/mcwwindows/birch_four_window.png deleted file mode 100644 index edee5e29..00000000 Binary files a/public/textures/mcwwindows/birch_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_log_parapet.png b/public/textures/mcwwindows/birch_log_parapet.png deleted file mode 100644 index 06198c97..00000000 Binary files a/public/textures/mcwwindows/birch_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_louvered_shutter.png b/public/textures/mcwwindows/birch_louvered_shutter.png deleted file mode 100644 index bc0d90c9..00000000 Binary files a/public/textures/mcwwindows/birch_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_pane_window.png b/public/textures/mcwwindows/birch_pane_window.png deleted file mode 100644 index 5b7b5d49..00000000 Binary files a/public/textures/mcwwindows/birch_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_plank_four_window.png b/public/textures/mcwwindows/birch_plank_four_window.png deleted file mode 100644 index 66b8a0af..00000000 Binary files a/public/textures/mcwwindows/birch_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_plank_pane_window.png b/public/textures/mcwwindows/birch_plank_pane_window.png deleted file mode 100644 index 4d2858bc..00000000 Binary files a/public/textures/mcwwindows/birch_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_plank_parapet.png b/public/textures/mcwwindows/birch_plank_parapet.png deleted file mode 100644 index 25930328..00000000 Binary files a/public/textures/mcwwindows/birch_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_plank_window.png b/public/textures/mcwwindows/birch_plank_window.png deleted file mode 100644 index bbd5be70..00000000 Binary files a/public/textures/mcwwindows/birch_plank_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_plank_window2.png b/public/textures/mcwwindows/birch_plank_window2.png deleted file mode 100644 index 19f238b2..00000000 Binary files a/public/textures/mcwwindows/birch_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_shutter.png b/public/textures/mcwwindows/birch_shutter.png deleted file mode 100644 index a4fa619a..00000000 Binary files a/public/textures/mcwwindows/birch_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_window.png b/public/textures/mcwwindows/birch_window.png deleted file mode 100644 index 0d489b5a..00000000 Binary files a/public/textures/mcwwindows/birch_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/birch_window2.png b/public/textures/mcwwindows/birch_window2.png deleted file mode 100644 index d32d2340..00000000 Binary files a/public/textures/mcwwindows/birch_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/black_curtain.png b/public/textures/mcwwindows/black_curtain.png deleted file mode 100644 index e93ecc9f..00000000 Binary files a/public/textures/mcwwindows/black_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/black_mosaic_glass.png b/public/textures/mcwwindows/black_mosaic_glass.png deleted file mode 100644 index fa3da6f6..00000000 Binary files a/public/textures/mcwwindows/black_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/black_mosaic_glass_pane.png b/public/textures/mcwwindows/black_mosaic_glass_pane.png deleted file mode 100644 index 439e7f41..00000000 Binary files a/public/textures/mcwwindows/black_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/blackstone_brick_arrow_slit.png b/public/textures/mcwwindows/blackstone_brick_arrow_slit.png deleted file mode 100644 index 1598f59b..00000000 Binary files a/public/textures/mcwwindows/blackstone_brick_arrow_slit.png and /dev/null differ diff --git a/public/textures/mcwwindows/blackstone_brick_gothic.png b/public/textures/mcwwindows/blackstone_brick_gothic.png deleted file mode 100644 index 31f73c04..00000000 Binary files a/public/textures/mcwwindows/blackstone_brick_gothic.png and /dev/null differ diff --git a/public/textures/mcwwindows/blackstone_four_window.png b/public/textures/mcwwindows/blackstone_four_window.png deleted file mode 100644 index c255430b..00000000 Binary files a/public/textures/mcwwindows/blackstone_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/blackstone_pane_window.png b/public/textures/mcwwindows/blackstone_pane_window.png deleted file mode 100644 index 4aaddb81..00000000 Binary files a/public/textures/mcwwindows/blackstone_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/blackstone_parapet.png b/public/textures/mcwwindows/blackstone_parapet.png deleted file mode 100644 index 2e4c8ff8..00000000 Binary files a/public/textures/mcwwindows/blackstone_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/blackstone_window.png b/public/textures/mcwwindows/blackstone_window.png deleted file mode 100644 index 6e051320..00000000 Binary files a/public/textures/mcwwindows/blackstone_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/blackstone_window2.png b/public/textures/mcwwindows/blackstone_window2.png deleted file mode 100644 index 0089bf51..00000000 Binary files a/public/textures/mcwwindows/blackstone_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/blue_curtain.png b/public/textures/mcwwindows/blue_curtain.png deleted file mode 100644 index d0558856..00000000 Binary files a/public/textures/mcwwindows/blue_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/blue_mosaic_glass.png b/public/textures/mcwwindows/blue_mosaic_glass.png deleted file mode 100644 index 4c4e6d4f..00000000 Binary files a/public/textures/mcwwindows/blue_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/blue_mosaic_glass_pane.png b/public/textures/mcwwindows/blue_mosaic_glass_pane.png deleted file mode 100644 index 70a75ee5..00000000 Binary files a/public/textures/mcwwindows/blue_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/bricks_four_window.png b/public/textures/mcwwindows/bricks_four_window.png deleted file mode 100644 index 4b808732..00000000 Binary files a/public/textures/mcwwindows/bricks_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/bricks_pane_window.png b/public/textures/mcwwindows/bricks_pane_window.png deleted file mode 100644 index 4e18bce0..00000000 Binary files a/public/textures/mcwwindows/bricks_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/bricks_window.png b/public/textures/mcwwindows/bricks_window.png deleted file mode 100644 index 57a9486c..00000000 Binary files a/public/textures/mcwwindows/bricks_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/bricks_window2.png b/public/textures/mcwwindows/bricks_window2.png deleted file mode 100644 index 2f398dbc..00000000 Binary files a/public/textures/mcwwindows/bricks_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/brown_curtain.png b/public/textures/mcwwindows/brown_curtain.png deleted file mode 100644 index 147b79f4..00000000 Binary files a/public/textures/mcwwindows/brown_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/brown_mosaic_glass.png b/public/textures/mcwwindows/brown_mosaic_glass.png deleted file mode 100644 index 619864d5..00000000 Binary files a/public/textures/mcwwindows/brown_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/brown_mosaic_glass_pane.png b/public/textures/mcwwindows/brown_mosaic_glass_pane.png deleted file mode 100644 index 4d883c53..00000000 Binary files a/public/textures/mcwwindows/brown_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_blinds.png b/public/textures/mcwwindows/cherry_blinds.png deleted file mode 100644 index f8c46422..00000000 Binary files a/public/textures/mcwwindows/cherry_blinds.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_curtain_rod.png b/public/textures/mcwwindows/cherry_curtain_rod.png deleted file mode 100644 index 3001cd28..00000000 Binary files a/public/textures/mcwwindows/cherry_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_four_window.png b/public/textures/mcwwindows/cherry_four_window.png deleted file mode 100644 index 118adb54..00000000 Binary files a/public/textures/mcwwindows/cherry_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_log_parapet.png b/public/textures/mcwwindows/cherry_log_parapet.png deleted file mode 100644 index 5356b74e..00000000 Binary files a/public/textures/mcwwindows/cherry_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_louvered_shutter.png b/public/textures/mcwwindows/cherry_louvered_shutter.png deleted file mode 100644 index b9def5ee..00000000 Binary files a/public/textures/mcwwindows/cherry_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_pane_window.png b/public/textures/mcwwindows/cherry_pane_window.png deleted file mode 100644 index 30db9a17..00000000 Binary files a/public/textures/mcwwindows/cherry_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_plank_four_window.png b/public/textures/mcwwindows/cherry_plank_four_window.png deleted file mode 100644 index 03e2e0b9..00000000 Binary files a/public/textures/mcwwindows/cherry_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_plank_pane_window.png b/public/textures/mcwwindows/cherry_plank_pane_window.png deleted file mode 100644 index 9288e48f..00000000 Binary files a/public/textures/mcwwindows/cherry_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_plank_parapet.png b/public/textures/mcwwindows/cherry_plank_parapet.png deleted file mode 100644 index c2f45e26..00000000 Binary files a/public/textures/mcwwindows/cherry_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_plank_window.png b/public/textures/mcwwindows/cherry_plank_window.png deleted file mode 100644 index 5e1c8bc2..00000000 Binary files a/public/textures/mcwwindows/cherry_plank_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_plank_window2.png b/public/textures/mcwwindows/cherry_plank_window2.png deleted file mode 100644 index 5f5d77e1..00000000 Binary files a/public/textures/mcwwindows/cherry_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_shutter.png b/public/textures/mcwwindows/cherry_shutter.png deleted file mode 100644 index a4e81472..00000000 Binary files a/public/textures/mcwwindows/cherry_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_window.png b/public/textures/mcwwindows/cherry_window.png deleted file mode 100644 index 14c749f1..00000000 Binary files a/public/textures/mcwwindows/cherry_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/cherry_window2.png b/public/textures/mcwwindows/cherry_window2.png deleted file mode 100644 index 8e36d98a..00000000 Binary files a/public/textures/mcwwindows/cherry_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/cobblestone_arrow_slit.png b/public/textures/mcwwindows/cobblestone_arrow_slit.png deleted file mode 100644 index 5d674c08..00000000 Binary files a/public/textures/mcwwindows/cobblestone_arrow_slit.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_blinds.png b/public/textures/mcwwindows/crimson_blinds.png deleted file mode 100644 index dbaec880..00000000 Binary files a/public/textures/mcwwindows/crimson_blinds.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_curtain_rod.png b/public/textures/mcwwindows/crimson_curtain_rod.png deleted file mode 100644 index 2014b1c2..00000000 Binary files a/public/textures/mcwwindows/crimson_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_louvered_shutter.png b/public/textures/mcwwindows/crimson_louvered_shutter.png deleted file mode 100644 index b0a8834f..00000000 Binary files a/public/textures/mcwwindows/crimson_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_pane_window.png b/public/textures/mcwwindows/crimson_pane_window.png deleted file mode 100644 index 1ad58000..00000000 Binary files a/public/textures/mcwwindows/crimson_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_plank_pane_window.png b/public/textures/mcwwindows/crimson_plank_pane_window.png deleted file mode 100644 index 8164f649..00000000 Binary files a/public/textures/mcwwindows/crimson_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_plank_parapet.png b/public/textures/mcwwindows/crimson_plank_parapet.png deleted file mode 100644 index c18afd91..00000000 Binary files a/public/textures/mcwwindows/crimson_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_planks_four_window.png b/public/textures/mcwwindows/crimson_planks_four_window.png deleted file mode 100644 index c88e2490..00000000 Binary files a/public/textures/mcwwindows/crimson_planks_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_planks_window.png b/public/textures/mcwwindows/crimson_planks_window.png deleted file mode 100644 index 52c340dd..00000000 Binary files a/public/textures/mcwwindows/crimson_planks_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_planks_window2.png b/public/textures/mcwwindows/crimson_planks_window2.png deleted file mode 100644 index dfcd18e9..00000000 Binary files a/public/textures/mcwwindows/crimson_planks_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_shutter.png b/public/textures/mcwwindows/crimson_shutter.png deleted file mode 100644 index a8b14387..00000000 Binary files a/public/textures/mcwwindows/crimson_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_stem_four_window.png b/public/textures/mcwwindows/crimson_stem_four_window.png deleted file mode 100644 index 408bf9c8..00000000 Binary files a/public/textures/mcwwindows/crimson_stem_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_stem_parapet.png b/public/textures/mcwwindows/crimson_stem_parapet.png deleted file mode 100644 index 81fa1ea9..00000000 Binary files a/public/textures/mcwwindows/crimson_stem_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_stem_window.png b/public/textures/mcwwindows/crimson_stem_window.png deleted file mode 100644 index 2e17e63d..00000000 Binary files a/public/textures/mcwwindows/crimson_stem_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/crimson_stem_window2.png b/public/textures/mcwwindows/crimson_stem_window2.png deleted file mode 100644 index f2ae33ac..00000000 Binary files a/public/textures/mcwwindows/crimson_stem_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/cyan_curtain.png b/public/textures/mcwwindows/cyan_curtain.png deleted file mode 100644 index 84e399a1..00000000 Binary files a/public/textures/mcwwindows/cyan_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/cyan_mosaic_glass.png b/public/textures/mcwwindows/cyan_mosaic_glass.png deleted file mode 100644 index 37403b05..00000000 Binary files a/public/textures/mcwwindows/cyan_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/cyan_mosaic_glass_pane.png b/public/textures/mcwwindows/cyan_mosaic_glass_pane.png deleted file mode 100644 index ae1d05a6..00000000 Binary files a/public/textures/mcwwindows/cyan_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_blinds.png b/public/textures/mcwwindows/dark_oak_blinds.png deleted file mode 100644 index 7a9c74ac..00000000 Binary files a/public/textures/mcwwindows/dark_oak_blinds.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_curtain_rod.png b/public/textures/mcwwindows/dark_oak_curtain_rod.png deleted file mode 100644 index 363b8b4d..00000000 Binary files a/public/textures/mcwwindows/dark_oak_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_four_window.png b/public/textures/mcwwindows/dark_oak_four_window.png deleted file mode 100644 index e420810c..00000000 Binary files a/public/textures/mcwwindows/dark_oak_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_log_parapet.png b/public/textures/mcwwindows/dark_oak_log_parapet.png deleted file mode 100644 index 51969936..00000000 Binary files a/public/textures/mcwwindows/dark_oak_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_louvered_shutter.png b/public/textures/mcwwindows/dark_oak_louvered_shutter.png deleted file mode 100644 index b71db5e2..00000000 Binary files a/public/textures/mcwwindows/dark_oak_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_pane_window.png b/public/textures/mcwwindows/dark_oak_pane_window.png deleted file mode 100644 index db9b1f19..00000000 Binary files a/public/textures/mcwwindows/dark_oak_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_plank_four_window.png b/public/textures/mcwwindows/dark_oak_plank_four_window.png deleted file mode 100644 index 62fc0505..00000000 Binary files a/public/textures/mcwwindows/dark_oak_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_plank_pane_window.png b/public/textures/mcwwindows/dark_oak_plank_pane_window.png deleted file mode 100644 index 47606604..00000000 Binary files a/public/textures/mcwwindows/dark_oak_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_plank_parapet.png b/public/textures/mcwwindows/dark_oak_plank_parapet.png deleted file mode 100644 index 5b1fdfed..00000000 Binary files a/public/textures/mcwwindows/dark_oak_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_plank_window.png b/public/textures/mcwwindows/dark_oak_plank_window.png deleted file mode 100644 index ec1fee2e..00000000 Binary files a/public/textures/mcwwindows/dark_oak_plank_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_plank_window2.png b/public/textures/mcwwindows/dark_oak_plank_window2.png deleted file mode 100644 index 34afde98..00000000 Binary files a/public/textures/mcwwindows/dark_oak_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_shutter.png b/public/textures/mcwwindows/dark_oak_shutter.png deleted file mode 100644 index a900af18..00000000 Binary files a/public/textures/mcwwindows/dark_oak_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_window.png b/public/textures/mcwwindows/dark_oak_window.png deleted file mode 100644 index b500325f..00000000 Binary files a/public/textures/mcwwindows/dark_oak_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_oak_window2.png b/public/textures/mcwwindows/dark_oak_window2.png deleted file mode 100644 index b4c64110..00000000 Binary files a/public/textures/mcwwindows/dark_oak_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_prismarine_brick_arrow_slit.png b/public/textures/mcwwindows/dark_prismarine_brick_arrow_slit.png deleted file mode 100644 index ba58de8a..00000000 Binary files a/public/textures/mcwwindows/dark_prismarine_brick_arrow_slit.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_prismarine_brick_gothic.png b/public/textures/mcwwindows/dark_prismarine_brick_gothic.png deleted file mode 100644 index 892bbc0e..00000000 Binary files a/public/textures/mcwwindows/dark_prismarine_brick_gothic.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_prismarine_four_window.png b/public/textures/mcwwindows/dark_prismarine_four_window.png deleted file mode 100644 index c030385b..00000000 Binary files a/public/textures/mcwwindows/dark_prismarine_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_prismarine_pane_window.png b/public/textures/mcwwindows/dark_prismarine_pane_window.png deleted file mode 100644 index d99e6223..00000000 Binary files a/public/textures/mcwwindows/dark_prismarine_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_prismarine_parapet.png b/public/textures/mcwwindows/dark_prismarine_parapet.png deleted file mode 100644 index 331392e9..00000000 Binary files a/public/textures/mcwwindows/dark_prismarine_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_prismarine_window.png b/public/textures/mcwwindows/dark_prismarine_window.png deleted file mode 100644 index 82493542..00000000 Binary files a/public/textures/mcwwindows/dark_prismarine_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/dark_prismarine_window2.png b/public/textures/mcwwindows/dark_prismarine_window2.png deleted file mode 100644 index 4a83e9a4..00000000 Binary files a/public/textures/mcwwindows/dark_prismarine_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/deepslate_four_window.png b/public/textures/mcwwindows/deepslate_four_window.png deleted file mode 100644 index 196d0126..00000000 Binary files a/public/textures/mcwwindows/deepslate_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/deepslate_pane_window.png b/public/textures/mcwwindows/deepslate_pane_window.png deleted file mode 100644 index de527007..00000000 Binary files a/public/textures/mcwwindows/deepslate_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/deepslate_window.png b/public/textures/mcwwindows/deepslate_window.png deleted file mode 100644 index 83e68329..00000000 Binary files a/public/textures/mcwwindows/deepslate_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/deepslate_window2.png b/public/textures/mcwwindows/deepslate_window2.png deleted file mode 100644 index e2e3d66f..00000000 Binary files a/public/textures/mcwwindows/deepslate_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/diorite_four_window.png b/public/textures/mcwwindows/diorite_four_window.png deleted file mode 100644 index 1bbd9ddc..00000000 Binary files a/public/textures/mcwwindows/diorite_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/diorite_louvered_shutter.png b/public/textures/mcwwindows/diorite_louvered_shutter.png deleted file mode 100644 index c9717e65..00000000 Binary files a/public/textures/mcwwindows/diorite_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/diorite_pane_window.png b/public/textures/mcwwindows/diorite_pane_window.png deleted file mode 100644 index 22cae7ac..00000000 Binary files a/public/textures/mcwwindows/diorite_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/diorite_parapet.png b/public/textures/mcwwindows/diorite_parapet.png deleted file mode 100644 index ccf385ba..00000000 Binary files a/public/textures/mcwwindows/diorite_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/diorite_window.png b/public/textures/mcwwindows/diorite_window.png deleted file mode 100644 index 10850ab1..00000000 Binary files a/public/textures/mcwwindows/diorite_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/diorite_window2.png b/public/textures/mcwwindows/diorite_window2.png deleted file mode 100644 index 64db6768..00000000 Binary files a/public/textures/mcwwindows/diorite_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/end_brick_gothic.png b/public/textures/mcwwindows/end_brick_gothic.png deleted file mode 100644 index 3beb50a8..00000000 Binary files a/public/textures/mcwwindows/end_brick_gothic.png and /dev/null differ diff --git a/public/textures/mcwwindows/ender_brick_arrow_slit.png b/public/textures/mcwwindows/ender_brick_arrow_slit.png deleted file mode 100644 index eb2faf4b..00000000 Binary files a/public/textures/mcwwindows/ender_brick_arrow_slit.png and /dev/null differ diff --git a/public/textures/mcwwindows/golden_curtain_rod.png b/public/textures/mcwwindows/golden_curtain_rod.png deleted file mode 100644 index bfbded54..00000000 Binary files a/public/textures/mcwwindows/golden_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/granite_four_window.png b/public/textures/mcwwindows/granite_four_window.png deleted file mode 100644 index 1baf5155..00000000 Binary files a/public/textures/mcwwindows/granite_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/granite_louvered_shutter.png b/public/textures/mcwwindows/granite_louvered_shutter.png deleted file mode 100644 index ca52e717..00000000 Binary files a/public/textures/mcwwindows/granite_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/granite_pane_window.png b/public/textures/mcwwindows/granite_pane_window.png deleted file mode 100644 index ee587964..00000000 Binary files a/public/textures/mcwwindows/granite_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/granite_parapet.png b/public/textures/mcwwindows/granite_parapet.png deleted file mode 100644 index c0d53bc7..00000000 Binary files a/public/textures/mcwwindows/granite_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/granite_window.png b/public/textures/mcwwindows/granite_window.png deleted file mode 100644 index 187b516f..00000000 Binary files a/public/textures/mcwwindows/granite_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/granite_window2.png b/public/textures/mcwwindows/granite_window2.png deleted file mode 100644 index d5581d37..00000000 Binary files a/public/textures/mcwwindows/granite_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/gray_curtain.png b/public/textures/mcwwindows/gray_curtain.png deleted file mode 100644 index c2965342..00000000 Binary files a/public/textures/mcwwindows/gray_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/gray_mosaic_glass.png b/public/textures/mcwwindows/gray_mosaic_glass.png deleted file mode 100644 index e32af28e..00000000 Binary files a/public/textures/mcwwindows/gray_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/gray_mosaic_glass_pane.png b/public/textures/mcwwindows/gray_mosaic_glass_pane.png deleted file mode 100644 index be46caf6..00000000 Binary files a/public/textures/mcwwindows/gray_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/green_curtain.png b/public/textures/mcwwindows/green_curtain.png deleted file mode 100644 index 9b8b7225..00000000 Binary files a/public/textures/mcwwindows/green_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/green_mosaic_glass.png b/public/textures/mcwwindows/green_mosaic_glass.png deleted file mode 100644 index aac57d60..00000000 Binary files a/public/textures/mcwwindows/green_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/green_mosaic_glass_pane.png b/public/textures/mcwwindows/green_mosaic_glass_pane.png deleted file mode 100644 index 861eacbe..00000000 Binary files a/public/textures/mcwwindows/green_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/hammer.png b/public/textures/mcwwindows/hammer.png deleted file mode 100644 index 7465f28c..00000000 Binary files a/public/textures/mcwwindows/hammer.png and /dev/null differ diff --git a/public/textures/mcwwindows/iron_shutter.png b/public/textures/mcwwindows/iron_shutter.png deleted file mode 100644 index 5751b76a..00000000 Binary files a/public/textures/mcwwindows/iron_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_blinds.png b/public/textures/mcwwindows/jungle_blinds.png deleted file mode 100644 index 3ca6186b..00000000 Binary files a/public/textures/mcwwindows/jungle_blinds.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_curtain_rod.png b/public/textures/mcwwindows/jungle_curtain_rod.png deleted file mode 100644 index 99c4a65e..00000000 Binary files a/public/textures/mcwwindows/jungle_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_four_window.png b/public/textures/mcwwindows/jungle_four_window.png deleted file mode 100644 index c3924cc8..00000000 Binary files a/public/textures/mcwwindows/jungle_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_log_parapet.png b/public/textures/mcwwindows/jungle_log_parapet.png deleted file mode 100644 index fd54eb9c..00000000 Binary files a/public/textures/mcwwindows/jungle_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_louvered_shutter.png b/public/textures/mcwwindows/jungle_louvered_shutter.png deleted file mode 100644 index 5d5938b7..00000000 Binary files a/public/textures/mcwwindows/jungle_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_pane_window.png b/public/textures/mcwwindows/jungle_pane_window.png deleted file mode 100644 index 040fad24..00000000 Binary files a/public/textures/mcwwindows/jungle_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_plank_four_window.png b/public/textures/mcwwindows/jungle_plank_four_window.png deleted file mode 100644 index d29fb2fe..00000000 Binary files a/public/textures/mcwwindows/jungle_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_plank_pane_window.png b/public/textures/mcwwindows/jungle_plank_pane_window.png deleted file mode 100644 index 8e9a18f4..00000000 Binary files a/public/textures/mcwwindows/jungle_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_plank_parapet.png b/public/textures/mcwwindows/jungle_plank_parapet.png deleted file mode 100644 index 8242586a..00000000 Binary files a/public/textures/mcwwindows/jungle_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_plank_window.png b/public/textures/mcwwindows/jungle_plank_window.png deleted file mode 100644 index 9d2ae1e1..00000000 Binary files a/public/textures/mcwwindows/jungle_plank_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_plank_window2.png b/public/textures/mcwwindows/jungle_plank_window2.png deleted file mode 100644 index 366462a7..00000000 Binary files a/public/textures/mcwwindows/jungle_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_shutter.png b/public/textures/mcwwindows/jungle_shutter.png deleted file mode 100644 index 5a047a4b..00000000 Binary files a/public/textures/mcwwindows/jungle_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_window.png b/public/textures/mcwwindows/jungle_window.png deleted file mode 100644 index dde62c19..00000000 Binary files a/public/textures/mcwwindows/jungle_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/jungle_window2.png b/public/textures/mcwwindows/jungle_window2.png deleted file mode 100644 index 2c9c53b4..00000000 Binary files a/public/textures/mcwwindows/jungle_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/key.png b/public/textures/mcwwindows/key.png deleted file mode 100644 index 3a56b82a..00000000 Binary files a/public/textures/mcwwindows/key.png and /dev/null differ diff --git a/public/textures/mcwwindows/light_blue_curtain.png b/public/textures/mcwwindows/light_blue_curtain.png deleted file mode 100644 index 27b8bf8d..00000000 Binary files a/public/textures/mcwwindows/light_blue_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/light_blue_mosaic_glass.png b/public/textures/mcwwindows/light_blue_mosaic_glass.png deleted file mode 100644 index 9125cc2f..00000000 Binary files a/public/textures/mcwwindows/light_blue_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/light_blue_mosaic_glass_pane.png b/public/textures/mcwwindows/light_blue_mosaic_glass_pane.png deleted file mode 100644 index af52ce3a..00000000 Binary files a/public/textures/mcwwindows/light_blue_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/light_gray_curtain.png b/public/textures/mcwwindows/light_gray_curtain.png deleted file mode 100644 index d2690f1c..00000000 Binary files a/public/textures/mcwwindows/light_gray_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/light_gray_mosaic_glass.png b/public/textures/mcwwindows/light_gray_mosaic_glass.png deleted file mode 100644 index f0becfec..00000000 Binary files a/public/textures/mcwwindows/light_gray_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/light_gray_mosaic_glass_pane.png b/public/textures/mcwwindows/light_gray_mosaic_glass_pane.png deleted file mode 100644 index 3dd70c90..00000000 Binary files a/public/textures/mcwwindows/light_gray_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/lime_curtain.png b/public/textures/mcwwindows/lime_curtain.png deleted file mode 100644 index 171fc8fc..00000000 Binary files a/public/textures/mcwwindows/lime_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/lime_mosaic_glass.png b/public/textures/mcwwindows/lime_mosaic_glass.png deleted file mode 100644 index aeb579ea..00000000 Binary files a/public/textures/mcwwindows/lime_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/lime_mosaic_glass_pane.png b/public/textures/mcwwindows/lime_mosaic_glass_pane.png deleted file mode 100644 index 6700522e..00000000 Binary files a/public/textures/mcwwindows/lime_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/magenta_curtain.png b/public/textures/mcwwindows/magenta_curtain.png deleted file mode 100644 index 5fa4fb94..00000000 Binary files a/public/textures/mcwwindows/magenta_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/magenta_mosaic_glass.png b/public/textures/mcwwindows/magenta_mosaic_glass.png deleted file mode 100644 index bcf67cf7..00000000 Binary files a/public/textures/mcwwindows/magenta_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/magenta_mosaic_glass_pane.png b/public/textures/mcwwindows/magenta_mosaic_glass_pane.png deleted file mode 100644 index 48854d6b..00000000 Binary files a/public/textures/mcwwindows/magenta_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_blinds.png b/public/textures/mcwwindows/mangrove_blinds.png deleted file mode 100644 index 68b3f127..00000000 Binary files a/public/textures/mcwwindows/mangrove_blinds.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_curtain_rod.png b/public/textures/mcwwindows/mangrove_curtain_rod.png deleted file mode 100644 index f819d0dc..00000000 Binary files a/public/textures/mcwwindows/mangrove_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_four_window.png b/public/textures/mcwwindows/mangrove_four_window.png deleted file mode 100644 index e93f846d..00000000 Binary files a/public/textures/mcwwindows/mangrove_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_log_parapet.png b/public/textures/mcwwindows/mangrove_log_parapet.png deleted file mode 100644 index 23037f72..00000000 Binary files a/public/textures/mcwwindows/mangrove_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_louvered_shutter.png b/public/textures/mcwwindows/mangrove_louvered_shutter.png deleted file mode 100644 index f833d966..00000000 Binary files a/public/textures/mcwwindows/mangrove_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_pane_window.png b/public/textures/mcwwindows/mangrove_pane_window.png deleted file mode 100644 index 76e02bf6..00000000 Binary files a/public/textures/mcwwindows/mangrove_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_plank_four_window.png b/public/textures/mcwwindows/mangrove_plank_four_window.png deleted file mode 100644 index 2863dca4..00000000 Binary files a/public/textures/mcwwindows/mangrove_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_plank_pane_window.png b/public/textures/mcwwindows/mangrove_plank_pane_window.png deleted file mode 100644 index dfa6522a..00000000 Binary files a/public/textures/mcwwindows/mangrove_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_plank_parapet.png b/public/textures/mcwwindows/mangrove_plank_parapet.png deleted file mode 100644 index 072bd1ae..00000000 Binary files a/public/textures/mcwwindows/mangrove_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_plank_window.png b/public/textures/mcwwindows/mangrove_plank_window.png deleted file mode 100644 index 8e46bd78..00000000 Binary files a/public/textures/mcwwindows/mangrove_plank_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_plank_window2.png b/public/textures/mcwwindows/mangrove_plank_window2.png deleted file mode 100644 index a700dee7..00000000 Binary files a/public/textures/mcwwindows/mangrove_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_shutter.png b/public/textures/mcwwindows/mangrove_shutter.png deleted file mode 100644 index 7eeb4735..00000000 Binary files a/public/textures/mcwwindows/mangrove_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_window.png b/public/textures/mcwwindows/mangrove_window.png deleted file mode 100644 index 9324e2d4..00000000 Binary files a/public/textures/mcwwindows/mangrove_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/mangrove_window2.png b/public/textures/mcwwindows/mangrove_window2.png deleted file mode 100644 index f1da4b96..00000000 Binary files a/public/textures/mcwwindows/mangrove_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/metal_curtain_rod.png b/public/textures/mcwwindows/metal_curtain_rod.png deleted file mode 100644 index e0f696a1..00000000 Binary files a/public/textures/mcwwindows/metal_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/metal_four_window.png b/public/textures/mcwwindows/metal_four_window.png deleted file mode 100644 index 83c82126..00000000 Binary files a/public/textures/mcwwindows/metal_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/metal_pane_window.png b/public/textures/mcwwindows/metal_pane_window.png deleted file mode 100644 index 0c60ca94..00000000 Binary files a/public/textures/mcwwindows/metal_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/metal_window.png b/public/textures/mcwwindows/metal_window.png deleted file mode 100644 index 70b4aee0..00000000 Binary files a/public/textures/mcwwindows/metal_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/metal_window2.png b/public/textures/mcwwindows/metal_window2.png deleted file mode 100644 index f215ba44..00000000 Binary files a/public/textures/mcwwindows/metal_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/mud_brick_arrow_slit.png b/public/textures/mcwwindows/mud_brick_arrow_slit.png deleted file mode 100644 index 9e017c77..00000000 Binary files a/public/textures/mcwwindows/mud_brick_arrow_slit.png and /dev/null differ diff --git a/public/textures/mcwwindows/mud_brick_gothic.png b/public/textures/mcwwindows/mud_brick_gothic.png deleted file mode 100644 index d6c5a3af..00000000 Binary files a/public/textures/mcwwindows/mud_brick_gothic.png and /dev/null differ diff --git a/public/textures/mcwwindows/nether_brick_arrow_slit.png b/public/textures/mcwwindows/nether_brick_arrow_slit.png deleted file mode 100644 index 9e6eb993..00000000 Binary files a/public/textures/mcwwindows/nether_brick_arrow_slit.png and /dev/null differ diff --git a/public/textures/mcwwindows/nether_brick_gothic.png b/public/textures/mcwwindows/nether_brick_gothic.png deleted file mode 100644 index 2c19918b..00000000 Binary files a/public/textures/mcwwindows/nether_brick_gothic.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_blinds.png b/public/textures/mcwwindows/oak_blinds.png deleted file mode 100644 index 085fc9f9..00000000 Binary files a/public/textures/mcwwindows/oak_blinds.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_curtain_rod.png b/public/textures/mcwwindows/oak_curtain_rod.png deleted file mode 100644 index 8b7c52e8..00000000 Binary files a/public/textures/mcwwindows/oak_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_four_window.png b/public/textures/mcwwindows/oak_four_window.png deleted file mode 100644 index 71b746db..00000000 Binary files a/public/textures/mcwwindows/oak_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_log_parapet.png b/public/textures/mcwwindows/oak_log_parapet.png deleted file mode 100644 index b1ee3413..00000000 Binary files a/public/textures/mcwwindows/oak_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_louvered_shutter.png b/public/textures/mcwwindows/oak_louvered_shutter.png deleted file mode 100644 index 7b417559..00000000 Binary files a/public/textures/mcwwindows/oak_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_pane_window.png b/public/textures/mcwwindows/oak_pane_window.png deleted file mode 100644 index 9fd7f27a..00000000 Binary files a/public/textures/mcwwindows/oak_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_plank_four_window.png b/public/textures/mcwwindows/oak_plank_four_window.png deleted file mode 100644 index 8895bbef..00000000 Binary files a/public/textures/mcwwindows/oak_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_plank_pane_window.png b/public/textures/mcwwindows/oak_plank_pane_window.png deleted file mode 100644 index 045d8b7a..00000000 Binary files a/public/textures/mcwwindows/oak_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_plank_parapet.png b/public/textures/mcwwindows/oak_plank_parapet.png deleted file mode 100644 index be8989e9..00000000 Binary files a/public/textures/mcwwindows/oak_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_plank_window.png b/public/textures/mcwwindows/oak_plank_window.png deleted file mode 100644 index d2dd4cfb..00000000 Binary files a/public/textures/mcwwindows/oak_plank_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_plank_window2.png b/public/textures/mcwwindows/oak_plank_window2.png deleted file mode 100644 index b68fb949..00000000 Binary files a/public/textures/mcwwindows/oak_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_shutter.png b/public/textures/mcwwindows/oak_shutter.png deleted file mode 100644 index 7349e59a..00000000 Binary files a/public/textures/mcwwindows/oak_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_window.png b/public/textures/mcwwindows/oak_window.png deleted file mode 100644 index 35c3152c..00000000 Binary files a/public/textures/mcwwindows/oak_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/oak_window2.png b/public/textures/mcwwindows/oak_window2.png deleted file mode 100644 index 8c1f4a63..00000000 Binary files a/public/textures/mcwwindows/oak_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/one_way_glass.png b/public/textures/mcwwindows/one_way_glass.png deleted file mode 100644 index e4fe0ce1..00000000 Binary files a/public/textures/mcwwindows/one_way_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/one_way_glass_pane.png b/public/textures/mcwwindows/one_way_glass_pane.png deleted file mode 100644 index 36d6de5b..00000000 Binary files a/public/textures/mcwwindows/one_way_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/orange_curtain.png b/public/textures/mcwwindows/orange_curtain.png deleted file mode 100644 index 7e53c98a..00000000 Binary files a/public/textures/mcwwindows/orange_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/orange_mosaic_glass.png b/public/textures/mcwwindows/orange_mosaic_glass.png deleted file mode 100644 index 4894f70d..00000000 Binary files a/public/textures/mcwwindows/orange_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/orange_mosaic_glass_pane.png b/public/textures/mcwwindows/orange_mosaic_glass_pane.png deleted file mode 100644 index a44706ac..00000000 Binary files a/public/textures/mcwwindows/orange_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/pink_curtain.png b/public/textures/mcwwindows/pink_curtain.png deleted file mode 100644 index e2e246c1..00000000 Binary files a/public/textures/mcwwindows/pink_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/pink_mosaic_glass.png b/public/textures/mcwwindows/pink_mosaic_glass.png deleted file mode 100644 index f84c8e97..00000000 Binary files a/public/textures/mcwwindows/pink_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/pink_mosaic_glass_pane.png b/public/textures/mcwwindows/pink_mosaic_glass_pane.png deleted file mode 100644 index cc1c821a..00000000 Binary files a/public/textures/mcwwindows/pink_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/prismarine_brick_arrow_slit.png b/public/textures/mcwwindows/prismarine_brick_arrow_slit.png deleted file mode 100644 index 258bae2c..00000000 Binary files a/public/textures/mcwwindows/prismarine_brick_arrow_slit.png and /dev/null differ diff --git a/public/textures/mcwwindows/prismarine_brick_gothic.png b/public/textures/mcwwindows/prismarine_brick_gothic.png deleted file mode 100644 index 1ca6364b..00000000 Binary files a/public/textures/mcwwindows/prismarine_brick_gothic.png and /dev/null differ diff --git a/public/textures/mcwwindows/prismarine_four_window.png b/public/textures/mcwwindows/prismarine_four_window.png deleted file mode 100644 index 62e0c8fd..00000000 Binary files a/public/textures/mcwwindows/prismarine_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/prismarine_pane_window.png b/public/textures/mcwwindows/prismarine_pane_window.png deleted file mode 100644 index 5226776e..00000000 Binary files a/public/textures/mcwwindows/prismarine_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/prismarine_parapet.png b/public/textures/mcwwindows/prismarine_parapet.png deleted file mode 100644 index 4a38ebcd..00000000 Binary files a/public/textures/mcwwindows/prismarine_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/prismarine_window.png b/public/textures/mcwwindows/prismarine_window.png deleted file mode 100644 index fc85b953..00000000 Binary files a/public/textures/mcwwindows/prismarine_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/prismarine_window2.png b/public/textures/mcwwindows/prismarine_window2.png deleted file mode 100644 index 00cd49b3..00000000 Binary files a/public/textures/mcwwindows/prismarine_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/purple_curtain.png b/public/textures/mcwwindows/purple_curtain.png deleted file mode 100644 index 98c39eea..00000000 Binary files a/public/textures/mcwwindows/purple_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/purple_mosaic_glass.png b/public/textures/mcwwindows/purple_mosaic_glass.png deleted file mode 100644 index 9c0cee42..00000000 Binary files a/public/textures/mcwwindows/purple_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/purple_mosaic_glass_pane.png b/public/textures/mcwwindows/purple_mosaic_glass_pane.png deleted file mode 100644 index fec011a5..00000000 Binary files a/public/textures/mcwwindows/purple_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/quartz_four_window.png b/public/textures/mcwwindows/quartz_four_window.png deleted file mode 100644 index 097fb59f..00000000 Binary files a/public/textures/mcwwindows/quartz_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/quartz_pane_window.png b/public/textures/mcwwindows/quartz_pane_window.png deleted file mode 100644 index e23a01b8..00000000 Binary files a/public/textures/mcwwindows/quartz_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/quartz_window.png b/public/textures/mcwwindows/quartz_window.png deleted file mode 100644 index c63f3e29..00000000 Binary files a/public/textures/mcwwindows/quartz_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/quartz_window2.png b/public/textures/mcwwindows/quartz_window2.png deleted file mode 100644 index 7cb01b7b..00000000 Binary files a/public/textures/mcwwindows/quartz_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/red_curtain.png b/public/textures/mcwwindows/red_curtain.png deleted file mode 100644 index f0974099..00000000 Binary files a/public/textures/mcwwindows/red_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/red_mosaic_glass.png b/public/textures/mcwwindows/red_mosaic_glass.png deleted file mode 100644 index 926db808..00000000 Binary files a/public/textures/mcwwindows/red_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/red_mosaic_glass_pane.png b/public/textures/mcwwindows/red_mosaic_glass_pane.png deleted file mode 100644 index 19204607..00000000 Binary files a/public/textures/mcwwindows/red_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/red_sandstone_four_window.png b/public/textures/mcwwindows/red_sandstone_four_window.png deleted file mode 100644 index 0d3b97e1..00000000 Binary files a/public/textures/mcwwindows/red_sandstone_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/red_sandstone_pane_window.png b/public/textures/mcwwindows/red_sandstone_pane_window.png deleted file mode 100644 index e7424b26..00000000 Binary files a/public/textures/mcwwindows/red_sandstone_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/red_sandstone_window.png b/public/textures/mcwwindows/red_sandstone_window.png deleted file mode 100644 index 809bae2d..00000000 Binary files a/public/textures/mcwwindows/red_sandstone_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/red_sandstone_window2.png b/public/textures/mcwwindows/red_sandstone_window2.png deleted file mode 100644 index c86544c2..00000000 Binary files a/public/textures/mcwwindows/red_sandstone_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/sandstone_four_window.png b/public/textures/mcwwindows/sandstone_four_window.png deleted file mode 100644 index fc896f07..00000000 Binary files a/public/textures/mcwwindows/sandstone_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/sandstone_pane_window.png b/public/textures/mcwwindows/sandstone_pane_window.png deleted file mode 100644 index d2434f4a..00000000 Binary files a/public/textures/mcwwindows/sandstone_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/sandstone_window.png b/public/textures/mcwwindows/sandstone_window.png deleted file mode 100644 index 8eb0f465..00000000 Binary files a/public/textures/mcwwindows/sandstone_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/sandstone_window2.png b/public/textures/mcwwindows/sandstone_window2.png deleted file mode 100644 index fb1314c7..00000000 Binary files a/public/textures/mcwwindows/sandstone_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_blinds.png b/public/textures/mcwwindows/spruce_blinds.png deleted file mode 100644 index 19b1f7fa..00000000 Binary files a/public/textures/mcwwindows/spruce_blinds.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_curtain_rod.png b/public/textures/mcwwindows/spruce_curtain_rod.png deleted file mode 100644 index f03a2652..00000000 Binary files a/public/textures/mcwwindows/spruce_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_four_window.png b/public/textures/mcwwindows/spruce_four_window.png deleted file mode 100644 index b8217978..00000000 Binary files a/public/textures/mcwwindows/spruce_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_log_parapet.png b/public/textures/mcwwindows/spruce_log_parapet.png deleted file mode 100644 index d6d9811c..00000000 Binary files a/public/textures/mcwwindows/spruce_log_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_louvered_shutter.png b/public/textures/mcwwindows/spruce_louvered_shutter.png deleted file mode 100644 index f1fa71f8..00000000 Binary files a/public/textures/mcwwindows/spruce_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_pane_window.png b/public/textures/mcwwindows/spruce_pane_window.png deleted file mode 100644 index 7b56bcd8..00000000 Binary files a/public/textures/mcwwindows/spruce_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_plank_four_window.png b/public/textures/mcwwindows/spruce_plank_four_window.png deleted file mode 100644 index 3b64f601..00000000 Binary files a/public/textures/mcwwindows/spruce_plank_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_plank_pane_window.png b/public/textures/mcwwindows/spruce_plank_pane_window.png deleted file mode 100644 index 3970c978..00000000 Binary files a/public/textures/mcwwindows/spruce_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_plank_parapet.png b/public/textures/mcwwindows/spruce_plank_parapet.png deleted file mode 100644 index d797d63c..00000000 Binary files a/public/textures/mcwwindows/spruce_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_plank_window.png b/public/textures/mcwwindows/spruce_plank_window.png deleted file mode 100644 index 675e6d39..00000000 Binary files a/public/textures/mcwwindows/spruce_plank_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_plank_window2.png b/public/textures/mcwwindows/spruce_plank_window2.png deleted file mode 100644 index 9e4e7181..00000000 Binary files a/public/textures/mcwwindows/spruce_plank_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_shutter.png b/public/textures/mcwwindows/spruce_shutter.png deleted file mode 100644 index 9ff4dfa5..00000000 Binary files a/public/textures/mcwwindows/spruce_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_window.png b/public/textures/mcwwindows/spruce_window.png deleted file mode 100644 index d62c21c6..00000000 Binary files a/public/textures/mcwwindows/spruce_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/spruce_window2.png b/public/textures/mcwwindows/spruce_window2.png deleted file mode 100644 index d56d4e7e..00000000 Binary files a/public/textures/mcwwindows/spruce_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/stone_brick_arrow_slit.png b/public/textures/mcwwindows/stone_brick_arrow_slit.png deleted file mode 100644 index b75c2a15..00000000 Binary files a/public/textures/mcwwindows/stone_brick_arrow_slit.png and /dev/null differ diff --git a/public/textures/mcwwindows/stone_brick_gothic.png b/public/textures/mcwwindows/stone_brick_gothic.png deleted file mode 100644 index f8ab6a25..00000000 Binary files a/public/textures/mcwwindows/stone_brick_gothic.png and /dev/null differ diff --git a/public/textures/mcwwindows/stone_four_window.png b/public/textures/mcwwindows/stone_four_window.png deleted file mode 100644 index 15820533..00000000 Binary files a/public/textures/mcwwindows/stone_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stone_pane_window.png b/public/textures/mcwwindows/stone_pane_window.png deleted file mode 100644 index aa1a0524..00000000 Binary files a/public/textures/mcwwindows/stone_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stone_window.png b/public/textures/mcwwindows/stone_window.png deleted file mode 100644 index 81435378..00000000 Binary files a/public/textures/mcwwindows/stone_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stone_window2.png b/public/textures/mcwwindows/stone_window2.png deleted file mode 100644 index 529aec24..00000000 Binary files a/public/textures/mcwwindows/stone_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_acacia_log_four_window.png b/public/textures/mcwwindows/stripped_acacia_log_four_window.png deleted file mode 100644 index 7779bdb7..00000000 Binary files a/public/textures/mcwwindows/stripped_acacia_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_acacia_log_window.png b/public/textures/mcwwindows/stripped_acacia_log_window.png deleted file mode 100644 index ef540577..00000000 Binary files a/public/textures/mcwwindows/stripped_acacia_log_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_acacia_log_window2.png b/public/textures/mcwwindows/stripped_acacia_log_window2.png deleted file mode 100644 index 2c0567bf..00000000 Binary files a/public/textures/mcwwindows/stripped_acacia_log_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_acacia_pane_window.png b/public/textures/mcwwindows/stripped_acacia_pane_window.png deleted file mode 100644 index f21cae3f..00000000 Binary files a/public/textures/mcwwindows/stripped_acacia_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_birch_log_four_window.png b/public/textures/mcwwindows/stripped_birch_log_four_window.png deleted file mode 100644 index f1eaf4c8..00000000 Binary files a/public/textures/mcwwindows/stripped_birch_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_birch_log_window.png b/public/textures/mcwwindows/stripped_birch_log_window.png deleted file mode 100644 index 75fb9c4c..00000000 Binary files a/public/textures/mcwwindows/stripped_birch_log_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_birch_log_window2.png b/public/textures/mcwwindows/stripped_birch_log_window2.png deleted file mode 100644 index adddcca1..00000000 Binary files a/public/textures/mcwwindows/stripped_birch_log_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_birch_pane_window.png b/public/textures/mcwwindows/stripped_birch_pane_window.png deleted file mode 100644 index 386718e8..00000000 Binary files a/public/textures/mcwwindows/stripped_birch_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_cherry_log_four_window.png b/public/textures/mcwwindows/stripped_cherry_log_four_window.png deleted file mode 100644 index 5fb586f5..00000000 Binary files a/public/textures/mcwwindows/stripped_cherry_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_cherry_log_window.png b/public/textures/mcwwindows/stripped_cherry_log_window.png deleted file mode 100644 index 0a54502d..00000000 Binary files a/public/textures/mcwwindows/stripped_cherry_log_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_cherry_log_window2.png b/public/textures/mcwwindows/stripped_cherry_log_window2.png deleted file mode 100644 index 65d4b94c..00000000 Binary files a/public/textures/mcwwindows/stripped_cherry_log_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_cherry_pane_window.png b/public/textures/mcwwindows/stripped_cherry_pane_window.png deleted file mode 100644 index af3e5ab3..00000000 Binary files a/public/textures/mcwwindows/stripped_cherry_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_crimson_pane_window.png b/public/textures/mcwwindows/stripped_crimson_pane_window.png deleted file mode 100644 index ffa8423e..00000000 Binary files a/public/textures/mcwwindows/stripped_crimson_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_crimson_stem_four_window.png b/public/textures/mcwwindows/stripped_crimson_stem_four_window.png deleted file mode 100644 index 56250f60..00000000 Binary files a/public/textures/mcwwindows/stripped_crimson_stem_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_crimson_stem_window.png b/public/textures/mcwwindows/stripped_crimson_stem_window.png deleted file mode 100644 index e3120fef..00000000 Binary files a/public/textures/mcwwindows/stripped_crimson_stem_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_crimson_stem_window2.png b/public/textures/mcwwindows/stripped_crimson_stem_window2.png deleted file mode 100644 index 55404700..00000000 Binary files a/public/textures/mcwwindows/stripped_crimson_stem_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_dark_oak_log_four_window.png b/public/textures/mcwwindows/stripped_dark_oak_log_four_window.png deleted file mode 100644 index 7abecc52..00000000 Binary files a/public/textures/mcwwindows/stripped_dark_oak_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_dark_oak_log_window.png b/public/textures/mcwwindows/stripped_dark_oak_log_window.png deleted file mode 100644 index 2c1bca21..00000000 Binary files a/public/textures/mcwwindows/stripped_dark_oak_log_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_dark_oak_log_window2.png b/public/textures/mcwwindows/stripped_dark_oak_log_window2.png deleted file mode 100644 index 869b22dd..00000000 Binary files a/public/textures/mcwwindows/stripped_dark_oak_log_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_dark_oak_pane_window.png b/public/textures/mcwwindows/stripped_dark_oak_pane_window.png deleted file mode 100644 index e1270dbf..00000000 Binary files a/public/textures/mcwwindows/stripped_dark_oak_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_jungle_log_four_window.png b/public/textures/mcwwindows/stripped_jungle_log_four_window.png deleted file mode 100644 index b2679fc4..00000000 Binary files a/public/textures/mcwwindows/stripped_jungle_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_jungle_log_window.png b/public/textures/mcwwindows/stripped_jungle_log_window.png deleted file mode 100644 index c2abd00c..00000000 Binary files a/public/textures/mcwwindows/stripped_jungle_log_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_jungle_log_window2.png b/public/textures/mcwwindows/stripped_jungle_log_window2.png deleted file mode 100644 index a38f7a64..00000000 Binary files a/public/textures/mcwwindows/stripped_jungle_log_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_jungle_pane_window.png b/public/textures/mcwwindows/stripped_jungle_pane_window.png deleted file mode 100644 index f330c020..00000000 Binary files a/public/textures/mcwwindows/stripped_jungle_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_mangrove_log_four_window.png b/public/textures/mcwwindows/stripped_mangrove_log_four_window.png deleted file mode 100644 index 0c0cbf07..00000000 Binary files a/public/textures/mcwwindows/stripped_mangrove_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_mangrove_log_window.png b/public/textures/mcwwindows/stripped_mangrove_log_window.png deleted file mode 100644 index 0d3b4fae..00000000 Binary files a/public/textures/mcwwindows/stripped_mangrove_log_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_mangrove_log_window2.png b/public/textures/mcwwindows/stripped_mangrove_log_window2.png deleted file mode 100644 index d09c384e..00000000 Binary files a/public/textures/mcwwindows/stripped_mangrove_log_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_mangrove_pane_window.png b/public/textures/mcwwindows/stripped_mangrove_pane_window.png deleted file mode 100644 index 780a9709..00000000 Binary files a/public/textures/mcwwindows/stripped_mangrove_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_oak_log_four_window.png b/public/textures/mcwwindows/stripped_oak_log_four_window.png deleted file mode 100644 index f4f74108..00000000 Binary files a/public/textures/mcwwindows/stripped_oak_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_oak_log_window.png b/public/textures/mcwwindows/stripped_oak_log_window.png deleted file mode 100644 index c94b0b44..00000000 Binary files a/public/textures/mcwwindows/stripped_oak_log_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_oak_log_window2.png b/public/textures/mcwwindows/stripped_oak_log_window2.png deleted file mode 100644 index 47bd35f0..00000000 Binary files a/public/textures/mcwwindows/stripped_oak_log_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_oak_pane_window.png b/public/textures/mcwwindows/stripped_oak_pane_window.png deleted file mode 100644 index 2ae02e73..00000000 Binary files a/public/textures/mcwwindows/stripped_oak_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_spruce_log_four_window.png b/public/textures/mcwwindows/stripped_spruce_log_four_window.png deleted file mode 100644 index 66e46552..00000000 Binary files a/public/textures/mcwwindows/stripped_spruce_log_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_spruce_log_window.png b/public/textures/mcwwindows/stripped_spruce_log_window.png deleted file mode 100644 index 8645c4de..00000000 Binary files a/public/textures/mcwwindows/stripped_spruce_log_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_spruce_log_window2.png b/public/textures/mcwwindows/stripped_spruce_log_window2.png deleted file mode 100644 index f2017f78..00000000 Binary files a/public/textures/mcwwindows/stripped_spruce_log_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_spruce_pane_window.png b/public/textures/mcwwindows/stripped_spruce_pane_window.png deleted file mode 100644 index 26840d39..00000000 Binary files a/public/textures/mcwwindows/stripped_spruce_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_warped_pane_window.png b/public/textures/mcwwindows/stripped_warped_pane_window.png deleted file mode 100644 index 84625172..00000000 Binary files a/public/textures/mcwwindows/stripped_warped_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_warped_stem_four_window.png b/public/textures/mcwwindows/stripped_warped_stem_four_window.png deleted file mode 100644 index 9bfb7461..00000000 Binary files a/public/textures/mcwwindows/stripped_warped_stem_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_warped_stem_window.png b/public/textures/mcwwindows/stripped_warped_stem_window.png deleted file mode 100644 index 269dbc9b..00000000 Binary files a/public/textures/mcwwindows/stripped_warped_stem_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/stripped_warped_stem_window2.png b/public/textures/mcwwindows/stripped_warped_stem_window2.png deleted file mode 100644 index 71515dfa..00000000 Binary files a/public/textures/mcwwindows/stripped_warped_stem_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_blinds.png b/public/textures/mcwwindows/warped_blinds.png deleted file mode 100644 index 19a88f9e..00000000 Binary files a/public/textures/mcwwindows/warped_blinds.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_curtain_rod.png b/public/textures/mcwwindows/warped_curtain_rod.png deleted file mode 100644 index cc026934..00000000 Binary files a/public/textures/mcwwindows/warped_curtain_rod.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_louvered_shutter.png b/public/textures/mcwwindows/warped_louvered_shutter.png deleted file mode 100644 index 320ab0e4..00000000 Binary files a/public/textures/mcwwindows/warped_louvered_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_pane_window.png b/public/textures/mcwwindows/warped_pane_window.png deleted file mode 100644 index edbdd338..00000000 Binary files a/public/textures/mcwwindows/warped_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_plank_pane_window.png b/public/textures/mcwwindows/warped_plank_pane_window.png deleted file mode 100644 index 7820394f..00000000 Binary files a/public/textures/mcwwindows/warped_plank_pane_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_plank_parapet.png b/public/textures/mcwwindows/warped_plank_parapet.png deleted file mode 100644 index c8bc4af0..00000000 Binary files a/public/textures/mcwwindows/warped_plank_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_planks_four_window.png b/public/textures/mcwwindows/warped_planks_four_window.png deleted file mode 100644 index f83e730a..00000000 Binary files a/public/textures/mcwwindows/warped_planks_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_planks_window.png b/public/textures/mcwwindows/warped_planks_window.png deleted file mode 100644 index 1523ca0a..00000000 Binary files a/public/textures/mcwwindows/warped_planks_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_planks_window2.png b/public/textures/mcwwindows/warped_planks_window2.png deleted file mode 100644 index 76357977..00000000 Binary files a/public/textures/mcwwindows/warped_planks_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_shutter.png b/public/textures/mcwwindows/warped_shutter.png deleted file mode 100644 index e7cbe9b0..00000000 Binary files a/public/textures/mcwwindows/warped_shutter.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_stem_four_window.png b/public/textures/mcwwindows/warped_stem_four_window.png deleted file mode 100644 index fe23aa5c..00000000 Binary files a/public/textures/mcwwindows/warped_stem_four_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_stem_parapet.png b/public/textures/mcwwindows/warped_stem_parapet.png deleted file mode 100644 index 08557070..00000000 Binary files a/public/textures/mcwwindows/warped_stem_parapet.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_stem_window.png b/public/textures/mcwwindows/warped_stem_window.png deleted file mode 100644 index ee52184a..00000000 Binary files a/public/textures/mcwwindows/warped_stem_window.png and /dev/null differ diff --git a/public/textures/mcwwindows/warped_stem_window2.png b/public/textures/mcwwindows/warped_stem_window2.png deleted file mode 100644 index 7d8a2ec3..00000000 Binary files a/public/textures/mcwwindows/warped_stem_window2.png and /dev/null differ diff --git a/public/textures/mcwwindows/white_curtain.png b/public/textures/mcwwindows/white_curtain.png deleted file mode 100644 index e24abbcb..00000000 Binary files a/public/textures/mcwwindows/white_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/white_mosaic_glass.png b/public/textures/mcwwindows/white_mosaic_glass.png deleted file mode 100644 index 9a4af195..00000000 Binary files a/public/textures/mcwwindows/white_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/white_mosaic_glass_pane.png b/public/textures/mcwwindows/white_mosaic_glass_pane.png deleted file mode 100644 index cb78c0df..00000000 Binary files a/public/textures/mcwwindows/white_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mcwwindows/window_base.png b/public/textures/mcwwindows/window_base.png deleted file mode 100644 index 537536bd..00000000 Binary files a/public/textures/mcwwindows/window_base.png and /dev/null differ diff --git a/public/textures/mcwwindows/window_centre_bar_base.png b/public/textures/mcwwindows/window_centre_bar_base.png deleted file mode 100644 index 6b77d053..00000000 Binary files a/public/textures/mcwwindows/window_centre_bar_base.png and /dev/null differ diff --git a/public/textures/mcwwindows/window_half_bar_base.png b/public/textures/mcwwindows/window_half_bar_base.png deleted file mode 100644 index 30b5cc3b..00000000 Binary files a/public/textures/mcwwindows/window_half_bar_base.png and /dev/null differ diff --git a/public/textures/mcwwindows/yellow_curtain.png b/public/textures/mcwwindows/yellow_curtain.png deleted file mode 100644 index bf8d729a..00000000 Binary files a/public/textures/mcwwindows/yellow_curtain.png and /dev/null differ diff --git a/public/textures/mcwwindows/yellow_mosaic_glass.png b/public/textures/mcwwindows/yellow_mosaic_glass.png deleted file mode 100644 index 9e352f67..00000000 Binary files a/public/textures/mcwwindows/yellow_mosaic_glass.png and /dev/null differ diff --git a/public/textures/mcwwindows/yellow_mosaic_glass_pane.png b/public/textures/mcwwindows/yellow_mosaic_glass_pane.png deleted file mode 100644 index 86ad5b25..00000000 Binary files a/public/textures/mcwwindows/yellow_mosaic_glass_pane.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_bin.png b/public/textures/mekanism/advanced_bin.png deleted file mode 100644 index 47bc31fe..00000000 Binary files a/public/textures/mekanism/advanced_bin.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_chemical_tank.png b/public/textures/mekanism/advanced_chemical_tank.png deleted file mode 100644 index cebdf119..00000000 Binary files a/public/textures/mekanism/advanced_chemical_tank.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_combining_factory.png b/public/textures/mekanism/advanced_combining_factory.png deleted file mode 100644 index 56e3b07d..00000000 Binary files a/public/textures/mekanism/advanced_combining_factory.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_compressing_factory.png b/public/textures/mekanism/advanced_compressing_factory.png deleted file mode 100644 index a092337e..00000000 Binary files a/public/textures/mekanism/advanced_compressing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_control_circuit.png b/public/textures/mekanism/advanced_control_circuit.png deleted file mode 100644 index 4b060508..00000000 Binary files a/public/textures/mekanism/advanced_control_circuit.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_crushing_factory.png b/public/textures/mekanism/advanced_crushing_factory.png deleted file mode 100644 index 583cacd0..00000000 Binary files a/public/textures/mekanism/advanced_crushing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_energy_cube.png b/public/textures/mekanism/advanced_energy_cube.png deleted file mode 100644 index 34eaca67..00000000 Binary files a/public/textures/mekanism/advanced_energy_cube.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_energy_cube__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png b/public/textures/mekanism/advanced_energy_cube__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png deleted file mode 100644 index da43daac..00000000 Binary files a/public/textures/mekanism/advanced_energy_cube__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_enriching_factory.png b/public/textures/mekanism/advanced_enriching_factory.png deleted file mode 100644 index 36e678b5..00000000 Binary files a/public/textures/mekanism/advanced_enriching_factory.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_fluid_tank.png b/public/textures/mekanism/advanced_fluid_tank.png deleted file mode 100644 index 3d33ed17..00000000 Binary files a/public/textures/mekanism/advanced_fluid_tank.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_induction_cell.png b/public/textures/mekanism/advanced_induction_cell.png deleted file mode 100644 index 020faa59..00000000 Binary files a/public/textures/mekanism/advanced_induction_cell.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_induction_provider.png b/public/textures/mekanism/advanced_induction_provider.png deleted file mode 100644 index 0ce61734..00000000 Binary files a/public/textures/mekanism/advanced_induction_provider.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_infusing_factory.png b/public/textures/mekanism/advanced_infusing_factory.png deleted file mode 100644 index bb1e89db..00000000 Binary files a/public/textures/mekanism/advanced_infusing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_injecting_factory.png b/public/textures/mekanism/advanced_injecting_factory.png deleted file mode 100644 index 11d975ba..00000000 Binary files a/public/textures/mekanism/advanced_injecting_factory.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_logistical_transporter.png b/public/textures/mekanism/advanced_logistical_transporter.png deleted file mode 100644 index 75c9db6d..00000000 Binary files a/public/textures/mekanism/advanced_logistical_transporter.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_mechanical_pipe.png b/public/textures/mekanism/advanced_mechanical_pipe.png deleted file mode 100644 index e0b5377b..00000000 Binary files a/public/textures/mekanism/advanced_mechanical_pipe.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_pressurized_tube.png b/public/textures/mekanism/advanced_pressurized_tube.png deleted file mode 100644 index a6ecf287..00000000 Binary files a/public/textures/mekanism/advanced_pressurized_tube.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_purifying_factory.png b/public/textures/mekanism/advanced_purifying_factory.png deleted file mode 100644 index 9dd8519c..00000000 Binary files a/public/textures/mekanism/advanced_purifying_factory.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_sawing_factory.png b/public/textures/mekanism/advanced_sawing_factory.png deleted file mode 100644 index 472c1bd7..00000000 Binary files a/public/textures/mekanism/advanced_sawing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_smelting_factory.png b/public/textures/mekanism/advanced_smelting_factory.png deleted file mode 100644 index 5f9b9312..00000000 Binary files a/public/textures/mekanism/advanced_smelting_factory.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_thermodynamic_conductor.png b/public/textures/mekanism/advanced_thermodynamic_conductor.png deleted file mode 100644 index 0954ad71..00000000 Binary files a/public/textures/mekanism/advanced_thermodynamic_conductor.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_tier_installer.png b/public/textures/mekanism/advanced_tier_installer.png deleted file mode 100644 index 3d679a82..00000000 Binary files a/public/textures/mekanism/advanced_tier_installer.png and /dev/null differ diff --git a/public/textures/mekanism/advanced_universal_cable.png b/public/textures/mekanism/advanced_universal_cable.png deleted file mode 100644 index f6cae21f..00000000 Binary files a/public/textures/mekanism/advanced_universal_cable.png and /dev/null differ diff --git a/public/textures/mekanism/alloy_atomic.png b/public/textures/mekanism/alloy_atomic.png deleted file mode 100644 index d74489c9..00000000 Binary files a/public/textures/mekanism/alloy_atomic.png and /dev/null differ diff --git a/public/textures/mekanism/alloy_infused.png b/public/textures/mekanism/alloy_infused.png deleted file mode 100644 index 0df21dc7..00000000 Binary files a/public/textures/mekanism/alloy_infused.png and /dev/null differ diff --git a/public/textures/mekanism/alloy_reinforced.png b/public/textures/mekanism/alloy_reinforced.png deleted file mode 100644 index ad55440c..00000000 Binary files a/public/textures/mekanism/alloy_reinforced.png and /dev/null differ diff --git a/public/textures/mekanism/antiprotonic_nucleosynthesizer.png b/public/textures/mekanism/antiprotonic_nucleosynthesizer.png deleted file mode 100644 index d8e0e041..00000000 Binary files a/public/textures/mekanism/antiprotonic_nucleosynthesizer.png and /dev/null differ diff --git a/public/textures/mekanism/atomic_disassembler.png b/public/textures/mekanism/atomic_disassembler.png deleted file mode 100644 index db212f7b..00000000 Binary files a/public/textures/mekanism/atomic_disassembler.png and /dev/null differ diff --git a/public/textures/mekanism/atomic_disassembler__{'mekanism__energy'__{energy_containers__[L;1000000L]}}.png b/public/textures/mekanism/atomic_disassembler__{'mekanism__energy'__{energy_containers__[L;1000000L]}}.png deleted file mode 100644 index db212f7b..00000000 Binary files a/public/textures/mekanism/atomic_disassembler__{'mekanism__energy'__{energy_containers__[L;1000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/basic_bin.png b/public/textures/mekanism/basic_bin.png deleted file mode 100644 index bdbda354..00000000 Binary files a/public/textures/mekanism/basic_bin.png and /dev/null differ diff --git a/public/textures/mekanism/basic_chemical_tank.png b/public/textures/mekanism/basic_chemical_tank.png deleted file mode 100644 index 48b41fcd..00000000 Binary files a/public/textures/mekanism/basic_chemical_tank.png and /dev/null differ diff --git a/public/textures/mekanism/basic_combining_factory.png b/public/textures/mekanism/basic_combining_factory.png deleted file mode 100644 index 3a46385f..00000000 Binary files a/public/textures/mekanism/basic_combining_factory.png and /dev/null differ diff --git a/public/textures/mekanism/basic_compressing_factory.png b/public/textures/mekanism/basic_compressing_factory.png deleted file mode 100644 index 258a01a3..00000000 Binary files a/public/textures/mekanism/basic_compressing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/basic_control_circuit.png b/public/textures/mekanism/basic_control_circuit.png deleted file mode 100644 index 8f85dd0a..00000000 Binary files a/public/textures/mekanism/basic_control_circuit.png and /dev/null differ diff --git a/public/textures/mekanism/basic_crushing_factory.png b/public/textures/mekanism/basic_crushing_factory.png deleted file mode 100644 index 6ff059c8..00000000 Binary files a/public/textures/mekanism/basic_crushing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/basic_energy_cube.png b/public/textures/mekanism/basic_energy_cube.png deleted file mode 100644 index 11e3505d..00000000 Binary files a/public/textures/mekanism/basic_energy_cube.png and /dev/null differ diff --git a/public/textures/mekanism/basic_energy_cube__{'mekanism__energy'__{energy_containers__[L;4000000L]}}.png b/public/textures/mekanism/basic_energy_cube__{'mekanism__energy'__{energy_containers__[L;4000000L]}}.png deleted file mode 100644 index e1e7361b..00000000 Binary files a/public/textures/mekanism/basic_energy_cube__{'mekanism__energy'__{energy_containers__[L;4000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/basic_enriching_factory.png b/public/textures/mekanism/basic_enriching_factory.png deleted file mode 100644 index 56964abf..00000000 Binary files a/public/textures/mekanism/basic_enriching_factory.png and /dev/null differ diff --git a/public/textures/mekanism/basic_fluid_tank.png b/public/textures/mekanism/basic_fluid_tank.png deleted file mode 100644 index 9b7e608b..00000000 Binary files a/public/textures/mekanism/basic_fluid_tank.png and /dev/null differ diff --git a/public/textures/mekanism/basic_induction_cell.png b/public/textures/mekanism/basic_induction_cell.png deleted file mode 100644 index 6cbc5312..00000000 Binary files a/public/textures/mekanism/basic_induction_cell.png and /dev/null differ diff --git a/public/textures/mekanism/basic_induction_provider.png b/public/textures/mekanism/basic_induction_provider.png deleted file mode 100644 index c34b7375..00000000 Binary files a/public/textures/mekanism/basic_induction_provider.png and /dev/null differ diff --git a/public/textures/mekanism/basic_infusing_factory.png b/public/textures/mekanism/basic_infusing_factory.png deleted file mode 100644 index 4cd11dce..00000000 Binary files a/public/textures/mekanism/basic_infusing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/basic_injecting_factory.png b/public/textures/mekanism/basic_injecting_factory.png deleted file mode 100644 index 225f1080..00000000 Binary files a/public/textures/mekanism/basic_injecting_factory.png and /dev/null differ diff --git a/public/textures/mekanism/basic_logistical_transporter.png b/public/textures/mekanism/basic_logistical_transporter.png deleted file mode 100644 index 8b19edc1..00000000 Binary files a/public/textures/mekanism/basic_logistical_transporter.png and /dev/null differ diff --git a/public/textures/mekanism/basic_mechanical_pipe.png b/public/textures/mekanism/basic_mechanical_pipe.png deleted file mode 100644 index 31483a69..00000000 Binary files a/public/textures/mekanism/basic_mechanical_pipe.png and /dev/null differ diff --git a/public/textures/mekanism/basic_pressurized_tube.png b/public/textures/mekanism/basic_pressurized_tube.png deleted file mode 100644 index 8a38112e..00000000 Binary files a/public/textures/mekanism/basic_pressurized_tube.png and /dev/null differ diff --git a/public/textures/mekanism/basic_purifying_factory.png b/public/textures/mekanism/basic_purifying_factory.png deleted file mode 100644 index 4370e349..00000000 Binary files a/public/textures/mekanism/basic_purifying_factory.png and /dev/null differ diff --git a/public/textures/mekanism/basic_sawing_factory.png b/public/textures/mekanism/basic_sawing_factory.png deleted file mode 100644 index c7d9010a..00000000 Binary files a/public/textures/mekanism/basic_sawing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/basic_smelting_factory.png b/public/textures/mekanism/basic_smelting_factory.png deleted file mode 100644 index a947a532..00000000 Binary files a/public/textures/mekanism/basic_smelting_factory.png and /dev/null differ diff --git a/public/textures/mekanism/basic_thermodynamic_conductor.png b/public/textures/mekanism/basic_thermodynamic_conductor.png deleted file mode 100644 index 6a8ce363..00000000 Binary files a/public/textures/mekanism/basic_thermodynamic_conductor.png and /dev/null differ diff --git a/public/textures/mekanism/basic_tier_installer.png b/public/textures/mekanism/basic_tier_installer.png deleted file mode 100644 index 8a261a25..00000000 Binary files a/public/textures/mekanism/basic_tier_installer.png and /dev/null differ diff --git a/public/textures/mekanism/basic_universal_cable.png b/public/textures/mekanism/basic_universal_cable.png deleted file mode 100644 index daa3a407..00000000 Binary files a/public/textures/mekanism/basic_universal_cable.png and /dev/null differ diff --git a/public/textures/mekanism/bio_fuel.png b/public/textures/mekanism/bio_fuel.png deleted file mode 100644 index dd6a5b49..00000000 Binary files a/public/textures/mekanism/bio_fuel.png and /dev/null differ diff --git a/public/textures/mekanism/block_bio_fuel.png b/public/textures/mekanism/block_bio_fuel.png deleted file mode 100644 index d1ad6392..00000000 Binary files a/public/textures/mekanism/block_bio_fuel.png and /dev/null differ diff --git a/public/textures/mekanism/block_bronze.png b/public/textures/mekanism/block_bronze.png deleted file mode 100644 index 2097f914..00000000 Binary files a/public/textures/mekanism/block_bronze.png and /dev/null differ diff --git a/public/textures/mekanism/block_charcoal.png b/public/textures/mekanism/block_charcoal.png deleted file mode 100644 index 6e203520..00000000 Binary files a/public/textures/mekanism/block_charcoal.png and /dev/null differ diff --git a/public/textures/mekanism/block_fluorite.png b/public/textures/mekanism/block_fluorite.png deleted file mode 100644 index 5355fd97..00000000 Binary files a/public/textures/mekanism/block_fluorite.png and /dev/null differ diff --git a/public/textures/mekanism/block_lead.png b/public/textures/mekanism/block_lead.png deleted file mode 100644 index 94139fc9..00000000 Binary files a/public/textures/mekanism/block_lead.png and /dev/null differ diff --git a/public/textures/mekanism/block_osmium.png b/public/textures/mekanism/block_osmium.png deleted file mode 100644 index f0a645c7..00000000 Binary files a/public/textures/mekanism/block_osmium.png and /dev/null differ diff --git a/public/textures/mekanism/block_raw_lead.png b/public/textures/mekanism/block_raw_lead.png deleted file mode 100644 index ef27a9cf..00000000 Binary files a/public/textures/mekanism/block_raw_lead.png and /dev/null differ diff --git a/public/textures/mekanism/block_raw_osmium.png b/public/textures/mekanism/block_raw_osmium.png deleted file mode 100644 index a76ab5ef..00000000 Binary files a/public/textures/mekanism/block_raw_osmium.png and /dev/null differ diff --git a/public/textures/mekanism/block_raw_tin.png b/public/textures/mekanism/block_raw_tin.png deleted file mode 100644 index 014a4a56..00000000 Binary files a/public/textures/mekanism/block_raw_tin.png and /dev/null differ diff --git a/public/textures/mekanism/block_raw_uranium.png b/public/textures/mekanism/block_raw_uranium.png deleted file mode 100644 index 27899308..00000000 Binary files a/public/textures/mekanism/block_raw_uranium.png and /dev/null differ diff --git a/public/textures/mekanism/block_refined_glowstone.png b/public/textures/mekanism/block_refined_glowstone.png deleted file mode 100644 index 5e53737c..00000000 Binary files a/public/textures/mekanism/block_refined_glowstone.png and /dev/null differ diff --git a/public/textures/mekanism/block_refined_obsidian.png b/public/textures/mekanism/block_refined_obsidian.png deleted file mode 100644 index 12bce68c..00000000 Binary files a/public/textures/mekanism/block_refined_obsidian.png and /dev/null differ diff --git a/public/textures/mekanism/block_salt.png b/public/textures/mekanism/block_salt.png deleted file mode 100644 index a176305f..00000000 Binary files a/public/textures/mekanism/block_salt.png and /dev/null differ diff --git a/public/textures/mekanism/block_steel.png b/public/textures/mekanism/block_steel.png deleted file mode 100644 index d4cf3b13..00000000 Binary files a/public/textures/mekanism/block_steel.png and /dev/null differ diff --git a/public/textures/mekanism/block_tin.png b/public/textures/mekanism/block_tin.png deleted file mode 100644 index cc8f25b1..00000000 Binary files a/public/textures/mekanism/block_tin.png and /dev/null differ diff --git a/public/textures/mekanism/block_uranium.png b/public/textures/mekanism/block_uranium.png deleted file mode 100644 index 7ccd34fd..00000000 Binary files a/public/textures/mekanism/block_uranium.png and /dev/null differ diff --git a/public/textures/mekanism/boiler_casing.png b/public/textures/mekanism/boiler_casing.png deleted file mode 100644 index acc4055b..00000000 Binary files a/public/textures/mekanism/boiler_casing.png and /dev/null differ diff --git a/public/textures/mekanism/boiler_valve.png b/public/textures/mekanism/boiler_valve.png deleted file mode 100644 index fab71e23..00000000 Binary files a/public/textures/mekanism/boiler_valve.png and /dev/null differ diff --git a/public/textures/mekanism/brine_bucket.png b/public/textures/mekanism/brine_bucket.png deleted file mode 100644 index d129f86a..00000000 Binary files a/public/textures/mekanism/brine_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/canteen.png b/public/textures/mekanism/canteen.png deleted file mode 100644 index 55b03e87..00000000 Binary files a/public/textures/mekanism/canteen.png and /dev/null differ diff --git a/public/textures/mekanism/canteen__{'mekanism__fluids'__{fluid_tanks__[{amount__64000,id__'mekanism__nutritional_paste'}]}}.png b/public/textures/mekanism/canteen__{'mekanism__fluids'__{fluid_tanks__[{amount__64000,id__'mekanism__nutritional_paste'}]}}.png deleted file mode 100644 index 55b03e87..00000000 Binary files a/public/textures/mekanism/canteen__{'mekanism__fluids'__{fluid_tanks__[{amount__64000,id__'mekanism__nutritional_paste'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/cardboard_box.png b/public/textures/mekanism/cardboard_box.png deleted file mode 100644 index a13813b5..00000000 Binary files a/public/textures/mekanism/cardboard_box.png and /dev/null differ diff --git a/public/textures/mekanism/chargepad.png b/public/textures/mekanism/chargepad.png deleted file mode 100644 index c0445fb8..00000000 Binary files a/public/textures/mekanism/chargepad.png and /dev/null differ diff --git a/public/textures/mekanism/chemical_crystallizer.png b/public/textures/mekanism/chemical_crystallizer.png deleted file mode 100644 index 7e33e57e..00000000 Binary files a/public/textures/mekanism/chemical_crystallizer.png and /dev/null differ diff --git a/public/textures/mekanism/chemical_dissolution_chamber.png b/public/textures/mekanism/chemical_dissolution_chamber.png deleted file mode 100644 index d2e860fc..00000000 Binary files a/public/textures/mekanism/chemical_dissolution_chamber.png and /dev/null differ diff --git a/public/textures/mekanism/chemical_infuser.png b/public/textures/mekanism/chemical_infuser.png deleted file mode 100644 index 16eab1a1..00000000 Binary files a/public/textures/mekanism/chemical_infuser.png and /dev/null differ diff --git a/public/textures/mekanism/chemical_injection_chamber.png b/public/textures/mekanism/chemical_injection_chamber.png deleted file mode 100644 index 4e254862..00000000 Binary files a/public/textures/mekanism/chemical_injection_chamber.png and /dev/null differ diff --git a/public/textures/mekanism/chemical_oxidizer.png b/public/textures/mekanism/chemical_oxidizer.png deleted file mode 100644 index 42171aa2..00000000 Binary files a/public/textures/mekanism/chemical_oxidizer.png and /dev/null differ diff --git a/public/textures/mekanism/chemical_washer.png b/public/textures/mekanism/chemical_washer.png deleted file mode 100644 index 61a516bc..00000000 Binary files a/public/textures/mekanism/chemical_washer.png and /dev/null differ diff --git a/public/textures/mekanism/chlorine_bucket.png b/public/textures/mekanism/chlorine_bucket.png deleted file mode 100644 index 88e87a87..00000000 Binary files a/public/textures/mekanism/chlorine_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/clump_copper.png b/public/textures/mekanism/clump_copper.png deleted file mode 100644 index 6fc6f139..00000000 Binary files a/public/textures/mekanism/clump_copper.png and /dev/null differ diff --git a/public/textures/mekanism/clump_gold.png b/public/textures/mekanism/clump_gold.png deleted file mode 100644 index 40fbb43a..00000000 Binary files a/public/textures/mekanism/clump_gold.png and /dev/null differ diff --git a/public/textures/mekanism/clump_iron.png b/public/textures/mekanism/clump_iron.png deleted file mode 100644 index c4078f67..00000000 Binary files a/public/textures/mekanism/clump_iron.png and /dev/null differ diff --git a/public/textures/mekanism/clump_lead.png b/public/textures/mekanism/clump_lead.png deleted file mode 100644 index 031718fd..00000000 Binary files a/public/textures/mekanism/clump_lead.png and /dev/null differ diff --git a/public/textures/mekanism/clump_osmium.png b/public/textures/mekanism/clump_osmium.png deleted file mode 100644 index 26b4cdb9..00000000 Binary files a/public/textures/mekanism/clump_osmium.png and /dev/null differ diff --git a/public/textures/mekanism/clump_tin.png b/public/textures/mekanism/clump_tin.png deleted file mode 100644 index 6eb34b4f..00000000 Binary files a/public/textures/mekanism/clump_tin.png and /dev/null differ diff --git a/public/textures/mekanism/clump_uranium.png b/public/textures/mekanism/clump_uranium.png deleted file mode 100644 index 08c80c20..00000000 Binary files a/public/textures/mekanism/clump_uranium.png and /dev/null differ diff --git a/public/textures/mekanism/combiner.png b/public/textures/mekanism/combiner.png deleted file mode 100644 index 8ae1ae24..00000000 Binary files a/public/textures/mekanism/combiner.png and /dev/null differ diff --git a/public/textures/mekanism/configuration_card.png b/public/textures/mekanism/configuration_card.png deleted file mode 100644 index 3135b49e..00000000 Binary files a/public/textures/mekanism/configuration_card.png and /dev/null differ diff --git a/public/textures/mekanism/configurator.png b/public/textures/mekanism/configurator.png deleted file mode 100644 index 5834db57..00000000 Binary files a/public/textures/mekanism/configurator.png and /dev/null differ diff --git a/public/textures/mekanism/crafting_formula.png b/public/textures/mekanism/crafting_formula.png deleted file mode 100644 index ea92d075..00000000 Binary files a/public/textures/mekanism/crafting_formula.png and /dev/null differ diff --git a/public/textures/mekanism/creative_bin.png b/public/textures/mekanism/creative_bin.png deleted file mode 100644 index fb76472e..00000000 Binary files a/public/textures/mekanism/creative_bin.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank.png b/public/textures/mekanism/creative_chemical_tank.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__antimatter'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__antimatter'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__antimatter'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__aqua'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__aqua'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__aqua'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__bio'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__bio'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__bio'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__black'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__black'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__black'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__blue'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__blue'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__blue'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__brine'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__brine'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__brine'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__brown'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__brown'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__brown'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__carbon'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__carbon'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__carbon'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__chlorine'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__chlorine'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__chlorine'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_copper'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_copper'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_copper'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_gold'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_gold'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_gold'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_iron'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_iron'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_iron'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_lead'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_lead'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_lead'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_osmium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_osmium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_osmium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_tin'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_tin'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_tin'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_uranium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_uranium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__clean_uranium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__cyan'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__cyan'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__cyan'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dark_red'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dark_red'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dark_red'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__diamond'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__diamond'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__diamond'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_copper'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_copper'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_copper'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_gold'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_gold'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_gold'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_iron'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_iron'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_iron'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_lead'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_lead'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_lead'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_osmium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_osmium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_osmium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_tin'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_tin'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_tin'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_uranium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_uranium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__dirty_uranium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__ethene'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__ethene'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__ethene'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__fissile_fuel'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__fissile_fuel'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__fissile_fuel'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__fungi'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__fungi'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__fungi'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__gold'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__gold'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__gold'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__gray'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__gray'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__gray'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__green'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__green'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__green'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__hydrofluoric_acid'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__hydrofluoric_acid'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__hydrofluoric_acid'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__hydrogen'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__hydrogen'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__hydrogen'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__hydrogen_chloride'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__hydrogen_chloride'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__hydrogen_chloride'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__light_blue'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__light_blue'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__light_blue'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__light_gray'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__light_gray'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__light_gray'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__lime'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__lime'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__lime'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__lithium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__lithium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__lithium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__magenta'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__magenta'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__magenta'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__nuclear_waste'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__nuclear_waste'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__nuclear_waste'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__orange'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__orange'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__orange'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__osmium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__osmium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__osmium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__oxygen'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__oxygen'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__oxygen'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__pink'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__pink'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__pink'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__plutonium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__plutonium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__plutonium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__polonium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__polonium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__polonium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__purple'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__purple'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__purple'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__red'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__red'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__red'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__redstone'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__redstone'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__redstone'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__refined_obsidian'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__refined_obsidian'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__refined_obsidian'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sodium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sodium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sodium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__spent_nuclear_waste'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__spent_nuclear_waste'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__spent_nuclear_waste'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__steam'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__steam'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__steam'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sulfur_dioxide'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sulfur_dioxide'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sulfur_dioxide'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sulfur_trioxide'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sulfur_trioxide'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sulfur_trioxide'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sulfuric_acid'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sulfuric_acid'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__sulfuric_acid'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__superheated_sodium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__superheated_sodium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__superheated_sodium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__tin'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__tin'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__tin'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__uranium_hexafluoride'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__uranium_hexafluoride'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__uranium_hexafluoride'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__uranium_oxide'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__uranium_oxide'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__uranium_oxide'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__water_vapor'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__water_vapor'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__water_vapor'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__white'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__white'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__white'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__yellow'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__yellow'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanism__yellow'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanismgenerators__deuterium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanismgenerators__deuterium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanismgenerators__deuterium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanismgenerators__fusion_fuel'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanismgenerators__fusion_fuel'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanismgenerators__fusion_fuel'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanismgenerators__tritium'}]}}.png b/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanismgenerators__tritium'}]}}.png deleted file mode 100644 index 0a52f3d0..00000000 Binary files a/public/textures/mekanism/creative_chemical_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__9223372036854775807L,id__'mekanismgenerators__tritium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank.png b/public/textures/mekanism/creative_fluid_tank.png deleted file mode 100644 index 34086eef..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__beer'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__beer'}]}}.png deleted file mode 100644 index 088bc50b..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__beer'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__bloody_mary'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__bloody_mary'}]}}.png deleted file mode 100644 index 1e8e5439..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__bloody_mary'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__dread_nog'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__dread_nog'}]}}.png deleted file mode 100644 index 36d294d8..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__dread_nog'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__egg_grog'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__egg_grog'}]}}.png deleted file mode 100644 index ee1fffe7..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__egg_grog'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__flaxen_cheese'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__flaxen_cheese'}]}}.png deleted file mode 100644 index 789a682c..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__flaxen_cheese'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__glittering_grenadine'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__glittering_grenadine'}]}}.png deleted file mode 100644 index e03e051e..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__glittering_grenadine'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__honey'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__honey'}]}}.png deleted file mode 100644 index 29296f45..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__honey'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__kombucha'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__kombucha'}]}}.png deleted file mode 100644 index afc575f9..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__kombucha'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__mead'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__mead'}]}}.png deleted file mode 100644 index b34f8461..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__mead'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__pale_jane'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__pale_jane'}]}}.png deleted file mode 100644 index d43a90b6..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__pale_jane'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__red_rum'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__red_rum'}]}}.png deleted file mode 100644 index 092d4b0f..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__red_rum'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__rice_wine'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__rice_wine'}]}}.png deleted file mode 100644 index ee1fffe7..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__rice_wine'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__saccharine_rum'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__saccharine_rum'}]}}.png deleted file mode 100644 index d7cd784c..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__saccharine_rum'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__salty_folly'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__salty_folly'}]}}.png deleted file mode 100644 index b55e799a..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__salty_folly'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__scarlet_cheese'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__scarlet_cheese'}]}}.png deleted file mode 100644 index 80bc9f40..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__scarlet_cheese'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__steel_toe_stout'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__steel_toe_stout'}]}}.png deleted file mode 100644 index 48c061b6..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__steel_toe_stout'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__strongroot_ale'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__strongroot_ale'}]}}.png deleted file mode 100644 index 7a772f50..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__strongroot_ale'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__vodka'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__vodka'}]}}.png deleted file mode 100644 index 6eb5de6a..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__vodka'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__withering_dross'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__withering_dross'}]}}.png deleted file mode 100644 index c93fcb92..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'brewinandchewin__withering_dross'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__chocolate'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__chocolate'}]}}.png deleted file mode 100644 index cc422616..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__chocolate'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__honey'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__honey'}]}}.png deleted file mode 100644 index 92bea220..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__honey'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__potion'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__potion'}]}}.png deleted file mode 100644 index 2a9bfdd7..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__potion'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__tea'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__tea'}]}}.png deleted file mode 100644 index 191d8c44..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create__tea'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__black_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__black_dye'}]}}.png deleted file mode 100644 index 24bcc31b..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__black_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__blue_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__blue_dye'}]}}.png deleted file mode 100644 index 7aef284c..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__blue_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__brown_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__brown_dye'}]}}.png deleted file mode 100644 index 2d3b5846..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__brown_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__cyan_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__cyan_dye'}]}}.png deleted file mode 100644 index 3675db9f..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__cyan_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__dragon_breath'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__dragon_breath'}]}}.png deleted file mode 100644 index dfcbfc31..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__dragon_breath'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__gray_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__gray_dye'}]}}.png deleted file mode 100644 index 131b0b3d..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__gray_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__green_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__green_dye'}]}}.png deleted file mode 100644 index 165ade8b..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__green_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__light_blue_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__light_blue_dye'}]}}.png deleted file mode 100644 index fac9b081..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__light_blue_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__light_gray_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__light_gray_dye'}]}}.png deleted file mode 100644 index 45447ac0..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__light_gray_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__lime_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__lime_dye'}]}}.png deleted file mode 100644 index 0f172830..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__lime_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__magenta_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__magenta_dye'}]}}.png deleted file mode 100644 index 55b44012..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__magenta_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__orange_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__orange_dye'}]}}.png deleted file mode 100644 index 338a8017..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__orange_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__pink_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__pink_dye'}]}}.png deleted file mode 100644 index c292b30b..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__pink_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__purple_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__purple_dye'}]}}.png deleted file mode 100644 index c9cd6bc6..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__purple_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__red_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__red_dye'}]}}.png deleted file mode 100644 index ceb6e713..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__red_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__white_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__white_dye'}]}}.png deleted file mode 100644 index fa619bb8..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__white_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__yellow_dye'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__yellow_dye'}]}}.png deleted file mode 100644 index b66276cd..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_dragons_plus__yellow_dye'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_enchantment_industry__experience'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_enchantment_industry__experience'}]}}.png deleted file mode 100644 index 0c155397..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'create_enchantment_industry__experience'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'createaddition__bioethanol'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'createaddition__bioethanol'}]}}.png deleted file mode 100644 index ac860542..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'createaddition__bioethanol'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'createaddition__seed_oil'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'createaddition__seed_oil'}]}}.png deleted file mode 100644 index af0e2851..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'createaddition__seed_oil'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__acetaldehyde'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__acetaldehyde'}]}}.png deleted file mode 100644 index 4d332218..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__acetaldehyde'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__biodiesel'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__biodiesel'}]}}.png deleted file mode 100644 index bcab96ef..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__biodiesel'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__concrete'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__concrete'}]}}.png deleted file mode 100644 index c8e49ca2..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__concrete'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__creosote'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__creosote'}]}}.png deleted file mode 100644 index 088189e2..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__creosote'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__ethanol'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__ethanol'}]}}.png deleted file mode 100644 index a6acf734..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__ethanol'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__herbicide'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__herbicide'}]}}.png deleted file mode 100644 index 9991aede..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__herbicide'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__high_power_biodiesel'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__high_power_biodiesel'}]}}.png deleted file mode 100644 index bcab96ef..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__high_power_biodiesel'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__phenolic_resin'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__phenolic_resin'}]}}.png deleted file mode 100644 index b2cc4e5b..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__phenolic_resin'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__plantoil'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__plantoil'}]}}.png deleted file mode 100644 index 00b8ee1d..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__plantoil'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__potion'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__potion'}]}}.png deleted file mode 100644 index a63f1713..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__potion'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__redstone_acid'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__redstone_acid'}]}}.png deleted file mode 100644 index 0c42d326..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'immersiveengineering__redstone_acid'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__brine'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__brine'}]}}.png deleted file mode 100644 index d7fb951b..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__brine'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__chlorine'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__chlorine'}]}}.png deleted file mode 100644 index fb078572..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__chlorine'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__ethene'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__ethene'}]}}.png deleted file mode 100644 index 009915d2..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__ethene'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__heavy_water'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__heavy_water'}]}}.png deleted file mode 100644 index 0be33160..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__heavy_water'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__hydrofluoric_acid'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__hydrofluoric_acid'}]}}.png deleted file mode 100644 index 57ee67a9..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__hydrofluoric_acid'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__hydrogen'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__hydrogen'}]}}.png deleted file mode 100644 index f866a115..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__hydrogen'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__hydrogen_chloride'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__hydrogen_chloride'}]}}.png deleted file mode 100644 index 4e86ac95..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__hydrogen_chloride'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__lithium'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__lithium'}]}}.png deleted file mode 100644 index d0f8eaec..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__lithium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__nutritional_paste'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__nutritional_paste'}]}}.png deleted file mode 100644 index 5dae886b..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__nutritional_paste'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__oxygen'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__oxygen'}]}}.png deleted file mode 100644 index ecd12b3b..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__oxygen'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sodium'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sodium'}]}}.png deleted file mode 100644 index f8346276..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sodium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__steam'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__steam'}]}}.png deleted file mode 100644 index 79b9bd22..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__steam'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sulfur_dioxide'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sulfur_dioxide'}]}}.png deleted file mode 100644 index 7398253c..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sulfur_dioxide'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sulfur_trioxide'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sulfur_trioxide'}]}}.png deleted file mode 100644 index ec631930..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sulfur_trioxide'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sulfuric_acid'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sulfuric_acid'}]}}.png deleted file mode 100644 index c22b9f76..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__sulfuric_acid'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__superheated_sodium'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__superheated_sodium'}]}}.png deleted file mode 100644 index 5b9a6fcc..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__superheated_sodium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__uranium_hexafluoride'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__uranium_hexafluoride'}]}}.png deleted file mode 100644 index 408316f3..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__uranium_hexafluoride'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__uranium_oxide'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__uranium_oxide'}]}}.png deleted file mode 100644 index 4206f955..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanism__uranium_oxide'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__bioethanol'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__bioethanol'}]}}.png deleted file mode 100644 index e9ad61ee..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__bioethanol'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__deuterium'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__deuterium'}]}}.png deleted file mode 100644 index f70e34b9..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__deuterium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__fusion_fuel'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__fusion_fuel'}]}}.png deleted file mode 100644 index caf21f0b..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__fusion_fuel'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__tritium'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__tritium'}]}}.png deleted file mode 100644 index 9a26c197..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'mekanismgenerators__tritium'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'minecraft__lava'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'minecraft__lava'}]}}.png deleted file mode 100644 index 84d307b6..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'minecraft__lava'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'minecraft__milk'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'minecraft__milk'}]}}.png deleted file mode 100644 index 1b27f30f..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'minecraft__milk'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'minecraft__water'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'minecraft__water'}]}}.png deleted file mode 100644 index f24e3b27..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'minecraft__water'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'sophisticatedcore__xp_still'}]}}.png b/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'sophisticatedcore__xp_still'}]}}.png deleted file mode 100644 index 148f1227..00000000 Binary files a/public/textures/mekanism/creative_fluid_tank__{'mekanism__fluids'__{fluid_tanks__[{amount__2147483647,id__'sophisticatedcore__xp_still'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/crusher.png b/public/textures/mekanism/crusher.png deleted file mode 100644 index f2e360f0..00000000 Binary files a/public/textures/mekanism/crusher.png and /dev/null differ diff --git a/public/textures/mekanism/crystal_copper.png b/public/textures/mekanism/crystal_copper.png deleted file mode 100644 index 198fa469..00000000 Binary files a/public/textures/mekanism/crystal_copper.png and /dev/null differ diff --git a/public/textures/mekanism/crystal_gold.png b/public/textures/mekanism/crystal_gold.png deleted file mode 100644 index 7951ec9c..00000000 Binary files a/public/textures/mekanism/crystal_gold.png and /dev/null differ diff --git a/public/textures/mekanism/crystal_iron.png b/public/textures/mekanism/crystal_iron.png deleted file mode 100644 index 57ca1ec4..00000000 Binary files a/public/textures/mekanism/crystal_iron.png and /dev/null differ diff --git a/public/textures/mekanism/crystal_lead.png b/public/textures/mekanism/crystal_lead.png deleted file mode 100644 index 26ef4a7d..00000000 Binary files a/public/textures/mekanism/crystal_lead.png and /dev/null differ diff --git a/public/textures/mekanism/crystal_osmium.png b/public/textures/mekanism/crystal_osmium.png deleted file mode 100644 index 5027a28e..00000000 Binary files a/public/textures/mekanism/crystal_osmium.png and /dev/null differ diff --git a/public/textures/mekanism/crystal_tin.png b/public/textures/mekanism/crystal_tin.png deleted file mode 100644 index 87beabb3..00000000 Binary files a/public/textures/mekanism/crystal_tin.png and /dev/null differ diff --git a/public/textures/mekanism/crystal_uranium.png b/public/textures/mekanism/crystal_uranium.png deleted file mode 100644 index f5dc86dd..00000000 Binary files a/public/textures/mekanism/crystal_uranium.png and /dev/null differ diff --git a/public/textures/mekanism/deepslate_fluorite_ore.png b/public/textures/mekanism/deepslate_fluorite_ore.png deleted file mode 100644 index 4bf5f243..00000000 Binary files a/public/textures/mekanism/deepslate_fluorite_ore.png and /dev/null differ diff --git a/public/textures/mekanism/deepslate_lead_ore.png b/public/textures/mekanism/deepslate_lead_ore.png deleted file mode 100644 index 1b098c80..00000000 Binary files a/public/textures/mekanism/deepslate_lead_ore.png and /dev/null differ diff --git a/public/textures/mekanism/deepslate_osmium_ore.png b/public/textures/mekanism/deepslate_osmium_ore.png deleted file mode 100644 index 9f10179c..00000000 Binary files a/public/textures/mekanism/deepslate_osmium_ore.png and /dev/null differ diff --git a/public/textures/mekanism/deepslate_tin_ore.png b/public/textures/mekanism/deepslate_tin_ore.png deleted file mode 100644 index 342256a8..00000000 Binary files a/public/textures/mekanism/deepslate_tin_ore.png and /dev/null differ diff --git a/public/textures/mekanism/deepslate_uranium_ore.png b/public/textures/mekanism/deepslate_uranium_ore.png deleted file mode 100644 index 5917b9de..00000000 Binary files a/public/textures/mekanism/deepslate_uranium_ore.png and /dev/null differ diff --git a/public/textures/mekanism/dictionary.png b/public/textures/mekanism/dictionary.png deleted file mode 100644 index c8bb1d5a..00000000 Binary files a/public/textures/mekanism/dictionary.png and /dev/null differ diff --git a/public/textures/mekanism/digital_miner.png b/public/textures/mekanism/digital_miner.png deleted file mode 100644 index 928c8549..00000000 Binary files a/public/textures/mekanism/digital_miner.png and /dev/null differ diff --git a/public/textures/mekanism/dimensional_stabilizer.png b/public/textures/mekanism/dimensional_stabilizer.png deleted file mode 100644 index 00d8cb9c..00000000 Binary files a/public/textures/mekanism/dimensional_stabilizer.png and /dev/null differ diff --git a/public/textures/mekanism/dirty_dust_copper.png b/public/textures/mekanism/dirty_dust_copper.png deleted file mode 100644 index 4fbdcf7c..00000000 Binary files a/public/textures/mekanism/dirty_dust_copper.png and /dev/null differ diff --git a/public/textures/mekanism/dirty_dust_gold.png b/public/textures/mekanism/dirty_dust_gold.png deleted file mode 100644 index a4a92907..00000000 Binary files a/public/textures/mekanism/dirty_dust_gold.png and /dev/null differ diff --git a/public/textures/mekanism/dirty_dust_iron.png b/public/textures/mekanism/dirty_dust_iron.png deleted file mode 100644 index 30d69854..00000000 Binary files a/public/textures/mekanism/dirty_dust_iron.png and /dev/null differ diff --git a/public/textures/mekanism/dirty_dust_lead.png b/public/textures/mekanism/dirty_dust_lead.png deleted file mode 100644 index 2dac076d..00000000 Binary files a/public/textures/mekanism/dirty_dust_lead.png and /dev/null differ diff --git a/public/textures/mekanism/dirty_dust_osmium.png b/public/textures/mekanism/dirty_dust_osmium.png deleted file mode 100644 index 2781beee..00000000 Binary files a/public/textures/mekanism/dirty_dust_osmium.png and /dev/null differ diff --git a/public/textures/mekanism/dirty_dust_tin.png b/public/textures/mekanism/dirty_dust_tin.png deleted file mode 100644 index bbddef07..00000000 Binary files a/public/textures/mekanism/dirty_dust_tin.png and /dev/null differ diff --git a/public/textures/mekanism/dirty_dust_uranium.png b/public/textures/mekanism/dirty_dust_uranium.png deleted file mode 100644 index dd7f0d5c..00000000 Binary files a/public/textures/mekanism/dirty_dust_uranium.png and /dev/null differ diff --git a/public/textures/mekanism/dirty_netherite_scrap.png b/public/textures/mekanism/dirty_netherite_scrap.png deleted file mode 100644 index 2bce36d0..00000000 Binary files a/public/textures/mekanism/dirty_netherite_scrap.png and /dev/null differ diff --git a/public/textures/mekanism/diversion_transporter.png b/public/textures/mekanism/diversion_transporter.png deleted file mode 100644 index 80746ba7..00000000 Binary files a/public/textures/mekanism/diversion_transporter.png and /dev/null differ diff --git a/public/textures/mekanism/dosimeter.png b/public/textures/mekanism/dosimeter.png deleted file mode 100644 index 0ef334e1..00000000 Binary files a/public/textures/mekanism/dosimeter.png and /dev/null differ diff --git a/public/textures/mekanism/dust_bronze.png b/public/textures/mekanism/dust_bronze.png deleted file mode 100644 index 2bcc41f0..00000000 Binary files a/public/textures/mekanism/dust_bronze.png and /dev/null differ diff --git a/public/textures/mekanism/dust_charcoal.png b/public/textures/mekanism/dust_charcoal.png deleted file mode 100644 index da647062..00000000 Binary files a/public/textures/mekanism/dust_charcoal.png and /dev/null differ diff --git a/public/textures/mekanism/dust_coal.png b/public/textures/mekanism/dust_coal.png deleted file mode 100644 index 24073b64..00000000 Binary files a/public/textures/mekanism/dust_coal.png and /dev/null differ diff --git a/public/textures/mekanism/dust_copper.png b/public/textures/mekanism/dust_copper.png deleted file mode 100644 index 05dd7788..00000000 Binary files a/public/textures/mekanism/dust_copper.png and /dev/null differ diff --git a/public/textures/mekanism/dust_diamond.png b/public/textures/mekanism/dust_diamond.png deleted file mode 100644 index 8dd02982..00000000 Binary files a/public/textures/mekanism/dust_diamond.png and /dev/null differ diff --git a/public/textures/mekanism/dust_emerald.png b/public/textures/mekanism/dust_emerald.png deleted file mode 100644 index cec6b87b..00000000 Binary files a/public/textures/mekanism/dust_emerald.png and /dev/null differ diff --git a/public/textures/mekanism/dust_fluorite.png b/public/textures/mekanism/dust_fluorite.png deleted file mode 100644 index 661b9faf..00000000 Binary files a/public/textures/mekanism/dust_fluorite.png and /dev/null differ diff --git a/public/textures/mekanism/dust_gold.png b/public/textures/mekanism/dust_gold.png deleted file mode 100644 index 965cbec0..00000000 Binary files a/public/textures/mekanism/dust_gold.png and /dev/null differ diff --git a/public/textures/mekanism/dust_iron.png b/public/textures/mekanism/dust_iron.png deleted file mode 100644 index e98789e3..00000000 Binary files a/public/textures/mekanism/dust_iron.png and /dev/null differ diff --git a/public/textures/mekanism/dust_lapis_lazuli.png b/public/textures/mekanism/dust_lapis_lazuli.png deleted file mode 100644 index 28b5e361..00000000 Binary files a/public/textures/mekanism/dust_lapis_lazuli.png and /dev/null differ diff --git a/public/textures/mekanism/dust_lead.png b/public/textures/mekanism/dust_lead.png deleted file mode 100644 index ba9e1ac0..00000000 Binary files a/public/textures/mekanism/dust_lead.png and /dev/null differ diff --git a/public/textures/mekanism/dust_lithium.png b/public/textures/mekanism/dust_lithium.png deleted file mode 100644 index e6b43923..00000000 Binary files a/public/textures/mekanism/dust_lithium.png and /dev/null differ diff --git a/public/textures/mekanism/dust_netherite.png b/public/textures/mekanism/dust_netherite.png deleted file mode 100644 index 5b17e57e..00000000 Binary files a/public/textures/mekanism/dust_netherite.png and /dev/null differ diff --git a/public/textures/mekanism/dust_obsidian.png b/public/textures/mekanism/dust_obsidian.png deleted file mode 100644 index 1c7f9d7f..00000000 Binary files a/public/textures/mekanism/dust_obsidian.png and /dev/null differ diff --git a/public/textures/mekanism/dust_osmium.png b/public/textures/mekanism/dust_osmium.png deleted file mode 100644 index 47675518..00000000 Binary files a/public/textures/mekanism/dust_osmium.png and /dev/null differ diff --git a/public/textures/mekanism/dust_quartz.png b/public/textures/mekanism/dust_quartz.png deleted file mode 100644 index 704da189..00000000 Binary files a/public/textures/mekanism/dust_quartz.png and /dev/null differ diff --git a/public/textures/mekanism/dust_refined_obsidian.png b/public/textures/mekanism/dust_refined_obsidian.png deleted file mode 100644 index 4b6e466b..00000000 Binary files a/public/textures/mekanism/dust_refined_obsidian.png and /dev/null differ diff --git a/public/textures/mekanism/dust_steel.png b/public/textures/mekanism/dust_steel.png deleted file mode 100644 index 54ad68a8..00000000 Binary files a/public/textures/mekanism/dust_steel.png and /dev/null differ diff --git a/public/textures/mekanism/dust_sulfur.png b/public/textures/mekanism/dust_sulfur.png deleted file mode 100644 index 4c0c1ffb..00000000 Binary files a/public/textures/mekanism/dust_sulfur.png and /dev/null differ diff --git a/public/textures/mekanism/dust_tin.png b/public/textures/mekanism/dust_tin.png deleted file mode 100644 index dd9f4b9a..00000000 Binary files a/public/textures/mekanism/dust_tin.png and /dev/null differ diff --git a/public/textures/mekanism/dust_uranium.png b/public/textures/mekanism/dust_uranium.png deleted file mode 100644 index ae58207f..00000000 Binary files a/public/textures/mekanism/dust_uranium.png and /dev/null differ diff --git a/public/textures/mekanism/dye_base.png b/public/textures/mekanism/dye_base.png deleted file mode 100644 index 2d248eda..00000000 Binary files a/public/textures/mekanism/dye_base.png and /dev/null differ diff --git a/public/textures/mekanism/dynamic_tank.png b/public/textures/mekanism/dynamic_tank.png deleted file mode 100644 index 1175aeac..00000000 Binary files a/public/textures/mekanism/dynamic_tank.png and /dev/null differ diff --git a/public/textures/mekanism/dynamic_valve.png b/public/textures/mekanism/dynamic_valve.png deleted file mode 100644 index 7c7e8dd0..00000000 Binary files a/public/textures/mekanism/dynamic_valve.png and /dev/null differ diff --git a/public/textures/mekanism/electric_bow.png b/public/textures/mekanism/electric_bow.png deleted file mode 100644 index 9ac49f79..00000000 Binary files a/public/textures/mekanism/electric_bow.png and /dev/null differ diff --git a/public/textures/mekanism/electric_bow__{'mekanism__energy'__{energy_containers__[L;120000L]}}.png b/public/textures/mekanism/electric_bow__{'mekanism__energy'__{energy_containers__[L;120000L]}}.png deleted file mode 100644 index 9ac49f79..00000000 Binary files a/public/textures/mekanism/electric_bow__{'mekanism__energy'__{energy_containers__[L;120000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/electric_pump.png b/public/textures/mekanism/electric_pump.png deleted file mode 100644 index 446acae7..00000000 Binary files a/public/textures/mekanism/electric_pump.png and /dev/null differ diff --git a/public/textures/mekanism/electrolytic_core.png b/public/textures/mekanism/electrolytic_core.png deleted file mode 100644 index f28d7621..00000000 Binary files a/public/textures/mekanism/electrolytic_core.png and /dev/null differ diff --git a/public/textures/mekanism/electrolytic_separator.png b/public/textures/mekanism/electrolytic_separator.png deleted file mode 100644 index d61dcd60..00000000 Binary files a/public/textures/mekanism/electrolytic_separator.png and /dev/null differ diff --git a/public/textures/mekanism/elite_bin.png b/public/textures/mekanism/elite_bin.png deleted file mode 100644 index 74f7b7da..00000000 Binary files a/public/textures/mekanism/elite_bin.png and /dev/null differ diff --git a/public/textures/mekanism/elite_chemical_tank.png b/public/textures/mekanism/elite_chemical_tank.png deleted file mode 100644 index 0c5bb478..00000000 Binary files a/public/textures/mekanism/elite_chemical_tank.png and /dev/null differ diff --git a/public/textures/mekanism/elite_combining_factory.png b/public/textures/mekanism/elite_combining_factory.png deleted file mode 100644 index de5cc3be..00000000 Binary files a/public/textures/mekanism/elite_combining_factory.png and /dev/null differ diff --git a/public/textures/mekanism/elite_compressing_factory.png b/public/textures/mekanism/elite_compressing_factory.png deleted file mode 100644 index 254f7353..00000000 Binary files a/public/textures/mekanism/elite_compressing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/elite_control_circuit.png b/public/textures/mekanism/elite_control_circuit.png deleted file mode 100644 index 9300adb0..00000000 Binary files a/public/textures/mekanism/elite_control_circuit.png and /dev/null differ diff --git a/public/textures/mekanism/elite_crushing_factory.png b/public/textures/mekanism/elite_crushing_factory.png deleted file mode 100644 index f27a87c3..00000000 Binary files a/public/textures/mekanism/elite_crushing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/elite_energy_cube.png b/public/textures/mekanism/elite_energy_cube.png deleted file mode 100644 index a6b7a52a..00000000 Binary files a/public/textures/mekanism/elite_energy_cube.png and /dev/null differ diff --git a/public/textures/mekanism/elite_energy_cube__{'mekanism__energy'__{energy_containers__[L;64000000L]}}.png b/public/textures/mekanism/elite_energy_cube__{'mekanism__energy'__{energy_containers__[L;64000000L]}}.png deleted file mode 100644 index b85f5edf..00000000 Binary files a/public/textures/mekanism/elite_energy_cube__{'mekanism__energy'__{energy_containers__[L;64000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/elite_enriching_factory.png b/public/textures/mekanism/elite_enriching_factory.png deleted file mode 100644 index 562ebd0d..00000000 Binary files a/public/textures/mekanism/elite_enriching_factory.png and /dev/null differ diff --git a/public/textures/mekanism/elite_fluid_tank.png b/public/textures/mekanism/elite_fluid_tank.png deleted file mode 100644 index d44530b0..00000000 Binary files a/public/textures/mekanism/elite_fluid_tank.png and /dev/null differ diff --git a/public/textures/mekanism/elite_induction_cell.png b/public/textures/mekanism/elite_induction_cell.png deleted file mode 100644 index ffdbc12a..00000000 Binary files a/public/textures/mekanism/elite_induction_cell.png and /dev/null differ diff --git a/public/textures/mekanism/elite_induction_provider.png b/public/textures/mekanism/elite_induction_provider.png deleted file mode 100644 index 1fe03fd8..00000000 Binary files a/public/textures/mekanism/elite_induction_provider.png and /dev/null differ diff --git a/public/textures/mekanism/elite_infusing_factory.png b/public/textures/mekanism/elite_infusing_factory.png deleted file mode 100644 index 8d31db6a..00000000 Binary files a/public/textures/mekanism/elite_infusing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/elite_injecting_factory.png b/public/textures/mekanism/elite_injecting_factory.png deleted file mode 100644 index 8c39a12b..00000000 Binary files a/public/textures/mekanism/elite_injecting_factory.png and /dev/null differ diff --git a/public/textures/mekanism/elite_logistical_transporter.png b/public/textures/mekanism/elite_logistical_transporter.png deleted file mode 100644 index f38a104e..00000000 Binary files a/public/textures/mekanism/elite_logistical_transporter.png and /dev/null differ diff --git a/public/textures/mekanism/elite_mechanical_pipe.png b/public/textures/mekanism/elite_mechanical_pipe.png deleted file mode 100644 index e96fcd86..00000000 Binary files a/public/textures/mekanism/elite_mechanical_pipe.png and /dev/null differ diff --git a/public/textures/mekanism/elite_pressurized_tube.png b/public/textures/mekanism/elite_pressurized_tube.png deleted file mode 100644 index fdca4050..00000000 Binary files a/public/textures/mekanism/elite_pressurized_tube.png and /dev/null differ diff --git a/public/textures/mekanism/elite_purifying_factory.png b/public/textures/mekanism/elite_purifying_factory.png deleted file mode 100644 index 626931e7..00000000 Binary files a/public/textures/mekanism/elite_purifying_factory.png and /dev/null differ diff --git a/public/textures/mekanism/elite_sawing_factory.png b/public/textures/mekanism/elite_sawing_factory.png deleted file mode 100644 index 9c215645..00000000 Binary files a/public/textures/mekanism/elite_sawing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/elite_smelting_factory.png b/public/textures/mekanism/elite_smelting_factory.png deleted file mode 100644 index 50e388a6..00000000 Binary files a/public/textures/mekanism/elite_smelting_factory.png and /dev/null differ diff --git a/public/textures/mekanism/elite_thermodynamic_conductor.png b/public/textures/mekanism/elite_thermodynamic_conductor.png deleted file mode 100644 index 5684e585..00000000 Binary files a/public/textures/mekanism/elite_thermodynamic_conductor.png and /dev/null differ diff --git a/public/textures/mekanism/elite_tier_installer.png b/public/textures/mekanism/elite_tier_installer.png deleted file mode 100644 index 25691d00..00000000 Binary files a/public/textures/mekanism/elite_tier_installer.png and /dev/null differ diff --git a/public/textures/mekanism/elite_universal_cable.png b/public/textures/mekanism/elite_universal_cable.png deleted file mode 100644 index 6e30eb4a..00000000 Binary files a/public/textures/mekanism/elite_universal_cable.png and /dev/null differ diff --git a/public/textures/mekanism/energized_smelter.png b/public/textures/mekanism/energized_smelter.png deleted file mode 100644 index c8ddd4a0..00000000 Binary files a/public/textures/mekanism/energized_smelter.png and /dev/null differ diff --git a/public/textures/mekanism/energy_tablet.png b/public/textures/mekanism/energy_tablet.png deleted file mode 100644 index 41448658..00000000 Binary files a/public/textures/mekanism/energy_tablet.png and /dev/null differ diff --git a/public/textures/mekanism/energy_tablet__{'mekanism__energy'__{energy_containers__[L;1000000L]}}.png b/public/textures/mekanism/energy_tablet__{'mekanism__energy'__{energy_containers__[L;1000000L]}}.png deleted file mode 100644 index 41448658..00000000 Binary files a/public/textures/mekanism/energy_tablet__{'mekanism__energy'__{energy_containers__[L;1000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/enriched_carbon.png b/public/textures/mekanism/enriched_carbon.png deleted file mode 100644 index 4ccb8e62..00000000 Binary files a/public/textures/mekanism/enriched_carbon.png and /dev/null differ diff --git a/public/textures/mekanism/enriched_diamond.png b/public/textures/mekanism/enriched_diamond.png deleted file mode 100644 index 60312b8f..00000000 Binary files a/public/textures/mekanism/enriched_diamond.png and /dev/null differ diff --git a/public/textures/mekanism/enriched_gold.png b/public/textures/mekanism/enriched_gold.png deleted file mode 100644 index 794fae44..00000000 Binary files a/public/textures/mekanism/enriched_gold.png and /dev/null differ diff --git a/public/textures/mekanism/enriched_iron.png b/public/textures/mekanism/enriched_iron.png deleted file mode 100644 index 4f29289f..00000000 Binary files a/public/textures/mekanism/enriched_iron.png and /dev/null differ diff --git a/public/textures/mekanism/enriched_redstone.png b/public/textures/mekanism/enriched_redstone.png deleted file mode 100644 index 1d348f0d..00000000 Binary files a/public/textures/mekanism/enriched_redstone.png and /dev/null differ diff --git a/public/textures/mekanism/enriched_refined_obsidian.png b/public/textures/mekanism/enriched_refined_obsidian.png deleted file mode 100644 index 09df368e..00000000 Binary files a/public/textures/mekanism/enriched_refined_obsidian.png and /dev/null differ diff --git a/public/textures/mekanism/enriched_tin.png b/public/textures/mekanism/enriched_tin.png deleted file mode 100644 index 58844550..00000000 Binary files a/public/textures/mekanism/enriched_tin.png and /dev/null differ diff --git a/public/textures/mekanism/enrichment_chamber.png b/public/textures/mekanism/enrichment_chamber.png deleted file mode 100644 index c2620b97..00000000 Binary files a/public/textures/mekanism/enrichment_chamber.png and /dev/null differ diff --git a/public/textures/mekanism/ethene_bucket.png b/public/textures/mekanism/ethene_bucket.png deleted file mode 100644 index d526c1ac..00000000 Binary files a/public/textures/mekanism/ethene_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/flamethrower.png b/public/textures/mekanism/flamethrower.png deleted file mode 100644 index 907cbbe8..00000000 Binary files a/public/textures/mekanism/flamethrower.png and /dev/null differ diff --git a/public/textures/mekanism/flamethrower__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__hydrogen'}]}}.png b/public/textures/mekanism/flamethrower__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__hydrogen'}]}}.png deleted file mode 100644 index 907cbbe8..00000000 Binary files a/public/textures/mekanism/flamethrower__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__hydrogen'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/fluidic_plenisher.png b/public/textures/mekanism/fluidic_plenisher.png deleted file mode 100644 index 4bfe8737..00000000 Binary files a/public/textures/mekanism/fluidic_plenisher.png and /dev/null differ diff --git a/public/textures/mekanism/fluorite_gem.png b/public/textures/mekanism/fluorite_gem.png deleted file mode 100644 index b16d91ef..00000000 Binary files a/public/textures/mekanism/fluorite_gem.png and /dev/null differ diff --git a/public/textures/mekanism/fluorite_ore.png b/public/textures/mekanism/fluorite_ore.png deleted file mode 100644 index 7f9e27b0..00000000 Binary files a/public/textures/mekanism/fluorite_ore.png and /dev/null differ diff --git a/public/textures/mekanism/formulaic_assemblicator.png b/public/textures/mekanism/formulaic_assemblicator.png deleted file mode 100644 index 334674b2..00000000 Binary files a/public/textures/mekanism/formulaic_assemblicator.png and /dev/null differ diff --git a/public/textures/mekanism/free_runners.png b/public/textures/mekanism/free_runners.png deleted file mode 100644 index b24f3592..00000000 Binary files a/public/textures/mekanism/free_runners.png and /dev/null differ diff --git a/public/textures/mekanism/free_runners__{'mekanism__energy'__{energy_containers__[L;64000L]}}.png b/public/textures/mekanism/free_runners__{'mekanism__energy'__{energy_containers__[L;64000L]}}.png deleted file mode 100644 index b24f3592..00000000 Binary files a/public/textures/mekanism/free_runners__{'mekanism__energy'__{energy_containers__[L;64000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/free_runners_armored.png b/public/textures/mekanism/free_runners_armored.png deleted file mode 100644 index fa25c5f0..00000000 Binary files a/public/textures/mekanism/free_runners_armored.png and /dev/null differ diff --git a/public/textures/mekanism/free_runners_armored__{'mekanism__energy'__{energy_containers__[L;64000L]}}.png b/public/textures/mekanism/free_runners_armored__{'mekanism__energy'__{energy_containers__[L;64000L]}}.png deleted file mode 100644 index fa25c5f0..00000000 Binary files a/public/textures/mekanism/free_runners_armored__{'mekanism__energy'__{energy_containers__[L;64000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/fuelwood_heater.png b/public/textures/mekanism/fuelwood_heater.png deleted file mode 100644 index 8d0b5e3a..00000000 Binary files a/public/textures/mekanism/fuelwood_heater.png and /dev/null differ diff --git a/public/textures/mekanism/gauge_dropper.png b/public/textures/mekanism/gauge_dropper.png deleted file mode 100644 index 1cb6b8b4..00000000 Binary files a/public/textures/mekanism/gauge_dropper.png and /dev/null differ diff --git a/public/textures/mekanism/geiger_counter.png b/public/textures/mekanism/geiger_counter.png deleted file mode 100644 index 7560a9be..00000000 Binary files a/public/textures/mekanism/geiger_counter.png and /dev/null differ diff --git a/public/textures/mekanism/hazmat_boots.png b/public/textures/mekanism/hazmat_boots.png deleted file mode 100644 index 2d2a8bfe..00000000 Binary files a/public/textures/mekanism/hazmat_boots.png and /dev/null differ diff --git a/public/textures/mekanism/hazmat_gown.png b/public/textures/mekanism/hazmat_gown.png deleted file mode 100644 index d6e33bd1..00000000 Binary files a/public/textures/mekanism/hazmat_gown.png and /dev/null differ diff --git a/public/textures/mekanism/hazmat_mask.png b/public/textures/mekanism/hazmat_mask.png deleted file mode 100644 index fe6d7fd1..00000000 Binary files a/public/textures/mekanism/hazmat_mask.png and /dev/null differ diff --git a/public/textures/mekanism/hazmat_pants.png b/public/textures/mekanism/hazmat_pants.png deleted file mode 100644 index 8d956a11..00000000 Binary files a/public/textures/mekanism/hazmat_pants.png and /dev/null differ diff --git a/public/textures/mekanism/hdpe_elytra.png b/public/textures/mekanism/hdpe_elytra.png deleted file mode 100644 index c1e4bbb5..00000000 Binary files a/public/textures/mekanism/hdpe_elytra.png and /dev/null differ diff --git a/public/textures/mekanism/hdpe_pellet.png b/public/textures/mekanism/hdpe_pellet.png deleted file mode 100644 index 1cd90ac9..00000000 Binary files a/public/textures/mekanism/hdpe_pellet.png and /dev/null differ diff --git a/public/textures/mekanism/hdpe_rod.png b/public/textures/mekanism/hdpe_rod.png deleted file mode 100644 index 37a60e4a..00000000 Binary files a/public/textures/mekanism/hdpe_rod.png and /dev/null differ diff --git a/public/textures/mekanism/hdpe_sheet.png b/public/textures/mekanism/hdpe_sheet.png deleted file mode 100644 index 073c258c..00000000 Binary files a/public/textures/mekanism/hdpe_sheet.png and /dev/null differ diff --git a/public/textures/mekanism/hdpe_stick.png b/public/textures/mekanism/hdpe_stick.png deleted file mode 100644 index 32c6a090..00000000 Binary files a/public/textures/mekanism/hdpe_stick.png and /dev/null differ diff --git a/public/textures/mekanism/heavy_water_bucket.png b/public/textures/mekanism/heavy_water_bucket.png deleted file mode 100644 index 7a236f6b..00000000 Binary files a/public/textures/mekanism/heavy_water_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/hydrofluoric_acid_bucket.png b/public/textures/mekanism/hydrofluoric_acid_bucket.png deleted file mode 100644 index db582500..00000000 Binary files a/public/textures/mekanism/hydrofluoric_acid_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/hydrogen_bucket.png b/public/textures/mekanism/hydrogen_bucket.png deleted file mode 100644 index caf35d9e..00000000 Binary files a/public/textures/mekanism/hydrogen_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/hydrogen_chloride_bucket.png b/public/textures/mekanism/hydrogen_chloride_bucket.png deleted file mode 100644 index c26f106a..00000000 Binary files a/public/textures/mekanism/hydrogen_chloride_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/induction_casing.png b/public/textures/mekanism/induction_casing.png deleted file mode 100644 index 6b4132ec..00000000 Binary files a/public/textures/mekanism/induction_casing.png and /dev/null differ diff --git a/public/textures/mekanism/induction_port.png b/public/textures/mekanism/induction_port.png deleted file mode 100644 index b1239e20..00000000 Binary files a/public/textures/mekanism/induction_port.png and /dev/null differ diff --git a/public/textures/mekanism/industrial_alarm.png b/public/textures/mekanism/industrial_alarm.png deleted file mode 100644 index 67d3fdc9..00000000 Binary files a/public/textures/mekanism/industrial_alarm.png and /dev/null differ diff --git a/public/textures/mekanism/ingot_bronze.png b/public/textures/mekanism/ingot_bronze.png deleted file mode 100644 index 3aee99ae..00000000 Binary files a/public/textures/mekanism/ingot_bronze.png and /dev/null differ diff --git a/public/textures/mekanism/ingot_lead.png b/public/textures/mekanism/ingot_lead.png deleted file mode 100644 index d8565145..00000000 Binary files a/public/textures/mekanism/ingot_lead.png and /dev/null differ diff --git a/public/textures/mekanism/ingot_osmium.png b/public/textures/mekanism/ingot_osmium.png deleted file mode 100644 index b4cc95fd..00000000 Binary files a/public/textures/mekanism/ingot_osmium.png and /dev/null differ diff --git a/public/textures/mekanism/ingot_refined_glowstone.png b/public/textures/mekanism/ingot_refined_glowstone.png deleted file mode 100644 index 3c7b694d..00000000 Binary files a/public/textures/mekanism/ingot_refined_glowstone.png and /dev/null differ diff --git a/public/textures/mekanism/ingot_refined_obsidian.png b/public/textures/mekanism/ingot_refined_obsidian.png deleted file mode 100644 index 529ec91e..00000000 Binary files a/public/textures/mekanism/ingot_refined_obsidian.png and /dev/null differ diff --git a/public/textures/mekanism/ingot_steel.png b/public/textures/mekanism/ingot_steel.png deleted file mode 100644 index 7264bf03..00000000 Binary files a/public/textures/mekanism/ingot_steel.png and /dev/null differ diff --git a/public/textures/mekanism/ingot_tin.png b/public/textures/mekanism/ingot_tin.png deleted file mode 100644 index 3f4e8157..00000000 Binary files a/public/textures/mekanism/ingot_tin.png and /dev/null differ diff --git a/public/textures/mekanism/ingot_uranium.png b/public/textures/mekanism/ingot_uranium.png deleted file mode 100644 index 5abc74a5..00000000 Binary files a/public/textures/mekanism/ingot_uranium.png and /dev/null differ diff --git a/public/textures/mekanism/isotopic_centrifuge.png b/public/textures/mekanism/isotopic_centrifuge.png deleted file mode 100644 index ec5b0947..00000000 Binary files a/public/textures/mekanism/isotopic_centrifuge.png and /dev/null differ diff --git a/public/textures/mekanism/jetpack.png b/public/textures/mekanism/jetpack.png deleted file mode 100644 index 5be858a0..00000000 Binary files a/public/textures/mekanism/jetpack.png and /dev/null differ diff --git a/public/textures/mekanism/jetpack__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__hydrogen'}]}}.png b/public/textures/mekanism/jetpack__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__hydrogen'}]}}.png deleted file mode 100644 index 5be858a0..00000000 Binary files a/public/textures/mekanism/jetpack__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__hydrogen'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/jetpack_armored.png b/public/textures/mekanism/jetpack_armored.png deleted file mode 100644 index b842a55f..00000000 Binary files a/public/textures/mekanism/jetpack_armored.png and /dev/null differ diff --git a/public/textures/mekanism/jetpack_armored__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__hydrogen'}]}}.png b/public/textures/mekanism/jetpack_armored__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__hydrogen'}]}}.png deleted file mode 100644 index b842a55f..00000000 Binary files a/public/textures/mekanism/jetpack_armored__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__hydrogen'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/laser.png b/public/textures/mekanism/laser.png deleted file mode 100644 index 30618c57..00000000 Binary files a/public/textures/mekanism/laser.png and /dev/null differ diff --git a/public/textures/mekanism/laser_amplifier.png b/public/textures/mekanism/laser_amplifier.png deleted file mode 100644 index 0060c66a..00000000 Binary files a/public/textures/mekanism/laser_amplifier.png and /dev/null differ diff --git a/public/textures/mekanism/laser_tractor_beam.png b/public/textures/mekanism/laser_tractor_beam.png deleted file mode 100644 index 3c026e91..00000000 Binary files a/public/textures/mekanism/laser_tractor_beam.png and /dev/null differ diff --git a/public/textures/mekanism/lead_ore.png b/public/textures/mekanism/lead_ore.png deleted file mode 100644 index b66f6d6f..00000000 Binary files a/public/textures/mekanism/lead_ore.png and /dev/null differ diff --git a/public/textures/mekanism/lithium_bucket.png b/public/textures/mekanism/lithium_bucket.png deleted file mode 100644 index f74d52c9..00000000 Binary files a/public/textures/mekanism/lithium_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/logistical_sorter.png b/public/textures/mekanism/logistical_sorter.png deleted file mode 100644 index 71aba94a..00000000 Binary files a/public/textures/mekanism/logistical_sorter.png and /dev/null differ diff --git a/public/textures/mekanism/meka_tool.png b/public/textures/mekanism/meka_tool.png deleted file mode 100644 index 7c41e0a1..00000000 Binary files a/public/textures/mekanism/meka_tool.png and /dev/null differ diff --git a/public/textures/mekanism/meka_tool__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png b/public/textures/mekanism/meka_tool__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png deleted file mode 100644 index 7c41e0a1..00000000 Binary files a/public/textures/mekanism/meka_tool__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/mekasuit_bodyarmor.png b/public/textures/mekanism/mekasuit_bodyarmor.png deleted file mode 100644 index f1df0df5..00000000 Binary files a/public/textures/mekanism/mekasuit_bodyarmor.png and /dev/null differ diff --git a/public/textures/mekanism/mekasuit_bodyarmor__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png b/public/textures/mekanism/mekasuit_bodyarmor__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png deleted file mode 100644 index f1df0df5..00000000 Binary files a/public/textures/mekanism/mekasuit_bodyarmor__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/mekasuit_boots.png b/public/textures/mekanism/mekasuit_boots.png deleted file mode 100644 index 26e921b6..00000000 Binary files a/public/textures/mekanism/mekasuit_boots.png and /dev/null differ diff --git a/public/textures/mekanism/mekasuit_boots__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png b/public/textures/mekanism/mekasuit_boots__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png deleted file mode 100644 index 26e921b6..00000000 Binary files a/public/textures/mekanism/mekasuit_boots__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/mekasuit_helmet.png b/public/textures/mekanism/mekasuit_helmet.png deleted file mode 100644 index 56e7a5de..00000000 Binary files a/public/textures/mekanism/mekasuit_helmet.png and /dev/null differ diff --git a/public/textures/mekanism/mekasuit_helmet__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png b/public/textures/mekanism/mekasuit_helmet__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png deleted file mode 100644 index 56e7a5de..00000000 Binary files a/public/textures/mekanism/mekasuit_helmet__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/mekasuit_pants.png b/public/textures/mekanism/mekasuit_pants.png deleted file mode 100644 index e4793262..00000000 Binary files a/public/textures/mekanism/mekasuit_pants.png and /dev/null differ diff --git a/public/textures/mekanism/mekasuit_pants__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png b/public/textures/mekanism/mekasuit_pants__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png deleted file mode 100644 index e4793262..00000000 Binary files a/public/textures/mekanism/mekasuit_pants__{'mekanism__energy'__{energy_containers__[L;16000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/metallurgic_infuser.png b/public/textures/mekanism/metallurgic_infuser.png deleted file mode 100644 index f950d642..00000000 Binary files a/public/textures/mekanism/metallurgic_infuser.png and /dev/null differ diff --git a/public/textures/mekanism/modification_station.png b/public/textures/mekanism/modification_station.png deleted file mode 100644 index d99265b3..00000000 Binary files a/public/textures/mekanism/modification_station.png and /dev/null differ diff --git a/public/textures/mekanism/module_attack_amplification_unit.png b/public/textures/mekanism/module_attack_amplification_unit.png deleted file mode 100644 index 1159f9e9..00000000 Binary files a/public/textures/mekanism/module_attack_amplification_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_base.png b/public/textures/mekanism/module_base.png deleted file mode 100644 index d3047c54..00000000 Binary files a/public/textures/mekanism/module_base.png and /dev/null differ diff --git a/public/textures/mekanism/module_blasting_unit.png b/public/textures/mekanism/module_blasting_unit.png deleted file mode 100644 index d37084b8..00000000 Binary files a/public/textures/mekanism/module_blasting_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_charge_distribution_unit.png b/public/textures/mekanism/module_charge_distribution_unit.png deleted file mode 100644 index 18aaee4d..00000000 Binary files a/public/textures/mekanism/module_charge_distribution_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_color_modulation_unit.png b/public/textures/mekanism/module_color_modulation_unit.png deleted file mode 100644 index 0c1c9194..00000000 Binary files a/public/textures/mekanism/module_color_modulation_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_dosimeter_unit.png b/public/textures/mekanism/module_dosimeter_unit.png deleted file mode 100644 index f01758c3..00000000 Binary files a/public/textures/mekanism/module_dosimeter_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_electrolytic_breathing_unit.png b/public/textures/mekanism/module_electrolytic_breathing_unit.png deleted file mode 100644 index 25891b78..00000000 Binary files a/public/textures/mekanism/module_electrolytic_breathing_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_elytra_unit.png b/public/textures/mekanism/module_elytra_unit.png deleted file mode 100644 index d2cbf0a6..00000000 Binary files a/public/textures/mekanism/module_elytra_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_energy_unit.png b/public/textures/mekanism/module_energy_unit.png deleted file mode 100644 index 31133196..00000000 Binary files a/public/textures/mekanism/module_energy_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_excavation_escalation_unit.png b/public/textures/mekanism/module_excavation_escalation_unit.png deleted file mode 100644 index 29be1acd..00000000 Binary files a/public/textures/mekanism/module_excavation_escalation_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_farming_unit.png b/public/textures/mekanism/module_farming_unit.png deleted file mode 100644 index 26822604..00000000 Binary files a/public/textures/mekanism/module_farming_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_fortune_unit.png b/public/textures/mekanism/module_fortune_unit.png deleted file mode 100644 index 8ea5b846..00000000 Binary files a/public/textures/mekanism/module_fortune_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_frost_walker_unit.png b/public/textures/mekanism/module_frost_walker_unit.png deleted file mode 100644 index 6aa69961..00000000 Binary files a/public/textures/mekanism/module_frost_walker_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_geiger_unit.png b/public/textures/mekanism/module_geiger_unit.png deleted file mode 100644 index ef35aa7c..00000000 Binary files a/public/textures/mekanism/module_geiger_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_gravitational_modulating_unit.png b/public/textures/mekanism/module_gravitational_modulating_unit.png deleted file mode 100644 index 4c365282..00000000 Binary files a/public/textures/mekanism/module_gravitational_modulating_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_gyroscopic_stabilization_unit.png b/public/textures/mekanism/module_gyroscopic_stabilization_unit.png deleted file mode 100644 index d68be63c..00000000 Binary files a/public/textures/mekanism/module_gyroscopic_stabilization_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_hydraulic_propulsion_unit.png b/public/textures/mekanism/module_hydraulic_propulsion_unit.png deleted file mode 100644 index 196544f9..00000000 Binary files a/public/textures/mekanism/module_hydraulic_propulsion_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_hydrostatic_repulsor_unit.png b/public/textures/mekanism/module_hydrostatic_repulsor_unit.png deleted file mode 100644 index b1cef643..00000000 Binary files a/public/textures/mekanism/module_hydrostatic_repulsor_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_inhalation_purification_unit.png b/public/textures/mekanism/module_inhalation_purification_unit.png deleted file mode 100644 index 9c6fc581..00000000 Binary files a/public/textures/mekanism/module_inhalation_purification_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_jetpack_unit.png b/public/textures/mekanism/module_jetpack_unit.png deleted file mode 100644 index 997f3861..00000000 Binary files a/public/textures/mekanism/module_jetpack_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_laser_dissipation_unit.png b/public/textures/mekanism/module_laser_dissipation_unit.png deleted file mode 100644 index 4e93c117..00000000 Binary files a/public/textures/mekanism/module_laser_dissipation_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_locomotive_boosting_unit.png b/public/textures/mekanism/module_locomotive_boosting_unit.png deleted file mode 100644 index aa028a9d..00000000 Binary files a/public/textures/mekanism/module_locomotive_boosting_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_magnetic_attraction_unit.png b/public/textures/mekanism/module_magnetic_attraction_unit.png deleted file mode 100644 index fbfc5db1..00000000 Binary files a/public/textures/mekanism/module_magnetic_attraction_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_motorized_servo_unit.png b/public/textures/mekanism/module_motorized_servo_unit.png deleted file mode 100644 index 9b7c937d..00000000 Binary files a/public/textures/mekanism/module_motorized_servo_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_nutritional_injection_unit.png b/public/textures/mekanism/module_nutritional_injection_unit.png deleted file mode 100644 index 33df341b..00000000 Binary files a/public/textures/mekanism/module_nutritional_injection_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_radiation_shielding_unit.png b/public/textures/mekanism/module_radiation_shielding_unit.png deleted file mode 100644 index c11f153f..00000000 Binary files a/public/textures/mekanism/module_radiation_shielding_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_shearing_unit.png b/public/textures/mekanism/module_shearing_unit.png deleted file mode 100644 index 2ac79286..00000000 Binary files a/public/textures/mekanism/module_shearing_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_silk_touch_unit.png b/public/textures/mekanism/module_silk_touch_unit.png deleted file mode 100644 index 86102b6f..00000000 Binary files a/public/textures/mekanism/module_silk_touch_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_soul_surfer_unit.png b/public/textures/mekanism/module_soul_surfer_unit.png deleted file mode 100644 index a0fe21d0..00000000 Binary files a/public/textures/mekanism/module_soul_surfer_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_teleportation_unit.png b/public/textures/mekanism/module_teleportation_unit.png deleted file mode 100644 index 4ee3cf96..00000000 Binary files a/public/textures/mekanism/module_teleportation_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_vein_mining_unit.png b/public/textures/mekanism/module_vein_mining_unit.png deleted file mode 100644 index bfe18bc2..00000000 Binary files a/public/textures/mekanism/module_vein_mining_unit.png and /dev/null differ diff --git a/public/textures/mekanism/module_vision_enhancement_unit.png b/public/textures/mekanism/module_vision_enhancement_unit.png deleted file mode 100644 index 759126b6..00000000 Binary files a/public/textures/mekanism/module_vision_enhancement_unit.png and /dev/null differ diff --git a/public/textures/mekanism/network_reader.png b/public/textures/mekanism/network_reader.png deleted file mode 100644 index 94edc8e3..00000000 Binary files a/public/textures/mekanism/network_reader.png and /dev/null differ diff --git a/public/textures/mekanism/network_reader__{'mekanism__energy'__{energy_containers__[L;60000L]}}.png b/public/textures/mekanism/network_reader__{'mekanism__energy'__{energy_containers__[L;60000L]}}.png deleted file mode 100644 index 0092ee46..00000000 Binary files a/public/textures/mekanism/network_reader__{'mekanism__energy'__{energy_containers__[L;60000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/nugget_bronze.png b/public/textures/mekanism/nugget_bronze.png deleted file mode 100644 index 13ec1987..00000000 Binary files a/public/textures/mekanism/nugget_bronze.png and /dev/null differ diff --git a/public/textures/mekanism/nugget_lead.png b/public/textures/mekanism/nugget_lead.png deleted file mode 100644 index b457b219..00000000 Binary files a/public/textures/mekanism/nugget_lead.png and /dev/null differ diff --git a/public/textures/mekanism/nugget_osmium.png b/public/textures/mekanism/nugget_osmium.png deleted file mode 100644 index 74df8ea8..00000000 Binary files a/public/textures/mekanism/nugget_osmium.png and /dev/null differ diff --git a/public/textures/mekanism/nugget_refined_glowstone.png b/public/textures/mekanism/nugget_refined_glowstone.png deleted file mode 100644 index 210b0aba..00000000 Binary files a/public/textures/mekanism/nugget_refined_glowstone.png and /dev/null differ diff --git a/public/textures/mekanism/nugget_refined_obsidian.png b/public/textures/mekanism/nugget_refined_obsidian.png deleted file mode 100644 index ee1319ae..00000000 Binary files a/public/textures/mekanism/nugget_refined_obsidian.png and /dev/null differ diff --git a/public/textures/mekanism/nugget_steel.png b/public/textures/mekanism/nugget_steel.png deleted file mode 100644 index 8f3662b3..00000000 Binary files a/public/textures/mekanism/nugget_steel.png and /dev/null differ diff --git a/public/textures/mekanism/nugget_tin.png b/public/textures/mekanism/nugget_tin.png deleted file mode 100644 index 03008d55..00000000 Binary files a/public/textures/mekanism/nugget_tin.png and /dev/null differ diff --git a/public/textures/mekanism/nugget_uranium.png b/public/textures/mekanism/nugget_uranium.png deleted file mode 100644 index 77aa97ef..00000000 Binary files a/public/textures/mekanism/nugget_uranium.png and /dev/null differ diff --git a/public/textures/mekanism/nutritional_liquifier.png b/public/textures/mekanism/nutritional_liquifier.png deleted file mode 100644 index 6edf9c27..00000000 Binary files a/public/textures/mekanism/nutritional_liquifier.png and /dev/null differ diff --git a/public/textures/mekanism/nutritional_paste_bucket.png b/public/textures/mekanism/nutritional_paste_bucket.png deleted file mode 100644 index 6dcf73f2..00000000 Binary files a/public/textures/mekanism/nutritional_paste_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/oredictionificator.png b/public/textures/mekanism/oredictionificator.png deleted file mode 100644 index 3db3070b..00000000 Binary files a/public/textures/mekanism/oredictionificator.png and /dev/null differ diff --git a/public/textures/mekanism/osmium_compressor.png b/public/textures/mekanism/osmium_compressor.png deleted file mode 100644 index 095f3915..00000000 Binary files a/public/textures/mekanism/osmium_compressor.png and /dev/null differ diff --git a/public/textures/mekanism/osmium_ore.png b/public/textures/mekanism/osmium_ore.png deleted file mode 100644 index 9f9256c4..00000000 Binary files a/public/textures/mekanism/osmium_ore.png and /dev/null differ diff --git a/public/textures/mekanism/oxygen_bucket.png b/public/textures/mekanism/oxygen_bucket.png deleted file mode 100644 index acfc87f3..00000000 Binary files a/public/textures/mekanism/oxygen_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/painting_machine.png b/public/textures/mekanism/painting_machine.png deleted file mode 100644 index cc36d585..00000000 Binary files a/public/textures/mekanism/painting_machine.png and /dev/null differ diff --git a/public/textures/mekanism/pellet_antimatter.png b/public/textures/mekanism/pellet_antimatter.png deleted file mode 100644 index 7ebe94dc..00000000 Binary files a/public/textures/mekanism/pellet_antimatter.png and /dev/null differ diff --git a/public/textures/mekanism/pellet_plutonium.png b/public/textures/mekanism/pellet_plutonium.png deleted file mode 100644 index ab1ce48a..00000000 Binary files a/public/textures/mekanism/pellet_plutonium.png and /dev/null differ diff --git a/public/textures/mekanism/pellet_polonium.png b/public/textures/mekanism/pellet_polonium.png deleted file mode 100644 index c8177206..00000000 Binary files a/public/textures/mekanism/pellet_polonium.png and /dev/null differ diff --git a/public/textures/mekanism/personal_barrel.png b/public/textures/mekanism/personal_barrel.png deleted file mode 100644 index f5c7fe42..00000000 Binary files a/public/textures/mekanism/personal_barrel.png and /dev/null differ diff --git a/public/textures/mekanism/personal_chest.png b/public/textures/mekanism/personal_chest.png deleted file mode 100644 index bc626da1..00000000 Binary files a/public/textures/mekanism/personal_chest.png and /dev/null differ diff --git a/public/textures/mekanism/pigment_extractor.png b/public/textures/mekanism/pigment_extractor.png deleted file mode 100644 index e807ba9f..00000000 Binary files a/public/textures/mekanism/pigment_extractor.png and /dev/null differ diff --git a/public/textures/mekanism/pigment_mixer.png b/public/textures/mekanism/pigment_mixer.png deleted file mode 100644 index 4934d4b6..00000000 Binary files a/public/textures/mekanism/pigment_mixer.png and /dev/null differ diff --git a/public/textures/mekanism/portable_qio_dashboard.png b/public/textures/mekanism/portable_qio_dashboard.png deleted file mode 100644 index 22babbe6..00000000 Binary files a/public/textures/mekanism/portable_qio_dashboard.png and /dev/null differ diff --git a/public/textures/mekanism/portable_teleporter.png b/public/textures/mekanism/portable_teleporter.png deleted file mode 100644 index 6ab1f0d9..00000000 Binary files a/public/textures/mekanism/portable_teleporter.png and /dev/null differ diff --git a/public/textures/mekanism/portable_teleporter__{'mekanism__energy'__{energy_containers__[L;1000000L]}}.png b/public/textures/mekanism/portable_teleporter__{'mekanism__energy'__{energy_containers__[L;1000000L]}}.png deleted file mode 100644 index 6ab1f0d9..00000000 Binary files a/public/textures/mekanism/portable_teleporter__{'mekanism__energy'__{energy_containers__[L;1000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/precision_sawmill.png b/public/textures/mekanism/precision_sawmill.png deleted file mode 100644 index f4d06170..00000000 Binary files a/public/textures/mekanism/precision_sawmill.png and /dev/null differ diff --git a/public/textures/mekanism/pressure_disperser.png b/public/textures/mekanism/pressure_disperser.png deleted file mode 100644 index 35c63949..00000000 Binary files a/public/textures/mekanism/pressure_disperser.png and /dev/null differ diff --git a/public/textures/mekanism/pressurized_reaction_chamber.png b/public/textures/mekanism/pressurized_reaction_chamber.png deleted file mode 100644 index 90961dff..00000000 Binary files a/public/textures/mekanism/pressurized_reaction_chamber.png and /dev/null differ diff --git a/public/textures/mekanism/purification_chamber.png b/public/textures/mekanism/purification_chamber.png deleted file mode 100644 index dbc0756a..00000000 Binary files a/public/textures/mekanism/purification_chamber.png and /dev/null differ diff --git a/public/textures/mekanism/qio_dashboard.png b/public/textures/mekanism/qio_dashboard.png deleted file mode 100644 index a8c5688b..00000000 Binary files a/public/textures/mekanism/qio_dashboard.png and /dev/null differ diff --git a/public/textures/mekanism/qio_drive_array.png b/public/textures/mekanism/qio_drive_array.png deleted file mode 100644 index 967fc797..00000000 Binary files a/public/textures/mekanism/qio_drive_array.png and /dev/null differ diff --git a/public/textures/mekanism/qio_drive_base.png b/public/textures/mekanism/qio_drive_base.png deleted file mode 100644 index 151ce89e..00000000 Binary files a/public/textures/mekanism/qio_drive_base.png and /dev/null differ diff --git a/public/textures/mekanism/qio_drive_hyper_dense.png b/public/textures/mekanism/qio_drive_hyper_dense.png deleted file mode 100644 index d181e5e5..00000000 Binary files a/public/textures/mekanism/qio_drive_hyper_dense.png and /dev/null differ diff --git a/public/textures/mekanism/qio_drive_supermassive.png b/public/textures/mekanism/qio_drive_supermassive.png deleted file mode 100644 index e2914c40..00000000 Binary files a/public/textures/mekanism/qio_drive_supermassive.png and /dev/null differ diff --git a/public/textures/mekanism/qio_drive_time_dilating.png b/public/textures/mekanism/qio_drive_time_dilating.png deleted file mode 100644 index 2ad6454c..00000000 Binary files a/public/textures/mekanism/qio_drive_time_dilating.png and /dev/null differ diff --git a/public/textures/mekanism/qio_exporter.png b/public/textures/mekanism/qio_exporter.png deleted file mode 100644 index 6bca9879..00000000 Binary files a/public/textures/mekanism/qio_exporter.png and /dev/null differ diff --git a/public/textures/mekanism/qio_importer.png b/public/textures/mekanism/qio_importer.png deleted file mode 100644 index 64ff0ffa..00000000 Binary files a/public/textures/mekanism/qio_importer.png and /dev/null differ diff --git a/public/textures/mekanism/qio_redstone_adapter.png b/public/textures/mekanism/qio_redstone_adapter.png deleted file mode 100644 index e51d44d9..00000000 Binary files a/public/textures/mekanism/qio_redstone_adapter.png and /dev/null differ diff --git a/public/textures/mekanism/quantum_entangloporter.png b/public/textures/mekanism/quantum_entangloporter.png deleted file mode 100644 index db124fa6..00000000 Binary files a/public/textures/mekanism/quantum_entangloporter.png and /dev/null differ diff --git a/public/textures/mekanism/radioactive_waste_barrel.png b/public/textures/mekanism/radioactive_waste_barrel.png deleted file mode 100644 index 4b35c006..00000000 Binary files a/public/textures/mekanism/radioactive_waste_barrel.png and /dev/null differ diff --git a/public/textures/mekanism/raw_lead.png b/public/textures/mekanism/raw_lead.png deleted file mode 100644 index 5ba78826..00000000 Binary files a/public/textures/mekanism/raw_lead.png and /dev/null differ diff --git a/public/textures/mekanism/raw_osmium.png b/public/textures/mekanism/raw_osmium.png deleted file mode 100644 index ae9b4236..00000000 Binary files a/public/textures/mekanism/raw_osmium.png and /dev/null differ diff --git a/public/textures/mekanism/raw_tin.png b/public/textures/mekanism/raw_tin.png deleted file mode 100644 index 5504d268..00000000 Binary files a/public/textures/mekanism/raw_tin.png and /dev/null differ diff --git a/public/textures/mekanism/raw_uranium.png b/public/textures/mekanism/raw_uranium.png deleted file mode 100644 index d506c734..00000000 Binary files a/public/textures/mekanism/raw_uranium.png and /dev/null differ diff --git a/public/textures/mekanism/reprocessed_fissile_fragment.png b/public/textures/mekanism/reprocessed_fissile_fragment.png deleted file mode 100644 index 28e3eba4..00000000 Binary files a/public/textures/mekanism/reprocessed_fissile_fragment.png and /dev/null differ diff --git a/public/textures/mekanism/resistive_heater.png b/public/textures/mekanism/resistive_heater.png deleted file mode 100644 index 68514842..00000000 Binary files a/public/textures/mekanism/resistive_heater.png and /dev/null differ diff --git a/public/textures/mekanism/restrictive_transporter.png b/public/textures/mekanism/restrictive_transporter.png deleted file mode 100644 index a80bdfc4..00000000 Binary files a/public/textures/mekanism/restrictive_transporter.png and /dev/null differ diff --git a/public/textures/mekanism/robit.png b/public/textures/mekanism/robit.png deleted file mode 100644 index d0b67a3d..00000000 Binary files a/public/textures/mekanism/robit.png and /dev/null differ diff --git a/public/textures/mekanism/robit__{'mekanism__energy'__{energy_containers__[L;100000L]}}.png b/public/textures/mekanism/robit__{'mekanism__energy'__{energy_containers__[L;100000L]}}.png deleted file mode 100644 index d0b67a3d..00000000 Binary files a/public/textures/mekanism/robit__{'mekanism__energy'__{energy_containers__[L;100000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/rotary_condensentrator.png b/public/textures/mekanism/rotary_condensentrator.png deleted file mode 100644 index e08ceb44..00000000 Binary files a/public/textures/mekanism/rotary_condensentrator.png and /dev/null differ diff --git a/public/textures/mekanism/salt.png b/public/textures/mekanism/salt.png deleted file mode 100644 index 93d34cc4..00000000 Binary files a/public/textures/mekanism/salt.png and /dev/null differ diff --git a/public/textures/mekanism/sawdust.png b/public/textures/mekanism/sawdust.png deleted file mode 100644 index 188ebd0a..00000000 Binary files a/public/textures/mekanism/sawdust.png and /dev/null differ diff --git a/public/textures/mekanism/scuba_mask.png b/public/textures/mekanism/scuba_mask.png deleted file mode 100644 index 3b707b3f..00000000 Binary files a/public/textures/mekanism/scuba_mask.png and /dev/null differ diff --git a/public/textures/mekanism/scuba_tank.png b/public/textures/mekanism/scuba_tank.png deleted file mode 100644 index d44750b7..00000000 Binary files a/public/textures/mekanism/scuba_tank.png and /dev/null differ diff --git a/public/textures/mekanism/scuba_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__oxygen'}]}}.png b/public/textures/mekanism/scuba_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__oxygen'}]}}.png deleted file mode 100644 index d44750b7..00000000 Binary files a/public/textures/mekanism/scuba_tank__{'mekanism__chemicals'__{chemical_tanks__[{amount__24000L,id__'mekanism__oxygen'}]}}.png and /dev/null differ diff --git a/public/textures/mekanism/security_desk.png b/public/textures/mekanism/security_desk.png deleted file mode 100644 index f8dc548b..00000000 Binary files a/public/textures/mekanism/security_desk.png and /dev/null differ diff --git a/public/textures/mekanism/seismic_reader.png b/public/textures/mekanism/seismic_reader.png deleted file mode 100644 index b96b4d23..00000000 Binary files a/public/textures/mekanism/seismic_reader.png and /dev/null differ diff --git a/public/textures/mekanism/seismic_reader__{'mekanism__energy'__{energy_containers__[L;12000L]}}.png b/public/textures/mekanism/seismic_reader__{'mekanism__energy'__{energy_containers__[L;12000L]}}.png deleted file mode 100644 index b96b4d23..00000000 Binary files a/public/textures/mekanism/seismic_reader__{'mekanism__energy'__{energy_containers__[L;12000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/seismic_vibrator.png b/public/textures/mekanism/seismic_vibrator.png deleted file mode 100644 index fa94f8b4..00000000 Binary files a/public/textures/mekanism/seismic_vibrator.png and /dev/null differ diff --git a/public/textures/mekanism/shard_copper.png b/public/textures/mekanism/shard_copper.png deleted file mode 100644 index 42aa9dc7..00000000 Binary files a/public/textures/mekanism/shard_copper.png and /dev/null differ diff --git a/public/textures/mekanism/shard_gold.png b/public/textures/mekanism/shard_gold.png deleted file mode 100644 index b61bf8cf..00000000 Binary files a/public/textures/mekanism/shard_gold.png and /dev/null differ diff --git a/public/textures/mekanism/shard_iron.png b/public/textures/mekanism/shard_iron.png deleted file mode 100644 index c5aea167..00000000 Binary files a/public/textures/mekanism/shard_iron.png and /dev/null differ diff --git a/public/textures/mekanism/shard_lead.png b/public/textures/mekanism/shard_lead.png deleted file mode 100644 index c7ba048b..00000000 Binary files a/public/textures/mekanism/shard_lead.png and /dev/null differ diff --git a/public/textures/mekanism/shard_osmium.png b/public/textures/mekanism/shard_osmium.png deleted file mode 100644 index 88fa1b67..00000000 Binary files a/public/textures/mekanism/shard_osmium.png and /dev/null differ diff --git a/public/textures/mekanism/shard_tin.png b/public/textures/mekanism/shard_tin.png deleted file mode 100644 index 3553c6a2..00000000 Binary files a/public/textures/mekanism/shard_tin.png and /dev/null differ diff --git a/public/textures/mekanism/shard_uranium.png b/public/textures/mekanism/shard_uranium.png deleted file mode 100644 index 4d55c693..00000000 Binary files a/public/textures/mekanism/shard_uranium.png and /dev/null differ diff --git a/public/textures/mekanism/sodium_bucket.png b/public/textures/mekanism/sodium_bucket.png deleted file mode 100644 index f8defcdb..00000000 Binary files a/public/textures/mekanism/sodium_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/solar_neutron_activator.png b/public/textures/mekanism/solar_neutron_activator.png deleted file mode 100644 index c72b3e4e..00000000 Binary files a/public/textures/mekanism/solar_neutron_activator.png and /dev/null differ diff --git a/public/textures/mekanism/sps_casing.png b/public/textures/mekanism/sps_casing.png deleted file mode 100644 index 47777e03..00000000 Binary files a/public/textures/mekanism/sps_casing.png and /dev/null differ diff --git a/public/textures/mekanism/sps_port.png b/public/textures/mekanism/sps_port.png deleted file mode 100644 index d976ff26..00000000 Binary files a/public/textures/mekanism/sps_port.png and /dev/null differ diff --git a/public/textures/mekanism/steam_bucket.png b/public/textures/mekanism/steam_bucket.png deleted file mode 100644 index b190af04..00000000 Binary files a/public/textures/mekanism/steam_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/steel_casing.png b/public/textures/mekanism/steel_casing.png deleted file mode 100644 index 6e0e38c9..00000000 Binary files a/public/textures/mekanism/steel_casing.png and /dev/null differ diff --git a/public/textures/mekanism/structural_glass.png b/public/textures/mekanism/structural_glass.png deleted file mode 100644 index b4d8621d..00000000 Binary files a/public/textures/mekanism/structural_glass.png and /dev/null differ diff --git a/public/textures/mekanism/substrate.png b/public/textures/mekanism/substrate.png deleted file mode 100644 index 532f1765..00000000 Binary files a/public/textures/mekanism/substrate.png and /dev/null differ diff --git a/public/textures/mekanism/sulfur_dioxide_bucket.png b/public/textures/mekanism/sulfur_dioxide_bucket.png deleted file mode 100644 index b43f1f12..00000000 Binary files a/public/textures/mekanism/sulfur_dioxide_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/sulfur_trioxide_bucket.png b/public/textures/mekanism/sulfur_trioxide_bucket.png deleted file mode 100644 index b3c4627c..00000000 Binary files a/public/textures/mekanism/sulfur_trioxide_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/sulfuric_acid_bucket.png b/public/textures/mekanism/sulfuric_acid_bucket.png deleted file mode 100644 index 67ae5b53..00000000 Binary files a/public/textures/mekanism/sulfuric_acid_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/supercharged_coil.png b/public/textures/mekanism/supercharged_coil.png deleted file mode 100644 index 7534f09f..00000000 Binary files a/public/textures/mekanism/supercharged_coil.png and /dev/null differ diff --git a/public/textures/mekanism/superheated_sodium_bucket.png b/public/textures/mekanism/superheated_sodium_bucket.png deleted file mode 100644 index b737facd..00000000 Binary files a/public/textures/mekanism/superheated_sodium_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/superheating_element.png b/public/textures/mekanism/superheating_element.png deleted file mode 100644 index e3354223..00000000 Binary files a/public/textures/mekanism/superheating_element.png and /dev/null differ diff --git a/public/textures/mekanism/teleportation_core.png b/public/textures/mekanism/teleportation_core.png deleted file mode 100644 index 41f4dc44..00000000 Binary files a/public/textures/mekanism/teleportation_core.png and /dev/null differ diff --git a/public/textures/mekanism/teleporter.png b/public/textures/mekanism/teleporter.png deleted file mode 100644 index 8935ef03..00000000 Binary files a/public/textures/mekanism/teleporter.png and /dev/null differ diff --git a/public/textures/mekanism/teleporter_frame.png b/public/textures/mekanism/teleporter_frame.png deleted file mode 100644 index 473e8bf6..00000000 Binary files a/public/textures/mekanism/teleporter_frame.png and /dev/null differ diff --git a/public/textures/mekanism/thermal_evaporation_block.png b/public/textures/mekanism/thermal_evaporation_block.png deleted file mode 100644 index f617814b..00000000 Binary files a/public/textures/mekanism/thermal_evaporation_block.png and /dev/null differ diff --git a/public/textures/mekanism/thermal_evaporation_controller.png b/public/textures/mekanism/thermal_evaporation_controller.png deleted file mode 100644 index d4cf1ff8..00000000 Binary files a/public/textures/mekanism/thermal_evaporation_controller.png and /dev/null differ diff --git a/public/textures/mekanism/thermal_evaporation_valve.png b/public/textures/mekanism/thermal_evaporation_valve.png deleted file mode 100644 index a110ab1a..00000000 Binary files a/public/textures/mekanism/thermal_evaporation_valve.png and /dev/null differ diff --git a/public/textures/mekanism/tin_ore.png b/public/textures/mekanism/tin_ore.png deleted file mode 100644 index ab5d4bdb..00000000 Binary files a/public/textures/mekanism/tin_ore.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_bin.png b/public/textures/mekanism/ultimate_bin.png deleted file mode 100644 index 80f3a315..00000000 Binary files a/public/textures/mekanism/ultimate_bin.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_chemical_tank.png b/public/textures/mekanism/ultimate_chemical_tank.png deleted file mode 100644 index 923d045d..00000000 Binary files a/public/textures/mekanism/ultimate_chemical_tank.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_combining_factory.png b/public/textures/mekanism/ultimate_combining_factory.png deleted file mode 100644 index 42464a6c..00000000 Binary files a/public/textures/mekanism/ultimate_combining_factory.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_compressing_factory.png b/public/textures/mekanism/ultimate_compressing_factory.png deleted file mode 100644 index 736fea12..00000000 Binary files a/public/textures/mekanism/ultimate_compressing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_control_circuit.png b/public/textures/mekanism/ultimate_control_circuit.png deleted file mode 100644 index e17f01e8..00000000 Binary files a/public/textures/mekanism/ultimate_control_circuit.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_crushing_factory.png b/public/textures/mekanism/ultimate_crushing_factory.png deleted file mode 100644 index cb4c2a07..00000000 Binary files a/public/textures/mekanism/ultimate_crushing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_energy_cube.png b/public/textures/mekanism/ultimate_energy_cube.png deleted file mode 100644 index 0723a00b..00000000 Binary files a/public/textures/mekanism/ultimate_energy_cube.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_energy_cube__{'mekanism__energy'__{energy_containers__[L;256000000L]}}.png b/public/textures/mekanism/ultimate_energy_cube__{'mekanism__energy'__{energy_containers__[L;256000000L]}}.png deleted file mode 100644 index 1b8714c7..00000000 Binary files a/public/textures/mekanism/ultimate_energy_cube__{'mekanism__energy'__{energy_containers__[L;256000000L]}}.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_enriching_factory.png b/public/textures/mekanism/ultimate_enriching_factory.png deleted file mode 100644 index 56f52514..00000000 Binary files a/public/textures/mekanism/ultimate_enriching_factory.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_fluid_tank.png b/public/textures/mekanism/ultimate_fluid_tank.png deleted file mode 100644 index 1cac2343..00000000 Binary files a/public/textures/mekanism/ultimate_fluid_tank.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_induction_cell.png b/public/textures/mekanism/ultimate_induction_cell.png deleted file mode 100644 index 1fcaf735..00000000 Binary files a/public/textures/mekanism/ultimate_induction_cell.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_induction_provider.png b/public/textures/mekanism/ultimate_induction_provider.png deleted file mode 100644 index 9e8c58f1..00000000 Binary files a/public/textures/mekanism/ultimate_induction_provider.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_infusing_factory.png b/public/textures/mekanism/ultimate_infusing_factory.png deleted file mode 100644 index b714a373..00000000 Binary files a/public/textures/mekanism/ultimate_infusing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_injecting_factory.png b/public/textures/mekanism/ultimate_injecting_factory.png deleted file mode 100644 index 0fbb0fcb..00000000 Binary files a/public/textures/mekanism/ultimate_injecting_factory.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_logistical_transporter.png b/public/textures/mekanism/ultimate_logistical_transporter.png deleted file mode 100644 index 37369049..00000000 Binary files a/public/textures/mekanism/ultimate_logistical_transporter.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_mechanical_pipe.png b/public/textures/mekanism/ultimate_mechanical_pipe.png deleted file mode 100644 index ae605b64..00000000 Binary files a/public/textures/mekanism/ultimate_mechanical_pipe.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_pressurized_tube.png b/public/textures/mekanism/ultimate_pressurized_tube.png deleted file mode 100644 index 38b7f077..00000000 Binary files a/public/textures/mekanism/ultimate_pressurized_tube.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_purifying_factory.png b/public/textures/mekanism/ultimate_purifying_factory.png deleted file mode 100644 index ff5aa9ba..00000000 Binary files a/public/textures/mekanism/ultimate_purifying_factory.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_sawing_factory.png b/public/textures/mekanism/ultimate_sawing_factory.png deleted file mode 100644 index 61fa81d1..00000000 Binary files a/public/textures/mekanism/ultimate_sawing_factory.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_smelting_factory.png b/public/textures/mekanism/ultimate_smelting_factory.png deleted file mode 100644 index 0a688b83..00000000 Binary files a/public/textures/mekanism/ultimate_smelting_factory.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_thermodynamic_conductor.png b/public/textures/mekanism/ultimate_thermodynamic_conductor.png deleted file mode 100644 index 6d863f35..00000000 Binary files a/public/textures/mekanism/ultimate_thermodynamic_conductor.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_tier_installer.png b/public/textures/mekanism/ultimate_tier_installer.png deleted file mode 100644 index b331f354..00000000 Binary files a/public/textures/mekanism/ultimate_tier_installer.png and /dev/null differ diff --git a/public/textures/mekanism/ultimate_universal_cable.png b/public/textures/mekanism/ultimate_universal_cable.png deleted file mode 100644 index f53c44ad..00000000 Binary files a/public/textures/mekanism/ultimate_universal_cable.png and /dev/null differ diff --git a/public/textures/mekanism/upgrade_anchor.png b/public/textures/mekanism/upgrade_anchor.png deleted file mode 100644 index 27eb7084..00000000 Binary files a/public/textures/mekanism/upgrade_anchor.png and /dev/null differ diff --git a/public/textures/mekanism/upgrade_chemical.png b/public/textures/mekanism/upgrade_chemical.png deleted file mode 100644 index 907e3025..00000000 Binary files a/public/textures/mekanism/upgrade_chemical.png and /dev/null differ diff --git a/public/textures/mekanism/upgrade_energy.png b/public/textures/mekanism/upgrade_energy.png deleted file mode 100644 index 3f83bf87..00000000 Binary files a/public/textures/mekanism/upgrade_energy.png and /dev/null differ diff --git a/public/textures/mekanism/upgrade_filter.png b/public/textures/mekanism/upgrade_filter.png deleted file mode 100644 index 6aea962b..00000000 Binary files a/public/textures/mekanism/upgrade_filter.png and /dev/null differ diff --git a/public/textures/mekanism/upgrade_muffling.png b/public/textures/mekanism/upgrade_muffling.png deleted file mode 100644 index 4d01ddef..00000000 Binary files a/public/textures/mekanism/upgrade_muffling.png and /dev/null differ diff --git a/public/textures/mekanism/upgrade_speed.png b/public/textures/mekanism/upgrade_speed.png deleted file mode 100644 index efb6fdf4..00000000 Binary files a/public/textures/mekanism/upgrade_speed.png and /dev/null differ diff --git a/public/textures/mekanism/upgrade_stone_generator.png b/public/textures/mekanism/upgrade_stone_generator.png deleted file mode 100644 index 44cfd352..00000000 Binary files a/public/textures/mekanism/upgrade_stone_generator.png and /dev/null differ diff --git a/public/textures/mekanism/uranium_hexafluoride_bucket.png b/public/textures/mekanism/uranium_hexafluoride_bucket.png deleted file mode 100644 index 809a8352..00000000 Binary files a/public/textures/mekanism/uranium_hexafluoride_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/uranium_ore.png b/public/textures/mekanism/uranium_ore.png deleted file mode 100644 index b4ce6087..00000000 Binary files a/public/textures/mekanism/uranium_ore.png and /dev/null differ diff --git a/public/textures/mekanism/uranium_oxide_bucket.png b/public/textures/mekanism/uranium_oxide_bucket.png deleted file mode 100644 index 04cfe435..00000000 Binary files a/public/textures/mekanism/uranium_oxide_bucket.png and /dev/null differ diff --git a/public/textures/mekanism/yellow_cake_uranium.png b/public/textures/mekanism/yellow_cake_uranium.png deleted file mode 100644 index 1917bedc..00000000 Binary files a/public/textures/mekanism/yellow_cake_uranium.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_balloon.png b/public/textures/mekanismadditions/aqua_balloon.png deleted file mode 100644 index 3b21d07d..00000000 Binary files a/public/textures/mekanismadditions/aqua_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_glow_panel.png b/public/textures/mekanismadditions/aqua_glow_panel.png deleted file mode 100644 index 4dec927d..00000000 Binary files a/public/textures/mekanismadditions/aqua_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic.png b/public/textures/mekanismadditions/aqua_plastic.png deleted file mode 100644 index e61a71b4..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic_fence.png b/public/textures/mekanismadditions/aqua_plastic_fence.png deleted file mode 100644 index 755c54b7..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic_fence_gate.png b/public/textures/mekanismadditions/aqua_plastic_fence_gate.png deleted file mode 100644 index 6f843df2..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic_glow.png b/public/textures/mekanismadditions/aqua_plastic_glow.png deleted file mode 100644 index 3649a6c8..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic_glow_slab.png b/public/textures/mekanismadditions/aqua_plastic_glow_slab.png deleted file mode 100644 index 6897a925..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic_glow_stairs.png b/public/textures/mekanismadditions/aqua_plastic_glow_stairs.png deleted file mode 100644 index 07c307b7..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic_road.png b/public/textures/mekanismadditions/aqua_plastic_road.png deleted file mode 100644 index 3649a6c8..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic_slab.png b/public/textures/mekanismadditions/aqua_plastic_slab.png deleted file mode 100644 index c00b1380..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic_stairs.png b/public/textures/mekanismadditions/aqua_plastic_stairs.png deleted file mode 100644 index 23691a3b..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic_transparent.png b/public/textures/mekanismadditions/aqua_plastic_transparent.png deleted file mode 100644 index bdf20a7d..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic_transparent_slab.png b/public/textures/mekanismadditions/aqua_plastic_transparent_slab.png deleted file mode 100644 index 45a4054c..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_plastic_transparent_stairs.png b/public/textures/mekanismadditions/aqua_plastic_transparent_stairs.png deleted file mode 100644 index 2b1067de..00000000 Binary files a/public/textures/mekanismadditions/aqua_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_reinforced_plastic.png b/public/textures/mekanismadditions/aqua_reinforced_plastic.png deleted file mode 100644 index 1d31ce9c..00000000 Binary files a/public/textures/mekanismadditions/aqua_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/aqua_slick_plastic.png b/public/textures/mekanismadditions/aqua_slick_plastic.png deleted file mode 100644 index 44acab22..00000000 Binary files a/public/textures/mekanismadditions/aqua_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/baby_bogged_spawn_egg.png b/public/textures/mekanismadditions/baby_bogged_spawn_egg.png deleted file mode 100644 index d2e5be4e..00000000 Binary files a/public/textures/mekanismadditions/baby_bogged_spawn_egg.png and /dev/null differ diff --git a/public/textures/mekanismadditions/baby_creeper_spawn_egg.png b/public/textures/mekanismadditions/baby_creeper_spawn_egg.png deleted file mode 100644 index c3d089d8..00000000 Binary files a/public/textures/mekanismadditions/baby_creeper_spawn_egg.png and /dev/null differ diff --git a/public/textures/mekanismadditions/baby_enderman_spawn_egg.png b/public/textures/mekanismadditions/baby_enderman_spawn_egg.png deleted file mode 100644 index 7e78837f..00000000 Binary files a/public/textures/mekanismadditions/baby_enderman_spawn_egg.png and /dev/null differ diff --git a/public/textures/mekanismadditions/baby_skeleton_spawn_egg.png b/public/textures/mekanismadditions/baby_skeleton_spawn_egg.png deleted file mode 100644 index 0d98f425..00000000 Binary files a/public/textures/mekanismadditions/baby_skeleton_spawn_egg.png and /dev/null differ diff --git a/public/textures/mekanismadditions/baby_stray_spawn_egg.png b/public/textures/mekanismadditions/baby_stray_spawn_egg.png deleted file mode 100644 index 877fd424..00000000 Binary files a/public/textures/mekanismadditions/baby_stray_spawn_egg.png and /dev/null differ diff --git a/public/textures/mekanismadditions/baby_wither_skeleton_spawn_egg.png b/public/textures/mekanismadditions/baby_wither_skeleton_spawn_egg.png deleted file mode 100644 index 7b104f40..00000000 Binary files a/public/textures/mekanismadditions/baby_wither_skeleton_spawn_egg.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_balloon.png b/public/textures/mekanismadditions/black_balloon.png deleted file mode 100644 index e18cc981..00000000 Binary files a/public/textures/mekanismadditions/black_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_glow_panel.png b/public/textures/mekanismadditions/black_glow_panel.png deleted file mode 100644 index ba6ff62a..00000000 Binary files a/public/textures/mekanismadditions/black_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic.png b/public/textures/mekanismadditions/black_plastic.png deleted file mode 100644 index 44deb983..00000000 Binary files a/public/textures/mekanismadditions/black_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic_fence.png b/public/textures/mekanismadditions/black_plastic_fence.png deleted file mode 100644 index bd7adc6b..00000000 Binary files a/public/textures/mekanismadditions/black_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic_fence_gate.png b/public/textures/mekanismadditions/black_plastic_fence_gate.png deleted file mode 100644 index d385b2f6..00000000 Binary files a/public/textures/mekanismadditions/black_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic_glow.png b/public/textures/mekanismadditions/black_plastic_glow.png deleted file mode 100644 index ed510827..00000000 Binary files a/public/textures/mekanismadditions/black_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic_glow_slab.png b/public/textures/mekanismadditions/black_plastic_glow_slab.png deleted file mode 100644 index 68933dab..00000000 Binary files a/public/textures/mekanismadditions/black_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic_glow_stairs.png b/public/textures/mekanismadditions/black_plastic_glow_stairs.png deleted file mode 100644 index c1b53df5..00000000 Binary files a/public/textures/mekanismadditions/black_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic_road.png b/public/textures/mekanismadditions/black_plastic_road.png deleted file mode 100644 index ed510827..00000000 Binary files a/public/textures/mekanismadditions/black_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic_slab.png b/public/textures/mekanismadditions/black_plastic_slab.png deleted file mode 100644 index 71cd7b19..00000000 Binary files a/public/textures/mekanismadditions/black_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic_stairs.png b/public/textures/mekanismadditions/black_plastic_stairs.png deleted file mode 100644 index ead6e7dd..00000000 Binary files a/public/textures/mekanismadditions/black_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic_transparent.png b/public/textures/mekanismadditions/black_plastic_transparent.png deleted file mode 100644 index 4abac729..00000000 Binary files a/public/textures/mekanismadditions/black_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic_transparent_slab.png b/public/textures/mekanismadditions/black_plastic_transparent_slab.png deleted file mode 100644 index bbb8e6c7..00000000 Binary files a/public/textures/mekanismadditions/black_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_plastic_transparent_stairs.png b/public/textures/mekanismadditions/black_plastic_transparent_stairs.png deleted file mode 100644 index d2f24bfa..00000000 Binary files a/public/textures/mekanismadditions/black_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_reinforced_plastic.png b/public/textures/mekanismadditions/black_reinforced_plastic.png deleted file mode 100644 index f16a75da..00000000 Binary files a/public/textures/mekanismadditions/black_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/black_slick_plastic.png b/public/textures/mekanismadditions/black_slick_plastic.png deleted file mode 100644 index e77e5557..00000000 Binary files a/public/textures/mekanismadditions/black_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_balloon.png b/public/textures/mekanismadditions/blue_balloon.png deleted file mode 100644 index 4f4ba87a..00000000 Binary files a/public/textures/mekanismadditions/blue_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_glow_panel.png b/public/textures/mekanismadditions/blue_glow_panel.png deleted file mode 100644 index dd2e7054..00000000 Binary files a/public/textures/mekanismadditions/blue_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic.png b/public/textures/mekanismadditions/blue_plastic.png deleted file mode 100644 index e35e6339..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic_fence.png b/public/textures/mekanismadditions/blue_plastic_fence.png deleted file mode 100644 index 5a1972d1..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic_fence_gate.png b/public/textures/mekanismadditions/blue_plastic_fence_gate.png deleted file mode 100644 index 38cad793..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic_glow.png b/public/textures/mekanismadditions/blue_plastic_glow.png deleted file mode 100644 index 5638f41f..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic_glow_slab.png b/public/textures/mekanismadditions/blue_plastic_glow_slab.png deleted file mode 100644 index 4c0c43af..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic_glow_stairs.png b/public/textures/mekanismadditions/blue_plastic_glow_stairs.png deleted file mode 100644 index d809db09..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic_road.png b/public/textures/mekanismadditions/blue_plastic_road.png deleted file mode 100644 index 5638f41f..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic_slab.png b/public/textures/mekanismadditions/blue_plastic_slab.png deleted file mode 100644 index ab36a46c..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic_stairs.png b/public/textures/mekanismadditions/blue_plastic_stairs.png deleted file mode 100644 index 96bd5953..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic_transparent.png b/public/textures/mekanismadditions/blue_plastic_transparent.png deleted file mode 100644 index d555158e..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic_transparent_slab.png b/public/textures/mekanismadditions/blue_plastic_transparent_slab.png deleted file mode 100644 index fc1a531b..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_plastic_transparent_stairs.png b/public/textures/mekanismadditions/blue_plastic_transparent_stairs.png deleted file mode 100644 index ea76294f..00000000 Binary files a/public/textures/mekanismadditions/blue_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_reinforced_plastic.png b/public/textures/mekanismadditions/blue_reinforced_plastic.png deleted file mode 100644 index 013726bb..00000000 Binary files a/public/textures/mekanismadditions/blue_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/blue_slick_plastic.png b/public/textures/mekanismadditions/blue_slick_plastic.png deleted file mode 100644 index 32c23b9a..00000000 Binary files a/public/textures/mekanismadditions/blue_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_balloon.png b/public/textures/mekanismadditions/brown_balloon.png deleted file mode 100644 index fab8f450..00000000 Binary files a/public/textures/mekanismadditions/brown_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_glow_panel.png b/public/textures/mekanismadditions/brown_glow_panel.png deleted file mode 100644 index c60ac052..00000000 Binary files a/public/textures/mekanismadditions/brown_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic.png b/public/textures/mekanismadditions/brown_plastic.png deleted file mode 100644 index fb60381c..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic_fence.png b/public/textures/mekanismadditions/brown_plastic_fence.png deleted file mode 100644 index 55e3129c..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic_fence_gate.png b/public/textures/mekanismadditions/brown_plastic_fence_gate.png deleted file mode 100644 index f6d1222e..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic_glow.png b/public/textures/mekanismadditions/brown_plastic_glow.png deleted file mode 100644 index 76119104..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic_glow_slab.png b/public/textures/mekanismadditions/brown_plastic_glow_slab.png deleted file mode 100644 index b6fc3b4c..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic_glow_stairs.png b/public/textures/mekanismadditions/brown_plastic_glow_stairs.png deleted file mode 100644 index 594e2cf9..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic_road.png b/public/textures/mekanismadditions/brown_plastic_road.png deleted file mode 100644 index 76119104..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic_slab.png b/public/textures/mekanismadditions/brown_plastic_slab.png deleted file mode 100644 index c3ffe2b4..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic_stairs.png b/public/textures/mekanismadditions/brown_plastic_stairs.png deleted file mode 100644 index 71fd97db..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic_transparent.png b/public/textures/mekanismadditions/brown_plastic_transparent.png deleted file mode 100644 index 5c5b301a..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic_transparent_slab.png b/public/textures/mekanismadditions/brown_plastic_transparent_slab.png deleted file mode 100644 index 2ecce8ab..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_plastic_transparent_stairs.png b/public/textures/mekanismadditions/brown_plastic_transparent_stairs.png deleted file mode 100644 index 6c76cfe6..00000000 Binary files a/public/textures/mekanismadditions/brown_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_reinforced_plastic.png b/public/textures/mekanismadditions/brown_reinforced_plastic.png deleted file mode 100644 index d4813b8a..00000000 Binary files a/public/textures/mekanismadditions/brown_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/brown_slick_plastic.png b/public/textures/mekanismadditions/brown_slick_plastic.png deleted file mode 100644 index 19d96b17..00000000 Binary files a/public/textures/mekanismadditions/brown_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_balloon.png b/public/textures/mekanismadditions/cyan_balloon.png deleted file mode 100644 index ea953192..00000000 Binary files a/public/textures/mekanismadditions/cyan_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_glow_panel.png b/public/textures/mekanismadditions/cyan_glow_panel.png deleted file mode 100644 index e02b0454..00000000 Binary files a/public/textures/mekanismadditions/cyan_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic.png b/public/textures/mekanismadditions/cyan_plastic.png deleted file mode 100644 index 60156dad..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic_fence.png b/public/textures/mekanismadditions/cyan_plastic_fence.png deleted file mode 100644 index 782ed883..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic_fence_gate.png b/public/textures/mekanismadditions/cyan_plastic_fence_gate.png deleted file mode 100644 index 7ac6fc74..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic_glow.png b/public/textures/mekanismadditions/cyan_plastic_glow.png deleted file mode 100644 index 3fa8fb19..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic_glow_slab.png b/public/textures/mekanismadditions/cyan_plastic_glow_slab.png deleted file mode 100644 index a490cd0d..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic_glow_stairs.png b/public/textures/mekanismadditions/cyan_plastic_glow_stairs.png deleted file mode 100644 index 4bd95e88..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic_road.png b/public/textures/mekanismadditions/cyan_plastic_road.png deleted file mode 100644 index 3fa8fb19..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic_slab.png b/public/textures/mekanismadditions/cyan_plastic_slab.png deleted file mode 100644 index b0bb7cb9..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic_stairs.png b/public/textures/mekanismadditions/cyan_plastic_stairs.png deleted file mode 100644 index 76267495..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic_transparent.png b/public/textures/mekanismadditions/cyan_plastic_transparent.png deleted file mode 100644 index 12be2164..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic_transparent_slab.png b/public/textures/mekanismadditions/cyan_plastic_transparent_slab.png deleted file mode 100644 index a2722cf2..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_plastic_transparent_stairs.png b/public/textures/mekanismadditions/cyan_plastic_transparent_stairs.png deleted file mode 100644 index 83674d43..00000000 Binary files a/public/textures/mekanismadditions/cyan_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_reinforced_plastic.png b/public/textures/mekanismadditions/cyan_reinforced_plastic.png deleted file mode 100644 index 61527c99..00000000 Binary files a/public/textures/mekanismadditions/cyan_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/cyan_slick_plastic.png b/public/textures/mekanismadditions/cyan_slick_plastic.png deleted file mode 100644 index 54a8e865..00000000 Binary files a/public/textures/mekanismadditions/cyan_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_balloon.png b/public/textures/mekanismadditions/dark_red_balloon.png deleted file mode 100644 index bae84a05..00000000 Binary files a/public/textures/mekanismadditions/dark_red_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_glow_panel.png b/public/textures/mekanismadditions/dark_red_glow_panel.png deleted file mode 100644 index b77fb39f..00000000 Binary files a/public/textures/mekanismadditions/dark_red_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic.png b/public/textures/mekanismadditions/dark_red_plastic.png deleted file mode 100644 index 65549b9d..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic_fence.png b/public/textures/mekanismadditions/dark_red_plastic_fence.png deleted file mode 100644 index e78a9e22..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic_fence_gate.png b/public/textures/mekanismadditions/dark_red_plastic_fence_gate.png deleted file mode 100644 index 637a13fd..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic_glow.png b/public/textures/mekanismadditions/dark_red_plastic_glow.png deleted file mode 100644 index 9199401d..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic_glow_slab.png b/public/textures/mekanismadditions/dark_red_plastic_glow_slab.png deleted file mode 100644 index 0ab90ee2..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic_glow_stairs.png b/public/textures/mekanismadditions/dark_red_plastic_glow_stairs.png deleted file mode 100644 index cb8d69d7..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic_road.png b/public/textures/mekanismadditions/dark_red_plastic_road.png deleted file mode 100644 index 9199401d..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic_slab.png b/public/textures/mekanismadditions/dark_red_plastic_slab.png deleted file mode 100644 index c4f9d948..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic_stairs.png b/public/textures/mekanismadditions/dark_red_plastic_stairs.png deleted file mode 100644 index c03892f4..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic_transparent.png b/public/textures/mekanismadditions/dark_red_plastic_transparent.png deleted file mode 100644 index c18f4fc1..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic_transparent_slab.png b/public/textures/mekanismadditions/dark_red_plastic_transparent_slab.png deleted file mode 100644 index 9a637d6e..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_plastic_transparent_stairs.png b/public/textures/mekanismadditions/dark_red_plastic_transparent_stairs.png deleted file mode 100644 index f6ac3dd0..00000000 Binary files a/public/textures/mekanismadditions/dark_red_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_reinforced_plastic.png b/public/textures/mekanismadditions/dark_red_reinforced_plastic.png deleted file mode 100644 index c5c87fcb..00000000 Binary files a/public/textures/mekanismadditions/dark_red_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/dark_red_slick_plastic.png b/public/textures/mekanismadditions/dark_red_slick_plastic.png deleted file mode 100644 index 9e9294ab..00000000 Binary files a/public/textures/mekanismadditions/dark_red_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_balloon.png b/public/textures/mekanismadditions/gray_balloon.png deleted file mode 100644 index 5c173af6..00000000 Binary files a/public/textures/mekanismadditions/gray_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_glow_panel.png b/public/textures/mekanismadditions/gray_glow_panel.png deleted file mode 100644 index 56c90852..00000000 Binary files a/public/textures/mekanismadditions/gray_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic.png b/public/textures/mekanismadditions/gray_plastic.png deleted file mode 100644 index fec34431..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic_fence.png b/public/textures/mekanismadditions/gray_plastic_fence.png deleted file mode 100644 index e92394ee..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic_fence_gate.png b/public/textures/mekanismadditions/gray_plastic_fence_gate.png deleted file mode 100644 index 3a295b20..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic_glow.png b/public/textures/mekanismadditions/gray_plastic_glow.png deleted file mode 100644 index 75340e2c..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic_glow_slab.png b/public/textures/mekanismadditions/gray_plastic_glow_slab.png deleted file mode 100644 index 30e4359c..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic_glow_stairs.png b/public/textures/mekanismadditions/gray_plastic_glow_stairs.png deleted file mode 100644 index d7383a95..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic_road.png b/public/textures/mekanismadditions/gray_plastic_road.png deleted file mode 100644 index 75340e2c..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic_slab.png b/public/textures/mekanismadditions/gray_plastic_slab.png deleted file mode 100644 index e1baf42e..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic_stairs.png b/public/textures/mekanismadditions/gray_plastic_stairs.png deleted file mode 100644 index f46fc577..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic_transparent.png b/public/textures/mekanismadditions/gray_plastic_transparent.png deleted file mode 100644 index 6a55b7d3..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic_transparent_slab.png b/public/textures/mekanismadditions/gray_plastic_transparent_slab.png deleted file mode 100644 index 7069b105..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_plastic_transparent_stairs.png b/public/textures/mekanismadditions/gray_plastic_transparent_stairs.png deleted file mode 100644 index bb4c0060..00000000 Binary files a/public/textures/mekanismadditions/gray_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_reinforced_plastic.png b/public/textures/mekanismadditions/gray_reinforced_plastic.png deleted file mode 100644 index 9953e0cf..00000000 Binary files a/public/textures/mekanismadditions/gray_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/gray_slick_plastic.png b/public/textures/mekanismadditions/gray_slick_plastic.png deleted file mode 100644 index 2e75f8e7..00000000 Binary files a/public/textures/mekanismadditions/gray_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_balloon.png b/public/textures/mekanismadditions/green_balloon.png deleted file mode 100644 index 80e45977..00000000 Binary files a/public/textures/mekanismadditions/green_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_glow_panel.png b/public/textures/mekanismadditions/green_glow_panel.png deleted file mode 100644 index 134c2346..00000000 Binary files a/public/textures/mekanismadditions/green_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic.png b/public/textures/mekanismadditions/green_plastic.png deleted file mode 100644 index d4867479..00000000 Binary files a/public/textures/mekanismadditions/green_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic_fence.png b/public/textures/mekanismadditions/green_plastic_fence.png deleted file mode 100644 index 5f496582..00000000 Binary files a/public/textures/mekanismadditions/green_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic_fence_gate.png b/public/textures/mekanismadditions/green_plastic_fence_gate.png deleted file mode 100644 index 72fc541e..00000000 Binary files a/public/textures/mekanismadditions/green_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic_glow.png b/public/textures/mekanismadditions/green_plastic_glow.png deleted file mode 100644 index 45f9a11a..00000000 Binary files a/public/textures/mekanismadditions/green_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic_glow_slab.png b/public/textures/mekanismadditions/green_plastic_glow_slab.png deleted file mode 100644 index e70c1d80..00000000 Binary files a/public/textures/mekanismadditions/green_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic_glow_stairs.png b/public/textures/mekanismadditions/green_plastic_glow_stairs.png deleted file mode 100644 index 7c1f3af5..00000000 Binary files a/public/textures/mekanismadditions/green_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic_road.png b/public/textures/mekanismadditions/green_plastic_road.png deleted file mode 100644 index 45f9a11a..00000000 Binary files a/public/textures/mekanismadditions/green_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic_slab.png b/public/textures/mekanismadditions/green_plastic_slab.png deleted file mode 100644 index 61309fee..00000000 Binary files a/public/textures/mekanismadditions/green_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic_stairs.png b/public/textures/mekanismadditions/green_plastic_stairs.png deleted file mode 100644 index 3c8fcb52..00000000 Binary files a/public/textures/mekanismadditions/green_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic_transparent.png b/public/textures/mekanismadditions/green_plastic_transparent.png deleted file mode 100644 index 7ea3df99..00000000 Binary files a/public/textures/mekanismadditions/green_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic_transparent_slab.png b/public/textures/mekanismadditions/green_plastic_transparent_slab.png deleted file mode 100644 index 0b020439..00000000 Binary files a/public/textures/mekanismadditions/green_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_plastic_transparent_stairs.png b/public/textures/mekanismadditions/green_plastic_transparent_stairs.png deleted file mode 100644 index e67a443c..00000000 Binary files a/public/textures/mekanismadditions/green_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_reinforced_plastic.png b/public/textures/mekanismadditions/green_reinforced_plastic.png deleted file mode 100644 index c6cb3fd7..00000000 Binary files a/public/textures/mekanismadditions/green_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/green_slick_plastic.png b/public/textures/mekanismadditions/green_slick_plastic.png deleted file mode 100644 index 363e646f..00000000 Binary files a/public/textures/mekanismadditions/green_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_balloon.png b/public/textures/mekanismadditions/light_blue_balloon.png deleted file mode 100644 index aaf78a57..00000000 Binary files a/public/textures/mekanismadditions/light_blue_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_glow_panel.png b/public/textures/mekanismadditions/light_blue_glow_panel.png deleted file mode 100644 index 7059362b..00000000 Binary files a/public/textures/mekanismadditions/light_blue_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic.png b/public/textures/mekanismadditions/light_blue_plastic.png deleted file mode 100644 index 7cd42e9a..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic_fence.png b/public/textures/mekanismadditions/light_blue_plastic_fence.png deleted file mode 100644 index b36f3043..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic_fence_gate.png b/public/textures/mekanismadditions/light_blue_plastic_fence_gate.png deleted file mode 100644 index 881f5476..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic_glow.png b/public/textures/mekanismadditions/light_blue_plastic_glow.png deleted file mode 100644 index 9375ec3a..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic_glow_slab.png b/public/textures/mekanismadditions/light_blue_plastic_glow_slab.png deleted file mode 100644 index f75ada84..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic_glow_stairs.png b/public/textures/mekanismadditions/light_blue_plastic_glow_stairs.png deleted file mode 100644 index 53d97372..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic_road.png b/public/textures/mekanismadditions/light_blue_plastic_road.png deleted file mode 100644 index 9375ec3a..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic_slab.png b/public/textures/mekanismadditions/light_blue_plastic_slab.png deleted file mode 100644 index 2f943c58..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic_stairs.png b/public/textures/mekanismadditions/light_blue_plastic_stairs.png deleted file mode 100644 index 7c6ea0ab..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic_transparent.png b/public/textures/mekanismadditions/light_blue_plastic_transparent.png deleted file mode 100644 index 6f633ac3..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic_transparent_slab.png b/public/textures/mekanismadditions/light_blue_plastic_transparent_slab.png deleted file mode 100644 index 2373b6e9..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_plastic_transparent_stairs.png b/public/textures/mekanismadditions/light_blue_plastic_transparent_stairs.png deleted file mode 100644 index 25046fe2..00000000 Binary files a/public/textures/mekanismadditions/light_blue_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_reinforced_plastic.png b/public/textures/mekanismadditions/light_blue_reinforced_plastic.png deleted file mode 100644 index 87a1b8e5..00000000 Binary files a/public/textures/mekanismadditions/light_blue_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_blue_slick_plastic.png b/public/textures/mekanismadditions/light_blue_slick_plastic.png deleted file mode 100644 index 54c17617..00000000 Binary files a/public/textures/mekanismadditions/light_blue_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_balloon.png b/public/textures/mekanismadditions/light_gray_balloon.png deleted file mode 100644 index 923f5b4a..00000000 Binary files a/public/textures/mekanismadditions/light_gray_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_glow_panel.png b/public/textures/mekanismadditions/light_gray_glow_panel.png deleted file mode 100644 index d6654b31..00000000 Binary files a/public/textures/mekanismadditions/light_gray_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic.png b/public/textures/mekanismadditions/light_gray_plastic.png deleted file mode 100644 index 4ab3aa2b..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic_fence.png b/public/textures/mekanismadditions/light_gray_plastic_fence.png deleted file mode 100644 index 40f65962..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic_fence_gate.png b/public/textures/mekanismadditions/light_gray_plastic_fence_gate.png deleted file mode 100644 index 7d492bc2..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic_glow.png b/public/textures/mekanismadditions/light_gray_plastic_glow.png deleted file mode 100644 index d31bedc7..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic_glow_slab.png b/public/textures/mekanismadditions/light_gray_plastic_glow_slab.png deleted file mode 100644 index faa3c1a3..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic_glow_stairs.png b/public/textures/mekanismadditions/light_gray_plastic_glow_stairs.png deleted file mode 100644 index 610fa38b..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic_road.png b/public/textures/mekanismadditions/light_gray_plastic_road.png deleted file mode 100644 index d31bedc7..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic_slab.png b/public/textures/mekanismadditions/light_gray_plastic_slab.png deleted file mode 100644 index d44a7b27..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic_stairs.png b/public/textures/mekanismadditions/light_gray_plastic_stairs.png deleted file mode 100644 index d27e68a8..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic_transparent.png b/public/textures/mekanismadditions/light_gray_plastic_transparent.png deleted file mode 100644 index ec948c39..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic_transparent_slab.png b/public/textures/mekanismadditions/light_gray_plastic_transparent_slab.png deleted file mode 100644 index 845bfeda..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_plastic_transparent_stairs.png b/public/textures/mekanismadditions/light_gray_plastic_transparent_stairs.png deleted file mode 100644 index 83b75015..00000000 Binary files a/public/textures/mekanismadditions/light_gray_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_reinforced_plastic.png b/public/textures/mekanismadditions/light_gray_reinforced_plastic.png deleted file mode 100644 index 224527a4..00000000 Binary files a/public/textures/mekanismadditions/light_gray_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/light_gray_slick_plastic.png b/public/textures/mekanismadditions/light_gray_slick_plastic.png deleted file mode 100644 index ce10d628..00000000 Binary files a/public/textures/mekanismadditions/light_gray_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_balloon.png b/public/textures/mekanismadditions/lime_balloon.png deleted file mode 100644 index 83e74d98..00000000 Binary files a/public/textures/mekanismadditions/lime_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_glow_panel.png b/public/textures/mekanismadditions/lime_glow_panel.png deleted file mode 100644 index 81622668..00000000 Binary files a/public/textures/mekanismadditions/lime_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic.png b/public/textures/mekanismadditions/lime_plastic.png deleted file mode 100644 index e93a481d..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic_fence.png b/public/textures/mekanismadditions/lime_plastic_fence.png deleted file mode 100644 index 17a41e8d..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic_fence_gate.png b/public/textures/mekanismadditions/lime_plastic_fence_gate.png deleted file mode 100644 index 24fded60..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic_glow.png b/public/textures/mekanismadditions/lime_plastic_glow.png deleted file mode 100644 index 5c9d05cf..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic_glow_slab.png b/public/textures/mekanismadditions/lime_plastic_glow_slab.png deleted file mode 100644 index e7846455..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic_glow_stairs.png b/public/textures/mekanismadditions/lime_plastic_glow_stairs.png deleted file mode 100644 index 4ff33b7b..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic_road.png b/public/textures/mekanismadditions/lime_plastic_road.png deleted file mode 100644 index 5c9d05cf..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic_slab.png b/public/textures/mekanismadditions/lime_plastic_slab.png deleted file mode 100644 index 99924467..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic_stairs.png b/public/textures/mekanismadditions/lime_plastic_stairs.png deleted file mode 100644 index 2db99ce3..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic_transparent.png b/public/textures/mekanismadditions/lime_plastic_transparent.png deleted file mode 100644 index 8faca130..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic_transparent_slab.png b/public/textures/mekanismadditions/lime_plastic_transparent_slab.png deleted file mode 100644 index bda5913a..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_plastic_transparent_stairs.png b/public/textures/mekanismadditions/lime_plastic_transparent_stairs.png deleted file mode 100644 index f16e0fc8..00000000 Binary files a/public/textures/mekanismadditions/lime_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_reinforced_plastic.png b/public/textures/mekanismadditions/lime_reinforced_plastic.png deleted file mode 100644 index 0583bc40..00000000 Binary files a/public/textures/mekanismadditions/lime_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/lime_slick_plastic.png b/public/textures/mekanismadditions/lime_slick_plastic.png deleted file mode 100644 index 1af7895e..00000000 Binary files a/public/textures/mekanismadditions/lime_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_balloon.png b/public/textures/mekanismadditions/magenta_balloon.png deleted file mode 100644 index b4171140..00000000 Binary files a/public/textures/mekanismadditions/magenta_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_glow_panel.png b/public/textures/mekanismadditions/magenta_glow_panel.png deleted file mode 100644 index 9b5c933f..00000000 Binary files a/public/textures/mekanismadditions/magenta_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic.png b/public/textures/mekanismadditions/magenta_plastic.png deleted file mode 100644 index c7ba1283..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic_fence.png b/public/textures/mekanismadditions/magenta_plastic_fence.png deleted file mode 100644 index 3f03f8aa..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic_fence_gate.png b/public/textures/mekanismadditions/magenta_plastic_fence_gate.png deleted file mode 100644 index 0b48081f..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic_glow.png b/public/textures/mekanismadditions/magenta_plastic_glow.png deleted file mode 100644 index ae4eadaf..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic_glow_slab.png b/public/textures/mekanismadditions/magenta_plastic_glow_slab.png deleted file mode 100644 index 028645fb..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic_glow_stairs.png b/public/textures/mekanismadditions/magenta_plastic_glow_stairs.png deleted file mode 100644 index 66e80329..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic_road.png b/public/textures/mekanismadditions/magenta_plastic_road.png deleted file mode 100644 index ae4eadaf..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic_slab.png b/public/textures/mekanismadditions/magenta_plastic_slab.png deleted file mode 100644 index 444e0033..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic_stairs.png b/public/textures/mekanismadditions/magenta_plastic_stairs.png deleted file mode 100644 index afe0f578..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic_transparent.png b/public/textures/mekanismadditions/magenta_plastic_transparent.png deleted file mode 100644 index d6c1ac66..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic_transparent_slab.png b/public/textures/mekanismadditions/magenta_plastic_transparent_slab.png deleted file mode 100644 index bad6b056..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_plastic_transparent_stairs.png b/public/textures/mekanismadditions/magenta_plastic_transparent_stairs.png deleted file mode 100644 index 4f60826e..00000000 Binary files a/public/textures/mekanismadditions/magenta_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_reinforced_plastic.png b/public/textures/mekanismadditions/magenta_reinforced_plastic.png deleted file mode 100644 index e27dd388..00000000 Binary files a/public/textures/mekanismadditions/magenta_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/magenta_slick_plastic.png b/public/textures/mekanismadditions/magenta_slick_plastic.png deleted file mode 100644 index 3d2fb28c..00000000 Binary files a/public/textures/mekanismadditions/magenta_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/obsidian_tnt.png b/public/textures/mekanismadditions/obsidian_tnt.png deleted file mode 100644 index dcdf96dc..00000000 Binary files a/public/textures/mekanismadditions/obsidian_tnt.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_balloon.png b/public/textures/mekanismadditions/orange_balloon.png deleted file mode 100644 index b5d9e2c1..00000000 Binary files a/public/textures/mekanismadditions/orange_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_glow_panel.png b/public/textures/mekanismadditions/orange_glow_panel.png deleted file mode 100644 index 9c342b30..00000000 Binary files a/public/textures/mekanismadditions/orange_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic.png b/public/textures/mekanismadditions/orange_plastic.png deleted file mode 100644 index e89aee1d..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic_fence.png b/public/textures/mekanismadditions/orange_plastic_fence.png deleted file mode 100644 index 95eeedf5..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic_fence_gate.png b/public/textures/mekanismadditions/orange_plastic_fence_gate.png deleted file mode 100644 index e5d6676c..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic_glow.png b/public/textures/mekanismadditions/orange_plastic_glow.png deleted file mode 100644 index b552a370..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic_glow_slab.png b/public/textures/mekanismadditions/orange_plastic_glow_slab.png deleted file mode 100644 index b7e040b7..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic_glow_stairs.png b/public/textures/mekanismadditions/orange_plastic_glow_stairs.png deleted file mode 100644 index 55b92001..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic_road.png b/public/textures/mekanismadditions/orange_plastic_road.png deleted file mode 100644 index b552a370..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic_slab.png b/public/textures/mekanismadditions/orange_plastic_slab.png deleted file mode 100644 index a92280f2..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic_stairs.png b/public/textures/mekanismadditions/orange_plastic_stairs.png deleted file mode 100644 index 884f28f3..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic_transparent.png b/public/textures/mekanismadditions/orange_plastic_transparent.png deleted file mode 100644 index 81a46a94..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic_transparent_slab.png b/public/textures/mekanismadditions/orange_plastic_transparent_slab.png deleted file mode 100644 index 0541ff97..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_plastic_transparent_stairs.png b/public/textures/mekanismadditions/orange_plastic_transparent_stairs.png deleted file mode 100644 index 0f1491b4..00000000 Binary files a/public/textures/mekanismadditions/orange_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_reinforced_plastic.png b/public/textures/mekanismadditions/orange_reinforced_plastic.png deleted file mode 100644 index feccfe1a..00000000 Binary files a/public/textures/mekanismadditions/orange_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/orange_slick_plastic.png b/public/textures/mekanismadditions/orange_slick_plastic.png deleted file mode 100644 index 4d07d342..00000000 Binary files a/public/textures/mekanismadditions/orange_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_balloon.png b/public/textures/mekanismadditions/pink_balloon.png deleted file mode 100644 index b9062fbe..00000000 Binary files a/public/textures/mekanismadditions/pink_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_glow_panel.png b/public/textures/mekanismadditions/pink_glow_panel.png deleted file mode 100644 index 905e0ed2..00000000 Binary files a/public/textures/mekanismadditions/pink_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic.png b/public/textures/mekanismadditions/pink_plastic.png deleted file mode 100644 index a1ad8023..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic_fence.png b/public/textures/mekanismadditions/pink_plastic_fence.png deleted file mode 100644 index f8e99052..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic_fence_gate.png b/public/textures/mekanismadditions/pink_plastic_fence_gate.png deleted file mode 100644 index 49a3ec77..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic_glow.png b/public/textures/mekanismadditions/pink_plastic_glow.png deleted file mode 100644 index ec5a13b7..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic_glow_slab.png b/public/textures/mekanismadditions/pink_plastic_glow_slab.png deleted file mode 100644 index 0e43b602..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic_glow_stairs.png b/public/textures/mekanismadditions/pink_plastic_glow_stairs.png deleted file mode 100644 index 3d40c9e6..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic_road.png b/public/textures/mekanismadditions/pink_plastic_road.png deleted file mode 100644 index ec5a13b7..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic_slab.png b/public/textures/mekanismadditions/pink_plastic_slab.png deleted file mode 100644 index 63b72763..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic_stairs.png b/public/textures/mekanismadditions/pink_plastic_stairs.png deleted file mode 100644 index 9ad65741..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic_transparent.png b/public/textures/mekanismadditions/pink_plastic_transparent.png deleted file mode 100644 index e86664b9..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic_transparent_slab.png b/public/textures/mekanismadditions/pink_plastic_transparent_slab.png deleted file mode 100644 index df60fc13..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_plastic_transparent_stairs.png b/public/textures/mekanismadditions/pink_plastic_transparent_stairs.png deleted file mode 100644 index a8314e29..00000000 Binary files a/public/textures/mekanismadditions/pink_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_reinforced_plastic.png b/public/textures/mekanismadditions/pink_reinforced_plastic.png deleted file mode 100644 index 51f9e134..00000000 Binary files a/public/textures/mekanismadditions/pink_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/pink_slick_plastic.png b/public/textures/mekanismadditions/pink_slick_plastic.png deleted file mode 100644 index 8aa7ac88..00000000 Binary files a/public/textures/mekanismadditions/pink_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_balloon.png b/public/textures/mekanismadditions/purple_balloon.png deleted file mode 100644 index 1e7d285b..00000000 Binary files a/public/textures/mekanismadditions/purple_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_glow_panel.png b/public/textures/mekanismadditions/purple_glow_panel.png deleted file mode 100644 index 153362ad..00000000 Binary files a/public/textures/mekanismadditions/purple_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic.png b/public/textures/mekanismadditions/purple_plastic.png deleted file mode 100644 index 07142195..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic_fence.png b/public/textures/mekanismadditions/purple_plastic_fence.png deleted file mode 100644 index cac6c2a7..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic_fence_gate.png b/public/textures/mekanismadditions/purple_plastic_fence_gate.png deleted file mode 100644 index 50c85129..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic_glow.png b/public/textures/mekanismadditions/purple_plastic_glow.png deleted file mode 100644 index 6d530a4a..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic_glow_slab.png b/public/textures/mekanismadditions/purple_plastic_glow_slab.png deleted file mode 100644 index 1c6df84b..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic_glow_stairs.png b/public/textures/mekanismadditions/purple_plastic_glow_stairs.png deleted file mode 100644 index a42d2179..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic_road.png b/public/textures/mekanismadditions/purple_plastic_road.png deleted file mode 100644 index 6d530a4a..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic_slab.png b/public/textures/mekanismadditions/purple_plastic_slab.png deleted file mode 100644 index 74187b07..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic_stairs.png b/public/textures/mekanismadditions/purple_plastic_stairs.png deleted file mode 100644 index 77ce77ad..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic_transparent.png b/public/textures/mekanismadditions/purple_plastic_transparent.png deleted file mode 100644 index 1fc3d5e0..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic_transparent_slab.png b/public/textures/mekanismadditions/purple_plastic_transparent_slab.png deleted file mode 100644 index 3efe2db0..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_plastic_transparent_stairs.png b/public/textures/mekanismadditions/purple_plastic_transparent_stairs.png deleted file mode 100644 index f3954864..00000000 Binary files a/public/textures/mekanismadditions/purple_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_reinforced_plastic.png b/public/textures/mekanismadditions/purple_reinforced_plastic.png deleted file mode 100644 index a7cee09d..00000000 Binary files a/public/textures/mekanismadditions/purple_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/purple_slick_plastic.png b/public/textures/mekanismadditions/purple_slick_plastic.png deleted file mode 100644 index d90c5355..00000000 Binary files a/public/textures/mekanismadditions/purple_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_balloon.png b/public/textures/mekanismadditions/red_balloon.png deleted file mode 100644 index 0b9f2dcf..00000000 Binary files a/public/textures/mekanismadditions/red_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_glow_panel.png b/public/textures/mekanismadditions/red_glow_panel.png deleted file mode 100644 index 53655c44..00000000 Binary files a/public/textures/mekanismadditions/red_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic.png b/public/textures/mekanismadditions/red_plastic.png deleted file mode 100644 index 87bbf3ef..00000000 Binary files a/public/textures/mekanismadditions/red_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic_fence.png b/public/textures/mekanismadditions/red_plastic_fence.png deleted file mode 100644 index ff410fe5..00000000 Binary files a/public/textures/mekanismadditions/red_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic_fence_gate.png b/public/textures/mekanismadditions/red_plastic_fence_gate.png deleted file mode 100644 index ba1946e4..00000000 Binary files a/public/textures/mekanismadditions/red_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic_glow.png b/public/textures/mekanismadditions/red_plastic_glow.png deleted file mode 100644 index 7c09079c..00000000 Binary files a/public/textures/mekanismadditions/red_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic_glow_slab.png b/public/textures/mekanismadditions/red_plastic_glow_slab.png deleted file mode 100644 index 0f1610f5..00000000 Binary files a/public/textures/mekanismadditions/red_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic_glow_stairs.png b/public/textures/mekanismadditions/red_plastic_glow_stairs.png deleted file mode 100644 index 36198f57..00000000 Binary files a/public/textures/mekanismadditions/red_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic_road.png b/public/textures/mekanismadditions/red_plastic_road.png deleted file mode 100644 index 7c09079c..00000000 Binary files a/public/textures/mekanismadditions/red_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic_slab.png b/public/textures/mekanismadditions/red_plastic_slab.png deleted file mode 100644 index 3d79e6b7..00000000 Binary files a/public/textures/mekanismadditions/red_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic_stairs.png b/public/textures/mekanismadditions/red_plastic_stairs.png deleted file mode 100644 index 9c7a406c..00000000 Binary files a/public/textures/mekanismadditions/red_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic_transparent.png b/public/textures/mekanismadditions/red_plastic_transparent.png deleted file mode 100644 index a9163ec9..00000000 Binary files a/public/textures/mekanismadditions/red_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic_transparent_slab.png b/public/textures/mekanismadditions/red_plastic_transparent_slab.png deleted file mode 100644 index d5d8125c..00000000 Binary files a/public/textures/mekanismadditions/red_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_plastic_transparent_stairs.png b/public/textures/mekanismadditions/red_plastic_transparent_stairs.png deleted file mode 100644 index 505f646f..00000000 Binary files a/public/textures/mekanismadditions/red_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_reinforced_plastic.png b/public/textures/mekanismadditions/red_reinforced_plastic.png deleted file mode 100644 index 1681006a..00000000 Binary files a/public/textures/mekanismadditions/red_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/red_slick_plastic.png b/public/textures/mekanismadditions/red_slick_plastic.png deleted file mode 100644 index daa30030..00000000 Binary files a/public/textures/mekanismadditions/red_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/walkie_talkie.png b/public/textures/mekanismadditions/walkie_talkie.png deleted file mode 100644 index 1552adcc..00000000 Binary files a/public/textures/mekanismadditions/walkie_talkie.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_balloon.png b/public/textures/mekanismadditions/white_balloon.png deleted file mode 100644 index 348cd3fd..00000000 Binary files a/public/textures/mekanismadditions/white_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_glow_panel.png b/public/textures/mekanismadditions/white_glow_panel.png deleted file mode 100644 index 6375879f..00000000 Binary files a/public/textures/mekanismadditions/white_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic.png b/public/textures/mekanismadditions/white_plastic.png deleted file mode 100644 index 714ba012..00000000 Binary files a/public/textures/mekanismadditions/white_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic_fence.png b/public/textures/mekanismadditions/white_plastic_fence.png deleted file mode 100644 index c55148e3..00000000 Binary files a/public/textures/mekanismadditions/white_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic_fence_gate.png b/public/textures/mekanismadditions/white_plastic_fence_gate.png deleted file mode 100644 index 6cce0d18..00000000 Binary files a/public/textures/mekanismadditions/white_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic_glow.png b/public/textures/mekanismadditions/white_plastic_glow.png deleted file mode 100644 index 2b7f0a92..00000000 Binary files a/public/textures/mekanismadditions/white_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic_glow_slab.png b/public/textures/mekanismadditions/white_plastic_glow_slab.png deleted file mode 100644 index eaa9b369..00000000 Binary files a/public/textures/mekanismadditions/white_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic_glow_stairs.png b/public/textures/mekanismadditions/white_plastic_glow_stairs.png deleted file mode 100644 index 8f383e6d..00000000 Binary files a/public/textures/mekanismadditions/white_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic_road.png b/public/textures/mekanismadditions/white_plastic_road.png deleted file mode 100644 index 2b7f0a92..00000000 Binary files a/public/textures/mekanismadditions/white_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic_slab.png b/public/textures/mekanismadditions/white_plastic_slab.png deleted file mode 100644 index 459e4cb3..00000000 Binary files a/public/textures/mekanismadditions/white_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic_stairs.png b/public/textures/mekanismadditions/white_plastic_stairs.png deleted file mode 100644 index 60209167..00000000 Binary files a/public/textures/mekanismadditions/white_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic_transparent.png b/public/textures/mekanismadditions/white_plastic_transparent.png deleted file mode 100644 index 49ebdd55..00000000 Binary files a/public/textures/mekanismadditions/white_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic_transparent_slab.png b/public/textures/mekanismadditions/white_plastic_transparent_slab.png deleted file mode 100644 index 09265668..00000000 Binary files a/public/textures/mekanismadditions/white_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_plastic_transparent_stairs.png b/public/textures/mekanismadditions/white_plastic_transparent_stairs.png deleted file mode 100644 index 919d9798..00000000 Binary files a/public/textures/mekanismadditions/white_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_reinforced_plastic.png b/public/textures/mekanismadditions/white_reinforced_plastic.png deleted file mode 100644 index 024814e5..00000000 Binary files a/public/textures/mekanismadditions/white_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/white_slick_plastic.png b/public/textures/mekanismadditions/white_slick_plastic.png deleted file mode 100644 index 3b1ec17e..00000000 Binary files a/public/textures/mekanismadditions/white_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_balloon.png b/public/textures/mekanismadditions/yellow_balloon.png deleted file mode 100644 index 463c8b60..00000000 Binary files a/public/textures/mekanismadditions/yellow_balloon.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_glow_panel.png b/public/textures/mekanismadditions/yellow_glow_panel.png deleted file mode 100644 index 55f4ba60..00000000 Binary files a/public/textures/mekanismadditions/yellow_glow_panel.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic.png b/public/textures/mekanismadditions/yellow_plastic.png deleted file mode 100644 index 49909aed..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic_fence.png b/public/textures/mekanismadditions/yellow_plastic_fence.png deleted file mode 100644 index 5315abea..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic_fence.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic_fence_gate.png b/public/textures/mekanismadditions/yellow_plastic_fence_gate.png deleted file mode 100644 index 213084a4..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic_fence_gate.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic_glow.png b/public/textures/mekanismadditions/yellow_plastic_glow.png deleted file mode 100644 index 5f30dd7c..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic_glow.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic_glow_slab.png b/public/textures/mekanismadditions/yellow_plastic_glow_slab.png deleted file mode 100644 index 8dbdffbe..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic_glow_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic_glow_stairs.png b/public/textures/mekanismadditions/yellow_plastic_glow_stairs.png deleted file mode 100644 index 14c10df0..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic_glow_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic_road.png b/public/textures/mekanismadditions/yellow_plastic_road.png deleted file mode 100644 index 5f30dd7c..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic_road.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic_slab.png b/public/textures/mekanismadditions/yellow_plastic_slab.png deleted file mode 100644 index cd1323fa..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic_stairs.png b/public/textures/mekanismadditions/yellow_plastic_stairs.png deleted file mode 100644 index 0b2e24b5..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic_transparent.png b/public/textures/mekanismadditions/yellow_plastic_transparent.png deleted file mode 100644 index 3c34f5a8..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic_transparent.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic_transparent_slab.png b/public/textures/mekanismadditions/yellow_plastic_transparent_slab.png deleted file mode 100644 index a844b6dc..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic_transparent_slab.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_plastic_transparent_stairs.png b/public/textures/mekanismadditions/yellow_plastic_transparent_stairs.png deleted file mode 100644 index ca162e35..00000000 Binary files a/public/textures/mekanismadditions/yellow_plastic_transparent_stairs.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_reinforced_plastic.png b/public/textures/mekanismadditions/yellow_reinforced_plastic.png deleted file mode 100644 index 207a194b..00000000 Binary files a/public/textures/mekanismadditions/yellow_reinforced_plastic.png and /dev/null differ diff --git a/public/textures/mekanismadditions/yellow_slick_plastic.png b/public/textures/mekanismadditions/yellow_slick_plastic.png deleted file mode 100644 index 1311ee04..00000000 Binary files a/public/textures/mekanismadditions/yellow_slick_plastic.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/advanced_solar_generator.png b/public/textures/mekanismgenerators/advanced_solar_generator.png deleted file mode 100644 index 08f7d16e..00000000 Binary files a/public/textures/mekanismgenerators/advanced_solar_generator.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/bio_generator.png b/public/textures/mekanismgenerators/bio_generator.png deleted file mode 100644 index 0fe5d7e7..00000000 Binary files a/public/textures/mekanismgenerators/bio_generator.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/bioethanol_bucket.png b/public/textures/mekanismgenerators/bioethanol_bucket.png deleted file mode 100644 index c6489ce0..00000000 Binary files a/public/textures/mekanismgenerators/bioethanol_bucket.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/control_rod_assembly.png b/public/textures/mekanismgenerators/control_rod_assembly.png deleted file mode 100644 index 000ef67b..00000000 Binary files a/public/textures/mekanismgenerators/control_rod_assembly.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/deuterium_bucket.png b/public/textures/mekanismgenerators/deuterium_bucket.png deleted file mode 100644 index 479df579..00000000 Binary files a/public/textures/mekanismgenerators/deuterium_bucket.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/electromagnetic_coil.png b/public/textures/mekanismgenerators/electromagnetic_coil.png deleted file mode 100644 index 4cceaed9..00000000 Binary files a/public/textures/mekanismgenerators/electromagnetic_coil.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/fission_fuel_assembly.png b/public/textures/mekanismgenerators/fission_fuel_assembly.png deleted file mode 100644 index c32933a3..00000000 Binary files a/public/textures/mekanismgenerators/fission_fuel_assembly.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/fission_reactor_casing.png b/public/textures/mekanismgenerators/fission_reactor_casing.png deleted file mode 100644 index 95035ee2..00000000 Binary files a/public/textures/mekanismgenerators/fission_reactor_casing.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/fission_reactor_logic_adapter.png b/public/textures/mekanismgenerators/fission_reactor_logic_adapter.png deleted file mode 100644 index ed495ed5..00000000 Binary files a/public/textures/mekanismgenerators/fission_reactor_logic_adapter.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/fission_reactor_port.png b/public/textures/mekanismgenerators/fission_reactor_port.png deleted file mode 100644 index 85f596da..00000000 Binary files a/public/textures/mekanismgenerators/fission_reactor_port.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/fusion_fuel_bucket.png b/public/textures/mekanismgenerators/fusion_fuel_bucket.png deleted file mode 100644 index 8bd8f68f..00000000 Binary files a/public/textures/mekanismgenerators/fusion_fuel_bucket.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/fusion_reactor_controller.png b/public/textures/mekanismgenerators/fusion_reactor_controller.png deleted file mode 100644 index 969084bc..00000000 Binary files a/public/textures/mekanismgenerators/fusion_reactor_controller.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/fusion_reactor_frame.png b/public/textures/mekanismgenerators/fusion_reactor_frame.png deleted file mode 100644 index cf6341cb..00000000 Binary files a/public/textures/mekanismgenerators/fusion_reactor_frame.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/fusion_reactor_logic_adapter.png b/public/textures/mekanismgenerators/fusion_reactor_logic_adapter.png deleted file mode 100644 index 6cf76cfc..00000000 Binary files a/public/textures/mekanismgenerators/fusion_reactor_logic_adapter.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/fusion_reactor_port.png b/public/textures/mekanismgenerators/fusion_reactor_port.png deleted file mode 100644 index 6163965f..00000000 Binary files a/public/textures/mekanismgenerators/fusion_reactor_port.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/gas_burning_generator.png b/public/textures/mekanismgenerators/gas_burning_generator.png deleted file mode 100644 index 3dacc8f3..00000000 Binary files a/public/textures/mekanismgenerators/gas_burning_generator.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/heat_generator.png b/public/textures/mekanismgenerators/heat_generator.png deleted file mode 100644 index dc716372..00000000 Binary files a/public/textures/mekanismgenerators/heat_generator.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/hohlraum.png b/public/textures/mekanismgenerators/hohlraum.png deleted file mode 100644 index 92ce4207..00000000 Binary files a/public/textures/mekanismgenerators/hohlraum.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/hohlraum__{'mekanism__chemicals'__{chemical_tanks__[{amount__10L,id__'mekanismgenerators__fusion_fuel'}]}}.png b/public/textures/mekanismgenerators/hohlraum__{'mekanism__chemicals'__{chemical_tanks__[{amount__10L,id__'mekanismgenerators__fusion_fuel'}]}}.png deleted file mode 100644 index 92ce4207..00000000 Binary files a/public/textures/mekanismgenerators/hohlraum__{'mekanism__chemicals'__{chemical_tanks__[{amount__10L,id__'mekanismgenerators__fusion_fuel'}]}}.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/laser_focus_matrix.png b/public/textures/mekanismgenerators/laser_focus_matrix.png deleted file mode 100644 index dc4cb483..00000000 Binary files a/public/textures/mekanismgenerators/laser_focus_matrix.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/module_geothermal_generator_unit.png b/public/textures/mekanismgenerators/module_geothermal_generator_unit.png deleted file mode 100644 index 4af23216..00000000 Binary files a/public/textures/mekanismgenerators/module_geothermal_generator_unit.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/module_solar_recharging_unit.png b/public/textures/mekanismgenerators/module_solar_recharging_unit.png deleted file mode 100644 index d112ba0e..00000000 Binary files a/public/textures/mekanismgenerators/module_solar_recharging_unit.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/reactor_glass.png b/public/textures/mekanismgenerators/reactor_glass.png deleted file mode 100644 index 3b5f9425..00000000 Binary files a/public/textures/mekanismgenerators/reactor_glass.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/rotational_complex.png b/public/textures/mekanismgenerators/rotational_complex.png deleted file mode 100644 index 742612c2..00000000 Binary files a/public/textures/mekanismgenerators/rotational_complex.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/saturating_condenser.png b/public/textures/mekanismgenerators/saturating_condenser.png deleted file mode 100644 index 0f36ca8b..00000000 Binary files a/public/textures/mekanismgenerators/saturating_condenser.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/solar_generator.png b/public/textures/mekanismgenerators/solar_generator.png deleted file mode 100644 index a345f522..00000000 Binary files a/public/textures/mekanismgenerators/solar_generator.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/solar_panel.png b/public/textures/mekanismgenerators/solar_panel.png deleted file mode 100644 index 9521243f..00000000 Binary files a/public/textures/mekanismgenerators/solar_panel.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/tritium_bucket.png b/public/textures/mekanismgenerators/tritium_bucket.png deleted file mode 100644 index 56f5079f..00000000 Binary files a/public/textures/mekanismgenerators/tritium_bucket.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/turbine_blade.png b/public/textures/mekanismgenerators/turbine_blade.png deleted file mode 100644 index 1e4a8429..00000000 Binary files a/public/textures/mekanismgenerators/turbine_blade.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/turbine_casing.png b/public/textures/mekanismgenerators/turbine_casing.png deleted file mode 100644 index 44f33aac..00000000 Binary files a/public/textures/mekanismgenerators/turbine_casing.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/turbine_rotor.png b/public/textures/mekanismgenerators/turbine_rotor.png deleted file mode 100644 index 64007ef9..00000000 Binary files a/public/textures/mekanismgenerators/turbine_rotor.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/turbine_valve.png b/public/textures/mekanismgenerators/turbine_valve.png deleted file mode 100644 index 60690179..00000000 Binary files a/public/textures/mekanismgenerators/turbine_valve.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/turbine_vent.png b/public/textures/mekanismgenerators/turbine_vent.png deleted file mode 100644 index 2d866697..00000000 Binary files a/public/textures/mekanismgenerators/turbine_vent.png and /dev/null differ diff --git a/public/textures/mekanismgenerators/wind_generator.png b/public/textures/mekanismgenerators/wind_generator.png deleted file mode 100644 index 6d510c6c..00000000 Binary files a/public/textures/mekanismgenerators/wind_generator.png and /dev/null differ diff --git a/public/textures/mekanismtools/bronze_axe.png b/public/textures/mekanismtools/bronze_axe.png deleted file mode 100644 index 3f94137e..00000000 Binary files a/public/textures/mekanismtools/bronze_axe.png and /dev/null differ diff --git a/public/textures/mekanismtools/bronze_boots.png b/public/textures/mekanismtools/bronze_boots.png deleted file mode 100644 index 0ec54cbe..00000000 Binary files a/public/textures/mekanismtools/bronze_boots.png and /dev/null differ diff --git a/public/textures/mekanismtools/bronze_chestplate.png b/public/textures/mekanismtools/bronze_chestplate.png deleted file mode 100644 index 71d226d8..00000000 Binary files a/public/textures/mekanismtools/bronze_chestplate.png and /dev/null differ diff --git a/public/textures/mekanismtools/bronze_helmet.png b/public/textures/mekanismtools/bronze_helmet.png deleted file mode 100644 index fe43bce2..00000000 Binary files a/public/textures/mekanismtools/bronze_helmet.png and /dev/null differ diff --git a/public/textures/mekanismtools/bronze_hoe.png b/public/textures/mekanismtools/bronze_hoe.png deleted file mode 100644 index f93c289b..00000000 Binary files a/public/textures/mekanismtools/bronze_hoe.png and /dev/null differ diff --git a/public/textures/mekanismtools/bronze_leggings.png b/public/textures/mekanismtools/bronze_leggings.png deleted file mode 100644 index b053c600..00000000 Binary files a/public/textures/mekanismtools/bronze_leggings.png and /dev/null differ diff --git a/public/textures/mekanismtools/bronze_paxel.png b/public/textures/mekanismtools/bronze_paxel.png deleted file mode 100644 index 0c1cd790..00000000 Binary files a/public/textures/mekanismtools/bronze_paxel.png and /dev/null differ diff --git a/public/textures/mekanismtools/bronze_pickaxe.png b/public/textures/mekanismtools/bronze_pickaxe.png deleted file mode 100644 index 2e9714a1..00000000 Binary files a/public/textures/mekanismtools/bronze_pickaxe.png and /dev/null differ diff --git a/public/textures/mekanismtools/bronze_shield.png b/public/textures/mekanismtools/bronze_shield.png deleted file mode 100644 index ccd70111..00000000 Binary files a/public/textures/mekanismtools/bronze_shield.png and /dev/null differ diff --git a/public/textures/mekanismtools/bronze_shovel.png b/public/textures/mekanismtools/bronze_shovel.png deleted file mode 100644 index cc9767cb..00000000 Binary files a/public/textures/mekanismtools/bronze_shovel.png and /dev/null differ diff --git a/public/textures/mekanismtools/bronze_sword.png b/public/textures/mekanismtools/bronze_sword.png deleted file mode 100644 index a4117603..00000000 Binary files a/public/textures/mekanismtools/bronze_sword.png and /dev/null differ diff --git a/public/textures/mekanismtools/diamond_paxel.png b/public/textures/mekanismtools/diamond_paxel.png deleted file mode 100644 index d0980ae3..00000000 Binary files a/public/textures/mekanismtools/diamond_paxel.png and /dev/null differ diff --git a/public/textures/mekanismtools/gold_paxel.png b/public/textures/mekanismtools/gold_paxel.png deleted file mode 100644 index 26920bd0..00000000 Binary files a/public/textures/mekanismtools/gold_paxel.png and /dev/null differ diff --git a/public/textures/mekanismtools/iron_paxel.png b/public/textures/mekanismtools/iron_paxel.png deleted file mode 100644 index ff206da9..00000000 Binary files a/public/textures/mekanismtools/iron_paxel.png and /dev/null differ diff --git a/public/textures/mekanismtools/lapis_lazuli_axe.png b/public/textures/mekanismtools/lapis_lazuli_axe.png deleted file mode 100644 index 5e642b1e..00000000 Binary files a/public/textures/mekanismtools/lapis_lazuli_axe.png and /dev/null differ diff --git a/public/textures/mekanismtools/lapis_lazuli_boots.png b/public/textures/mekanismtools/lapis_lazuli_boots.png deleted file mode 100644 index 6fee280a..00000000 Binary files a/public/textures/mekanismtools/lapis_lazuli_boots.png and /dev/null differ diff --git a/public/textures/mekanismtools/lapis_lazuli_chestplate.png b/public/textures/mekanismtools/lapis_lazuli_chestplate.png deleted file mode 100644 index efb7e4d6..00000000 Binary files a/public/textures/mekanismtools/lapis_lazuli_chestplate.png and /dev/null differ diff --git a/public/textures/mekanismtools/lapis_lazuli_helmet.png b/public/textures/mekanismtools/lapis_lazuli_helmet.png deleted file mode 100644 index da1bb44f..00000000 Binary files a/public/textures/mekanismtools/lapis_lazuli_helmet.png and /dev/null differ diff --git a/public/textures/mekanismtools/lapis_lazuli_hoe.png b/public/textures/mekanismtools/lapis_lazuli_hoe.png deleted file mode 100644 index 6da2f455..00000000 Binary files a/public/textures/mekanismtools/lapis_lazuli_hoe.png and /dev/null differ diff --git a/public/textures/mekanismtools/lapis_lazuli_leggings.png b/public/textures/mekanismtools/lapis_lazuli_leggings.png deleted file mode 100644 index 571e3a67..00000000 Binary files a/public/textures/mekanismtools/lapis_lazuli_leggings.png and /dev/null differ diff --git a/public/textures/mekanismtools/lapis_lazuli_paxel.png b/public/textures/mekanismtools/lapis_lazuli_paxel.png deleted file mode 100644 index 54b14af1..00000000 Binary files a/public/textures/mekanismtools/lapis_lazuli_paxel.png and /dev/null differ diff --git a/public/textures/mekanismtools/lapis_lazuli_pickaxe.png b/public/textures/mekanismtools/lapis_lazuli_pickaxe.png deleted file mode 100644 index da854642..00000000 Binary files a/public/textures/mekanismtools/lapis_lazuli_pickaxe.png and /dev/null differ diff --git a/public/textures/mekanismtools/lapis_lazuli_shield.png b/public/textures/mekanismtools/lapis_lazuli_shield.png deleted file mode 100644 index 07b54e4f..00000000 Binary files a/public/textures/mekanismtools/lapis_lazuli_shield.png and /dev/null differ diff --git a/public/textures/mekanismtools/lapis_lazuli_shovel.png b/public/textures/mekanismtools/lapis_lazuli_shovel.png deleted file mode 100644 index 01ea3ddc..00000000 Binary files a/public/textures/mekanismtools/lapis_lazuli_shovel.png and /dev/null differ diff --git a/public/textures/mekanismtools/lapis_lazuli_sword.png b/public/textures/mekanismtools/lapis_lazuli_sword.png deleted file mode 100644 index 1015bbc9..00000000 Binary files a/public/textures/mekanismtools/lapis_lazuli_sword.png and /dev/null differ diff --git a/public/textures/mekanismtools/netherite_paxel.png b/public/textures/mekanismtools/netherite_paxel.png deleted file mode 100644 index 3eb28255..00000000 Binary files a/public/textures/mekanismtools/netherite_paxel.png and /dev/null differ diff --git a/public/textures/mekanismtools/osmium_axe.png b/public/textures/mekanismtools/osmium_axe.png deleted file mode 100644 index efd12ff4..00000000 Binary files a/public/textures/mekanismtools/osmium_axe.png and /dev/null differ diff --git a/public/textures/mekanismtools/osmium_boots.png b/public/textures/mekanismtools/osmium_boots.png deleted file mode 100644 index 788ebf79..00000000 Binary files a/public/textures/mekanismtools/osmium_boots.png and /dev/null differ diff --git a/public/textures/mekanismtools/osmium_chestplate.png b/public/textures/mekanismtools/osmium_chestplate.png deleted file mode 100644 index d8a26d98..00000000 Binary files a/public/textures/mekanismtools/osmium_chestplate.png and /dev/null differ diff --git a/public/textures/mekanismtools/osmium_helmet.png b/public/textures/mekanismtools/osmium_helmet.png deleted file mode 100644 index 672af59f..00000000 Binary files a/public/textures/mekanismtools/osmium_helmet.png and /dev/null differ diff --git a/public/textures/mekanismtools/osmium_hoe.png b/public/textures/mekanismtools/osmium_hoe.png deleted file mode 100644 index 2def7b3b..00000000 Binary files a/public/textures/mekanismtools/osmium_hoe.png and /dev/null differ diff --git a/public/textures/mekanismtools/osmium_leggings.png b/public/textures/mekanismtools/osmium_leggings.png deleted file mode 100644 index 4588c987..00000000 Binary files a/public/textures/mekanismtools/osmium_leggings.png and /dev/null differ diff --git a/public/textures/mekanismtools/osmium_paxel.png b/public/textures/mekanismtools/osmium_paxel.png deleted file mode 100644 index 1a6d65cb..00000000 Binary files a/public/textures/mekanismtools/osmium_paxel.png and /dev/null differ diff --git a/public/textures/mekanismtools/osmium_pickaxe.png b/public/textures/mekanismtools/osmium_pickaxe.png deleted file mode 100644 index 485c29f6..00000000 Binary files a/public/textures/mekanismtools/osmium_pickaxe.png and /dev/null differ diff --git a/public/textures/mekanismtools/osmium_shield.png b/public/textures/mekanismtools/osmium_shield.png deleted file mode 100644 index 181dc385..00000000 Binary files a/public/textures/mekanismtools/osmium_shield.png and /dev/null differ diff --git a/public/textures/mekanismtools/osmium_shovel.png b/public/textures/mekanismtools/osmium_shovel.png deleted file mode 100644 index ccd6a1ee..00000000 Binary files a/public/textures/mekanismtools/osmium_shovel.png and /dev/null differ diff --git a/public/textures/mekanismtools/osmium_sword.png b/public/textures/mekanismtools/osmium_sword.png deleted file mode 100644 index 40ffae79..00000000 Binary files a/public/textures/mekanismtools/osmium_sword.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_glowstone_axe.png b/public/textures/mekanismtools/refined_glowstone_axe.png deleted file mode 100644 index 66681409..00000000 Binary files a/public/textures/mekanismtools/refined_glowstone_axe.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_glowstone_boots.png b/public/textures/mekanismtools/refined_glowstone_boots.png deleted file mode 100644 index ab8e606d..00000000 Binary files a/public/textures/mekanismtools/refined_glowstone_boots.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_glowstone_chestplate.png b/public/textures/mekanismtools/refined_glowstone_chestplate.png deleted file mode 100644 index f783a46a..00000000 Binary files a/public/textures/mekanismtools/refined_glowstone_chestplate.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_glowstone_helmet.png b/public/textures/mekanismtools/refined_glowstone_helmet.png deleted file mode 100644 index 609d5143..00000000 Binary files a/public/textures/mekanismtools/refined_glowstone_helmet.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_glowstone_hoe.png b/public/textures/mekanismtools/refined_glowstone_hoe.png deleted file mode 100644 index d576979d..00000000 Binary files a/public/textures/mekanismtools/refined_glowstone_hoe.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_glowstone_leggings.png b/public/textures/mekanismtools/refined_glowstone_leggings.png deleted file mode 100644 index f2c7478d..00000000 Binary files a/public/textures/mekanismtools/refined_glowstone_leggings.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_glowstone_paxel.png b/public/textures/mekanismtools/refined_glowstone_paxel.png deleted file mode 100644 index d696f117..00000000 Binary files a/public/textures/mekanismtools/refined_glowstone_paxel.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_glowstone_pickaxe.png b/public/textures/mekanismtools/refined_glowstone_pickaxe.png deleted file mode 100644 index 3b6d3b68..00000000 Binary files a/public/textures/mekanismtools/refined_glowstone_pickaxe.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_glowstone_shield.png b/public/textures/mekanismtools/refined_glowstone_shield.png deleted file mode 100644 index 3f0c20fd..00000000 Binary files a/public/textures/mekanismtools/refined_glowstone_shield.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_glowstone_shovel.png b/public/textures/mekanismtools/refined_glowstone_shovel.png deleted file mode 100644 index 555db2ba..00000000 Binary files a/public/textures/mekanismtools/refined_glowstone_shovel.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_glowstone_sword.png b/public/textures/mekanismtools/refined_glowstone_sword.png deleted file mode 100644 index ebbc4cc6..00000000 Binary files a/public/textures/mekanismtools/refined_glowstone_sword.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_obsidian_axe.png b/public/textures/mekanismtools/refined_obsidian_axe.png deleted file mode 100644 index e076b061..00000000 Binary files a/public/textures/mekanismtools/refined_obsidian_axe.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_obsidian_boots.png b/public/textures/mekanismtools/refined_obsidian_boots.png deleted file mode 100644 index a1d23b8d..00000000 Binary files a/public/textures/mekanismtools/refined_obsidian_boots.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_obsidian_chestplate.png b/public/textures/mekanismtools/refined_obsidian_chestplate.png deleted file mode 100644 index f8016289..00000000 Binary files a/public/textures/mekanismtools/refined_obsidian_chestplate.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_obsidian_helmet.png b/public/textures/mekanismtools/refined_obsidian_helmet.png deleted file mode 100644 index 3e6bf80b..00000000 Binary files a/public/textures/mekanismtools/refined_obsidian_helmet.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_obsidian_hoe.png b/public/textures/mekanismtools/refined_obsidian_hoe.png deleted file mode 100644 index 2d830264..00000000 Binary files a/public/textures/mekanismtools/refined_obsidian_hoe.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_obsidian_leggings.png b/public/textures/mekanismtools/refined_obsidian_leggings.png deleted file mode 100644 index 9c339356..00000000 Binary files a/public/textures/mekanismtools/refined_obsidian_leggings.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_obsidian_paxel.png b/public/textures/mekanismtools/refined_obsidian_paxel.png deleted file mode 100644 index a31c492e..00000000 Binary files a/public/textures/mekanismtools/refined_obsidian_paxel.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_obsidian_pickaxe.png b/public/textures/mekanismtools/refined_obsidian_pickaxe.png deleted file mode 100644 index bb5ac7bc..00000000 Binary files a/public/textures/mekanismtools/refined_obsidian_pickaxe.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_obsidian_shield.png b/public/textures/mekanismtools/refined_obsidian_shield.png deleted file mode 100644 index 0a795700..00000000 Binary files a/public/textures/mekanismtools/refined_obsidian_shield.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_obsidian_shovel.png b/public/textures/mekanismtools/refined_obsidian_shovel.png deleted file mode 100644 index b94931c9..00000000 Binary files a/public/textures/mekanismtools/refined_obsidian_shovel.png and /dev/null differ diff --git a/public/textures/mekanismtools/refined_obsidian_sword.png b/public/textures/mekanismtools/refined_obsidian_sword.png deleted file mode 100644 index 5f21302f..00000000 Binary files a/public/textures/mekanismtools/refined_obsidian_sword.png and /dev/null differ diff --git a/public/textures/mekanismtools/steel_axe.png b/public/textures/mekanismtools/steel_axe.png deleted file mode 100644 index 9e1a8fd1..00000000 Binary files a/public/textures/mekanismtools/steel_axe.png and /dev/null differ diff --git a/public/textures/mekanismtools/steel_boots.png b/public/textures/mekanismtools/steel_boots.png deleted file mode 100644 index a0fd197b..00000000 Binary files a/public/textures/mekanismtools/steel_boots.png and /dev/null differ diff --git a/public/textures/mekanismtools/steel_chestplate.png b/public/textures/mekanismtools/steel_chestplate.png deleted file mode 100644 index e659f21c..00000000 Binary files a/public/textures/mekanismtools/steel_chestplate.png and /dev/null differ diff --git a/public/textures/mekanismtools/steel_helmet.png b/public/textures/mekanismtools/steel_helmet.png deleted file mode 100644 index a9838b60..00000000 Binary files a/public/textures/mekanismtools/steel_helmet.png and /dev/null differ diff --git a/public/textures/mekanismtools/steel_hoe.png b/public/textures/mekanismtools/steel_hoe.png deleted file mode 100644 index b9b05efb..00000000 Binary files a/public/textures/mekanismtools/steel_hoe.png and /dev/null differ diff --git a/public/textures/mekanismtools/steel_leggings.png b/public/textures/mekanismtools/steel_leggings.png deleted file mode 100644 index 345734ef..00000000 Binary files a/public/textures/mekanismtools/steel_leggings.png and /dev/null differ diff --git a/public/textures/mekanismtools/steel_paxel.png b/public/textures/mekanismtools/steel_paxel.png deleted file mode 100644 index 0be08c01..00000000 Binary files a/public/textures/mekanismtools/steel_paxel.png and /dev/null differ diff --git a/public/textures/mekanismtools/steel_pickaxe.png b/public/textures/mekanismtools/steel_pickaxe.png deleted file mode 100644 index bce8d6ab..00000000 Binary files a/public/textures/mekanismtools/steel_pickaxe.png and /dev/null differ diff --git a/public/textures/mekanismtools/steel_shield.png b/public/textures/mekanismtools/steel_shield.png deleted file mode 100644 index 6c74f070..00000000 Binary files a/public/textures/mekanismtools/steel_shield.png and /dev/null differ diff --git a/public/textures/mekanismtools/steel_shovel.png b/public/textures/mekanismtools/steel_shovel.png deleted file mode 100644 index 6c469897..00000000 Binary files a/public/textures/mekanismtools/steel_shovel.png and /dev/null differ diff --git a/public/textures/mekanismtools/steel_sword.png b/public/textures/mekanismtools/steel_sword.png deleted file mode 100644 index 42d700d9..00000000 Binary files a/public/textures/mekanismtools/steel_sword.png and /dev/null differ diff --git a/public/textures/mekanismtools/stone_paxel.png b/public/textures/mekanismtools/stone_paxel.png deleted file mode 100644 index c5e771a7..00000000 Binary files a/public/textures/mekanismtools/stone_paxel.png and /dev/null differ diff --git a/public/textures/mekanismtools/wood_paxel.png b/public/textures/mekanismtools/wood_paxel.png deleted file mode 100644 index e5332a6f..00000000 Binary files a/public/textures/mekanismtools/wood_paxel.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_boat.png b/public/textures/minecraft/acacia_boat.png deleted file mode 100644 index 32d021e4..00000000 Binary files a/public/textures/minecraft/acacia_boat.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_button.png b/public/textures/minecraft/acacia_button.png deleted file mode 100644 index dbeb8af9..00000000 Binary files a/public/textures/minecraft/acacia_button.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_chest_boat.png b/public/textures/minecraft/acacia_chest_boat.png deleted file mode 100644 index 196e83ee..00000000 Binary files a/public/textures/minecraft/acacia_chest_boat.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_door.png b/public/textures/minecraft/acacia_door.png deleted file mode 100644 index 1f8f58c3..00000000 Binary files a/public/textures/minecraft/acacia_door.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_fence.png b/public/textures/minecraft/acacia_fence.png deleted file mode 100644 index fe6f2ce5..00000000 Binary files a/public/textures/minecraft/acacia_fence.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_fence_gate.png b/public/textures/minecraft/acacia_fence_gate.png deleted file mode 100644 index 9ccac1b7..00000000 Binary files a/public/textures/minecraft/acacia_fence_gate.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_hanging_sign.png b/public/textures/minecraft/acacia_hanging_sign.png deleted file mode 100644 index e7b71873..00000000 Binary files a/public/textures/minecraft/acacia_hanging_sign.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_leaves.png b/public/textures/minecraft/acacia_leaves.png deleted file mode 100644 index 1a2b9202..00000000 Binary files a/public/textures/minecraft/acacia_leaves.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_log.png b/public/textures/minecraft/acacia_log.png deleted file mode 100644 index 3da23df9..00000000 Binary files a/public/textures/minecraft/acacia_log.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_planks.png b/public/textures/minecraft/acacia_planks.png deleted file mode 100644 index 79816456..00000000 Binary files a/public/textures/minecraft/acacia_planks.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_pressure_plate.png b/public/textures/minecraft/acacia_pressure_plate.png deleted file mode 100644 index 764f2bed..00000000 Binary files a/public/textures/minecraft/acacia_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_sapling.png b/public/textures/minecraft/acacia_sapling.png deleted file mode 100644 index 83f13e6c..00000000 Binary files a/public/textures/minecraft/acacia_sapling.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_sign.png b/public/textures/minecraft/acacia_sign.png deleted file mode 100644 index 0a3457e6..00000000 Binary files a/public/textures/minecraft/acacia_sign.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_slab.png b/public/textures/minecraft/acacia_slab.png deleted file mode 100644 index 2b274dab..00000000 Binary files a/public/textures/minecraft/acacia_slab.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_stairs.png b/public/textures/minecraft/acacia_stairs.png deleted file mode 100644 index e54df6e7..00000000 Binary files a/public/textures/minecraft/acacia_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_trapdoor.png b/public/textures/minecraft/acacia_trapdoor.png deleted file mode 100644 index 3b0c8d49..00000000 Binary files a/public/textures/minecraft/acacia_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/acacia_wood.png b/public/textures/minecraft/acacia_wood.png deleted file mode 100644 index 209a972c..00000000 Binary files a/public/textures/minecraft/acacia_wood.png and /dev/null differ diff --git a/public/textures/minecraft/activator_rail.png b/public/textures/minecraft/activator_rail.png deleted file mode 100644 index 8b0bc1bc..00000000 Binary files a/public/textures/minecraft/activator_rail.png and /dev/null differ diff --git a/public/textures/minecraft/allay_spawn_egg.png b/public/textures/minecraft/allay_spawn_egg.png deleted file mode 100644 index 53a1e821..00000000 Binary files a/public/textures/minecraft/allay_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/allium.png b/public/textures/minecraft/allium.png deleted file mode 100644 index 6a3b65c2..00000000 Binary files a/public/textures/minecraft/allium.png and /dev/null differ diff --git a/public/textures/minecraft/amethyst_block.png b/public/textures/minecraft/amethyst_block.png deleted file mode 100644 index 9feaeed8..00000000 Binary files a/public/textures/minecraft/amethyst_block.png and /dev/null differ diff --git a/public/textures/minecraft/amethyst_cluster.png b/public/textures/minecraft/amethyst_cluster.png deleted file mode 100644 index 8a680988..00000000 Binary files a/public/textures/minecraft/amethyst_cluster.png and /dev/null differ diff --git a/public/textures/minecraft/amethyst_shard.png b/public/textures/minecraft/amethyst_shard.png deleted file mode 100644 index eceee262..00000000 Binary files a/public/textures/minecraft/amethyst_shard.png and /dev/null differ diff --git a/public/textures/minecraft/ancient_debris.png b/public/textures/minecraft/ancient_debris.png deleted file mode 100644 index 1fe3dbeb..00000000 Binary files a/public/textures/minecraft/ancient_debris.png and /dev/null differ diff --git a/public/textures/minecraft/andesite.png b/public/textures/minecraft/andesite.png deleted file mode 100644 index 6cbcf1a8..00000000 Binary files a/public/textures/minecraft/andesite.png and /dev/null differ diff --git a/public/textures/minecraft/andesite_slab.png b/public/textures/minecraft/andesite_slab.png deleted file mode 100644 index aeb5fc47..00000000 Binary files a/public/textures/minecraft/andesite_slab.png and /dev/null differ diff --git a/public/textures/minecraft/andesite_stairs.png b/public/textures/minecraft/andesite_stairs.png deleted file mode 100644 index f3e3fcee..00000000 Binary files a/public/textures/minecraft/andesite_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/andesite_wall.png b/public/textures/minecraft/andesite_wall.png deleted file mode 100644 index 36c46ec7..00000000 Binary files a/public/textures/minecraft/andesite_wall.png and /dev/null differ diff --git a/public/textures/minecraft/angler_pottery_sherd.png b/public/textures/minecraft/angler_pottery_sherd.png deleted file mode 100644 index a621c705..00000000 Binary files a/public/textures/minecraft/angler_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/anvil.png b/public/textures/minecraft/anvil.png deleted file mode 100644 index 9c23767c..00000000 Binary files a/public/textures/minecraft/anvil.png and /dev/null differ diff --git a/public/textures/minecraft/apple.png b/public/textures/minecraft/apple.png deleted file mode 100644 index 1d8e5f9d..00000000 Binary files a/public/textures/minecraft/apple.png and /dev/null differ diff --git a/public/textures/minecraft/archer_pottery_sherd.png b/public/textures/minecraft/archer_pottery_sherd.png deleted file mode 100644 index 605c4c04..00000000 Binary files a/public/textures/minecraft/archer_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/armadillo_scute.png b/public/textures/minecraft/armadillo_scute.png deleted file mode 100644 index 0d113ffd..00000000 Binary files a/public/textures/minecraft/armadillo_scute.png and /dev/null differ diff --git a/public/textures/minecraft/armadillo_spawn_egg.png b/public/textures/minecraft/armadillo_spawn_egg.png deleted file mode 100644 index 70f67740..00000000 Binary files a/public/textures/minecraft/armadillo_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/armor_stand.png b/public/textures/minecraft/armor_stand.png deleted file mode 100644 index aeb42c76..00000000 Binary files a/public/textures/minecraft/armor_stand.png and /dev/null differ diff --git a/public/textures/minecraft/arms_up_pottery_sherd.png b/public/textures/minecraft/arms_up_pottery_sherd.png deleted file mode 100644 index e80f429b..00000000 Binary files a/public/textures/minecraft/arms_up_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/arrow.png b/public/textures/minecraft/arrow.png deleted file mode 100644 index ba222cbd..00000000 Binary files a/public/textures/minecraft/arrow.png and /dev/null differ diff --git a/public/textures/minecraft/axolotl_bucket.png b/public/textures/minecraft/axolotl_bucket.png deleted file mode 100644 index 1d4b3c6e..00000000 Binary files a/public/textures/minecraft/axolotl_bucket.png and /dev/null differ diff --git a/public/textures/minecraft/axolotl_spawn_egg.png b/public/textures/minecraft/axolotl_spawn_egg.png deleted file mode 100644 index 42b9ecb3..00000000 Binary files a/public/textures/minecraft/axolotl_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/azalea.png b/public/textures/minecraft/azalea.png deleted file mode 100644 index cd9fd0ed..00000000 Binary files a/public/textures/minecraft/azalea.png and /dev/null differ diff --git a/public/textures/minecraft/azalea_leaves.png b/public/textures/minecraft/azalea_leaves.png deleted file mode 100644 index 9281ebac..00000000 Binary files a/public/textures/minecraft/azalea_leaves.png and /dev/null differ diff --git a/public/textures/minecraft/azure_bluet.png b/public/textures/minecraft/azure_bluet.png deleted file mode 100644 index bfca3099..00000000 Binary files a/public/textures/minecraft/azure_bluet.png and /dev/null differ diff --git a/public/textures/minecraft/baked_potato.png b/public/textures/minecraft/baked_potato.png deleted file mode 100644 index 5c8e5a2a..00000000 Binary files a/public/textures/minecraft/baked_potato.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo.png b/public/textures/minecraft/bamboo.png deleted file mode 100644 index ac383afc..00000000 Binary files a/public/textures/minecraft/bamboo.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_block.png b/public/textures/minecraft/bamboo_block.png deleted file mode 100644 index 32728da8..00000000 Binary files a/public/textures/minecraft/bamboo_block.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_button.png b/public/textures/minecraft/bamboo_button.png deleted file mode 100644 index a6ab19f1..00000000 Binary files a/public/textures/minecraft/bamboo_button.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_chest_raft.png b/public/textures/minecraft/bamboo_chest_raft.png deleted file mode 100644 index 96bd3837..00000000 Binary files a/public/textures/minecraft/bamboo_chest_raft.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_door.png b/public/textures/minecraft/bamboo_door.png deleted file mode 100644 index e9f4ddbb..00000000 Binary files a/public/textures/minecraft/bamboo_door.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_fence.png b/public/textures/minecraft/bamboo_fence.png deleted file mode 100644 index b3d21473..00000000 Binary files a/public/textures/minecraft/bamboo_fence.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_fence_gate.png b/public/textures/minecraft/bamboo_fence_gate.png deleted file mode 100644 index d088bc01..00000000 Binary files a/public/textures/minecraft/bamboo_fence_gate.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_hanging_sign.png b/public/textures/minecraft/bamboo_hanging_sign.png deleted file mode 100644 index 0fcfa66f..00000000 Binary files a/public/textures/minecraft/bamboo_hanging_sign.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_mosaic.png b/public/textures/minecraft/bamboo_mosaic.png deleted file mode 100644 index f708f727..00000000 Binary files a/public/textures/minecraft/bamboo_mosaic.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_mosaic_slab.png b/public/textures/minecraft/bamboo_mosaic_slab.png deleted file mode 100644 index fc4edb48..00000000 Binary files a/public/textures/minecraft/bamboo_mosaic_slab.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_mosaic_stairs.png b/public/textures/minecraft/bamboo_mosaic_stairs.png deleted file mode 100644 index 6cad2a70..00000000 Binary files a/public/textures/minecraft/bamboo_mosaic_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_planks.png b/public/textures/minecraft/bamboo_planks.png deleted file mode 100644 index abbf1f92..00000000 Binary files a/public/textures/minecraft/bamboo_planks.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_pressure_plate.png b/public/textures/minecraft/bamboo_pressure_plate.png deleted file mode 100644 index 88f315be..00000000 Binary files a/public/textures/minecraft/bamboo_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_raft.png b/public/textures/minecraft/bamboo_raft.png deleted file mode 100644 index 8f523f49..00000000 Binary files a/public/textures/minecraft/bamboo_raft.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_sign.png b/public/textures/minecraft/bamboo_sign.png deleted file mode 100644 index af0bf748..00000000 Binary files a/public/textures/minecraft/bamboo_sign.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_slab.png b/public/textures/minecraft/bamboo_slab.png deleted file mode 100644 index b9bfff41..00000000 Binary files a/public/textures/minecraft/bamboo_slab.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_stairs.png b/public/textures/minecraft/bamboo_stairs.png deleted file mode 100644 index 2002fe5e..00000000 Binary files a/public/textures/minecraft/bamboo_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/bamboo_trapdoor.png b/public/textures/minecraft/bamboo_trapdoor.png deleted file mode 100644 index ae277904..00000000 Binary files a/public/textures/minecraft/bamboo_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/barrel.png b/public/textures/minecraft/barrel.png deleted file mode 100644 index 13fba634..00000000 Binary files a/public/textures/minecraft/barrel.png and /dev/null differ diff --git a/public/textures/minecraft/basalt.png b/public/textures/minecraft/basalt.png deleted file mode 100644 index 539d1bdd..00000000 Binary files a/public/textures/minecraft/basalt.png and /dev/null differ diff --git a/public/textures/minecraft/bat_spawn_egg.png b/public/textures/minecraft/bat_spawn_egg.png deleted file mode 100644 index d5af2054..00000000 Binary files a/public/textures/minecraft/bat_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/beacon.png b/public/textures/minecraft/beacon.png deleted file mode 100644 index f070ebe9..00000000 Binary files a/public/textures/minecraft/beacon.png and /dev/null differ diff --git a/public/textures/minecraft/bedrock.png b/public/textures/minecraft/bedrock.png deleted file mode 100644 index 5adc1413..00000000 Binary files a/public/textures/minecraft/bedrock.png and /dev/null differ diff --git a/public/textures/minecraft/bee_nest.png b/public/textures/minecraft/bee_nest.png deleted file mode 100644 index 9062cd50..00000000 Binary files a/public/textures/minecraft/bee_nest.png and /dev/null differ diff --git a/public/textures/minecraft/bee_spawn_egg.png b/public/textures/minecraft/bee_spawn_egg.png deleted file mode 100644 index 42b7cad9..00000000 Binary files a/public/textures/minecraft/bee_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/beef.png b/public/textures/minecraft/beef.png deleted file mode 100644 index ab9593e9..00000000 Binary files a/public/textures/minecraft/beef.png and /dev/null differ diff --git a/public/textures/minecraft/beehive.png b/public/textures/minecraft/beehive.png deleted file mode 100644 index ae0931d0..00000000 Binary files a/public/textures/minecraft/beehive.png and /dev/null differ diff --git a/public/textures/minecraft/beetroot.png b/public/textures/minecraft/beetroot.png deleted file mode 100644 index 70683673..00000000 Binary files a/public/textures/minecraft/beetroot.png and /dev/null differ diff --git a/public/textures/minecraft/beetroot_seeds.png b/public/textures/minecraft/beetroot_seeds.png deleted file mode 100644 index e1056a82..00000000 Binary files a/public/textures/minecraft/beetroot_seeds.png and /dev/null differ diff --git a/public/textures/minecraft/beetroot_soup.png b/public/textures/minecraft/beetroot_soup.png deleted file mode 100644 index 432235db..00000000 Binary files a/public/textures/minecraft/beetroot_soup.png and /dev/null differ diff --git a/public/textures/minecraft/bell.png b/public/textures/minecraft/bell.png deleted file mode 100644 index 50c00877..00000000 Binary files a/public/textures/minecraft/bell.png and /dev/null differ diff --git a/public/textures/minecraft/big_dripleaf.png b/public/textures/minecraft/big_dripleaf.png deleted file mode 100644 index a1658e44..00000000 Binary files a/public/textures/minecraft/big_dripleaf.png and /dev/null differ diff --git a/public/textures/minecraft/birch_boat.png b/public/textures/minecraft/birch_boat.png deleted file mode 100644 index 48d481f2..00000000 Binary files a/public/textures/minecraft/birch_boat.png and /dev/null differ diff --git a/public/textures/minecraft/birch_button.png b/public/textures/minecraft/birch_button.png deleted file mode 100644 index f352d5f3..00000000 Binary files a/public/textures/minecraft/birch_button.png and /dev/null differ diff --git a/public/textures/minecraft/birch_chest_boat.png b/public/textures/minecraft/birch_chest_boat.png deleted file mode 100644 index 4324f0c1..00000000 Binary files a/public/textures/minecraft/birch_chest_boat.png and /dev/null differ diff --git a/public/textures/minecraft/birch_door.png b/public/textures/minecraft/birch_door.png deleted file mode 100644 index 568f65b6..00000000 Binary files a/public/textures/minecraft/birch_door.png and /dev/null differ diff --git a/public/textures/minecraft/birch_fence.png b/public/textures/minecraft/birch_fence.png deleted file mode 100644 index bfa733d7..00000000 Binary files a/public/textures/minecraft/birch_fence.png and /dev/null differ diff --git a/public/textures/minecraft/birch_fence_gate.png b/public/textures/minecraft/birch_fence_gate.png deleted file mode 100644 index 0511cc37..00000000 Binary files a/public/textures/minecraft/birch_fence_gate.png and /dev/null differ diff --git a/public/textures/minecraft/birch_hanging_sign.png b/public/textures/minecraft/birch_hanging_sign.png deleted file mode 100644 index c8ad4cc5..00000000 Binary files a/public/textures/minecraft/birch_hanging_sign.png and /dev/null differ diff --git a/public/textures/minecraft/birch_leaves.png b/public/textures/minecraft/birch_leaves.png deleted file mode 100644 index 1d63b56c..00000000 Binary files a/public/textures/minecraft/birch_leaves.png and /dev/null differ diff --git a/public/textures/minecraft/birch_log.png b/public/textures/minecraft/birch_log.png deleted file mode 100644 index b822476d..00000000 Binary files a/public/textures/minecraft/birch_log.png and /dev/null differ diff --git a/public/textures/minecraft/birch_planks.png b/public/textures/minecraft/birch_planks.png deleted file mode 100644 index 2e393a67..00000000 Binary files a/public/textures/minecraft/birch_planks.png and /dev/null differ diff --git a/public/textures/minecraft/birch_pressure_plate.png b/public/textures/minecraft/birch_pressure_plate.png deleted file mode 100644 index 4acb3645..00000000 Binary files a/public/textures/minecraft/birch_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/birch_sapling.png b/public/textures/minecraft/birch_sapling.png deleted file mode 100644 index 86671ef8..00000000 Binary files a/public/textures/minecraft/birch_sapling.png and /dev/null differ diff --git a/public/textures/minecraft/birch_sign.png b/public/textures/minecraft/birch_sign.png deleted file mode 100644 index 4588fe95..00000000 Binary files a/public/textures/minecraft/birch_sign.png and /dev/null differ diff --git a/public/textures/minecraft/birch_slab.png b/public/textures/minecraft/birch_slab.png deleted file mode 100644 index e5ff55e7..00000000 Binary files a/public/textures/minecraft/birch_slab.png and /dev/null differ diff --git a/public/textures/minecraft/birch_stairs.png b/public/textures/minecraft/birch_stairs.png deleted file mode 100644 index 4e01f4f1..00000000 Binary files a/public/textures/minecraft/birch_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/birch_trapdoor.png b/public/textures/minecraft/birch_trapdoor.png deleted file mode 100644 index 66b7a9a2..00000000 Binary files a/public/textures/minecraft/birch_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/birch_wood.png b/public/textures/minecraft/birch_wood.png deleted file mode 100644 index b63b30f0..00000000 Binary files a/public/textures/minecraft/birch_wood.png and /dev/null differ diff --git a/public/textures/minecraft/black_banner.png b/public/textures/minecraft/black_banner.png deleted file mode 100644 index 7764005d..00000000 Binary files a/public/textures/minecraft/black_banner.png and /dev/null differ diff --git a/public/textures/minecraft/black_bed.png b/public/textures/minecraft/black_bed.png deleted file mode 100644 index 9f63f663..00000000 Binary files a/public/textures/minecraft/black_bed.png and /dev/null differ diff --git a/public/textures/minecraft/black_candle.png b/public/textures/minecraft/black_candle.png deleted file mode 100644 index 4403d933..00000000 Binary files a/public/textures/minecraft/black_candle.png and /dev/null differ diff --git a/public/textures/minecraft/black_carpet.png b/public/textures/minecraft/black_carpet.png deleted file mode 100644 index 6a9d261a..00000000 Binary files a/public/textures/minecraft/black_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/black_concrete.png b/public/textures/minecraft/black_concrete.png deleted file mode 100644 index 00033a74..00000000 Binary files a/public/textures/minecraft/black_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/black_concrete_powder.png b/public/textures/minecraft/black_concrete_powder.png deleted file mode 100644 index 555de07b..00000000 Binary files a/public/textures/minecraft/black_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/black_dye.png b/public/textures/minecraft/black_dye.png deleted file mode 100644 index 4f06ac2f..00000000 Binary files a/public/textures/minecraft/black_dye.png and /dev/null differ diff --git a/public/textures/minecraft/black_glazed_terracotta.png b/public/textures/minecraft/black_glazed_terracotta.png deleted file mode 100644 index a495dc62..00000000 Binary files a/public/textures/minecraft/black_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/black_shulker_box.png b/public/textures/minecraft/black_shulker_box.png deleted file mode 100644 index 25c21532..00000000 Binary files a/public/textures/minecraft/black_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/black_stained_glass.png b/public/textures/minecraft/black_stained_glass.png deleted file mode 100644 index 4be7bac8..00000000 Binary files a/public/textures/minecraft/black_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/black_stained_glass_pane.png b/public/textures/minecraft/black_stained_glass_pane.png deleted file mode 100644 index caa568e4..00000000 Binary files a/public/textures/minecraft/black_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/black_terracotta.png b/public/textures/minecraft/black_terracotta.png deleted file mode 100644 index 7bef3a07..00000000 Binary files a/public/textures/minecraft/black_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/black_wool.png b/public/textures/minecraft/black_wool.png deleted file mode 100644 index 92f1545e..00000000 Binary files a/public/textures/minecraft/black_wool.png and /dev/null differ diff --git a/public/textures/minecraft/blackstone.png b/public/textures/minecraft/blackstone.png deleted file mode 100644 index 2b1f78c6..00000000 Binary files a/public/textures/minecraft/blackstone.png and /dev/null differ diff --git a/public/textures/minecraft/blackstone_slab.png b/public/textures/minecraft/blackstone_slab.png deleted file mode 100644 index d2972032..00000000 Binary files a/public/textures/minecraft/blackstone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/blackstone_stairs.png b/public/textures/minecraft/blackstone_stairs.png deleted file mode 100644 index 15a9a534..00000000 Binary files a/public/textures/minecraft/blackstone_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/blackstone_wall.png b/public/textures/minecraft/blackstone_wall.png deleted file mode 100644 index 0eb0f391..00000000 Binary files a/public/textures/minecraft/blackstone_wall.png and /dev/null differ diff --git a/public/textures/minecraft/blade_pottery_sherd.png b/public/textures/minecraft/blade_pottery_sherd.png deleted file mode 100644 index 3e3dcfe8..00000000 Binary files a/public/textures/minecraft/blade_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/blast_furnace.png b/public/textures/minecraft/blast_furnace.png deleted file mode 100644 index e271badf..00000000 Binary files a/public/textures/minecraft/blast_furnace.png and /dev/null differ diff --git a/public/textures/minecraft/blaze_powder.png b/public/textures/minecraft/blaze_powder.png deleted file mode 100644 index 3f005619..00000000 Binary files a/public/textures/minecraft/blaze_powder.png and /dev/null differ diff --git a/public/textures/minecraft/blaze_rod.png b/public/textures/minecraft/blaze_rod.png deleted file mode 100644 index 2d77a7b3..00000000 Binary files a/public/textures/minecraft/blaze_rod.png and /dev/null differ diff --git a/public/textures/minecraft/blaze_spawn_egg.png b/public/textures/minecraft/blaze_spawn_egg.png deleted file mode 100644 index 27f304c5..00000000 Binary files a/public/textures/minecraft/blaze_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/blue_banner.png b/public/textures/minecraft/blue_banner.png deleted file mode 100644 index e3d42271..00000000 Binary files a/public/textures/minecraft/blue_banner.png and /dev/null differ diff --git a/public/textures/minecraft/blue_bed.png b/public/textures/minecraft/blue_bed.png deleted file mode 100644 index 216f58d5..00000000 Binary files a/public/textures/minecraft/blue_bed.png and /dev/null differ diff --git a/public/textures/minecraft/blue_candle.png b/public/textures/minecraft/blue_candle.png deleted file mode 100644 index 341a3cda..00000000 Binary files a/public/textures/minecraft/blue_candle.png and /dev/null differ diff --git a/public/textures/minecraft/blue_carpet.png b/public/textures/minecraft/blue_carpet.png deleted file mode 100644 index 47c697ee..00000000 Binary files a/public/textures/minecraft/blue_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/blue_concrete.png b/public/textures/minecraft/blue_concrete.png deleted file mode 100644 index 59bfbd40..00000000 Binary files a/public/textures/minecraft/blue_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/blue_concrete_powder.png b/public/textures/minecraft/blue_concrete_powder.png deleted file mode 100644 index 64edc3ef..00000000 Binary files a/public/textures/minecraft/blue_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/blue_dye.png b/public/textures/minecraft/blue_dye.png deleted file mode 100644 index 6a5d9cb7..00000000 Binary files a/public/textures/minecraft/blue_dye.png and /dev/null differ diff --git a/public/textures/minecraft/blue_glazed_terracotta.png b/public/textures/minecraft/blue_glazed_terracotta.png deleted file mode 100644 index 95a6bd19..00000000 Binary files a/public/textures/minecraft/blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/blue_ice.png b/public/textures/minecraft/blue_ice.png deleted file mode 100644 index 2499cc72..00000000 Binary files a/public/textures/minecraft/blue_ice.png and /dev/null differ diff --git a/public/textures/minecraft/blue_orchid.png b/public/textures/minecraft/blue_orchid.png deleted file mode 100644 index 786b7fcb..00000000 Binary files a/public/textures/minecraft/blue_orchid.png and /dev/null differ diff --git a/public/textures/minecraft/blue_shulker_box.png b/public/textures/minecraft/blue_shulker_box.png deleted file mode 100644 index 956355fa..00000000 Binary files a/public/textures/minecraft/blue_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/blue_stained_glass.png b/public/textures/minecraft/blue_stained_glass.png deleted file mode 100644 index 0c369f31..00000000 Binary files a/public/textures/minecraft/blue_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/blue_stained_glass_pane.png b/public/textures/minecraft/blue_stained_glass_pane.png deleted file mode 100644 index 630da238..00000000 Binary files a/public/textures/minecraft/blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/blue_terracotta.png b/public/textures/minecraft/blue_terracotta.png deleted file mode 100644 index 6d6579da..00000000 Binary files a/public/textures/minecraft/blue_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/blue_wool.png b/public/textures/minecraft/blue_wool.png deleted file mode 100644 index 6a203496..00000000 Binary files a/public/textures/minecraft/blue_wool.png and /dev/null differ diff --git a/public/textures/minecraft/bogged_spawn_egg.png b/public/textures/minecraft/bogged_spawn_egg.png deleted file mode 100644 index bff84c9b..00000000 Binary files a/public/textures/minecraft/bogged_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/bolt_armor_trim_smithing_template.png b/public/textures/minecraft/bolt_armor_trim_smithing_template.png deleted file mode 100644 index 92333701..00000000 Binary files a/public/textures/minecraft/bolt_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/bone.png b/public/textures/minecraft/bone.png deleted file mode 100644 index 2a504a91..00000000 Binary files a/public/textures/minecraft/bone.png and /dev/null differ diff --git a/public/textures/minecraft/bone_block.png b/public/textures/minecraft/bone_block.png deleted file mode 100644 index b87aa167..00000000 Binary files a/public/textures/minecraft/bone_block.png and /dev/null differ diff --git a/public/textures/minecraft/bone_meal.png b/public/textures/minecraft/bone_meal.png deleted file mode 100644 index 7c22f985..00000000 Binary files a/public/textures/minecraft/bone_meal.png and /dev/null differ diff --git a/public/textures/minecraft/book.png b/public/textures/minecraft/book.png deleted file mode 100644 index 96448d3e..00000000 Binary files a/public/textures/minecraft/book.png and /dev/null differ diff --git a/public/textures/minecraft/bookshelf.png b/public/textures/minecraft/bookshelf.png deleted file mode 100644 index 7f7ffc1b..00000000 Binary files a/public/textures/minecraft/bookshelf.png and /dev/null differ diff --git a/public/textures/minecraft/bow.png b/public/textures/minecraft/bow.png deleted file mode 100644 index b0141de4..00000000 Binary files a/public/textures/minecraft/bow.png and /dev/null differ diff --git a/public/textures/minecraft/bowl.png b/public/textures/minecraft/bowl.png deleted file mode 100644 index 33ac9383..00000000 Binary files a/public/textures/minecraft/bowl.png and /dev/null differ diff --git a/public/textures/minecraft/brain_coral.png b/public/textures/minecraft/brain_coral.png deleted file mode 100644 index 09558c72..00000000 Binary files a/public/textures/minecraft/brain_coral.png and /dev/null differ diff --git a/public/textures/minecraft/brain_coral_block.png b/public/textures/minecraft/brain_coral_block.png deleted file mode 100644 index 14ac714e..00000000 Binary files a/public/textures/minecraft/brain_coral_block.png and /dev/null differ diff --git a/public/textures/minecraft/brain_coral_fan.png b/public/textures/minecraft/brain_coral_fan.png deleted file mode 100644 index 618ba91e..00000000 Binary files a/public/textures/minecraft/brain_coral_fan.png and /dev/null differ diff --git a/public/textures/minecraft/bread.png b/public/textures/minecraft/bread.png deleted file mode 100644 index 72517153..00000000 Binary files a/public/textures/minecraft/bread.png and /dev/null differ diff --git a/public/textures/minecraft/breeze_rod.png b/public/textures/minecraft/breeze_rod.png deleted file mode 100644 index 6df01033..00000000 Binary files a/public/textures/minecraft/breeze_rod.png and /dev/null differ diff --git a/public/textures/minecraft/breeze_spawn_egg.png b/public/textures/minecraft/breeze_spawn_egg.png deleted file mode 100644 index 4e1ea6e0..00000000 Binary files a/public/textures/minecraft/breeze_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/brewer_pottery_sherd.png b/public/textures/minecraft/brewer_pottery_sherd.png deleted file mode 100644 index b8ee8d36..00000000 Binary files a/public/textures/minecraft/brewer_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/brewing_stand.png b/public/textures/minecraft/brewing_stand.png deleted file mode 100644 index ab246759..00000000 Binary files a/public/textures/minecraft/brewing_stand.png and /dev/null differ diff --git a/public/textures/minecraft/brick.png b/public/textures/minecraft/brick.png deleted file mode 100644 index 9799fbff..00000000 Binary files a/public/textures/minecraft/brick.png and /dev/null differ diff --git a/public/textures/minecraft/brick_slab.png b/public/textures/minecraft/brick_slab.png deleted file mode 100644 index 9dcdd69c..00000000 Binary files a/public/textures/minecraft/brick_slab.png and /dev/null differ diff --git a/public/textures/minecraft/brick_stairs.png b/public/textures/minecraft/brick_stairs.png deleted file mode 100644 index a21a10f7..00000000 Binary files a/public/textures/minecraft/brick_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/brick_wall.png b/public/textures/minecraft/brick_wall.png deleted file mode 100644 index 6f4cdf51..00000000 Binary files a/public/textures/minecraft/brick_wall.png and /dev/null differ diff --git a/public/textures/minecraft/bricks.png b/public/textures/minecraft/bricks.png deleted file mode 100644 index 1a2ebbf6..00000000 Binary files a/public/textures/minecraft/bricks.png and /dev/null differ diff --git a/public/textures/minecraft/brown_banner.png b/public/textures/minecraft/brown_banner.png deleted file mode 100644 index c552336d..00000000 Binary files a/public/textures/minecraft/brown_banner.png and /dev/null differ diff --git a/public/textures/minecraft/brown_bed.png b/public/textures/minecraft/brown_bed.png deleted file mode 100644 index c9289e23..00000000 Binary files a/public/textures/minecraft/brown_bed.png and /dev/null differ diff --git a/public/textures/minecraft/brown_candle.png b/public/textures/minecraft/brown_candle.png deleted file mode 100644 index 8702adbf..00000000 Binary files a/public/textures/minecraft/brown_candle.png and /dev/null differ diff --git a/public/textures/minecraft/brown_carpet.png b/public/textures/minecraft/brown_carpet.png deleted file mode 100644 index c4bf1a56..00000000 Binary files a/public/textures/minecraft/brown_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/brown_concrete.png b/public/textures/minecraft/brown_concrete.png deleted file mode 100644 index 6a896218..00000000 Binary files a/public/textures/minecraft/brown_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/brown_concrete_powder.png b/public/textures/minecraft/brown_concrete_powder.png deleted file mode 100644 index d18d2bd6..00000000 Binary files a/public/textures/minecraft/brown_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/brown_dye.png b/public/textures/minecraft/brown_dye.png deleted file mode 100644 index d76e554e..00000000 Binary files a/public/textures/minecraft/brown_dye.png and /dev/null differ diff --git a/public/textures/minecraft/brown_glazed_terracotta.png b/public/textures/minecraft/brown_glazed_terracotta.png deleted file mode 100644 index 1434589d..00000000 Binary files a/public/textures/minecraft/brown_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/brown_mushroom.png b/public/textures/minecraft/brown_mushroom.png deleted file mode 100644 index ebb73575..00000000 Binary files a/public/textures/minecraft/brown_mushroom.png and /dev/null differ diff --git a/public/textures/minecraft/brown_mushroom_block.png b/public/textures/minecraft/brown_mushroom_block.png deleted file mode 100644 index 43d5408f..00000000 Binary files a/public/textures/minecraft/brown_mushroom_block.png and /dev/null differ diff --git a/public/textures/minecraft/brown_shulker_box.png b/public/textures/minecraft/brown_shulker_box.png deleted file mode 100644 index 351ae316..00000000 Binary files a/public/textures/minecraft/brown_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/brown_stained_glass.png b/public/textures/minecraft/brown_stained_glass.png deleted file mode 100644 index 6c1537df..00000000 Binary files a/public/textures/minecraft/brown_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/brown_stained_glass_pane.png b/public/textures/minecraft/brown_stained_glass_pane.png deleted file mode 100644 index aca60139..00000000 Binary files a/public/textures/minecraft/brown_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/brown_terracotta.png b/public/textures/minecraft/brown_terracotta.png deleted file mode 100644 index cab94813..00000000 Binary files a/public/textures/minecraft/brown_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/brown_wool.png b/public/textures/minecraft/brown_wool.png deleted file mode 100644 index a3780afe..00000000 Binary files a/public/textures/minecraft/brown_wool.png and /dev/null differ diff --git a/public/textures/minecraft/brush.png b/public/textures/minecraft/brush.png deleted file mode 100644 index f8af483e..00000000 Binary files a/public/textures/minecraft/brush.png and /dev/null differ diff --git a/public/textures/minecraft/bubble_coral.png b/public/textures/minecraft/bubble_coral.png deleted file mode 100644 index 9928cc3a..00000000 Binary files a/public/textures/minecraft/bubble_coral.png and /dev/null differ diff --git a/public/textures/minecraft/bubble_coral_block.png b/public/textures/minecraft/bubble_coral_block.png deleted file mode 100644 index bfaea344..00000000 Binary files a/public/textures/minecraft/bubble_coral_block.png and /dev/null differ diff --git a/public/textures/minecraft/bubble_coral_fan.png b/public/textures/minecraft/bubble_coral_fan.png deleted file mode 100644 index 757157c4..00000000 Binary files a/public/textures/minecraft/bubble_coral_fan.png and /dev/null differ diff --git a/public/textures/minecraft/bucket.png b/public/textures/minecraft/bucket.png deleted file mode 100644 index dd23c043..00000000 Binary files a/public/textures/minecraft/bucket.png and /dev/null differ diff --git a/public/textures/minecraft/budding_amethyst.png b/public/textures/minecraft/budding_amethyst.png deleted file mode 100644 index 12e1d4a4..00000000 Binary files a/public/textures/minecraft/budding_amethyst.png and /dev/null differ diff --git a/public/textures/minecraft/burn_pottery_sherd.png b/public/textures/minecraft/burn_pottery_sherd.png deleted file mode 100644 index fdcd3528..00000000 Binary files a/public/textures/minecraft/burn_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/cactus.png b/public/textures/minecraft/cactus.png deleted file mode 100644 index 1d038533..00000000 Binary files a/public/textures/minecraft/cactus.png and /dev/null differ diff --git a/public/textures/minecraft/cake.png b/public/textures/minecraft/cake.png deleted file mode 100644 index 3bdfc74e..00000000 Binary files a/public/textures/minecraft/cake.png and /dev/null differ diff --git a/public/textures/minecraft/calcite.png b/public/textures/minecraft/calcite.png deleted file mode 100644 index 9ea19580..00000000 Binary files a/public/textures/minecraft/calcite.png and /dev/null differ diff --git a/public/textures/minecraft/calibrated_sculk_sensor.png b/public/textures/minecraft/calibrated_sculk_sensor.png deleted file mode 100644 index ad9dff10..00000000 Binary files a/public/textures/minecraft/calibrated_sculk_sensor.png and /dev/null differ diff --git a/public/textures/minecraft/camel_spawn_egg.png b/public/textures/minecraft/camel_spawn_egg.png deleted file mode 100644 index cfef2ad9..00000000 Binary files a/public/textures/minecraft/camel_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/campfire.png b/public/textures/minecraft/campfire.png deleted file mode 100644 index a4d34a0b..00000000 Binary files a/public/textures/minecraft/campfire.png and /dev/null differ diff --git a/public/textures/minecraft/candle.png b/public/textures/minecraft/candle.png deleted file mode 100644 index 6fe347f9..00000000 Binary files a/public/textures/minecraft/candle.png and /dev/null differ diff --git a/public/textures/minecraft/carrot.png b/public/textures/minecraft/carrot.png deleted file mode 100644 index 44c49ed8..00000000 Binary files a/public/textures/minecraft/carrot.png and /dev/null differ diff --git a/public/textures/minecraft/carrot_on_a_stick.png b/public/textures/minecraft/carrot_on_a_stick.png deleted file mode 100644 index e44d41be..00000000 Binary files a/public/textures/minecraft/carrot_on_a_stick.png and /dev/null differ diff --git a/public/textures/minecraft/cartography_table.png b/public/textures/minecraft/cartography_table.png deleted file mode 100644 index aa8826ec..00000000 Binary files a/public/textures/minecraft/cartography_table.png and /dev/null differ diff --git a/public/textures/minecraft/carved_pumpkin.png b/public/textures/minecraft/carved_pumpkin.png deleted file mode 100644 index a76d7415..00000000 Binary files a/public/textures/minecraft/carved_pumpkin.png and /dev/null differ diff --git a/public/textures/minecraft/cat_spawn_egg.png b/public/textures/minecraft/cat_spawn_egg.png deleted file mode 100644 index 67085da7..00000000 Binary files a/public/textures/minecraft/cat_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/cauldron.png b/public/textures/minecraft/cauldron.png deleted file mode 100644 index 35ca316e..00000000 Binary files a/public/textures/minecraft/cauldron.png and /dev/null differ diff --git a/public/textures/minecraft/cave_spider_spawn_egg.png b/public/textures/minecraft/cave_spider_spawn_egg.png deleted file mode 100644 index a848042f..00000000 Binary files a/public/textures/minecraft/cave_spider_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/chain.png b/public/textures/minecraft/chain.png deleted file mode 100644 index 0879c822..00000000 Binary files a/public/textures/minecraft/chain.png and /dev/null differ diff --git a/public/textures/minecraft/chainmail_boots.png b/public/textures/minecraft/chainmail_boots.png deleted file mode 100644 index 538ee9b4..00000000 Binary files a/public/textures/minecraft/chainmail_boots.png and /dev/null differ diff --git a/public/textures/minecraft/chainmail_chestplate.png b/public/textures/minecraft/chainmail_chestplate.png deleted file mode 100644 index a52a07e4..00000000 Binary files a/public/textures/minecraft/chainmail_chestplate.png and /dev/null differ diff --git a/public/textures/minecraft/chainmail_helmet.png b/public/textures/minecraft/chainmail_helmet.png deleted file mode 100644 index 2d7b48eb..00000000 Binary files a/public/textures/minecraft/chainmail_helmet.png and /dev/null differ diff --git a/public/textures/minecraft/chainmail_leggings.png b/public/textures/minecraft/chainmail_leggings.png deleted file mode 100644 index 17603936..00000000 Binary files a/public/textures/minecraft/chainmail_leggings.png and /dev/null differ diff --git a/public/textures/minecraft/charcoal.png b/public/textures/minecraft/charcoal.png deleted file mode 100644 index 43410bb5..00000000 Binary files a/public/textures/minecraft/charcoal.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_boat.png b/public/textures/minecraft/cherry_boat.png deleted file mode 100644 index 477b240a..00000000 Binary files a/public/textures/minecraft/cherry_boat.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_button.png b/public/textures/minecraft/cherry_button.png deleted file mode 100644 index e7a31e97..00000000 Binary files a/public/textures/minecraft/cherry_button.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_chest_boat.png b/public/textures/minecraft/cherry_chest_boat.png deleted file mode 100644 index e7709acd..00000000 Binary files a/public/textures/minecraft/cherry_chest_boat.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_door.png b/public/textures/minecraft/cherry_door.png deleted file mode 100644 index a3d0a25d..00000000 Binary files a/public/textures/minecraft/cherry_door.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_fence.png b/public/textures/minecraft/cherry_fence.png deleted file mode 100644 index 056d0a4f..00000000 Binary files a/public/textures/minecraft/cherry_fence.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_fence_gate.png b/public/textures/minecraft/cherry_fence_gate.png deleted file mode 100644 index 58482a39..00000000 Binary files a/public/textures/minecraft/cherry_fence_gate.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_hanging_sign.png b/public/textures/minecraft/cherry_hanging_sign.png deleted file mode 100644 index 6b2e408c..00000000 Binary files a/public/textures/minecraft/cherry_hanging_sign.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_leaves.png b/public/textures/minecraft/cherry_leaves.png deleted file mode 100644 index 787438f6..00000000 Binary files a/public/textures/minecraft/cherry_leaves.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_log.png b/public/textures/minecraft/cherry_log.png deleted file mode 100644 index 43517dd0..00000000 Binary files a/public/textures/minecraft/cherry_log.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_planks.png b/public/textures/minecraft/cherry_planks.png deleted file mode 100644 index a00f82a5..00000000 Binary files a/public/textures/minecraft/cherry_planks.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_pressure_plate.png b/public/textures/minecraft/cherry_pressure_plate.png deleted file mode 100644 index 353fa47b..00000000 Binary files a/public/textures/minecraft/cherry_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_sapling.png b/public/textures/minecraft/cherry_sapling.png deleted file mode 100644 index 4e6defe1..00000000 Binary files a/public/textures/minecraft/cherry_sapling.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_sign.png b/public/textures/minecraft/cherry_sign.png deleted file mode 100644 index f1331ae0..00000000 Binary files a/public/textures/minecraft/cherry_sign.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_slab.png b/public/textures/minecraft/cherry_slab.png deleted file mode 100644 index e11df1c3..00000000 Binary files a/public/textures/minecraft/cherry_slab.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_stairs.png b/public/textures/minecraft/cherry_stairs.png deleted file mode 100644 index a93ce972..00000000 Binary files a/public/textures/minecraft/cherry_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_trapdoor.png b/public/textures/minecraft/cherry_trapdoor.png deleted file mode 100644 index 9e3e1ab2..00000000 Binary files a/public/textures/minecraft/cherry_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/cherry_wood.png b/public/textures/minecraft/cherry_wood.png deleted file mode 100644 index 9fed1ce9..00000000 Binary files a/public/textures/minecraft/cherry_wood.png and /dev/null differ diff --git a/public/textures/minecraft/chest.png b/public/textures/minecraft/chest.png deleted file mode 100644 index e075c829..00000000 Binary files a/public/textures/minecraft/chest.png and /dev/null differ diff --git a/public/textures/minecraft/chest_minecart.png b/public/textures/minecraft/chest_minecart.png deleted file mode 100644 index 97abca65..00000000 Binary files a/public/textures/minecraft/chest_minecart.png and /dev/null differ diff --git a/public/textures/minecraft/chicken.png b/public/textures/minecraft/chicken.png deleted file mode 100644 index a665a7a3..00000000 Binary files a/public/textures/minecraft/chicken.png and /dev/null differ diff --git a/public/textures/minecraft/chicken_spawn_egg.png b/public/textures/minecraft/chicken_spawn_egg.png deleted file mode 100644 index ec30f6f8..00000000 Binary files a/public/textures/minecraft/chicken_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/chipped_anvil.png b/public/textures/minecraft/chipped_anvil.png deleted file mode 100644 index 70e65e89..00000000 Binary files a/public/textures/minecraft/chipped_anvil.png and /dev/null differ diff --git a/public/textures/minecraft/chiseled_bookshelf.png b/public/textures/minecraft/chiseled_bookshelf.png deleted file mode 100644 index 82fac23b..00000000 Binary files a/public/textures/minecraft/chiseled_bookshelf.png and /dev/null differ diff --git a/public/textures/minecraft/chiseled_copper.png b/public/textures/minecraft/chiseled_copper.png deleted file mode 100644 index bee7cf12..00000000 Binary files a/public/textures/minecraft/chiseled_copper.png and /dev/null differ diff --git a/public/textures/minecraft/chiseled_deepslate.png b/public/textures/minecraft/chiseled_deepslate.png deleted file mode 100644 index 0087d167..00000000 Binary files a/public/textures/minecraft/chiseled_deepslate.png and /dev/null differ diff --git a/public/textures/minecraft/chiseled_nether_bricks.png b/public/textures/minecraft/chiseled_nether_bricks.png deleted file mode 100644 index 505abf3e..00000000 Binary files a/public/textures/minecraft/chiseled_nether_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/chiseled_polished_blackstone.png b/public/textures/minecraft/chiseled_polished_blackstone.png deleted file mode 100644 index 82cf3dc5..00000000 Binary files a/public/textures/minecraft/chiseled_polished_blackstone.png and /dev/null differ diff --git a/public/textures/minecraft/chiseled_quartz_block.png b/public/textures/minecraft/chiseled_quartz_block.png deleted file mode 100644 index ffdb7acf..00000000 Binary files a/public/textures/minecraft/chiseled_quartz_block.png and /dev/null differ diff --git a/public/textures/minecraft/chiseled_red_sandstone.png b/public/textures/minecraft/chiseled_red_sandstone.png deleted file mode 100644 index 0ce097d5..00000000 Binary files a/public/textures/minecraft/chiseled_red_sandstone.png and /dev/null differ diff --git a/public/textures/minecraft/chiseled_sandstone.png b/public/textures/minecraft/chiseled_sandstone.png deleted file mode 100644 index 2c6e9c87..00000000 Binary files a/public/textures/minecraft/chiseled_sandstone.png and /dev/null differ diff --git a/public/textures/minecraft/chiseled_stone_bricks.png b/public/textures/minecraft/chiseled_stone_bricks.png deleted file mode 100644 index 508c668f..00000000 Binary files a/public/textures/minecraft/chiseled_stone_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/chiseled_tuff.png b/public/textures/minecraft/chiseled_tuff.png deleted file mode 100644 index 374a280e..00000000 Binary files a/public/textures/minecraft/chiseled_tuff.png and /dev/null differ diff --git a/public/textures/minecraft/chiseled_tuff_bricks.png b/public/textures/minecraft/chiseled_tuff_bricks.png deleted file mode 100644 index 23fa7268..00000000 Binary files a/public/textures/minecraft/chiseled_tuff_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/chorus_flower.png b/public/textures/minecraft/chorus_flower.png deleted file mode 100644 index acdb356e..00000000 Binary files a/public/textures/minecraft/chorus_flower.png and /dev/null differ diff --git a/public/textures/minecraft/chorus_fruit.png b/public/textures/minecraft/chorus_fruit.png deleted file mode 100644 index 64bfab9e..00000000 Binary files a/public/textures/minecraft/chorus_fruit.png and /dev/null differ diff --git a/public/textures/minecraft/chorus_plant.png b/public/textures/minecraft/chorus_plant.png deleted file mode 100644 index 2fe1f500..00000000 Binary files a/public/textures/minecraft/chorus_plant.png and /dev/null differ diff --git a/public/textures/minecraft/clay.png b/public/textures/minecraft/clay.png deleted file mode 100644 index 7a1bfee2..00000000 Binary files a/public/textures/minecraft/clay.png and /dev/null differ diff --git a/public/textures/minecraft/clay_ball.png b/public/textures/minecraft/clay_ball.png deleted file mode 100644 index 7122fef7..00000000 Binary files a/public/textures/minecraft/clay_ball.png and /dev/null differ diff --git a/public/textures/minecraft/clock.png b/public/textures/minecraft/clock.png deleted file mode 100644 index eff986af..00000000 Binary files a/public/textures/minecraft/clock.png and /dev/null differ diff --git a/public/textures/minecraft/coal.png b/public/textures/minecraft/coal.png deleted file mode 100644 index 89b4d8d0..00000000 Binary files a/public/textures/minecraft/coal.png and /dev/null differ diff --git a/public/textures/minecraft/coal_block.png b/public/textures/minecraft/coal_block.png deleted file mode 100644 index 699203e7..00000000 Binary files a/public/textures/minecraft/coal_block.png and /dev/null differ diff --git a/public/textures/minecraft/coal_ore.png b/public/textures/minecraft/coal_ore.png deleted file mode 100644 index ee2415e8..00000000 Binary files a/public/textures/minecraft/coal_ore.png and /dev/null differ diff --git a/public/textures/minecraft/coarse_dirt.png b/public/textures/minecraft/coarse_dirt.png deleted file mode 100644 index c6aec3cc..00000000 Binary files a/public/textures/minecraft/coarse_dirt.png and /dev/null differ diff --git a/public/textures/minecraft/coast_armor_trim_smithing_template.png b/public/textures/minecraft/coast_armor_trim_smithing_template.png deleted file mode 100644 index 77f5ba2e..00000000 Binary files a/public/textures/minecraft/coast_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/cobbled_deepslate.png b/public/textures/minecraft/cobbled_deepslate.png deleted file mode 100644 index b5569906..00000000 Binary files a/public/textures/minecraft/cobbled_deepslate.png and /dev/null differ diff --git a/public/textures/minecraft/cobbled_deepslate_slab.png b/public/textures/minecraft/cobbled_deepslate_slab.png deleted file mode 100644 index 9c969586..00000000 Binary files a/public/textures/minecraft/cobbled_deepslate_slab.png and /dev/null differ diff --git a/public/textures/minecraft/cobbled_deepslate_stairs.png b/public/textures/minecraft/cobbled_deepslate_stairs.png deleted file mode 100644 index ef289c30..00000000 Binary files a/public/textures/minecraft/cobbled_deepslate_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/cobbled_deepslate_wall.png b/public/textures/minecraft/cobbled_deepslate_wall.png deleted file mode 100644 index bb5cf59a..00000000 Binary files a/public/textures/minecraft/cobbled_deepslate_wall.png and /dev/null differ diff --git a/public/textures/minecraft/cobblestone.png b/public/textures/minecraft/cobblestone.png deleted file mode 100644 index 876e6448..00000000 Binary files a/public/textures/minecraft/cobblestone.png and /dev/null differ diff --git a/public/textures/minecraft/cobblestone_slab.png b/public/textures/minecraft/cobblestone_slab.png deleted file mode 100644 index 75de285a..00000000 Binary files a/public/textures/minecraft/cobblestone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/cobblestone_stairs.png b/public/textures/minecraft/cobblestone_stairs.png deleted file mode 100644 index 3a0b4092..00000000 Binary files a/public/textures/minecraft/cobblestone_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/cobblestone_wall.png b/public/textures/minecraft/cobblestone_wall.png deleted file mode 100644 index 034195b2..00000000 Binary files a/public/textures/minecraft/cobblestone_wall.png and /dev/null differ diff --git a/public/textures/minecraft/cobweb.png b/public/textures/minecraft/cobweb.png deleted file mode 100644 index 601c9d89..00000000 Binary files a/public/textures/minecraft/cobweb.png and /dev/null differ diff --git a/public/textures/minecraft/cocoa_beans.png b/public/textures/minecraft/cocoa_beans.png deleted file mode 100644 index 997c8e31..00000000 Binary files a/public/textures/minecraft/cocoa_beans.png and /dev/null differ diff --git a/public/textures/minecraft/cod.png b/public/textures/minecraft/cod.png deleted file mode 100644 index 8dae70ea..00000000 Binary files a/public/textures/minecraft/cod.png and /dev/null differ diff --git a/public/textures/minecraft/cod_bucket.png b/public/textures/minecraft/cod_bucket.png deleted file mode 100644 index 2773687a..00000000 Binary files a/public/textures/minecraft/cod_bucket.png and /dev/null differ diff --git a/public/textures/minecraft/cod_spawn_egg.png b/public/textures/minecraft/cod_spawn_egg.png deleted file mode 100644 index eea13697..00000000 Binary files a/public/textures/minecraft/cod_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/comparator.png b/public/textures/minecraft/comparator.png deleted file mode 100644 index 02084396..00000000 Binary files a/public/textures/minecraft/comparator.png and /dev/null differ diff --git a/public/textures/minecraft/compass.png b/public/textures/minecraft/compass.png deleted file mode 100644 index 1ff02616..00000000 Binary files a/public/textures/minecraft/compass.png and /dev/null differ diff --git a/public/textures/minecraft/composter.png b/public/textures/minecraft/composter.png deleted file mode 100644 index 7dbeeb40..00000000 Binary files a/public/textures/minecraft/composter.png and /dev/null differ diff --git a/public/textures/minecraft/conduit.png b/public/textures/minecraft/conduit.png deleted file mode 100644 index 1abf8f54..00000000 Binary files a/public/textures/minecraft/conduit.png and /dev/null differ diff --git a/public/textures/minecraft/cooked_beef.png b/public/textures/minecraft/cooked_beef.png deleted file mode 100644 index 20ae4eac..00000000 Binary files a/public/textures/minecraft/cooked_beef.png and /dev/null differ diff --git a/public/textures/minecraft/cooked_chicken.png b/public/textures/minecraft/cooked_chicken.png deleted file mode 100644 index b9d0b705..00000000 Binary files a/public/textures/minecraft/cooked_chicken.png and /dev/null differ diff --git a/public/textures/minecraft/cooked_cod.png b/public/textures/minecraft/cooked_cod.png deleted file mode 100644 index 08dd9d7f..00000000 Binary files a/public/textures/minecraft/cooked_cod.png and /dev/null differ diff --git a/public/textures/minecraft/cooked_mutton.png b/public/textures/minecraft/cooked_mutton.png deleted file mode 100644 index 158c1221..00000000 Binary files a/public/textures/minecraft/cooked_mutton.png and /dev/null differ diff --git a/public/textures/minecraft/cooked_porkchop.png b/public/textures/minecraft/cooked_porkchop.png deleted file mode 100644 index 8ea1b747..00000000 Binary files a/public/textures/minecraft/cooked_porkchop.png and /dev/null differ diff --git a/public/textures/minecraft/cooked_rabbit.png b/public/textures/minecraft/cooked_rabbit.png deleted file mode 100644 index 9449451c..00000000 Binary files a/public/textures/minecraft/cooked_rabbit.png and /dev/null differ diff --git a/public/textures/minecraft/cooked_salmon.png b/public/textures/minecraft/cooked_salmon.png deleted file mode 100644 index b79dbdaa..00000000 Binary files a/public/textures/minecraft/cooked_salmon.png and /dev/null differ diff --git a/public/textures/minecraft/cookie.png b/public/textures/minecraft/cookie.png deleted file mode 100644 index e4636f64..00000000 Binary files a/public/textures/minecraft/cookie.png and /dev/null differ diff --git a/public/textures/minecraft/copper_block.png b/public/textures/minecraft/copper_block.png deleted file mode 100644 index 04105504..00000000 Binary files a/public/textures/minecraft/copper_block.png and /dev/null differ diff --git a/public/textures/minecraft/copper_bulb.png b/public/textures/minecraft/copper_bulb.png deleted file mode 100644 index 772b0bc2..00000000 Binary files a/public/textures/minecraft/copper_bulb.png and /dev/null differ diff --git a/public/textures/minecraft/copper_door.png b/public/textures/minecraft/copper_door.png deleted file mode 100644 index a890b5f7..00000000 Binary files a/public/textures/minecraft/copper_door.png and /dev/null differ diff --git a/public/textures/minecraft/copper_grate.png b/public/textures/minecraft/copper_grate.png deleted file mode 100644 index 5636dc6d..00000000 Binary files a/public/textures/minecraft/copper_grate.png and /dev/null differ diff --git a/public/textures/minecraft/copper_ingot.png b/public/textures/minecraft/copper_ingot.png deleted file mode 100644 index e4693836..00000000 Binary files a/public/textures/minecraft/copper_ingot.png and /dev/null differ diff --git a/public/textures/minecraft/copper_ore.png b/public/textures/minecraft/copper_ore.png deleted file mode 100644 index f58e154b..00000000 Binary files a/public/textures/minecraft/copper_ore.png and /dev/null differ diff --git a/public/textures/minecraft/copper_trapdoor.png b/public/textures/minecraft/copper_trapdoor.png deleted file mode 100644 index 66447999..00000000 Binary files a/public/textures/minecraft/copper_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/cornflower.png b/public/textures/minecraft/cornflower.png deleted file mode 100644 index e576d779..00000000 Binary files a/public/textures/minecraft/cornflower.png and /dev/null differ diff --git a/public/textures/minecraft/cow_spawn_egg.png b/public/textures/minecraft/cow_spawn_egg.png deleted file mode 100644 index 8b72d2a1..00000000 Binary files a/public/textures/minecraft/cow_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/cracked_deepslate_bricks.png b/public/textures/minecraft/cracked_deepslate_bricks.png deleted file mode 100644 index b192f356..00000000 Binary files a/public/textures/minecraft/cracked_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/cracked_deepslate_tiles.png b/public/textures/minecraft/cracked_deepslate_tiles.png deleted file mode 100644 index 0d99e5e8..00000000 Binary files a/public/textures/minecraft/cracked_deepslate_tiles.png and /dev/null differ diff --git a/public/textures/minecraft/cracked_nether_bricks.png b/public/textures/minecraft/cracked_nether_bricks.png deleted file mode 100644 index cd9a100e..00000000 Binary files a/public/textures/minecraft/cracked_nether_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/cracked_polished_blackstone_bricks.png b/public/textures/minecraft/cracked_polished_blackstone_bricks.png deleted file mode 100644 index 90a96aeb..00000000 Binary files a/public/textures/minecraft/cracked_polished_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/cracked_stone_bricks.png b/public/textures/minecraft/cracked_stone_bricks.png deleted file mode 100644 index 7c065021..00000000 Binary files a/public/textures/minecraft/cracked_stone_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/crafter.png b/public/textures/minecraft/crafter.png deleted file mode 100644 index 635f042e..00000000 Binary files a/public/textures/minecraft/crafter.png and /dev/null differ diff --git a/public/textures/minecraft/crafting_table.png b/public/textures/minecraft/crafting_table.png deleted file mode 100644 index ea88c634..00000000 Binary files a/public/textures/minecraft/crafting_table.png and /dev/null differ diff --git a/public/textures/minecraft/creeper_banner_pattern.png b/public/textures/minecraft/creeper_banner_pattern.png deleted file mode 100644 index 43fad4e1..00000000 Binary files a/public/textures/minecraft/creeper_banner_pattern.png and /dev/null differ diff --git a/public/textures/minecraft/creeper_head.png b/public/textures/minecraft/creeper_head.png deleted file mode 100644 index 61961420..00000000 Binary files a/public/textures/minecraft/creeper_head.png and /dev/null differ diff --git a/public/textures/minecraft/creeper_spawn_egg.png b/public/textures/minecraft/creeper_spawn_egg.png deleted file mode 100644 index 1895c078..00000000 Binary files a/public/textures/minecraft/creeper_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_button.png b/public/textures/minecraft/crimson_button.png deleted file mode 100644 index 98b58922..00000000 Binary files a/public/textures/minecraft/crimson_button.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_door.png b/public/textures/minecraft/crimson_door.png deleted file mode 100644 index ac01fccb..00000000 Binary files a/public/textures/minecraft/crimson_door.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_fence.png b/public/textures/minecraft/crimson_fence.png deleted file mode 100644 index 5443dabe..00000000 Binary files a/public/textures/minecraft/crimson_fence.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_fence_gate.png b/public/textures/minecraft/crimson_fence_gate.png deleted file mode 100644 index 7e796960..00000000 Binary files a/public/textures/minecraft/crimson_fence_gate.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_fungus.png b/public/textures/minecraft/crimson_fungus.png deleted file mode 100644 index 5dedfec8..00000000 Binary files a/public/textures/minecraft/crimson_fungus.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_hanging_sign.png b/public/textures/minecraft/crimson_hanging_sign.png deleted file mode 100644 index b62a9e3b..00000000 Binary files a/public/textures/minecraft/crimson_hanging_sign.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_hyphae.png b/public/textures/minecraft/crimson_hyphae.png deleted file mode 100644 index 8e034055..00000000 Binary files a/public/textures/minecraft/crimson_hyphae.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_nylium.png b/public/textures/minecraft/crimson_nylium.png deleted file mode 100644 index 2c0de04f..00000000 Binary files a/public/textures/minecraft/crimson_nylium.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_planks.png b/public/textures/minecraft/crimson_planks.png deleted file mode 100644 index c88ef2d3..00000000 Binary files a/public/textures/minecraft/crimson_planks.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_pressure_plate.png b/public/textures/minecraft/crimson_pressure_plate.png deleted file mode 100644 index cc17f941..00000000 Binary files a/public/textures/minecraft/crimson_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_roots.png b/public/textures/minecraft/crimson_roots.png deleted file mode 100644 index 9d389ed4..00000000 Binary files a/public/textures/minecraft/crimson_roots.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_sign.png b/public/textures/minecraft/crimson_sign.png deleted file mode 100644 index 477dfca0..00000000 Binary files a/public/textures/minecraft/crimson_sign.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_slab.png b/public/textures/minecraft/crimson_slab.png deleted file mode 100644 index be467cfc..00000000 Binary files a/public/textures/minecraft/crimson_slab.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_stairs.png b/public/textures/minecraft/crimson_stairs.png deleted file mode 100644 index cdd563f1..00000000 Binary files a/public/textures/minecraft/crimson_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_stem.png b/public/textures/minecraft/crimson_stem.png deleted file mode 100644 index 505516aa..00000000 Binary files a/public/textures/minecraft/crimson_stem.png and /dev/null differ diff --git a/public/textures/minecraft/crimson_trapdoor.png b/public/textures/minecraft/crimson_trapdoor.png deleted file mode 100644 index deb53663..00000000 Binary files a/public/textures/minecraft/crimson_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/crossbow.png b/public/textures/minecraft/crossbow.png deleted file mode 100644 index 54bc8579..00000000 Binary files a/public/textures/minecraft/crossbow.png and /dev/null differ diff --git a/public/textures/minecraft/crying_obsidian.png b/public/textures/minecraft/crying_obsidian.png deleted file mode 100644 index bebd520c..00000000 Binary files a/public/textures/minecraft/crying_obsidian.png and /dev/null differ diff --git a/public/textures/minecraft/cut_copper.png b/public/textures/minecraft/cut_copper.png deleted file mode 100644 index c9d44236..00000000 Binary files a/public/textures/minecraft/cut_copper.png and /dev/null differ diff --git a/public/textures/minecraft/cut_copper_slab.png b/public/textures/minecraft/cut_copper_slab.png deleted file mode 100644 index f6ae9341..00000000 Binary files a/public/textures/minecraft/cut_copper_slab.png and /dev/null differ diff --git a/public/textures/minecraft/cut_copper_stairs.png b/public/textures/minecraft/cut_copper_stairs.png deleted file mode 100644 index 8975122f..00000000 Binary files a/public/textures/minecraft/cut_copper_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/cut_red_sandstone.png b/public/textures/minecraft/cut_red_sandstone.png deleted file mode 100644 index 6fe8b8e7..00000000 Binary files a/public/textures/minecraft/cut_red_sandstone.png and /dev/null differ diff --git a/public/textures/minecraft/cut_red_sandstone_slab.png b/public/textures/minecraft/cut_red_sandstone_slab.png deleted file mode 100644 index 5b7575fa..00000000 Binary files a/public/textures/minecraft/cut_red_sandstone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/cut_sandstone.png b/public/textures/minecraft/cut_sandstone.png deleted file mode 100644 index b9094866..00000000 Binary files a/public/textures/minecraft/cut_sandstone.png and /dev/null differ diff --git a/public/textures/minecraft/cut_sandstone_slab.png b/public/textures/minecraft/cut_sandstone_slab.png deleted file mode 100644 index 67a43672..00000000 Binary files a/public/textures/minecraft/cut_sandstone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_banner.png b/public/textures/minecraft/cyan_banner.png deleted file mode 100644 index 1987b702..00000000 Binary files a/public/textures/minecraft/cyan_banner.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_bed.png b/public/textures/minecraft/cyan_bed.png deleted file mode 100644 index 97d0a056..00000000 Binary files a/public/textures/minecraft/cyan_bed.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_candle.png b/public/textures/minecraft/cyan_candle.png deleted file mode 100644 index 4c300244..00000000 Binary files a/public/textures/minecraft/cyan_candle.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_carpet.png b/public/textures/minecraft/cyan_carpet.png deleted file mode 100644 index 3e85ff85..00000000 Binary files a/public/textures/minecraft/cyan_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_concrete.png b/public/textures/minecraft/cyan_concrete.png deleted file mode 100644 index ca4fb680..00000000 Binary files a/public/textures/minecraft/cyan_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_concrete_powder.png b/public/textures/minecraft/cyan_concrete_powder.png deleted file mode 100644 index 1a668f31..00000000 Binary files a/public/textures/minecraft/cyan_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_dye.png b/public/textures/minecraft/cyan_dye.png deleted file mode 100644 index ad622e60..00000000 Binary files a/public/textures/minecraft/cyan_dye.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_glazed_terracotta.png b/public/textures/minecraft/cyan_glazed_terracotta.png deleted file mode 100644 index 74cf6a74..00000000 Binary files a/public/textures/minecraft/cyan_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_shulker_box.png b/public/textures/minecraft/cyan_shulker_box.png deleted file mode 100644 index 584cd717..00000000 Binary files a/public/textures/minecraft/cyan_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_stained_glass.png b/public/textures/minecraft/cyan_stained_glass.png deleted file mode 100644 index 24dc0339..00000000 Binary files a/public/textures/minecraft/cyan_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_stained_glass_pane.png b/public/textures/minecraft/cyan_stained_glass_pane.png deleted file mode 100644 index 64d7c107..00000000 Binary files a/public/textures/minecraft/cyan_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_terracotta.png b/public/textures/minecraft/cyan_terracotta.png deleted file mode 100644 index e0a1306c..00000000 Binary files a/public/textures/minecraft/cyan_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/cyan_wool.png b/public/textures/minecraft/cyan_wool.png deleted file mode 100644 index 7296ba7f..00000000 Binary files a/public/textures/minecraft/cyan_wool.png and /dev/null differ diff --git a/public/textures/minecraft/damaged_anvil.png b/public/textures/minecraft/damaged_anvil.png deleted file mode 100644 index 97f7cae7..00000000 Binary files a/public/textures/minecraft/damaged_anvil.png and /dev/null differ diff --git a/public/textures/minecraft/dandelion.png b/public/textures/minecraft/dandelion.png deleted file mode 100644 index c01b24f5..00000000 Binary files a/public/textures/minecraft/dandelion.png and /dev/null differ diff --git a/public/textures/minecraft/danger_pottery_sherd.png b/public/textures/minecraft/danger_pottery_sherd.png deleted file mode 100644 index c0227aa9..00000000 Binary files a/public/textures/minecraft/danger_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_boat.png b/public/textures/minecraft/dark_oak_boat.png deleted file mode 100644 index bbbbeec9..00000000 Binary files a/public/textures/minecraft/dark_oak_boat.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_button.png b/public/textures/minecraft/dark_oak_button.png deleted file mode 100644 index 8a31c54e..00000000 Binary files a/public/textures/minecraft/dark_oak_button.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_chest_boat.png b/public/textures/minecraft/dark_oak_chest_boat.png deleted file mode 100644 index afd1425a..00000000 Binary files a/public/textures/minecraft/dark_oak_chest_boat.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_door.png b/public/textures/minecraft/dark_oak_door.png deleted file mode 100644 index c873481a..00000000 Binary files a/public/textures/minecraft/dark_oak_door.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_fence.png b/public/textures/minecraft/dark_oak_fence.png deleted file mode 100644 index 5ed2367b..00000000 Binary files a/public/textures/minecraft/dark_oak_fence.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_fence_gate.png b/public/textures/minecraft/dark_oak_fence_gate.png deleted file mode 100644 index dd23c904..00000000 Binary files a/public/textures/minecraft/dark_oak_fence_gate.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_hanging_sign.png b/public/textures/minecraft/dark_oak_hanging_sign.png deleted file mode 100644 index 24d61b43..00000000 Binary files a/public/textures/minecraft/dark_oak_hanging_sign.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_leaves.png b/public/textures/minecraft/dark_oak_leaves.png deleted file mode 100644 index 59adb8ae..00000000 Binary files a/public/textures/minecraft/dark_oak_leaves.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_log.png b/public/textures/minecraft/dark_oak_log.png deleted file mode 100644 index f6cfd260..00000000 Binary files a/public/textures/minecraft/dark_oak_log.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_planks.png b/public/textures/minecraft/dark_oak_planks.png deleted file mode 100644 index d29c7144..00000000 Binary files a/public/textures/minecraft/dark_oak_planks.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_pressure_plate.png b/public/textures/minecraft/dark_oak_pressure_plate.png deleted file mode 100644 index 8aa1643f..00000000 Binary files a/public/textures/minecraft/dark_oak_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_sapling.png b/public/textures/minecraft/dark_oak_sapling.png deleted file mode 100644 index a0a180b4..00000000 Binary files a/public/textures/minecraft/dark_oak_sapling.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_sign.png b/public/textures/minecraft/dark_oak_sign.png deleted file mode 100644 index 7b9f1ee9..00000000 Binary files a/public/textures/minecraft/dark_oak_sign.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_slab.png b/public/textures/minecraft/dark_oak_slab.png deleted file mode 100644 index 0276690d..00000000 Binary files a/public/textures/minecraft/dark_oak_slab.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_stairs.png b/public/textures/minecraft/dark_oak_stairs.png deleted file mode 100644 index b5c4b4b1..00000000 Binary files a/public/textures/minecraft/dark_oak_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_trapdoor.png b/public/textures/minecraft/dark_oak_trapdoor.png deleted file mode 100644 index 96b03386..00000000 Binary files a/public/textures/minecraft/dark_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/dark_oak_wood.png b/public/textures/minecraft/dark_oak_wood.png deleted file mode 100644 index d74b96cc..00000000 Binary files a/public/textures/minecraft/dark_oak_wood.png and /dev/null differ diff --git a/public/textures/minecraft/dark_prismarine.png b/public/textures/minecraft/dark_prismarine.png deleted file mode 100644 index 970eeae5..00000000 Binary files a/public/textures/minecraft/dark_prismarine.png and /dev/null differ diff --git a/public/textures/minecraft/dark_prismarine_slab.png b/public/textures/minecraft/dark_prismarine_slab.png deleted file mode 100644 index aee176a5..00000000 Binary files a/public/textures/minecraft/dark_prismarine_slab.png and /dev/null differ diff --git a/public/textures/minecraft/dark_prismarine_stairs.png b/public/textures/minecraft/dark_prismarine_stairs.png deleted file mode 100644 index 89688452..00000000 Binary files a/public/textures/minecraft/dark_prismarine_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/daylight_detector.png b/public/textures/minecraft/daylight_detector.png deleted file mode 100644 index 9ef82f4d..00000000 Binary files a/public/textures/minecraft/daylight_detector.png and /dev/null differ diff --git a/public/textures/minecraft/dead_brain_coral.png b/public/textures/minecraft/dead_brain_coral.png deleted file mode 100644 index 13aa92cc..00000000 Binary files a/public/textures/minecraft/dead_brain_coral.png and /dev/null differ diff --git a/public/textures/minecraft/dead_brain_coral_block.png b/public/textures/minecraft/dead_brain_coral_block.png deleted file mode 100644 index a73c6a8d..00000000 Binary files a/public/textures/minecraft/dead_brain_coral_block.png and /dev/null differ diff --git a/public/textures/minecraft/dead_brain_coral_fan.png b/public/textures/minecraft/dead_brain_coral_fan.png deleted file mode 100644 index 6b2058f5..00000000 Binary files a/public/textures/minecraft/dead_brain_coral_fan.png and /dev/null differ diff --git a/public/textures/minecraft/dead_bubble_coral.png b/public/textures/minecraft/dead_bubble_coral.png deleted file mode 100644 index 3403e33a..00000000 Binary files a/public/textures/minecraft/dead_bubble_coral.png and /dev/null differ diff --git a/public/textures/minecraft/dead_bubble_coral_block.png b/public/textures/minecraft/dead_bubble_coral_block.png deleted file mode 100644 index a39f51f7..00000000 Binary files a/public/textures/minecraft/dead_bubble_coral_block.png and /dev/null differ diff --git a/public/textures/minecraft/dead_bubble_coral_fan.png b/public/textures/minecraft/dead_bubble_coral_fan.png deleted file mode 100644 index be52edf4..00000000 Binary files a/public/textures/minecraft/dead_bubble_coral_fan.png and /dev/null differ diff --git a/public/textures/minecraft/dead_bush.png b/public/textures/minecraft/dead_bush.png deleted file mode 100644 index aff3118e..00000000 Binary files a/public/textures/minecraft/dead_bush.png and /dev/null differ diff --git a/public/textures/minecraft/dead_fire_coral.png b/public/textures/minecraft/dead_fire_coral.png deleted file mode 100644 index db3ff96d..00000000 Binary files a/public/textures/minecraft/dead_fire_coral.png and /dev/null differ diff --git a/public/textures/minecraft/dead_fire_coral_block.png b/public/textures/minecraft/dead_fire_coral_block.png deleted file mode 100644 index 53cad100..00000000 Binary files a/public/textures/minecraft/dead_fire_coral_block.png and /dev/null differ diff --git a/public/textures/minecraft/dead_fire_coral_fan.png b/public/textures/minecraft/dead_fire_coral_fan.png deleted file mode 100644 index f8b3480f..00000000 Binary files a/public/textures/minecraft/dead_fire_coral_fan.png and /dev/null differ diff --git a/public/textures/minecraft/dead_horn_coral.png b/public/textures/minecraft/dead_horn_coral.png deleted file mode 100644 index d12d4a44..00000000 Binary files a/public/textures/minecraft/dead_horn_coral.png and /dev/null differ diff --git a/public/textures/minecraft/dead_horn_coral_block.png b/public/textures/minecraft/dead_horn_coral_block.png deleted file mode 100644 index 9e50d81e..00000000 Binary files a/public/textures/minecraft/dead_horn_coral_block.png and /dev/null differ diff --git a/public/textures/minecraft/dead_horn_coral_fan.png b/public/textures/minecraft/dead_horn_coral_fan.png deleted file mode 100644 index 73611316..00000000 Binary files a/public/textures/minecraft/dead_horn_coral_fan.png and /dev/null differ diff --git a/public/textures/minecraft/dead_tube_coral.png b/public/textures/minecraft/dead_tube_coral.png deleted file mode 100644 index fca30824..00000000 Binary files a/public/textures/minecraft/dead_tube_coral.png and /dev/null differ diff --git a/public/textures/minecraft/dead_tube_coral_block.png b/public/textures/minecraft/dead_tube_coral_block.png deleted file mode 100644 index 24f30d01..00000000 Binary files a/public/textures/minecraft/dead_tube_coral_block.png and /dev/null differ diff --git a/public/textures/minecraft/dead_tube_coral_fan.png b/public/textures/minecraft/dead_tube_coral_fan.png deleted file mode 100644 index 41c2a9e5..00000000 Binary files a/public/textures/minecraft/dead_tube_coral_fan.png and /dev/null differ diff --git a/public/textures/minecraft/decorated_pot.png b/public/textures/minecraft/decorated_pot.png deleted file mode 100644 index 756ec797..00000000 Binary files a/public/textures/minecraft/decorated_pot.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate.png b/public/textures/minecraft/deepslate.png deleted file mode 100644 index 4f97967b..00000000 Binary files a/public/textures/minecraft/deepslate.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_brick_slab.png b/public/textures/minecraft/deepslate_brick_slab.png deleted file mode 100644 index 20727efd..00000000 Binary files a/public/textures/minecraft/deepslate_brick_slab.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_brick_stairs.png b/public/textures/minecraft/deepslate_brick_stairs.png deleted file mode 100644 index 55e5a4dc..00000000 Binary files a/public/textures/minecraft/deepslate_brick_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_brick_wall.png b/public/textures/minecraft/deepslate_brick_wall.png deleted file mode 100644 index 3d474f90..00000000 Binary files a/public/textures/minecraft/deepslate_brick_wall.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_bricks.png b/public/textures/minecraft/deepslate_bricks.png deleted file mode 100644 index 15404855..00000000 Binary files a/public/textures/minecraft/deepslate_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_coal_ore.png b/public/textures/minecraft/deepslate_coal_ore.png deleted file mode 100644 index 5432798a..00000000 Binary files a/public/textures/minecraft/deepslate_coal_ore.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_copper_ore.png b/public/textures/minecraft/deepslate_copper_ore.png deleted file mode 100644 index 430f4e70..00000000 Binary files a/public/textures/minecraft/deepslate_copper_ore.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_diamond_ore.png b/public/textures/minecraft/deepslate_diamond_ore.png deleted file mode 100644 index 8bedc8e9..00000000 Binary files a/public/textures/minecraft/deepslate_diamond_ore.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_emerald_ore.png b/public/textures/minecraft/deepslate_emerald_ore.png deleted file mode 100644 index a0ad31de..00000000 Binary files a/public/textures/minecraft/deepslate_emerald_ore.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_gold_ore.png b/public/textures/minecraft/deepslate_gold_ore.png deleted file mode 100644 index cefdd26b..00000000 Binary files a/public/textures/minecraft/deepslate_gold_ore.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_iron_ore.png b/public/textures/minecraft/deepslate_iron_ore.png deleted file mode 100644 index d29f3d97..00000000 Binary files a/public/textures/minecraft/deepslate_iron_ore.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_lapis_ore.png b/public/textures/minecraft/deepslate_lapis_ore.png deleted file mode 100644 index 96e7e87e..00000000 Binary files a/public/textures/minecraft/deepslate_lapis_ore.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_redstone_ore.png b/public/textures/minecraft/deepslate_redstone_ore.png deleted file mode 100644 index b030d950..00000000 Binary files a/public/textures/minecraft/deepslate_redstone_ore.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_tile_slab.png b/public/textures/minecraft/deepslate_tile_slab.png deleted file mode 100644 index 07126477..00000000 Binary files a/public/textures/minecraft/deepslate_tile_slab.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_tile_stairs.png b/public/textures/minecraft/deepslate_tile_stairs.png deleted file mode 100644 index 7a54b0a7..00000000 Binary files a/public/textures/minecraft/deepslate_tile_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_tile_wall.png b/public/textures/minecraft/deepslate_tile_wall.png deleted file mode 100644 index b526489b..00000000 Binary files a/public/textures/minecraft/deepslate_tile_wall.png and /dev/null differ diff --git a/public/textures/minecraft/deepslate_tiles.png b/public/textures/minecraft/deepslate_tiles.png deleted file mode 100644 index c14506f6..00000000 Binary files a/public/textures/minecraft/deepslate_tiles.png and /dev/null differ diff --git a/public/textures/minecraft/detector_rail.png b/public/textures/minecraft/detector_rail.png deleted file mode 100644 index 101071bb..00000000 Binary files a/public/textures/minecraft/detector_rail.png and /dev/null differ diff --git a/public/textures/minecraft/diamond.png b/public/textures/minecraft/diamond.png deleted file mode 100644 index 4ea6fa98..00000000 Binary files a/public/textures/minecraft/diamond.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_axe.png b/public/textures/minecraft/diamond_axe.png deleted file mode 100644 index 67fd174a..00000000 Binary files a/public/textures/minecraft/diamond_axe.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_block.png b/public/textures/minecraft/diamond_block.png deleted file mode 100644 index 43984c8e..00000000 Binary files a/public/textures/minecraft/diamond_block.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_boots.png b/public/textures/minecraft/diamond_boots.png deleted file mode 100644 index 16439e68..00000000 Binary files a/public/textures/minecraft/diamond_boots.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_chestplate.png b/public/textures/minecraft/diamond_chestplate.png deleted file mode 100644 index e9745d6b..00000000 Binary files a/public/textures/minecraft/diamond_chestplate.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_helmet.png b/public/textures/minecraft/diamond_helmet.png deleted file mode 100644 index 742ad00d..00000000 Binary files a/public/textures/minecraft/diamond_helmet.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_hoe.png b/public/textures/minecraft/diamond_hoe.png deleted file mode 100644 index cbc63ae6..00000000 Binary files a/public/textures/minecraft/diamond_hoe.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_horse_armor.png b/public/textures/minecraft/diamond_horse_armor.png deleted file mode 100644 index a5a8ced4..00000000 Binary files a/public/textures/minecraft/diamond_horse_armor.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_leggings.png b/public/textures/minecraft/diamond_leggings.png deleted file mode 100644 index 1a720158..00000000 Binary files a/public/textures/minecraft/diamond_leggings.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_ore.png b/public/textures/minecraft/diamond_ore.png deleted file mode 100644 index 2bb281bf..00000000 Binary files a/public/textures/minecraft/diamond_ore.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_pickaxe.png b/public/textures/minecraft/diamond_pickaxe.png deleted file mode 100644 index 640d923d..00000000 Binary files a/public/textures/minecraft/diamond_pickaxe.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_shovel.png b/public/textures/minecraft/diamond_shovel.png deleted file mode 100644 index 8537b5cb..00000000 Binary files a/public/textures/minecraft/diamond_shovel.png and /dev/null differ diff --git a/public/textures/minecraft/diamond_sword.png b/public/textures/minecraft/diamond_sword.png deleted file mode 100644 index 86e05e7f..00000000 Binary files a/public/textures/minecraft/diamond_sword.png and /dev/null differ diff --git a/public/textures/minecraft/diorite.png b/public/textures/minecraft/diorite.png deleted file mode 100644 index bfc01738..00000000 Binary files a/public/textures/minecraft/diorite.png and /dev/null differ diff --git a/public/textures/minecraft/diorite_slab.png b/public/textures/minecraft/diorite_slab.png deleted file mode 100644 index 43f3b505..00000000 Binary files a/public/textures/minecraft/diorite_slab.png and /dev/null differ diff --git a/public/textures/minecraft/diorite_stairs.png b/public/textures/minecraft/diorite_stairs.png deleted file mode 100644 index 36b66ef5..00000000 Binary files a/public/textures/minecraft/diorite_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/diorite_wall.png b/public/textures/minecraft/diorite_wall.png deleted file mode 100644 index b4bc28d5..00000000 Binary files a/public/textures/minecraft/diorite_wall.png and /dev/null differ diff --git a/public/textures/minecraft/dirt.png b/public/textures/minecraft/dirt.png deleted file mode 100644 index 193a7e84..00000000 Binary files a/public/textures/minecraft/dirt.png and /dev/null differ diff --git a/public/textures/minecraft/dirt_path.png b/public/textures/minecraft/dirt_path.png deleted file mode 100644 index 789d62c0..00000000 Binary files a/public/textures/minecraft/dirt_path.png and /dev/null differ diff --git a/public/textures/minecraft/disc_fragment_5.png b/public/textures/minecraft/disc_fragment_5.png deleted file mode 100644 index fcc22801..00000000 Binary files a/public/textures/minecraft/disc_fragment_5.png and /dev/null differ diff --git a/public/textures/minecraft/dispenser.png b/public/textures/minecraft/dispenser.png deleted file mode 100644 index b397af93..00000000 Binary files a/public/textures/minecraft/dispenser.png and /dev/null differ diff --git a/public/textures/minecraft/dolphin_spawn_egg.png b/public/textures/minecraft/dolphin_spawn_egg.png deleted file mode 100644 index 080884eb..00000000 Binary files a/public/textures/minecraft/dolphin_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/donkey_spawn_egg.png b/public/textures/minecraft/donkey_spawn_egg.png deleted file mode 100644 index 6506fe19..00000000 Binary files a/public/textures/minecraft/donkey_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/dragon_breath.png b/public/textures/minecraft/dragon_breath.png deleted file mode 100644 index 6efe6a03..00000000 Binary files a/public/textures/minecraft/dragon_breath.png and /dev/null differ diff --git a/public/textures/minecraft/dragon_egg.png b/public/textures/minecraft/dragon_egg.png deleted file mode 100644 index 2d28c7d0..00000000 Binary files a/public/textures/minecraft/dragon_egg.png and /dev/null differ diff --git a/public/textures/minecraft/dragon_head.png b/public/textures/minecraft/dragon_head.png deleted file mode 100644 index 82416cce..00000000 Binary files a/public/textures/minecraft/dragon_head.png and /dev/null differ diff --git a/public/textures/minecraft/dried_kelp.png b/public/textures/minecraft/dried_kelp.png deleted file mode 100644 index d2ef4f51..00000000 Binary files a/public/textures/minecraft/dried_kelp.png and /dev/null differ diff --git a/public/textures/minecraft/dried_kelp_block.png b/public/textures/minecraft/dried_kelp_block.png deleted file mode 100644 index 676108c9..00000000 Binary files a/public/textures/minecraft/dried_kelp_block.png and /dev/null differ diff --git a/public/textures/minecraft/dripstone_block.png b/public/textures/minecraft/dripstone_block.png deleted file mode 100644 index 4a38e23f..00000000 Binary files a/public/textures/minecraft/dripstone_block.png and /dev/null differ diff --git a/public/textures/minecraft/dropper.png b/public/textures/minecraft/dropper.png deleted file mode 100644 index 4edd670d..00000000 Binary files a/public/textures/minecraft/dropper.png and /dev/null differ diff --git a/public/textures/minecraft/drowned_spawn_egg.png b/public/textures/minecraft/drowned_spawn_egg.png deleted file mode 100644 index 025f53dd..00000000 Binary files a/public/textures/minecraft/drowned_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/dune_armor_trim_smithing_template.png b/public/textures/minecraft/dune_armor_trim_smithing_template.png deleted file mode 100644 index a05e8c26..00000000 Binary files a/public/textures/minecraft/dune_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/echo_shard.png b/public/textures/minecraft/echo_shard.png deleted file mode 100644 index 87fc6a22..00000000 Binary files a/public/textures/minecraft/echo_shard.png and /dev/null differ diff --git a/public/textures/minecraft/egg.png b/public/textures/minecraft/egg.png deleted file mode 100644 index 77257b87..00000000 Binary files a/public/textures/minecraft/egg.png and /dev/null differ diff --git a/public/textures/minecraft/elder_guardian_spawn_egg.png b/public/textures/minecraft/elder_guardian_spawn_egg.png deleted file mode 100644 index 9093a0f6..00000000 Binary files a/public/textures/minecraft/elder_guardian_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/elytra.png b/public/textures/minecraft/elytra.png deleted file mode 100644 index 59dce9aa..00000000 Binary files a/public/textures/minecraft/elytra.png and /dev/null differ diff --git a/public/textures/minecraft/emerald.png b/public/textures/minecraft/emerald.png deleted file mode 100644 index 494fccb5..00000000 Binary files a/public/textures/minecraft/emerald.png and /dev/null differ diff --git a/public/textures/minecraft/emerald_block.png b/public/textures/minecraft/emerald_block.png deleted file mode 100644 index 05608785..00000000 Binary files a/public/textures/minecraft/emerald_block.png and /dev/null differ diff --git a/public/textures/minecraft/emerald_ore.png b/public/textures/minecraft/emerald_ore.png deleted file mode 100644 index 88e2fb49..00000000 Binary files a/public/textures/minecraft/emerald_ore.png and /dev/null differ diff --git a/public/textures/minecraft/enchanted_book.png b/public/textures/minecraft/enchanted_book.png deleted file mode 100644 index ac0f8cc9..00000000 Binary files a/public/textures/minecraft/enchanted_book.png and /dev/null differ diff --git a/public/textures/minecraft/enchanted_golden_apple.png b/public/textures/minecraft/enchanted_golden_apple.png deleted file mode 100644 index 556a6de4..00000000 Binary files a/public/textures/minecraft/enchanted_golden_apple.png and /dev/null differ diff --git a/public/textures/minecraft/enchanting_table.png b/public/textures/minecraft/enchanting_table.png deleted file mode 100644 index 0eaf75b8..00000000 Binary files a/public/textures/minecraft/enchanting_table.png and /dev/null differ diff --git a/public/textures/minecraft/end_crystal.png b/public/textures/minecraft/end_crystal.png deleted file mode 100644 index 91cdccf6..00000000 Binary files a/public/textures/minecraft/end_crystal.png and /dev/null differ diff --git a/public/textures/minecraft/end_portal_frame.png b/public/textures/minecraft/end_portal_frame.png deleted file mode 100644 index 8de4e7ec..00000000 Binary files a/public/textures/minecraft/end_portal_frame.png and /dev/null differ diff --git a/public/textures/minecraft/end_rod.png b/public/textures/minecraft/end_rod.png deleted file mode 100644 index 6b9dd107..00000000 Binary files a/public/textures/minecraft/end_rod.png and /dev/null differ diff --git a/public/textures/minecraft/end_stone.png b/public/textures/minecraft/end_stone.png deleted file mode 100644 index 42d700a8..00000000 Binary files a/public/textures/minecraft/end_stone.png and /dev/null differ diff --git a/public/textures/minecraft/end_stone_brick_slab.png b/public/textures/minecraft/end_stone_brick_slab.png deleted file mode 100644 index c171ca4e..00000000 Binary files a/public/textures/minecraft/end_stone_brick_slab.png and /dev/null differ diff --git a/public/textures/minecraft/end_stone_brick_stairs.png b/public/textures/minecraft/end_stone_brick_stairs.png deleted file mode 100644 index f9ab4882..00000000 Binary files a/public/textures/minecraft/end_stone_brick_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/end_stone_brick_wall.png b/public/textures/minecraft/end_stone_brick_wall.png deleted file mode 100644 index bae1f351..00000000 Binary files a/public/textures/minecraft/end_stone_brick_wall.png and /dev/null differ diff --git a/public/textures/minecraft/end_stone_bricks.png b/public/textures/minecraft/end_stone_bricks.png deleted file mode 100644 index 9f2bedac..00000000 Binary files a/public/textures/minecraft/end_stone_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/ender_chest.png b/public/textures/minecraft/ender_chest.png deleted file mode 100644 index 8e2aea27..00000000 Binary files a/public/textures/minecraft/ender_chest.png and /dev/null differ diff --git a/public/textures/minecraft/ender_eye.png b/public/textures/minecraft/ender_eye.png deleted file mode 100644 index 461e11a0..00000000 Binary files a/public/textures/minecraft/ender_eye.png and /dev/null differ diff --git a/public/textures/minecraft/ender_pearl.png b/public/textures/minecraft/ender_pearl.png deleted file mode 100644 index 198c482c..00000000 Binary files a/public/textures/minecraft/ender_pearl.png and /dev/null differ diff --git a/public/textures/minecraft/enderman_spawn_egg.png b/public/textures/minecraft/enderman_spawn_egg.png deleted file mode 100644 index 1db4e1c3..00000000 Binary files a/public/textures/minecraft/enderman_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/endermite_spawn_egg.png b/public/textures/minecraft/endermite_spawn_egg.png deleted file mode 100644 index cb1fe166..00000000 Binary files a/public/textures/minecraft/endermite_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/evoker_spawn_egg.png b/public/textures/minecraft/evoker_spawn_egg.png deleted file mode 100644 index c8b0bb18..00000000 Binary files a/public/textures/minecraft/evoker_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/experience_bottle.png b/public/textures/minecraft/experience_bottle.png deleted file mode 100644 index 05dcb94d..00000000 Binary files a/public/textures/minecraft/experience_bottle.png and /dev/null differ diff --git a/public/textures/minecraft/explorer_pottery_sherd.png b/public/textures/minecraft/explorer_pottery_sherd.png deleted file mode 100644 index c70238c6..00000000 Binary files a/public/textures/minecraft/explorer_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/exposed_chiseled_copper.png b/public/textures/minecraft/exposed_chiseled_copper.png deleted file mode 100644 index 7fb17de7..00000000 Binary files a/public/textures/minecraft/exposed_chiseled_copper.png and /dev/null differ diff --git a/public/textures/minecraft/exposed_copper.png b/public/textures/minecraft/exposed_copper.png deleted file mode 100644 index c9355740..00000000 Binary files a/public/textures/minecraft/exposed_copper.png and /dev/null differ diff --git a/public/textures/minecraft/exposed_copper_bulb.png b/public/textures/minecraft/exposed_copper_bulb.png deleted file mode 100644 index 677e2f23..00000000 Binary files a/public/textures/minecraft/exposed_copper_bulb.png and /dev/null differ diff --git a/public/textures/minecraft/exposed_copper_door.png b/public/textures/minecraft/exposed_copper_door.png deleted file mode 100644 index 5decc8ea..00000000 Binary files a/public/textures/minecraft/exposed_copper_door.png and /dev/null differ diff --git a/public/textures/minecraft/exposed_copper_grate.png b/public/textures/minecraft/exposed_copper_grate.png deleted file mode 100644 index 16eb3c84..00000000 Binary files a/public/textures/minecraft/exposed_copper_grate.png and /dev/null differ diff --git a/public/textures/minecraft/exposed_copper_trapdoor.png b/public/textures/minecraft/exposed_copper_trapdoor.png deleted file mode 100644 index 578e6c5d..00000000 Binary files a/public/textures/minecraft/exposed_copper_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/exposed_cut_copper.png b/public/textures/minecraft/exposed_cut_copper.png deleted file mode 100644 index 1ab962f0..00000000 Binary files a/public/textures/minecraft/exposed_cut_copper.png and /dev/null differ diff --git a/public/textures/minecraft/exposed_cut_copper_slab.png b/public/textures/minecraft/exposed_cut_copper_slab.png deleted file mode 100644 index f2775208..00000000 Binary files a/public/textures/minecraft/exposed_cut_copper_slab.png and /dev/null differ diff --git a/public/textures/minecraft/exposed_cut_copper_stairs.png b/public/textures/minecraft/exposed_cut_copper_stairs.png deleted file mode 100644 index d93e123f..00000000 Binary files a/public/textures/minecraft/exposed_cut_copper_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/eye_armor_trim_smithing_template.png b/public/textures/minecraft/eye_armor_trim_smithing_template.png deleted file mode 100644 index c45b623a..00000000 Binary files a/public/textures/minecraft/eye_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/farmland.png b/public/textures/minecraft/farmland.png deleted file mode 100644 index 4f635785..00000000 Binary files a/public/textures/minecraft/farmland.png and /dev/null differ diff --git a/public/textures/minecraft/feather.png b/public/textures/minecraft/feather.png deleted file mode 100644 index b2d10383..00000000 Binary files a/public/textures/minecraft/feather.png and /dev/null differ diff --git a/public/textures/minecraft/fermented_spider_eye.png b/public/textures/minecraft/fermented_spider_eye.png deleted file mode 100644 index c1fffd87..00000000 Binary files a/public/textures/minecraft/fermented_spider_eye.png and /dev/null differ diff --git a/public/textures/minecraft/fern.png b/public/textures/minecraft/fern.png deleted file mode 100644 index a7cd5171..00000000 Binary files a/public/textures/minecraft/fern.png and /dev/null differ diff --git a/public/textures/minecraft/fire_charge.png b/public/textures/minecraft/fire_charge.png deleted file mode 100644 index 1938fdee..00000000 Binary files a/public/textures/minecraft/fire_charge.png and /dev/null differ diff --git a/public/textures/minecraft/fire_coral.png b/public/textures/minecraft/fire_coral.png deleted file mode 100644 index 3f08ce69..00000000 Binary files a/public/textures/minecraft/fire_coral.png and /dev/null differ diff --git a/public/textures/minecraft/fire_coral_block.png b/public/textures/minecraft/fire_coral_block.png deleted file mode 100644 index c70abdb2..00000000 Binary files a/public/textures/minecraft/fire_coral_block.png and /dev/null differ diff --git a/public/textures/minecraft/fire_coral_fan.png b/public/textures/minecraft/fire_coral_fan.png deleted file mode 100644 index 883838d2..00000000 Binary files a/public/textures/minecraft/fire_coral_fan.png and /dev/null differ diff --git a/public/textures/minecraft/firework_rocket.png b/public/textures/minecraft/firework_rocket.png deleted file mode 100644 index fda2a6e5..00000000 Binary files a/public/textures/minecraft/firework_rocket.png and /dev/null differ diff --git a/public/textures/minecraft/firework_rocket__{'minecraft__fireworks'__{flight_duration__2b}}.png b/public/textures/minecraft/firework_rocket__{'minecraft__fireworks'__{flight_duration__2b}}.png deleted file mode 100644 index fda2a6e5..00000000 Binary files a/public/textures/minecraft/firework_rocket__{'minecraft__fireworks'__{flight_duration__2b}}.png and /dev/null differ diff --git a/public/textures/minecraft/firework_rocket__{'minecraft__fireworks'__{flight_duration__3b}}.png b/public/textures/minecraft/firework_rocket__{'minecraft__fireworks'__{flight_duration__3b}}.png deleted file mode 100644 index fda2a6e5..00000000 Binary files a/public/textures/minecraft/firework_rocket__{'minecraft__fireworks'__{flight_duration__3b}}.png and /dev/null differ diff --git a/public/textures/minecraft/firework_star.png b/public/textures/minecraft/firework_star.png deleted file mode 100644 index c23be06f..00000000 Binary files a/public/textures/minecraft/firework_star.png and /dev/null differ diff --git a/public/textures/minecraft/fishing_rod.png b/public/textures/minecraft/fishing_rod.png deleted file mode 100644 index 445db188..00000000 Binary files a/public/textures/minecraft/fishing_rod.png and /dev/null differ diff --git a/public/textures/minecraft/fletching_table.png b/public/textures/minecraft/fletching_table.png deleted file mode 100644 index d25252b5..00000000 Binary files a/public/textures/minecraft/fletching_table.png and /dev/null differ diff --git a/public/textures/minecraft/flint.png b/public/textures/minecraft/flint.png deleted file mode 100644 index 81fe9a25..00000000 Binary files a/public/textures/minecraft/flint.png and /dev/null differ diff --git a/public/textures/minecraft/flint_and_steel.png b/public/textures/minecraft/flint_and_steel.png deleted file mode 100644 index 36b5f56a..00000000 Binary files a/public/textures/minecraft/flint_and_steel.png and /dev/null differ diff --git a/public/textures/minecraft/flow_armor_trim_smithing_template.png b/public/textures/minecraft/flow_armor_trim_smithing_template.png deleted file mode 100644 index dfccdf0a..00000000 Binary files a/public/textures/minecraft/flow_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/flow_banner_pattern.png b/public/textures/minecraft/flow_banner_pattern.png deleted file mode 100644 index 43fad4e1..00000000 Binary files a/public/textures/minecraft/flow_banner_pattern.png and /dev/null differ diff --git a/public/textures/minecraft/flow_pottery_sherd.png b/public/textures/minecraft/flow_pottery_sherd.png deleted file mode 100644 index eeb49be8..00000000 Binary files a/public/textures/minecraft/flow_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/flower_banner_pattern.png b/public/textures/minecraft/flower_banner_pattern.png deleted file mode 100644 index 43fad4e1..00000000 Binary files a/public/textures/minecraft/flower_banner_pattern.png and /dev/null differ diff --git a/public/textures/minecraft/flower_pot.png b/public/textures/minecraft/flower_pot.png deleted file mode 100644 index 1a382e8d..00000000 Binary files a/public/textures/minecraft/flower_pot.png and /dev/null differ diff --git a/public/textures/minecraft/flowering_azalea.png b/public/textures/minecraft/flowering_azalea.png deleted file mode 100644 index a4f60c0c..00000000 Binary files a/public/textures/minecraft/flowering_azalea.png and /dev/null differ diff --git a/public/textures/minecraft/flowering_azalea_leaves.png b/public/textures/minecraft/flowering_azalea_leaves.png deleted file mode 100644 index b6d487b7..00000000 Binary files a/public/textures/minecraft/flowering_azalea_leaves.png and /dev/null differ diff --git a/public/textures/minecraft/fox_spawn_egg.png b/public/textures/minecraft/fox_spawn_egg.png deleted file mode 100644 index 3a8dcd9b..00000000 Binary files a/public/textures/minecraft/fox_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/friend_pottery_sherd.png b/public/textures/minecraft/friend_pottery_sherd.png deleted file mode 100644 index 9bf47726..00000000 Binary files a/public/textures/minecraft/friend_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/frog_spawn_egg.png b/public/textures/minecraft/frog_spawn_egg.png deleted file mode 100644 index e0ee851e..00000000 Binary files a/public/textures/minecraft/frog_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/frogspawn.png b/public/textures/minecraft/frogspawn.png deleted file mode 100644 index 17bacb70..00000000 Binary files a/public/textures/minecraft/frogspawn.png and /dev/null differ diff --git a/public/textures/minecraft/furnace.png b/public/textures/minecraft/furnace.png deleted file mode 100644 index b394269f..00000000 Binary files a/public/textures/minecraft/furnace.png and /dev/null differ diff --git a/public/textures/minecraft/furnace_minecart.png b/public/textures/minecraft/furnace_minecart.png deleted file mode 100644 index 29509c22..00000000 Binary files a/public/textures/minecraft/furnace_minecart.png and /dev/null differ diff --git a/public/textures/minecraft/ghast_spawn_egg.png b/public/textures/minecraft/ghast_spawn_egg.png deleted file mode 100644 index f8f64d84..00000000 Binary files a/public/textures/minecraft/ghast_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/ghast_tear.png b/public/textures/minecraft/ghast_tear.png deleted file mode 100644 index 63c08d08..00000000 Binary files a/public/textures/minecraft/ghast_tear.png and /dev/null differ diff --git a/public/textures/minecraft/gilded_blackstone.png b/public/textures/minecraft/gilded_blackstone.png deleted file mode 100644 index 7b5aec8f..00000000 Binary files a/public/textures/minecraft/gilded_blackstone.png and /dev/null differ diff --git a/public/textures/minecraft/glass.png b/public/textures/minecraft/glass.png deleted file mode 100644 index 17772e65..00000000 Binary files a/public/textures/minecraft/glass.png and /dev/null differ diff --git a/public/textures/minecraft/glass_bottle.png b/public/textures/minecraft/glass_bottle.png deleted file mode 100644 index 367e3b70..00000000 Binary files a/public/textures/minecraft/glass_bottle.png and /dev/null differ diff --git a/public/textures/minecraft/glass_pane.png b/public/textures/minecraft/glass_pane.png deleted file mode 100644 index c191de2c..00000000 Binary files a/public/textures/minecraft/glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/glistering_melon_slice.png b/public/textures/minecraft/glistering_melon_slice.png deleted file mode 100644 index c1937672..00000000 Binary files a/public/textures/minecraft/glistering_melon_slice.png and /dev/null differ diff --git a/public/textures/minecraft/globe_banner_pattern.png b/public/textures/minecraft/globe_banner_pattern.png deleted file mode 100644 index 43fad4e1..00000000 Binary files a/public/textures/minecraft/globe_banner_pattern.png and /dev/null differ diff --git a/public/textures/minecraft/glow_berries.png b/public/textures/minecraft/glow_berries.png deleted file mode 100644 index 8db6436b..00000000 Binary files a/public/textures/minecraft/glow_berries.png and /dev/null differ diff --git a/public/textures/minecraft/glow_ink_sac.png b/public/textures/minecraft/glow_ink_sac.png deleted file mode 100644 index d5ca89b4..00000000 Binary files a/public/textures/minecraft/glow_ink_sac.png and /dev/null differ diff --git a/public/textures/minecraft/glow_item_frame.png b/public/textures/minecraft/glow_item_frame.png deleted file mode 100644 index d1bb7233..00000000 Binary files a/public/textures/minecraft/glow_item_frame.png and /dev/null differ diff --git a/public/textures/minecraft/glow_lichen.png b/public/textures/minecraft/glow_lichen.png deleted file mode 100644 index 220e3476..00000000 Binary files a/public/textures/minecraft/glow_lichen.png and /dev/null differ diff --git a/public/textures/minecraft/glow_squid_spawn_egg.png b/public/textures/minecraft/glow_squid_spawn_egg.png deleted file mode 100644 index d523eace..00000000 Binary files a/public/textures/minecraft/glow_squid_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/glowstone.png b/public/textures/minecraft/glowstone.png deleted file mode 100644 index 618d918a..00000000 Binary files a/public/textures/minecraft/glowstone.png and /dev/null differ diff --git a/public/textures/minecraft/glowstone_dust.png b/public/textures/minecraft/glowstone_dust.png deleted file mode 100644 index 7164d81a..00000000 Binary files a/public/textures/minecraft/glowstone_dust.png and /dev/null differ diff --git a/public/textures/minecraft/goat_horn.png b/public/textures/minecraft/goat_horn.png deleted file mode 100644 index ae9f76e4..00000000 Binary files a/public/textures/minecraft/goat_horn.png and /dev/null differ diff --git a/public/textures/minecraft/goat_spawn_egg.png b/public/textures/minecraft/goat_spawn_egg.png deleted file mode 100644 index a9b58f93..00000000 Binary files a/public/textures/minecraft/goat_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/gold_block.png b/public/textures/minecraft/gold_block.png deleted file mode 100644 index 136cc266..00000000 Binary files a/public/textures/minecraft/gold_block.png and /dev/null differ diff --git a/public/textures/minecraft/gold_ingot.png b/public/textures/minecraft/gold_ingot.png deleted file mode 100644 index 07f64c8a..00000000 Binary files a/public/textures/minecraft/gold_ingot.png and /dev/null differ diff --git a/public/textures/minecraft/gold_nugget.png b/public/textures/minecraft/gold_nugget.png deleted file mode 100644 index 2811dc13..00000000 Binary files a/public/textures/minecraft/gold_nugget.png and /dev/null differ diff --git a/public/textures/minecraft/gold_ore.png b/public/textures/minecraft/gold_ore.png deleted file mode 100644 index 687c527b..00000000 Binary files a/public/textures/minecraft/gold_ore.png and /dev/null differ diff --git a/public/textures/minecraft/golden_apple.png b/public/textures/minecraft/golden_apple.png deleted file mode 100644 index 805b38b5..00000000 Binary files a/public/textures/minecraft/golden_apple.png and /dev/null differ diff --git a/public/textures/minecraft/golden_axe.png b/public/textures/minecraft/golden_axe.png deleted file mode 100644 index 2e263e47..00000000 Binary files a/public/textures/minecraft/golden_axe.png and /dev/null differ diff --git a/public/textures/minecraft/golden_boots.png b/public/textures/minecraft/golden_boots.png deleted file mode 100644 index 8fd17590..00000000 Binary files a/public/textures/minecraft/golden_boots.png and /dev/null differ diff --git a/public/textures/minecraft/golden_carrot.png b/public/textures/minecraft/golden_carrot.png deleted file mode 100644 index e5676292..00000000 Binary files a/public/textures/minecraft/golden_carrot.png and /dev/null differ diff --git a/public/textures/minecraft/golden_chestplate.png b/public/textures/minecraft/golden_chestplate.png deleted file mode 100644 index 6e043747..00000000 Binary files a/public/textures/minecraft/golden_chestplate.png and /dev/null differ diff --git a/public/textures/minecraft/golden_helmet.png b/public/textures/minecraft/golden_helmet.png deleted file mode 100644 index 17ee032e..00000000 Binary files a/public/textures/minecraft/golden_helmet.png and /dev/null differ diff --git a/public/textures/minecraft/golden_hoe.png b/public/textures/minecraft/golden_hoe.png deleted file mode 100644 index b917713d..00000000 Binary files a/public/textures/minecraft/golden_hoe.png and /dev/null differ diff --git a/public/textures/minecraft/golden_horse_armor.png b/public/textures/minecraft/golden_horse_armor.png deleted file mode 100644 index 24e8a7db..00000000 Binary files a/public/textures/minecraft/golden_horse_armor.png and /dev/null differ diff --git a/public/textures/minecraft/golden_leggings.png b/public/textures/minecraft/golden_leggings.png deleted file mode 100644 index 2d3cb421..00000000 Binary files a/public/textures/minecraft/golden_leggings.png and /dev/null differ diff --git a/public/textures/minecraft/golden_pickaxe.png b/public/textures/minecraft/golden_pickaxe.png deleted file mode 100644 index d50da508..00000000 Binary files a/public/textures/minecraft/golden_pickaxe.png and /dev/null differ diff --git a/public/textures/minecraft/golden_shovel.png b/public/textures/minecraft/golden_shovel.png deleted file mode 100644 index fe370a98..00000000 Binary files a/public/textures/minecraft/golden_shovel.png and /dev/null differ diff --git a/public/textures/minecraft/golden_sword.png b/public/textures/minecraft/golden_sword.png deleted file mode 100644 index 6ab819c8..00000000 Binary files a/public/textures/minecraft/golden_sword.png and /dev/null differ diff --git a/public/textures/minecraft/granite.png b/public/textures/minecraft/granite.png deleted file mode 100644 index 6fd8f666..00000000 Binary files a/public/textures/minecraft/granite.png and /dev/null differ diff --git a/public/textures/minecraft/granite_slab.png b/public/textures/minecraft/granite_slab.png deleted file mode 100644 index 82d9300c..00000000 Binary files a/public/textures/minecraft/granite_slab.png and /dev/null differ diff --git a/public/textures/minecraft/granite_stairs.png b/public/textures/minecraft/granite_stairs.png deleted file mode 100644 index e6c85b52..00000000 Binary files a/public/textures/minecraft/granite_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/granite_wall.png b/public/textures/minecraft/granite_wall.png deleted file mode 100644 index 92ff922b..00000000 Binary files a/public/textures/minecraft/granite_wall.png and /dev/null differ diff --git a/public/textures/minecraft/grass_block.png b/public/textures/minecraft/grass_block.png deleted file mode 100644 index 683686a1..00000000 Binary files a/public/textures/minecraft/grass_block.png and /dev/null differ diff --git a/public/textures/minecraft/gravel.png b/public/textures/minecraft/gravel.png deleted file mode 100644 index cfa3e796..00000000 Binary files a/public/textures/minecraft/gravel.png and /dev/null differ diff --git a/public/textures/minecraft/gray_banner.png b/public/textures/minecraft/gray_banner.png deleted file mode 100644 index 421bb8d4..00000000 Binary files a/public/textures/minecraft/gray_banner.png and /dev/null differ diff --git a/public/textures/minecraft/gray_bed.png b/public/textures/minecraft/gray_bed.png deleted file mode 100644 index 9f3c6368..00000000 Binary files a/public/textures/minecraft/gray_bed.png and /dev/null differ diff --git a/public/textures/minecraft/gray_candle.png b/public/textures/minecraft/gray_candle.png deleted file mode 100644 index 9f86fc31..00000000 Binary files a/public/textures/minecraft/gray_candle.png and /dev/null differ diff --git a/public/textures/minecraft/gray_carpet.png b/public/textures/minecraft/gray_carpet.png deleted file mode 100644 index e2b9c64f..00000000 Binary files a/public/textures/minecraft/gray_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/gray_concrete.png b/public/textures/minecraft/gray_concrete.png deleted file mode 100644 index d26ba860..00000000 Binary files a/public/textures/minecraft/gray_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/gray_concrete_powder.png b/public/textures/minecraft/gray_concrete_powder.png deleted file mode 100644 index 3f94f811..00000000 Binary files a/public/textures/minecraft/gray_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/gray_dye.png b/public/textures/minecraft/gray_dye.png deleted file mode 100644 index 0b64eebd..00000000 Binary files a/public/textures/minecraft/gray_dye.png and /dev/null differ diff --git a/public/textures/minecraft/gray_glazed_terracotta.png b/public/textures/minecraft/gray_glazed_terracotta.png deleted file mode 100644 index 32b1f267..00000000 Binary files a/public/textures/minecraft/gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/gray_shulker_box.png b/public/textures/minecraft/gray_shulker_box.png deleted file mode 100644 index 3142d585..00000000 Binary files a/public/textures/minecraft/gray_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/gray_stained_glass.png b/public/textures/minecraft/gray_stained_glass.png deleted file mode 100644 index 7fa8fd33..00000000 Binary files a/public/textures/minecraft/gray_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/gray_stained_glass_pane.png b/public/textures/minecraft/gray_stained_glass_pane.png deleted file mode 100644 index 1b5c5011..00000000 Binary files a/public/textures/minecraft/gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/gray_terracotta.png b/public/textures/minecraft/gray_terracotta.png deleted file mode 100644 index a437336c..00000000 Binary files a/public/textures/minecraft/gray_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/gray_wool.png b/public/textures/minecraft/gray_wool.png deleted file mode 100644 index f0458f1b..00000000 Binary files a/public/textures/minecraft/gray_wool.png and /dev/null differ diff --git a/public/textures/minecraft/green_banner.png b/public/textures/minecraft/green_banner.png deleted file mode 100644 index f5d8ad91..00000000 Binary files a/public/textures/minecraft/green_banner.png and /dev/null differ diff --git a/public/textures/minecraft/green_bed.png b/public/textures/minecraft/green_bed.png deleted file mode 100644 index 6c470f7b..00000000 Binary files a/public/textures/minecraft/green_bed.png and /dev/null differ diff --git a/public/textures/minecraft/green_candle.png b/public/textures/minecraft/green_candle.png deleted file mode 100644 index 319b52a7..00000000 Binary files a/public/textures/minecraft/green_candle.png and /dev/null differ diff --git a/public/textures/minecraft/green_carpet.png b/public/textures/minecraft/green_carpet.png deleted file mode 100644 index 6eac11a6..00000000 Binary files a/public/textures/minecraft/green_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/green_concrete.png b/public/textures/minecraft/green_concrete.png deleted file mode 100644 index 9dec9cf2..00000000 Binary files a/public/textures/minecraft/green_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/green_concrete_powder.png b/public/textures/minecraft/green_concrete_powder.png deleted file mode 100644 index 5f1945bc..00000000 Binary files a/public/textures/minecraft/green_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/green_dye.png b/public/textures/minecraft/green_dye.png deleted file mode 100644 index cc573ce6..00000000 Binary files a/public/textures/minecraft/green_dye.png and /dev/null differ diff --git a/public/textures/minecraft/green_glazed_terracotta.png b/public/textures/minecraft/green_glazed_terracotta.png deleted file mode 100644 index 60a024bd..00000000 Binary files a/public/textures/minecraft/green_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/green_shulker_box.png b/public/textures/minecraft/green_shulker_box.png deleted file mode 100644 index 71483264..00000000 Binary files a/public/textures/minecraft/green_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/green_stained_glass.png b/public/textures/minecraft/green_stained_glass.png deleted file mode 100644 index c3360788..00000000 Binary files a/public/textures/minecraft/green_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/green_stained_glass_pane.png b/public/textures/minecraft/green_stained_glass_pane.png deleted file mode 100644 index e5322e49..00000000 Binary files a/public/textures/minecraft/green_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/green_terracotta.png b/public/textures/minecraft/green_terracotta.png deleted file mode 100644 index a937035d..00000000 Binary files a/public/textures/minecraft/green_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/green_wool.png b/public/textures/minecraft/green_wool.png deleted file mode 100644 index a3f99962..00000000 Binary files a/public/textures/minecraft/green_wool.png and /dev/null differ diff --git a/public/textures/minecraft/grindstone.png b/public/textures/minecraft/grindstone.png deleted file mode 100644 index e14de134..00000000 Binary files a/public/textures/minecraft/grindstone.png and /dev/null differ diff --git a/public/textures/minecraft/guardian_spawn_egg.png b/public/textures/minecraft/guardian_spawn_egg.png deleted file mode 100644 index b2020a57..00000000 Binary files a/public/textures/minecraft/guardian_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/gunpowder.png b/public/textures/minecraft/gunpowder.png deleted file mode 100644 index 516d5d20..00000000 Binary files a/public/textures/minecraft/gunpowder.png and /dev/null differ diff --git a/public/textures/minecraft/guster_banner_pattern.png b/public/textures/minecraft/guster_banner_pattern.png deleted file mode 100644 index 43fad4e1..00000000 Binary files a/public/textures/minecraft/guster_banner_pattern.png and /dev/null differ diff --git a/public/textures/minecraft/guster_pottery_sherd.png b/public/textures/minecraft/guster_pottery_sherd.png deleted file mode 100644 index 6ae1b6be..00000000 Binary files a/public/textures/minecraft/guster_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/hanging_roots.png b/public/textures/minecraft/hanging_roots.png deleted file mode 100644 index 6430124a..00000000 Binary files a/public/textures/minecraft/hanging_roots.png and /dev/null differ diff --git a/public/textures/minecraft/hay_block.png b/public/textures/minecraft/hay_block.png deleted file mode 100644 index 7040b988..00000000 Binary files a/public/textures/minecraft/hay_block.png and /dev/null differ diff --git a/public/textures/minecraft/heart_of_the_sea.png b/public/textures/minecraft/heart_of_the_sea.png deleted file mode 100644 index 7ac01b7f..00000000 Binary files a/public/textures/minecraft/heart_of_the_sea.png and /dev/null differ diff --git a/public/textures/minecraft/heart_pottery_sherd.png b/public/textures/minecraft/heart_pottery_sherd.png deleted file mode 100644 index 1eef19cc..00000000 Binary files a/public/textures/minecraft/heart_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/heartbreak_pottery_sherd.png b/public/textures/minecraft/heartbreak_pottery_sherd.png deleted file mode 100644 index 130a5dd6..00000000 Binary files a/public/textures/minecraft/heartbreak_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/heavy_core.png b/public/textures/minecraft/heavy_core.png deleted file mode 100644 index 14ff48be..00000000 Binary files a/public/textures/minecraft/heavy_core.png and /dev/null differ diff --git a/public/textures/minecraft/heavy_weighted_pressure_plate.png b/public/textures/minecraft/heavy_weighted_pressure_plate.png deleted file mode 100644 index 68052cfc..00000000 Binary files a/public/textures/minecraft/heavy_weighted_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/hoglin_spawn_egg.png b/public/textures/minecraft/hoglin_spawn_egg.png deleted file mode 100644 index 55306440..00000000 Binary files a/public/textures/minecraft/hoglin_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/honey_block.png b/public/textures/minecraft/honey_block.png deleted file mode 100644 index d7c682b9..00000000 Binary files a/public/textures/minecraft/honey_block.png and /dev/null differ diff --git a/public/textures/minecraft/honey_bottle.png b/public/textures/minecraft/honey_bottle.png deleted file mode 100644 index 85b289f7..00000000 Binary files a/public/textures/minecraft/honey_bottle.png and /dev/null differ diff --git a/public/textures/minecraft/honeycomb.png b/public/textures/minecraft/honeycomb.png deleted file mode 100644 index 2567fc2c..00000000 Binary files a/public/textures/minecraft/honeycomb.png and /dev/null differ diff --git a/public/textures/minecraft/honeycomb_block.png b/public/textures/minecraft/honeycomb_block.png deleted file mode 100644 index 9bcf345b..00000000 Binary files a/public/textures/minecraft/honeycomb_block.png and /dev/null differ diff --git a/public/textures/minecraft/hopper.png b/public/textures/minecraft/hopper.png deleted file mode 100644 index 1d0777ae..00000000 Binary files a/public/textures/minecraft/hopper.png and /dev/null differ diff --git a/public/textures/minecraft/hopper_minecart.png b/public/textures/minecraft/hopper_minecart.png deleted file mode 100644 index b4b530ad..00000000 Binary files a/public/textures/minecraft/hopper_minecart.png and /dev/null differ diff --git a/public/textures/minecraft/horn_coral.png b/public/textures/minecraft/horn_coral.png deleted file mode 100644 index 6fc9fa9a..00000000 Binary files a/public/textures/minecraft/horn_coral.png and /dev/null differ diff --git a/public/textures/minecraft/horn_coral_block.png b/public/textures/minecraft/horn_coral_block.png deleted file mode 100644 index e91b756f..00000000 Binary files a/public/textures/minecraft/horn_coral_block.png and /dev/null differ diff --git a/public/textures/minecraft/horn_coral_fan.png b/public/textures/minecraft/horn_coral_fan.png deleted file mode 100644 index 130a5e16..00000000 Binary files a/public/textures/minecraft/horn_coral_fan.png and /dev/null differ diff --git a/public/textures/minecraft/horse_spawn_egg.png b/public/textures/minecraft/horse_spawn_egg.png deleted file mode 100644 index ad915838..00000000 Binary files a/public/textures/minecraft/horse_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/host_armor_trim_smithing_template.png b/public/textures/minecraft/host_armor_trim_smithing_template.png deleted file mode 100644 index fa2a3a5e..00000000 Binary files a/public/textures/minecraft/host_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/howl_pottery_sherd.png b/public/textures/minecraft/howl_pottery_sherd.png deleted file mode 100644 index cb30a62d..00000000 Binary files a/public/textures/minecraft/howl_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/husk_spawn_egg.png b/public/textures/minecraft/husk_spawn_egg.png deleted file mode 100644 index 33a8b038..00000000 Binary files a/public/textures/minecraft/husk_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/ice.png b/public/textures/minecraft/ice.png deleted file mode 100644 index 07832062..00000000 Binary files a/public/textures/minecraft/ice.png and /dev/null differ diff --git a/public/textures/minecraft/infested_chiseled_stone_bricks.png b/public/textures/minecraft/infested_chiseled_stone_bricks.png deleted file mode 100644 index 508c668f..00000000 Binary files a/public/textures/minecraft/infested_chiseled_stone_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/infested_cobblestone.png b/public/textures/minecraft/infested_cobblestone.png deleted file mode 100644 index 876e6448..00000000 Binary files a/public/textures/minecraft/infested_cobblestone.png and /dev/null differ diff --git a/public/textures/minecraft/infested_cracked_stone_bricks.png b/public/textures/minecraft/infested_cracked_stone_bricks.png deleted file mode 100644 index 7c065021..00000000 Binary files a/public/textures/minecraft/infested_cracked_stone_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/infested_deepslate.png b/public/textures/minecraft/infested_deepslate.png deleted file mode 100644 index 4f97967b..00000000 Binary files a/public/textures/minecraft/infested_deepslate.png and /dev/null differ diff --git a/public/textures/minecraft/infested_mossy_stone_bricks.png b/public/textures/minecraft/infested_mossy_stone_bricks.png deleted file mode 100644 index 3ef55245..00000000 Binary files a/public/textures/minecraft/infested_mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/infested_stone.png b/public/textures/minecraft/infested_stone.png deleted file mode 100644 index f2d5f8c3..00000000 Binary files a/public/textures/minecraft/infested_stone.png and /dev/null differ diff --git a/public/textures/minecraft/infested_stone_bricks.png b/public/textures/minecraft/infested_stone_bricks.png deleted file mode 100644 index 46001e2b..00000000 Binary files a/public/textures/minecraft/infested_stone_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/ink_sac.png b/public/textures/minecraft/ink_sac.png deleted file mode 100644 index f5ef3eb3..00000000 Binary files a/public/textures/minecraft/ink_sac.png and /dev/null differ diff --git a/public/textures/minecraft/iron_axe.png b/public/textures/minecraft/iron_axe.png deleted file mode 100644 index 73560e19..00000000 Binary files a/public/textures/minecraft/iron_axe.png and /dev/null differ diff --git a/public/textures/minecraft/iron_bars.png b/public/textures/minecraft/iron_bars.png deleted file mode 100644 index 12a5c8b1..00000000 Binary files a/public/textures/minecraft/iron_bars.png and /dev/null differ diff --git a/public/textures/minecraft/iron_block.png b/public/textures/minecraft/iron_block.png deleted file mode 100644 index 261fce56..00000000 Binary files a/public/textures/minecraft/iron_block.png and /dev/null differ diff --git a/public/textures/minecraft/iron_boots.png b/public/textures/minecraft/iron_boots.png deleted file mode 100644 index 2806e995..00000000 Binary files a/public/textures/minecraft/iron_boots.png and /dev/null differ diff --git a/public/textures/minecraft/iron_chestplate.png b/public/textures/minecraft/iron_chestplate.png deleted file mode 100644 index 840cf3e6..00000000 Binary files a/public/textures/minecraft/iron_chestplate.png and /dev/null differ diff --git a/public/textures/minecraft/iron_door.png b/public/textures/minecraft/iron_door.png deleted file mode 100644 index 6e793467..00000000 Binary files a/public/textures/minecraft/iron_door.png and /dev/null differ diff --git a/public/textures/minecraft/iron_golem_spawn_egg.png b/public/textures/minecraft/iron_golem_spawn_egg.png deleted file mode 100644 index 231009d2..00000000 Binary files a/public/textures/minecraft/iron_golem_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/iron_helmet.png b/public/textures/minecraft/iron_helmet.png deleted file mode 100644 index 53e6563f..00000000 Binary files a/public/textures/minecraft/iron_helmet.png and /dev/null differ diff --git a/public/textures/minecraft/iron_hoe.png b/public/textures/minecraft/iron_hoe.png deleted file mode 100644 index d1f8254f..00000000 Binary files a/public/textures/minecraft/iron_hoe.png and /dev/null differ diff --git a/public/textures/minecraft/iron_horse_armor.png b/public/textures/minecraft/iron_horse_armor.png deleted file mode 100644 index d983387e..00000000 Binary files a/public/textures/minecraft/iron_horse_armor.png and /dev/null differ diff --git a/public/textures/minecraft/iron_ingot.png b/public/textures/minecraft/iron_ingot.png deleted file mode 100644 index 5411d546..00000000 Binary files a/public/textures/minecraft/iron_ingot.png and /dev/null differ diff --git a/public/textures/minecraft/iron_leggings.png b/public/textures/minecraft/iron_leggings.png deleted file mode 100644 index 1a016737..00000000 Binary files a/public/textures/minecraft/iron_leggings.png and /dev/null differ diff --git a/public/textures/minecraft/iron_nugget.png b/public/textures/minecraft/iron_nugget.png deleted file mode 100644 index 3ba90fcd..00000000 Binary files a/public/textures/minecraft/iron_nugget.png and /dev/null differ diff --git a/public/textures/minecraft/iron_ore.png b/public/textures/minecraft/iron_ore.png deleted file mode 100644 index d7bf83b8..00000000 Binary files a/public/textures/minecraft/iron_ore.png and /dev/null differ diff --git a/public/textures/minecraft/iron_pickaxe.png b/public/textures/minecraft/iron_pickaxe.png deleted file mode 100644 index 0eebc2fc..00000000 Binary files a/public/textures/minecraft/iron_pickaxe.png and /dev/null differ diff --git a/public/textures/minecraft/iron_shovel.png b/public/textures/minecraft/iron_shovel.png deleted file mode 100644 index 604441d1..00000000 Binary files a/public/textures/minecraft/iron_shovel.png and /dev/null differ diff --git a/public/textures/minecraft/iron_sword.png b/public/textures/minecraft/iron_sword.png deleted file mode 100644 index c01b8150..00000000 Binary files a/public/textures/minecraft/iron_sword.png and /dev/null differ diff --git a/public/textures/minecraft/iron_trapdoor.png b/public/textures/minecraft/iron_trapdoor.png deleted file mode 100644 index f056387f..00000000 Binary files a/public/textures/minecraft/iron_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/item_frame.png b/public/textures/minecraft/item_frame.png deleted file mode 100644 index 4d15ab41..00000000 Binary files a/public/textures/minecraft/item_frame.png and /dev/null differ diff --git a/public/textures/minecraft/jack_o_lantern.png b/public/textures/minecraft/jack_o_lantern.png deleted file mode 100644 index d9b70ed7..00000000 Binary files a/public/textures/minecraft/jack_o_lantern.png and /dev/null differ diff --git a/public/textures/minecraft/jukebox.png b/public/textures/minecraft/jukebox.png deleted file mode 100644 index 58b5219f..00000000 Binary files a/public/textures/minecraft/jukebox.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_boat.png b/public/textures/minecraft/jungle_boat.png deleted file mode 100644 index f9c76dcc..00000000 Binary files a/public/textures/minecraft/jungle_boat.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_button.png b/public/textures/minecraft/jungle_button.png deleted file mode 100644 index 60a4eb75..00000000 Binary files a/public/textures/minecraft/jungle_button.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_chest_boat.png b/public/textures/minecraft/jungle_chest_boat.png deleted file mode 100644 index 3ac05137..00000000 Binary files a/public/textures/minecraft/jungle_chest_boat.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_door.png b/public/textures/minecraft/jungle_door.png deleted file mode 100644 index 03c112e8..00000000 Binary files a/public/textures/minecraft/jungle_door.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_fence.png b/public/textures/minecraft/jungle_fence.png deleted file mode 100644 index 08052da6..00000000 Binary files a/public/textures/minecraft/jungle_fence.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_fence_gate.png b/public/textures/minecraft/jungle_fence_gate.png deleted file mode 100644 index 5402a15d..00000000 Binary files a/public/textures/minecraft/jungle_fence_gate.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_hanging_sign.png b/public/textures/minecraft/jungle_hanging_sign.png deleted file mode 100644 index a245c13e..00000000 Binary files a/public/textures/minecraft/jungle_hanging_sign.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_leaves.png b/public/textures/minecraft/jungle_leaves.png deleted file mode 100644 index 1383ae29..00000000 Binary files a/public/textures/minecraft/jungle_leaves.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_log.png b/public/textures/minecraft/jungle_log.png deleted file mode 100644 index 68a124f1..00000000 Binary files a/public/textures/minecraft/jungle_log.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_planks.png b/public/textures/minecraft/jungle_planks.png deleted file mode 100644 index 5954a641..00000000 Binary files a/public/textures/minecraft/jungle_planks.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_pressure_plate.png b/public/textures/minecraft/jungle_pressure_plate.png deleted file mode 100644 index d9136fbc..00000000 Binary files a/public/textures/minecraft/jungle_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_sapling.png b/public/textures/minecraft/jungle_sapling.png deleted file mode 100644 index f4ba767f..00000000 Binary files a/public/textures/minecraft/jungle_sapling.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_sign.png b/public/textures/minecraft/jungle_sign.png deleted file mode 100644 index 14037803..00000000 Binary files a/public/textures/minecraft/jungle_sign.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_slab.png b/public/textures/minecraft/jungle_slab.png deleted file mode 100644 index 9f69fb79..00000000 Binary files a/public/textures/minecraft/jungle_slab.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_stairs.png b/public/textures/minecraft/jungle_stairs.png deleted file mode 100644 index c7ac7bdf..00000000 Binary files a/public/textures/minecraft/jungle_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_trapdoor.png b/public/textures/minecraft/jungle_trapdoor.png deleted file mode 100644 index 9e5dec44..00000000 Binary files a/public/textures/minecraft/jungle_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/jungle_wood.png b/public/textures/minecraft/jungle_wood.png deleted file mode 100644 index fe595224..00000000 Binary files a/public/textures/minecraft/jungle_wood.png and /dev/null differ diff --git a/public/textures/minecraft/kelp.png b/public/textures/minecraft/kelp.png deleted file mode 100644 index 8005222d..00000000 Binary files a/public/textures/minecraft/kelp.png and /dev/null differ diff --git a/public/textures/minecraft/ladder.png b/public/textures/minecraft/ladder.png deleted file mode 100644 index b740e503..00000000 Binary files a/public/textures/minecraft/ladder.png and /dev/null differ diff --git a/public/textures/minecraft/lantern.png b/public/textures/minecraft/lantern.png deleted file mode 100644 index 3520fd23..00000000 Binary files a/public/textures/minecraft/lantern.png and /dev/null differ diff --git a/public/textures/minecraft/lapis_block.png b/public/textures/minecraft/lapis_block.png deleted file mode 100644 index 8ae49fb0..00000000 Binary files a/public/textures/minecraft/lapis_block.png and /dev/null differ diff --git a/public/textures/minecraft/lapis_lazuli.png b/public/textures/minecraft/lapis_lazuli.png deleted file mode 100644 index f6b6d155..00000000 Binary files a/public/textures/minecraft/lapis_lazuli.png and /dev/null differ diff --git a/public/textures/minecraft/lapis_ore.png b/public/textures/minecraft/lapis_ore.png deleted file mode 100644 index 200a5ec9..00000000 Binary files a/public/textures/minecraft/lapis_ore.png and /dev/null differ diff --git a/public/textures/minecraft/large_amethyst_bud.png b/public/textures/minecraft/large_amethyst_bud.png deleted file mode 100644 index 04f5e501..00000000 Binary files a/public/textures/minecraft/large_amethyst_bud.png and /dev/null differ diff --git a/public/textures/minecraft/large_fern.png b/public/textures/minecraft/large_fern.png deleted file mode 100644 index 07b05d4b..00000000 Binary files a/public/textures/minecraft/large_fern.png and /dev/null differ diff --git a/public/textures/minecraft/lava_bucket.png b/public/textures/minecraft/lava_bucket.png deleted file mode 100644 index ede2c7a6..00000000 Binary files a/public/textures/minecraft/lava_bucket.png and /dev/null differ diff --git a/public/textures/minecraft/lead.png b/public/textures/minecraft/lead.png deleted file mode 100644 index 166f4b7c..00000000 Binary files a/public/textures/minecraft/lead.png and /dev/null differ diff --git a/public/textures/minecraft/leather.png b/public/textures/minecraft/leather.png deleted file mode 100644 index 6cc7f797..00000000 Binary files a/public/textures/minecraft/leather.png and /dev/null differ diff --git a/public/textures/minecraft/leather_boots.png b/public/textures/minecraft/leather_boots.png deleted file mode 100644 index 396d9861..00000000 Binary files a/public/textures/minecraft/leather_boots.png and /dev/null differ diff --git a/public/textures/minecraft/leather_chestplate.png b/public/textures/minecraft/leather_chestplate.png deleted file mode 100644 index ea33fab6..00000000 Binary files a/public/textures/minecraft/leather_chestplate.png and /dev/null differ diff --git a/public/textures/minecraft/leather_helmet.png b/public/textures/minecraft/leather_helmet.png deleted file mode 100644 index 43976115..00000000 Binary files a/public/textures/minecraft/leather_helmet.png and /dev/null differ diff --git a/public/textures/minecraft/leather_horse_armor.png b/public/textures/minecraft/leather_horse_armor.png deleted file mode 100644 index e1397a8e..00000000 Binary files a/public/textures/minecraft/leather_horse_armor.png and /dev/null differ diff --git a/public/textures/minecraft/leather_leggings.png b/public/textures/minecraft/leather_leggings.png deleted file mode 100644 index f10025dd..00000000 Binary files a/public/textures/minecraft/leather_leggings.png and /dev/null differ diff --git a/public/textures/minecraft/lectern.png b/public/textures/minecraft/lectern.png deleted file mode 100644 index e07c9ca6..00000000 Binary files a/public/textures/minecraft/lectern.png and /dev/null differ diff --git a/public/textures/minecraft/lever.png b/public/textures/minecraft/lever.png deleted file mode 100644 index 80868d21..00000000 Binary files a/public/textures/minecraft/lever.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_banner.png b/public/textures/minecraft/light_blue_banner.png deleted file mode 100644 index 1c474594..00000000 Binary files a/public/textures/minecraft/light_blue_banner.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_bed.png b/public/textures/minecraft/light_blue_bed.png deleted file mode 100644 index 851598d7..00000000 Binary files a/public/textures/minecraft/light_blue_bed.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_candle.png b/public/textures/minecraft/light_blue_candle.png deleted file mode 100644 index 9880bb6a..00000000 Binary files a/public/textures/minecraft/light_blue_candle.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_carpet.png b/public/textures/minecraft/light_blue_carpet.png deleted file mode 100644 index 01b1f5d1..00000000 Binary files a/public/textures/minecraft/light_blue_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_concrete.png b/public/textures/minecraft/light_blue_concrete.png deleted file mode 100644 index e279a015..00000000 Binary files a/public/textures/minecraft/light_blue_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_concrete_powder.png b/public/textures/minecraft/light_blue_concrete_powder.png deleted file mode 100644 index f93e7955..00000000 Binary files a/public/textures/minecraft/light_blue_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_dye.png b/public/textures/minecraft/light_blue_dye.png deleted file mode 100644 index a92ed452..00000000 Binary files a/public/textures/minecraft/light_blue_dye.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_glazed_terracotta.png b/public/textures/minecraft/light_blue_glazed_terracotta.png deleted file mode 100644 index 9fcbe982..00000000 Binary files a/public/textures/minecraft/light_blue_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_shulker_box.png b/public/textures/minecraft/light_blue_shulker_box.png deleted file mode 100644 index be1abf52..00000000 Binary files a/public/textures/minecraft/light_blue_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_stained_glass.png b/public/textures/minecraft/light_blue_stained_glass.png deleted file mode 100644 index 01df3f6b..00000000 Binary files a/public/textures/minecraft/light_blue_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_stained_glass_pane.png b/public/textures/minecraft/light_blue_stained_glass_pane.png deleted file mode 100644 index 5f2abfaf..00000000 Binary files a/public/textures/minecraft/light_blue_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_terracotta.png b/public/textures/minecraft/light_blue_terracotta.png deleted file mode 100644 index 4c061f44..00000000 Binary files a/public/textures/minecraft/light_blue_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/light_blue_wool.png b/public/textures/minecraft/light_blue_wool.png deleted file mode 100644 index 2f34fe77..00000000 Binary files a/public/textures/minecraft/light_blue_wool.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_banner.png b/public/textures/minecraft/light_gray_banner.png deleted file mode 100644 index 098fb779..00000000 Binary files a/public/textures/minecraft/light_gray_banner.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_bed.png b/public/textures/minecraft/light_gray_bed.png deleted file mode 100644 index fa008e36..00000000 Binary files a/public/textures/minecraft/light_gray_bed.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_candle.png b/public/textures/minecraft/light_gray_candle.png deleted file mode 100644 index 47d7e730..00000000 Binary files a/public/textures/minecraft/light_gray_candle.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_carpet.png b/public/textures/minecraft/light_gray_carpet.png deleted file mode 100644 index 5f715f0f..00000000 Binary files a/public/textures/minecraft/light_gray_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_concrete.png b/public/textures/minecraft/light_gray_concrete.png deleted file mode 100644 index 480410bb..00000000 Binary files a/public/textures/minecraft/light_gray_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_concrete_powder.png b/public/textures/minecraft/light_gray_concrete_powder.png deleted file mode 100644 index ebd1425e..00000000 Binary files a/public/textures/minecraft/light_gray_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_dye.png b/public/textures/minecraft/light_gray_dye.png deleted file mode 100644 index 4838d711..00000000 Binary files a/public/textures/minecraft/light_gray_dye.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_glazed_terracotta.png b/public/textures/minecraft/light_gray_glazed_terracotta.png deleted file mode 100644 index 642183c3..00000000 Binary files a/public/textures/minecraft/light_gray_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_shulker_box.png b/public/textures/minecraft/light_gray_shulker_box.png deleted file mode 100644 index 116b2d1a..00000000 Binary files a/public/textures/minecraft/light_gray_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_stained_glass.png b/public/textures/minecraft/light_gray_stained_glass.png deleted file mode 100644 index eab54596..00000000 Binary files a/public/textures/minecraft/light_gray_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_stained_glass_pane.png b/public/textures/minecraft/light_gray_stained_glass_pane.png deleted file mode 100644 index 60d209e7..00000000 Binary files a/public/textures/minecraft/light_gray_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_terracotta.png b/public/textures/minecraft/light_gray_terracotta.png deleted file mode 100644 index eb3e748a..00000000 Binary files a/public/textures/minecraft/light_gray_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/light_gray_wool.png b/public/textures/minecraft/light_gray_wool.png deleted file mode 100644 index 8a381f51..00000000 Binary files a/public/textures/minecraft/light_gray_wool.png and /dev/null differ diff --git a/public/textures/minecraft/light_weighted_pressure_plate.png b/public/textures/minecraft/light_weighted_pressure_plate.png deleted file mode 100644 index a6c9907a..00000000 Binary files a/public/textures/minecraft/light_weighted_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/lightning_rod.png b/public/textures/minecraft/lightning_rod.png deleted file mode 100644 index f3d1dc29..00000000 Binary files a/public/textures/minecraft/lightning_rod.png and /dev/null differ diff --git a/public/textures/minecraft/lilac.png b/public/textures/minecraft/lilac.png deleted file mode 100644 index 451fa549..00000000 Binary files a/public/textures/minecraft/lilac.png and /dev/null differ diff --git a/public/textures/minecraft/lily_of_the_valley.png b/public/textures/minecraft/lily_of_the_valley.png deleted file mode 100644 index fc76e0f5..00000000 Binary files a/public/textures/minecraft/lily_of_the_valley.png and /dev/null differ diff --git a/public/textures/minecraft/lily_pad.png b/public/textures/minecraft/lily_pad.png deleted file mode 100644 index 246e08f4..00000000 Binary files a/public/textures/minecraft/lily_pad.png and /dev/null differ diff --git a/public/textures/minecraft/lime_banner.png b/public/textures/minecraft/lime_banner.png deleted file mode 100644 index b19cfb13..00000000 Binary files a/public/textures/minecraft/lime_banner.png and /dev/null differ diff --git a/public/textures/minecraft/lime_bed.png b/public/textures/minecraft/lime_bed.png deleted file mode 100644 index a9d758ed..00000000 Binary files a/public/textures/minecraft/lime_bed.png and /dev/null differ diff --git a/public/textures/minecraft/lime_candle.png b/public/textures/minecraft/lime_candle.png deleted file mode 100644 index 98527462..00000000 Binary files a/public/textures/minecraft/lime_candle.png and /dev/null differ diff --git a/public/textures/minecraft/lime_carpet.png b/public/textures/minecraft/lime_carpet.png deleted file mode 100644 index 000d46a8..00000000 Binary files a/public/textures/minecraft/lime_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/lime_concrete.png b/public/textures/minecraft/lime_concrete.png deleted file mode 100644 index 64782183..00000000 Binary files a/public/textures/minecraft/lime_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/lime_concrete_powder.png b/public/textures/minecraft/lime_concrete_powder.png deleted file mode 100644 index 94cefb74..00000000 Binary files a/public/textures/minecraft/lime_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/lime_dye.png b/public/textures/minecraft/lime_dye.png deleted file mode 100644 index 3c5221c2..00000000 Binary files a/public/textures/minecraft/lime_dye.png and /dev/null differ diff --git a/public/textures/minecraft/lime_glazed_terracotta.png b/public/textures/minecraft/lime_glazed_terracotta.png deleted file mode 100644 index 5480576e..00000000 Binary files a/public/textures/minecraft/lime_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/lime_shulker_box.png b/public/textures/minecraft/lime_shulker_box.png deleted file mode 100644 index 6bdbdf2b..00000000 Binary files a/public/textures/minecraft/lime_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/lime_stained_glass.png b/public/textures/minecraft/lime_stained_glass.png deleted file mode 100644 index 44d60b7a..00000000 Binary files a/public/textures/minecraft/lime_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/lime_stained_glass_pane.png b/public/textures/minecraft/lime_stained_glass_pane.png deleted file mode 100644 index c1eb5eed..00000000 Binary files a/public/textures/minecraft/lime_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/lime_terracotta.png b/public/textures/minecraft/lime_terracotta.png deleted file mode 100644 index d1dd32e1..00000000 Binary files a/public/textures/minecraft/lime_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/lime_wool.png b/public/textures/minecraft/lime_wool.png deleted file mode 100644 index cecf04ed..00000000 Binary files a/public/textures/minecraft/lime_wool.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png deleted file mode 100644 index 08ba1138..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png deleted file mode 100644 index 08ba1138..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png deleted file mode 100644 index 08ba1138..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png deleted file mode 100644 index b69445ee..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png deleted file mode 100644 index d9469f87..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png deleted file mode 100644 index c3fdd5b2..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png deleted file mode 100644 index 43e4357a..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png deleted file mode 100644 index 68df16dc..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png deleted file mode 100644 index f1c4cb35..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png deleted file mode 100644 index 33a7a152..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png deleted file mode 100644 index d9469f87..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png deleted file mode 100644 index f1c4cb35..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png deleted file mode 100644 index 33a7a152..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png deleted file mode 100644 index 15523c4d..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png deleted file mode 100644 index e02bfc40..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png deleted file mode 100644 index 309ab79a..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png deleted file mode 100644 index 4b90f263..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png deleted file mode 100644 index 2358ebde..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png deleted file mode 100644 index 57f2f386..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png deleted file mode 100644 index 2e82f986..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png deleted file mode 100644 index c721d8f9..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png deleted file mode 100644 index d84d4b89..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png deleted file mode 100644 index 6e9341cd..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png deleted file mode 100644 index 4d7c5ca9..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png deleted file mode 100644 index b69445ee..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png deleted file mode 100644 index 15523c4d..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png deleted file mode 100644 index ff9fd2fe..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png deleted file mode 100644 index e02bfc40..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png deleted file mode 100644 index 309ab79a..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png deleted file mode 100644 index 4b90f263..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png deleted file mode 100644 index 2358ebde..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png deleted file mode 100644 index 57f2f386..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png deleted file mode 100644 index c3fdd5b2..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png deleted file mode 100644 index 43e4357a..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png deleted file mode 100644 index 33a7a152..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png deleted file mode 100644 index e02bfc40..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png deleted file mode 100644 index 309ab79a..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png deleted file mode 100644 index 2358ebde..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png deleted file mode 100644 index 57f2f386..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png deleted file mode 100644 index 2e82f986..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png deleted file mode 100644 index 7f3f1aee..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png deleted file mode 100644 index 2e82f986..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png deleted file mode 100644 index b69445ee..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png deleted file mode 100644 index c721d8f9..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png deleted file mode 100644 index b69445ee..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png deleted file mode 100644 index d84d4b89..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png deleted file mode 100644 index 6e9341cd..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png deleted file mode 100644 index 0a4990cb..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png and /dev/null differ diff --git a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png b/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png deleted file mode 100644 index 52d74130..00000000 Binary files a/public/textures/minecraft/lingering_potion__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png and /dev/null differ diff --git a/public/textures/minecraft/llama_spawn_egg.png b/public/textures/minecraft/llama_spawn_egg.png deleted file mode 100644 index 8ffcdb51..00000000 Binary files a/public/textures/minecraft/llama_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/lodestone.png b/public/textures/minecraft/lodestone.png deleted file mode 100644 index 620b45ed..00000000 Binary files a/public/textures/minecraft/lodestone.png and /dev/null differ diff --git a/public/textures/minecraft/loom.png b/public/textures/minecraft/loom.png deleted file mode 100644 index 2bcfd476..00000000 Binary files a/public/textures/minecraft/loom.png and /dev/null differ diff --git a/public/textures/minecraft/mace.png b/public/textures/minecraft/mace.png deleted file mode 100644 index b368bc36..00000000 Binary files a/public/textures/minecraft/mace.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_banner.png b/public/textures/minecraft/magenta_banner.png deleted file mode 100644 index 56171367..00000000 Binary files a/public/textures/minecraft/magenta_banner.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_bed.png b/public/textures/minecraft/magenta_bed.png deleted file mode 100644 index c06ad594..00000000 Binary files a/public/textures/minecraft/magenta_bed.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_candle.png b/public/textures/minecraft/magenta_candle.png deleted file mode 100644 index f44d0166..00000000 Binary files a/public/textures/minecraft/magenta_candle.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_carpet.png b/public/textures/minecraft/magenta_carpet.png deleted file mode 100644 index fa0bf039..00000000 Binary files a/public/textures/minecraft/magenta_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_concrete.png b/public/textures/minecraft/magenta_concrete.png deleted file mode 100644 index d2948b9d..00000000 Binary files a/public/textures/minecraft/magenta_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_concrete_powder.png b/public/textures/minecraft/magenta_concrete_powder.png deleted file mode 100644 index 7be3105f..00000000 Binary files a/public/textures/minecraft/magenta_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_dye.png b/public/textures/minecraft/magenta_dye.png deleted file mode 100644 index 4790a325..00000000 Binary files a/public/textures/minecraft/magenta_dye.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_glazed_terracotta.png b/public/textures/minecraft/magenta_glazed_terracotta.png deleted file mode 100644 index 33c42196..00000000 Binary files a/public/textures/minecraft/magenta_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_shulker_box.png b/public/textures/minecraft/magenta_shulker_box.png deleted file mode 100644 index b4081968..00000000 Binary files a/public/textures/minecraft/magenta_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_stained_glass.png b/public/textures/minecraft/magenta_stained_glass.png deleted file mode 100644 index a9056046..00000000 Binary files a/public/textures/minecraft/magenta_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_stained_glass_pane.png b/public/textures/minecraft/magenta_stained_glass_pane.png deleted file mode 100644 index 0910da63..00000000 Binary files a/public/textures/minecraft/magenta_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_terracotta.png b/public/textures/minecraft/magenta_terracotta.png deleted file mode 100644 index 75da6e27..00000000 Binary files a/public/textures/minecraft/magenta_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/magenta_wool.png b/public/textures/minecraft/magenta_wool.png deleted file mode 100644 index 44acb9df..00000000 Binary files a/public/textures/minecraft/magenta_wool.png and /dev/null differ diff --git a/public/textures/minecraft/magma_block.png b/public/textures/minecraft/magma_block.png deleted file mode 100644 index b579f3d2..00000000 Binary files a/public/textures/minecraft/magma_block.png and /dev/null differ diff --git a/public/textures/minecraft/magma_cream.png b/public/textures/minecraft/magma_cream.png deleted file mode 100644 index 02f86f1f..00000000 Binary files a/public/textures/minecraft/magma_cream.png and /dev/null differ diff --git a/public/textures/minecraft/magma_cube_spawn_egg.png b/public/textures/minecraft/magma_cube_spawn_egg.png deleted file mode 100644 index a6004d96..00000000 Binary files a/public/textures/minecraft/magma_cube_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_boat.png b/public/textures/minecraft/mangrove_boat.png deleted file mode 100644 index dad9329a..00000000 Binary files a/public/textures/minecraft/mangrove_boat.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_button.png b/public/textures/minecraft/mangrove_button.png deleted file mode 100644 index f6c7c440..00000000 Binary files a/public/textures/minecraft/mangrove_button.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_chest_boat.png b/public/textures/minecraft/mangrove_chest_boat.png deleted file mode 100644 index 1281a231..00000000 Binary files a/public/textures/minecraft/mangrove_chest_boat.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_door.png b/public/textures/minecraft/mangrove_door.png deleted file mode 100644 index ecf3e993..00000000 Binary files a/public/textures/minecraft/mangrove_door.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_fence.png b/public/textures/minecraft/mangrove_fence.png deleted file mode 100644 index bf7a2240..00000000 Binary files a/public/textures/minecraft/mangrove_fence.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_fence_gate.png b/public/textures/minecraft/mangrove_fence_gate.png deleted file mode 100644 index 267341a2..00000000 Binary files a/public/textures/minecraft/mangrove_fence_gate.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_hanging_sign.png b/public/textures/minecraft/mangrove_hanging_sign.png deleted file mode 100644 index f18f3e25..00000000 Binary files a/public/textures/minecraft/mangrove_hanging_sign.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_leaves.png b/public/textures/minecraft/mangrove_leaves.png deleted file mode 100644 index 5d2c7462..00000000 Binary files a/public/textures/minecraft/mangrove_leaves.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_log.png b/public/textures/minecraft/mangrove_log.png deleted file mode 100644 index e4aa3840..00000000 Binary files a/public/textures/minecraft/mangrove_log.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_planks.png b/public/textures/minecraft/mangrove_planks.png deleted file mode 100644 index a79e91dd..00000000 Binary files a/public/textures/minecraft/mangrove_planks.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_pressure_plate.png b/public/textures/minecraft/mangrove_pressure_plate.png deleted file mode 100644 index 5aca46fd..00000000 Binary files a/public/textures/minecraft/mangrove_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_propagule.png b/public/textures/minecraft/mangrove_propagule.png deleted file mode 100644 index c1f98fc6..00000000 Binary files a/public/textures/minecraft/mangrove_propagule.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_roots.png b/public/textures/minecraft/mangrove_roots.png deleted file mode 100644 index 1a1d5dfc..00000000 Binary files a/public/textures/minecraft/mangrove_roots.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_sign.png b/public/textures/minecraft/mangrove_sign.png deleted file mode 100644 index f5522f70..00000000 Binary files a/public/textures/minecraft/mangrove_sign.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_slab.png b/public/textures/minecraft/mangrove_slab.png deleted file mode 100644 index 9fbc92fa..00000000 Binary files a/public/textures/minecraft/mangrove_slab.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_stairs.png b/public/textures/minecraft/mangrove_stairs.png deleted file mode 100644 index 1052d6d8..00000000 Binary files a/public/textures/minecraft/mangrove_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_trapdoor.png b/public/textures/minecraft/mangrove_trapdoor.png deleted file mode 100644 index ac92d66e..00000000 Binary files a/public/textures/minecraft/mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/mangrove_wood.png b/public/textures/minecraft/mangrove_wood.png deleted file mode 100644 index e71fa4e4..00000000 Binary files a/public/textures/minecraft/mangrove_wood.png and /dev/null differ diff --git a/public/textures/minecraft/map.png b/public/textures/minecraft/map.png deleted file mode 100644 index e1b7eeb3..00000000 Binary files a/public/textures/minecraft/map.png and /dev/null differ diff --git a/public/textures/minecraft/medium_amethyst_bud.png b/public/textures/minecraft/medium_amethyst_bud.png deleted file mode 100644 index 6b0d77d1..00000000 Binary files a/public/textures/minecraft/medium_amethyst_bud.png and /dev/null differ diff --git a/public/textures/minecraft/melon.png b/public/textures/minecraft/melon.png deleted file mode 100644 index 12fcbfc9..00000000 Binary files a/public/textures/minecraft/melon.png and /dev/null differ diff --git a/public/textures/minecraft/melon_seeds.png b/public/textures/minecraft/melon_seeds.png deleted file mode 100644 index 2380b602..00000000 Binary files a/public/textures/minecraft/melon_seeds.png and /dev/null differ diff --git a/public/textures/minecraft/melon_slice.png b/public/textures/minecraft/melon_slice.png deleted file mode 100644 index 4495b1fe..00000000 Binary files a/public/textures/minecraft/melon_slice.png and /dev/null differ diff --git a/public/textures/minecraft/milk_bucket.png b/public/textures/minecraft/milk_bucket.png deleted file mode 100644 index 41124926..00000000 Binary files a/public/textures/minecraft/milk_bucket.png and /dev/null differ diff --git a/public/textures/minecraft/minecart.png b/public/textures/minecraft/minecart.png deleted file mode 100644 index eab779d3..00000000 Binary files a/public/textures/minecraft/minecart.png and /dev/null differ diff --git a/public/textures/minecraft/miner_pottery_sherd.png b/public/textures/minecraft/miner_pottery_sherd.png deleted file mode 100644 index 912cae36..00000000 Binary files a/public/textures/minecraft/miner_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/mojang_banner_pattern.png b/public/textures/minecraft/mojang_banner_pattern.png deleted file mode 100644 index 43fad4e1..00000000 Binary files a/public/textures/minecraft/mojang_banner_pattern.png and /dev/null differ diff --git a/public/textures/minecraft/mooshroom_spawn_egg.png b/public/textures/minecraft/mooshroom_spawn_egg.png deleted file mode 100644 index ee9e18b8..00000000 Binary files a/public/textures/minecraft/mooshroom_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/moss_block.png b/public/textures/minecraft/moss_block.png deleted file mode 100644 index aff899bc..00000000 Binary files a/public/textures/minecraft/moss_block.png and /dev/null differ diff --git a/public/textures/minecraft/moss_carpet.png b/public/textures/minecraft/moss_carpet.png deleted file mode 100644 index 482aee16..00000000 Binary files a/public/textures/minecraft/moss_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/mossy_cobblestone.png b/public/textures/minecraft/mossy_cobblestone.png deleted file mode 100644 index 83376d85..00000000 Binary files a/public/textures/minecraft/mossy_cobblestone.png and /dev/null differ diff --git a/public/textures/minecraft/mossy_cobblestone_slab.png b/public/textures/minecraft/mossy_cobblestone_slab.png deleted file mode 100644 index 5f3c05f1..00000000 Binary files a/public/textures/minecraft/mossy_cobblestone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/mossy_cobblestone_stairs.png b/public/textures/minecraft/mossy_cobblestone_stairs.png deleted file mode 100644 index 53982b8e..00000000 Binary files a/public/textures/minecraft/mossy_cobblestone_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/mossy_cobblestone_wall.png b/public/textures/minecraft/mossy_cobblestone_wall.png deleted file mode 100644 index 96e03ee1..00000000 Binary files a/public/textures/minecraft/mossy_cobblestone_wall.png and /dev/null differ diff --git a/public/textures/minecraft/mossy_stone_brick_slab.png b/public/textures/minecraft/mossy_stone_brick_slab.png deleted file mode 100644 index dad9d577..00000000 Binary files a/public/textures/minecraft/mossy_stone_brick_slab.png and /dev/null differ diff --git a/public/textures/minecraft/mossy_stone_brick_stairs.png b/public/textures/minecraft/mossy_stone_brick_stairs.png deleted file mode 100644 index a22fcba6..00000000 Binary files a/public/textures/minecraft/mossy_stone_brick_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/mossy_stone_brick_wall.png b/public/textures/minecraft/mossy_stone_brick_wall.png deleted file mode 100644 index 249f7fd7..00000000 Binary files a/public/textures/minecraft/mossy_stone_brick_wall.png and /dev/null differ diff --git a/public/textures/minecraft/mossy_stone_bricks.png b/public/textures/minecraft/mossy_stone_bricks.png deleted file mode 100644 index 3ef55245..00000000 Binary files a/public/textures/minecraft/mossy_stone_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/mourner_pottery_sherd.png b/public/textures/minecraft/mourner_pottery_sherd.png deleted file mode 100644 index d23b0630..00000000 Binary files a/public/textures/minecraft/mourner_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/mud.png b/public/textures/minecraft/mud.png deleted file mode 100644 index 19c53b8c..00000000 Binary files a/public/textures/minecraft/mud.png and /dev/null differ diff --git a/public/textures/minecraft/mud_brick_slab.png b/public/textures/minecraft/mud_brick_slab.png deleted file mode 100644 index 0c8262d7..00000000 Binary files a/public/textures/minecraft/mud_brick_slab.png and /dev/null differ diff --git a/public/textures/minecraft/mud_brick_stairs.png b/public/textures/minecraft/mud_brick_stairs.png deleted file mode 100644 index 002b9698..00000000 Binary files a/public/textures/minecraft/mud_brick_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/mud_brick_wall.png b/public/textures/minecraft/mud_brick_wall.png deleted file mode 100644 index 1e3ff1d2..00000000 Binary files a/public/textures/minecraft/mud_brick_wall.png and /dev/null differ diff --git a/public/textures/minecraft/mud_bricks.png b/public/textures/minecraft/mud_bricks.png deleted file mode 100644 index b1c6f2f1..00000000 Binary files a/public/textures/minecraft/mud_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/muddy_mangrove_roots.png b/public/textures/minecraft/muddy_mangrove_roots.png deleted file mode 100644 index 53f1a1c0..00000000 Binary files a/public/textures/minecraft/muddy_mangrove_roots.png and /dev/null differ diff --git a/public/textures/minecraft/mule_spawn_egg.png b/public/textures/minecraft/mule_spawn_egg.png deleted file mode 100644 index 324e21c6..00000000 Binary files a/public/textures/minecraft/mule_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/mushroom_stem.png b/public/textures/minecraft/mushroom_stem.png deleted file mode 100644 index d38a65f2..00000000 Binary files a/public/textures/minecraft/mushroom_stem.png and /dev/null differ diff --git a/public/textures/minecraft/mushroom_stew.png b/public/textures/minecraft/mushroom_stew.png deleted file mode 100644 index 8b89b7af..00000000 Binary files a/public/textures/minecraft/mushroom_stew.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_11.png b/public/textures/minecraft/music_disc_11.png deleted file mode 100644 index 543dc21c..00000000 Binary files a/public/textures/minecraft/music_disc_11.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_13.png b/public/textures/minecraft/music_disc_13.png deleted file mode 100644 index a19feec2..00000000 Binary files a/public/textures/minecraft/music_disc_13.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_5.png b/public/textures/minecraft/music_disc_5.png deleted file mode 100644 index 2e2527f1..00000000 Binary files a/public/textures/minecraft/music_disc_5.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_blocks.png b/public/textures/minecraft/music_disc_blocks.png deleted file mode 100644 index 2ae611ef..00000000 Binary files a/public/textures/minecraft/music_disc_blocks.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_cat.png b/public/textures/minecraft/music_disc_cat.png deleted file mode 100644 index 517ea662..00000000 Binary files a/public/textures/minecraft/music_disc_cat.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_chirp.png b/public/textures/minecraft/music_disc_chirp.png deleted file mode 100644 index b1bd925a..00000000 Binary files a/public/textures/minecraft/music_disc_chirp.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_creator.png b/public/textures/minecraft/music_disc_creator.png deleted file mode 100644 index 57ecff70..00000000 Binary files a/public/textures/minecraft/music_disc_creator.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_creator_music_box.png b/public/textures/minecraft/music_disc_creator_music_box.png deleted file mode 100644 index e5314acd..00000000 Binary files a/public/textures/minecraft/music_disc_creator_music_box.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_far.png b/public/textures/minecraft/music_disc_far.png deleted file mode 100644 index 5b0939e4..00000000 Binary files a/public/textures/minecraft/music_disc_far.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_mall.png b/public/textures/minecraft/music_disc_mall.png deleted file mode 100644 index 6e4fdf72..00000000 Binary files a/public/textures/minecraft/music_disc_mall.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_mellohi.png b/public/textures/minecraft/music_disc_mellohi.png deleted file mode 100644 index 86868c25..00000000 Binary files a/public/textures/minecraft/music_disc_mellohi.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_otherside.png b/public/textures/minecraft/music_disc_otherside.png deleted file mode 100644 index b6485cfd..00000000 Binary files a/public/textures/minecraft/music_disc_otherside.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_pigstep.png b/public/textures/minecraft/music_disc_pigstep.png deleted file mode 100644 index 22f5eee0..00000000 Binary files a/public/textures/minecraft/music_disc_pigstep.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_precipice.png b/public/textures/minecraft/music_disc_precipice.png deleted file mode 100644 index f241bc0f..00000000 Binary files a/public/textures/minecraft/music_disc_precipice.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_relic.png b/public/textures/minecraft/music_disc_relic.png deleted file mode 100644 index c0420a7e..00000000 Binary files a/public/textures/minecraft/music_disc_relic.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_stal.png b/public/textures/minecraft/music_disc_stal.png deleted file mode 100644 index 359ddded..00000000 Binary files a/public/textures/minecraft/music_disc_stal.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_strad.png b/public/textures/minecraft/music_disc_strad.png deleted file mode 100644 index 3fa0c2e8..00000000 Binary files a/public/textures/minecraft/music_disc_strad.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_wait.png b/public/textures/minecraft/music_disc_wait.png deleted file mode 100644 index f0697540..00000000 Binary files a/public/textures/minecraft/music_disc_wait.png and /dev/null differ diff --git a/public/textures/minecraft/music_disc_ward.png b/public/textures/minecraft/music_disc_ward.png deleted file mode 100644 index 45e9ba99..00000000 Binary files a/public/textures/minecraft/music_disc_ward.png and /dev/null differ diff --git a/public/textures/minecraft/mutton.png b/public/textures/minecraft/mutton.png deleted file mode 100644 index 96f1ad8c..00000000 Binary files a/public/textures/minecraft/mutton.png and /dev/null differ diff --git a/public/textures/minecraft/mycelium.png b/public/textures/minecraft/mycelium.png deleted file mode 100644 index 546a9226..00000000 Binary files a/public/textures/minecraft/mycelium.png and /dev/null differ diff --git a/public/textures/minecraft/name_tag.png b/public/textures/minecraft/name_tag.png deleted file mode 100644 index 5dd1279c..00000000 Binary files a/public/textures/minecraft/name_tag.png and /dev/null differ diff --git a/public/textures/minecraft/nautilus_shell.png b/public/textures/minecraft/nautilus_shell.png deleted file mode 100644 index add70bc6..00000000 Binary files a/public/textures/minecraft/nautilus_shell.png and /dev/null differ diff --git a/public/textures/minecraft/nether_brick.png b/public/textures/minecraft/nether_brick.png deleted file mode 100644 index c37bf1b8..00000000 Binary files a/public/textures/minecraft/nether_brick.png and /dev/null differ diff --git a/public/textures/minecraft/nether_brick_fence.png b/public/textures/minecraft/nether_brick_fence.png deleted file mode 100644 index 4a8116b2..00000000 Binary files a/public/textures/minecraft/nether_brick_fence.png and /dev/null differ diff --git a/public/textures/minecraft/nether_brick_slab.png b/public/textures/minecraft/nether_brick_slab.png deleted file mode 100644 index 0f16cebe..00000000 Binary files a/public/textures/minecraft/nether_brick_slab.png and /dev/null differ diff --git a/public/textures/minecraft/nether_brick_stairs.png b/public/textures/minecraft/nether_brick_stairs.png deleted file mode 100644 index 2ae3d3fc..00000000 Binary files a/public/textures/minecraft/nether_brick_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/nether_brick_wall.png b/public/textures/minecraft/nether_brick_wall.png deleted file mode 100644 index d3e6ef52..00000000 Binary files a/public/textures/minecraft/nether_brick_wall.png and /dev/null differ diff --git a/public/textures/minecraft/nether_bricks.png b/public/textures/minecraft/nether_bricks.png deleted file mode 100644 index 0fa09733..00000000 Binary files a/public/textures/minecraft/nether_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/nether_gold_ore.png b/public/textures/minecraft/nether_gold_ore.png deleted file mode 100644 index 98bb3284..00000000 Binary files a/public/textures/minecraft/nether_gold_ore.png and /dev/null differ diff --git a/public/textures/minecraft/nether_quartz_ore.png b/public/textures/minecraft/nether_quartz_ore.png deleted file mode 100644 index 5d25be48..00000000 Binary files a/public/textures/minecraft/nether_quartz_ore.png and /dev/null differ diff --git a/public/textures/minecraft/nether_sprouts.png b/public/textures/minecraft/nether_sprouts.png deleted file mode 100644 index 5a1de301..00000000 Binary files a/public/textures/minecraft/nether_sprouts.png and /dev/null differ diff --git a/public/textures/minecraft/nether_star.png b/public/textures/minecraft/nether_star.png deleted file mode 100644 index 8b15c87f..00000000 Binary files a/public/textures/minecraft/nether_star.png and /dev/null differ diff --git a/public/textures/minecraft/nether_wart.png b/public/textures/minecraft/nether_wart.png deleted file mode 100644 index 2e8b1d1c..00000000 Binary files a/public/textures/minecraft/nether_wart.png and /dev/null differ diff --git a/public/textures/minecraft/nether_wart_block.png b/public/textures/minecraft/nether_wart_block.png deleted file mode 100644 index c5b78bd8..00000000 Binary files a/public/textures/minecraft/nether_wart_block.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_axe.png b/public/textures/minecraft/netherite_axe.png deleted file mode 100644 index 61ee84fa..00000000 Binary files a/public/textures/minecraft/netherite_axe.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_block.png b/public/textures/minecraft/netherite_block.png deleted file mode 100644 index 2bae50c8..00000000 Binary files a/public/textures/minecraft/netherite_block.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_boots.png b/public/textures/minecraft/netherite_boots.png deleted file mode 100644 index 65b75fe4..00000000 Binary files a/public/textures/minecraft/netherite_boots.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_chestplate.png b/public/textures/minecraft/netherite_chestplate.png deleted file mode 100644 index 6eda89a9..00000000 Binary files a/public/textures/minecraft/netherite_chestplate.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_helmet.png b/public/textures/minecraft/netherite_helmet.png deleted file mode 100644 index 79526809..00000000 Binary files a/public/textures/minecraft/netherite_helmet.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_hoe.png b/public/textures/minecraft/netherite_hoe.png deleted file mode 100644 index fbe5de38..00000000 Binary files a/public/textures/minecraft/netherite_hoe.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_ingot.png b/public/textures/minecraft/netherite_ingot.png deleted file mode 100644 index 1c1abb8b..00000000 Binary files a/public/textures/minecraft/netherite_ingot.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_leggings.png b/public/textures/minecraft/netherite_leggings.png deleted file mode 100644 index 3a3f7e95..00000000 Binary files a/public/textures/minecraft/netherite_leggings.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_pickaxe.png b/public/textures/minecraft/netherite_pickaxe.png deleted file mode 100644 index 00eb57ec..00000000 Binary files a/public/textures/minecraft/netherite_pickaxe.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_scrap.png b/public/textures/minecraft/netherite_scrap.png deleted file mode 100644 index e4ad060a..00000000 Binary files a/public/textures/minecraft/netherite_scrap.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_shovel.png b/public/textures/minecraft/netherite_shovel.png deleted file mode 100644 index 1692a7a8..00000000 Binary files a/public/textures/minecraft/netherite_shovel.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_sword.png b/public/textures/minecraft/netherite_sword.png deleted file mode 100644 index e3901cc9..00000000 Binary files a/public/textures/minecraft/netherite_sword.png and /dev/null differ diff --git a/public/textures/minecraft/netherite_upgrade_smithing_template.png b/public/textures/minecraft/netherite_upgrade_smithing_template.png deleted file mode 100644 index 596d320f..00000000 Binary files a/public/textures/minecraft/netherite_upgrade_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/netherrack.png b/public/textures/minecraft/netherrack.png deleted file mode 100644 index 4132e718..00000000 Binary files a/public/textures/minecraft/netherrack.png and /dev/null differ diff --git a/public/textures/minecraft/note_block.png b/public/textures/minecraft/note_block.png deleted file mode 100644 index 47d15066..00000000 Binary files a/public/textures/minecraft/note_block.png and /dev/null differ diff --git a/public/textures/minecraft/oak_boat.png b/public/textures/minecraft/oak_boat.png deleted file mode 100644 index 6d595dc0..00000000 Binary files a/public/textures/minecraft/oak_boat.png and /dev/null differ diff --git a/public/textures/minecraft/oak_button.png b/public/textures/minecraft/oak_button.png deleted file mode 100644 index 4ccce25a..00000000 Binary files a/public/textures/minecraft/oak_button.png and /dev/null differ diff --git a/public/textures/minecraft/oak_chest_boat.png b/public/textures/minecraft/oak_chest_boat.png deleted file mode 100644 index 8e71f4f3..00000000 Binary files a/public/textures/minecraft/oak_chest_boat.png and /dev/null differ diff --git a/public/textures/minecraft/oak_door.png b/public/textures/minecraft/oak_door.png deleted file mode 100644 index b874095b..00000000 Binary files a/public/textures/minecraft/oak_door.png and /dev/null differ diff --git a/public/textures/minecraft/oak_fence.png b/public/textures/minecraft/oak_fence.png deleted file mode 100644 index d5768e6a..00000000 Binary files a/public/textures/minecraft/oak_fence.png and /dev/null differ diff --git a/public/textures/minecraft/oak_fence_gate.png b/public/textures/minecraft/oak_fence_gate.png deleted file mode 100644 index 2bd5c60d..00000000 Binary files a/public/textures/minecraft/oak_fence_gate.png and /dev/null differ diff --git a/public/textures/minecraft/oak_hanging_sign.png b/public/textures/minecraft/oak_hanging_sign.png deleted file mode 100644 index c99a8a7d..00000000 Binary files a/public/textures/minecraft/oak_hanging_sign.png and /dev/null differ diff --git a/public/textures/minecraft/oak_leaves.png b/public/textures/minecraft/oak_leaves.png deleted file mode 100644 index b8faccf1..00000000 Binary files a/public/textures/minecraft/oak_leaves.png and /dev/null differ diff --git a/public/textures/minecraft/oak_log.png b/public/textures/minecraft/oak_log.png deleted file mode 100644 index 444eb9a8..00000000 Binary files a/public/textures/minecraft/oak_log.png and /dev/null differ diff --git a/public/textures/minecraft/oak_planks.png b/public/textures/minecraft/oak_planks.png deleted file mode 100644 index ed665090..00000000 Binary files a/public/textures/minecraft/oak_planks.png and /dev/null differ diff --git a/public/textures/minecraft/oak_pressure_plate.png b/public/textures/minecraft/oak_pressure_plate.png deleted file mode 100644 index 2de9322f..00000000 Binary files a/public/textures/minecraft/oak_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/oak_sapling.png b/public/textures/minecraft/oak_sapling.png deleted file mode 100644 index 28884212..00000000 Binary files a/public/textures/minecraft/oak_sapling.png and /dev/null differ diff --git a/public/textures/minecraft/oak_sign.png b/public/textures/minecraft/oak_sign.png deleted file mode 100644 index d295a9b2..00000000 Binary files a/public/textures/minecraft/oak_sign.png and /dev/null differ diff --git a/public/textures/minecraft/oak_slab.png b/public/textures/minecraft/oak_slab.png deleted file mode 100644 index 0e2c664b..00000000 Binary files a/public/textures/minecraft/oak_slab.png and /dev/null differ diff --git a/public/textures/minecraft/oak_stairs.png b/public/textures/minecraft/oak_stairs.png deleted file mode 100644 index e2da0d25..00000000 Binary files a/public/textures/minecraft/oak_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/oak_trapdoor.png b/public/textures/minecraft/oak_trapdoor.png deleted file mode 100644 index d269f361..00000000 Binary files a/public/textures/minecraft/oak_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/oak_wood.png b/public/textures/minecraft/oak_wood.png deleted file mode 100644 index d06c3d91..00000000 Binary files a/public/textures/minecraft/oak_wood.png and /dev/null differ diff --git a/public/textures/minecraft/observer.png b/public/textures/minecraft/observer.png deleted file mode 100644 index 6aa38cb4..00000000 Binary files a/public/textures/minecraft/observer.png and /dev/null differ diff --git a/public/textures/minecraft/obsidian.png b/public/textures/minecraft/obsidian.png deleted file mode 100644 index fa6ca336..00000000 Binary files a/public/textures/minecraft/obsidian.png and /dev/null differ diff --git a/public/textures/minecraft/ocelot_spawn_egg.png b/public/textures/minecraft/ocelot_spawn_egg.png deleted file mode 100644 index 6fc83772..00000000 Binary files a/public/textures/minecraft/ocelot_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/ochre_froglight.png b/public/textures/minecraft/ochre_froglight.png deleted file mode 100644 index 9c33f615..00000000 Binary files a/public/textures/minecraft/ochre_froglight.png and /dev/null differ diff --git a/public/textures/minecraft/ominous_bottle.png b/public/textures/minecraft/ominous_bottle.png deleted file mode 100644 index cf75ce69..00000000 Binary files a/public/textures/minecraft/ominous_bottle.png and /dev/null differ diff --git a/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__1}.png b/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__1}.png deleted file mode 100644 index cf75ce69..00000000 Binary files a/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__1}.png and /dev/null differ diff --git a/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__2}.png b/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__2}.png deleted file mode 100644 index cf75ce69..00000000 Binary files a/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__2}.png and /dev/null differ diff --git a/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__3}.png b/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__3}.png deleted file mode 100644 index cf75ce69..00000000 Binary files a/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__3}.png and /dev/null differ diff --git a/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__4}.png b/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__4}.png deleted file mode 100644 index cf75ce69..00000000 Binary files a/public/textures/minecraft/ominous_bottle__{'minecraft__ominous_bottle_amplifier'__4}.png and /dev/null differ diff --git a/public/textures/minecraft/ominous_trial_key.png b/public/textures/minecraft/ominous_trial_key.png deleted file mode 100644 index a19810bf..00000000 Binary files a/public/textures/minecraft/ominous_trial_key.png and /dev/null differ diff --git a/public/textures/minecraft/orange_banner.png b/public/textures/minecraft/orange_banner.png deleted file mode 100644 index 0592ee24..00000000 Binary files a/public/textures/minecraft/orange_banner.png and /dev/null differ diff --git a/public/textures/minecraft/orange_bed.png b/public/textures/minecraft/orange_bed.png deleted file mode 100644 index 30400f9b..00000000 Binary files a/public/textures/minecraft/orange_bed.png and /dev/null differ diff --git a/public/textures/minecraft/orange_candle.png b/public/textures/minecraft/orange_candle.png deleted file mode 100644 index bd73697b..00000000 Binary files a/public/textures/minecraft/orange_candle.png and /dev/null differ diff --git a/public/textures/minecraft/orange_carpet.png b/public/textures/minecraft/orange_carpet.png deleted file mode 100644 index b2176100..00000000 Binary files a/public/textures/minecraft/orange_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/orange_concrete.png b/public/textures/minecraft/orange_concrete.png deleted file mode 100644 index c1a96e25..00000000 Binary files a/public/textures/minecraft/orange_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/orange_concrete_powder.png b/public/textures/minecraft/orange_concrete_powder.png deleted file mode 100644 index 0afafa91..00000000 Binary files a/public/textures/minecraft/orange_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/orange_dye.png b/public/textures/minecraft/orange_dye.png deleted file mode 100644 index d69145c4..00000000 Binary files a/public/textures/minecraft/orange_dye.png and /dev/null differ diff --git a/public/textures/minecraft/orange_glazed_terracotta.png b/public/textures/minecraft/orange_glazed_terracotta.png deleted file mode 100644 index 4029fd4d..00000000 Binary files a/public/textures/minecraft/orange_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/orange_shulker_box.png b/public/textures/minecraft/orange_shulker_box.png deleted file mode 100644 index cc153d36..00000000 Binary files a/public/textures/minecraft/orange_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/orange_stained_glass.png b/public/textures/minecraft/orange_stained_glass.png deleted file mode 100644 index a3a32f4e..00000000 Binary files a/public/textures/minecraft/orange_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/orange_stained_glass_pane.png b/public/textures/minecraft/orange_stained_glass_pane.png deleted file mode 100644 index 036faec7..00000000 Binary files a/public/textures/minecraft/orange_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/orange_terracotta.png b/public/textures/minecraft/orange_terracotta.png deleted file mode 100644 index 2bf9a410..00000000 Binary files a/public/textures/minecraft/orange_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/orange_tulip.png b/public/textures/minecraft/orange_tulip.png deleted file mode 100644 index efae14f9..00000000 Binary files a/public/textures/minecraft/orange_tulip.png and /dev/null differ diff --git a/public/textures/minecraft/orange_wool.png b/public/textures/minecraft/orange_wool.png deleted file mode 100644 index ba80d17a..00000000 Binary files a/public/textures/minecraft/orange_wool.png and /dev/null differ diff --git a/public/textures/minecraft/oxeye_daisy.png b/public/textures/minecraft/oxeye_daisy.png deleted file mode 100644 index 0a0c84ca..00000000 Binary files a/public/textures/minecraft/oxeye_daisy.png and /dev/null differ diff --git a/public/textures/minecraft/oxidized_chiseled_copper.png b/public/textures/minecraft/oxidized_chiseled_copper.png deleted file mode 100644 index e2c6834d..00000000 Binary files a/public/textures/minecraft/oxidized_chiseled_copper.png and /dev/null differ diff --git a/public/textures/minecraft/oxidized_copper.png b/public/textures/minecraft/oxidized_copper.png deleted file mode 100644 index 647dd8f6..00000000 Binary files a/public/textures/minecraft/oxidized_copper.png and /dev/null differ diff --git a/public/textures/minecraft/oxidized_copper_bulb.png b/public/textures/minecraft/oxidized_copper_bulb.png deleted file mode 100644 index eda2e1d5..00000000 Binary files a/public/textures/minecraft/oxidized_copper_bulb.png and /dev/null differ diff --git a/public/textures/minecraft/oxidized_copper_door.png b/public/textures/minecraft/oxidized_copper_door.png deleted file mode 100644 index cb9cdcf1..00000000 Binary files a/public/textures/minecraft/oxidized_copper_door.png and /dev/null differ diff --git a/public/textures/minecraft/oxidized_copper_grate.png b/public/textures/minecraft/oxidized_copper_grate.png deleted file mode 100644 index a6286bdb..00000000 Binary files a/public/textures/minecraft/oxidized_copper_grate.png and /dev/null differ diff --git a/public/textures/minecraft/oxidized_copper_trapdoor.png b/public/textures/minecraft/oxidized_copper_trapdoor.png deleted file mode 100644 index 69ca0a13..00000000 Binary files a/public/textures/minecraft/oxidized_copper_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/oxidized_cut_copper.png b/public/textures/minecraft/oxidized_cut_copper.png deleted file mode 100644 index fd6cfaf3..00000000 Binary files a/public/textures/minecraft/oxidized_cut_copper.png and /dev/null differ diff --git a/public/textures/minecraft/oxidized_cut_copper_slab.png b/public/textures/minecraft/oxidized_cut_copper_slab.png deleted file mode 100644 index 4f83ec6e..00000000 Binary files a/public/textures/minecraft/oxidized_cut_copper_slab.png and /dev/null differ diff --git a/public/textures/minecraft/oxidized_cut_copper_stairs.png b/public/textures/minecraft/oxidized_cut_copper_stairs.png deleted file mode 100644 index 27a5be14..00000000 Binary files a/public/textures/minecraft/oxidized_cut_copper_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/packed_ice.png b/public/textures/minecraft/packed_ice.png deleted file mode 100644 index bf5d596d..00000000 Binary files a/public/textures/minecraft/packed_ice.png and /dev/null differ diff --git a/public/textures/minecraft/packed_mud.png b/public/textures/minecraft/packed_mud.png deleted file mode 100644 index 08d48fec..00000000 Binary files a/public/textures/minecraft/packed_mud.png and /dev/null differ diff --git a/public/textures/minecraft/painting.png b/public/textures/minecraft/painting.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__alban'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__alban'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__alban'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__aztec'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__aztec'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__aztec'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__aztec2'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__aztec2'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__aztec2'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__backyard'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__backyard'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__backyard'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__baroque'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__baroque'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__baroque'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__bomb'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__bomb'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__bomb'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__bouquet'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__bouquet'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__bouquet'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__burning_skull'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__burning_skull'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__burning_skull'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__bust'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__bust'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__bust'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__cavebird'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__cavebird'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__cavebird'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__changing'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__changing'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__changing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__cotan'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__cotan'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__cotan'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__courbet'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__courbet'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__courbet'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__creebet'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__creebet'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__creebet'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__donkey_kong'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__donkey_kong'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__donkey_kong'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__endboss'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__endboss'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__endboss'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__fern'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__fern'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__fern'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__fighters'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__fighters'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__fighters'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__finding'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__finding'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__finding'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__graham'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__graham'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__graham'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__humble'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__humble'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__humble'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__kebab'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__kebab'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__kebab'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__lowmist'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__lowmist'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__lowmist'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__match'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__match'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__match'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__meditative'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__meditative'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__meditative'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__orb'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__orb'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__orb'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__owlemons'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__owlemons'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__owlemons'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__passage'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__passage'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__passage'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pigscene'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pigscene'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pigscene'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__plant'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__plant'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__plant'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pointer'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pointer'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pointer'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pond'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pond'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pond'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pool'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pool'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__pool'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__prairie_ride'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__prairie_ride'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__prairie_ride'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__sea'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__sea'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__sea'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__skeleton'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__skeleton'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__skeleton'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__skull_and_roses'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__skull_and_roses'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__skull_and_roses'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__stage'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__stage'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__stage'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__sunflowers'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__sunflowers'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__sunflowers'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__sunset'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__sunset'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__sunset'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__tides'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__tides'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__tides'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__unpacked'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__unpacked'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__unpacked'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__void'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__void'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__void'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__wanderer'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__wanderer'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__wanderer'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__wasteland'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__wasteland'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__wasteland'}}.png and /dev/null differ diff --git a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__wither'}}.png b/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__wither'}}.png deleted file mode 100644 index cff1113b..00000000 Binary files a/public/textures/minecraft/painting__{'minecraft__entity_data'__{id__'minecraft__painting',variant__'minecraft__wither'}}.png and /dev/null differ diff --git a/public/textures/minecraft/panda_spawn_egg.png b/public/textures/minecraft/panda_spawn_egg.png deleted file mode 100644 index fd3c6211..00000000 Binary files a/public/textures/minecraft/panda_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/paper.png b/public/textures/minecraft/paper.png deleted file mode 100644 index cf1af7b0..00000000 Binary files a/public/textures/minecraft/paper.png and /dev/null differ diff --git a/public/textures/minecraft/parrot_spawn_egg.png b/public/textures/minecraft/parrot_spawn_egg.png deleted file mode 100644 index 1fbbe7f0..00000000 Binary files a/public/textures/minecraft/parrot_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/pearlescent_froglight.png b/public/textures/minecraft/pearlescent_froglight.png deleted file mode 100644 index afd01186..00000000 Binary files a/public/textures/minecraft/pearlescent_froglight.png and /dev/null differ diff --git a/public/textures/minecraft/peony.png b/public/textures/minecraft/peony.png deleted file mode 100644 index f8b0be55..00000000 Binary files a/public/textures/minecraft/peony.png and /dev/null differ diff --git a/public/textures/minecraft/phantom_membrane.png b/public/textures/minecraft/phantom_membrane.png deleted file mode 100644 index 6cb0031f..00000000 Binary files a/public/textures/minecraft/phantom_membrane.png and /dev/null differ diff --git a/public/textures/minecraft/phantom_spawn_egg.png b/public/textures/minecraft/phantom_spawn_egg.png deleted file mode 100644 index d8094f55..00000000 Binary files a/public/textures/minecraft/phantom_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/pig_spawn_egg.png b/public/textures/minecraft/pig_spawn_egg.png deleted file mode 100644 index 714be533..00000000 Binary files a/public/textures/minecraft/pig_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/piglin_banner_pattern.png b/public/textures/minecraft/piglin_banner_pattern.png deleted file mode 100644 index 43fad4e1..00000000 Binary files a/public/textures/minecraft/piglin_banner_pattern.png and /dev/null differ diff --git a/public/textures/minecraft/piglin_brute_spawn_egg.png b/public/textures/minecraft/piglin_brute_spawn_egg.png deleted file mode 100644 index 16838424..00000000 Binary files a/public/textures/minecraft/piglin_brute_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/piglin_head.png b/public/textures/minecraft/piglin_head.png deleted file mode 100644 index 3ae65475..00000000 Binary files a/public/textures/minecraft/piglin_head.png and /dev/null differ diff --git a/public/textures/minecraft/piglin_spawn_egg.png b/public/textures/minecraft/piglin_spawn_egg.png deleted file mode 100644 index 41eae2c2..00000000 Binary files a/public/textures/minecraft/piglin_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/pillager_spawn_egg.png b/public/textures/minecraft/pillager_spawn_egg.png deleted file mode 100644 index 117d2d63..00000000 Binary files a/public/textures/minecraft/pillager_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/pink_banner.png b/public/textures/minecraft/pink_banner.png deleted file mode 100644 index 23102982..00000000 Binary files a/public/textures/minecraft/pink_banner.png and /dev/null differ diff --git a/public/textures/minecraft/pink_bed.png b/public/textures/minecraft/pink_bed.png deleted file mode 100644 index a33e7b52..00000000 Binary files a/public/textures/minecraft/pink_bed.png and /dev/null differ diff --git a/public/textures/minecraft/pink_candle.png b/public/textures/minecraft/pink_candle.png deleted file mode 100644 index 02afaefd..00000000 Binary files a/public/textures/minecraft/pink_candle.png and /dev/null differ diff --git a/public/textures/minecraft/pink_carpet.png b/public/textures/minecraft/pink_carpet.png deleted file mode 100644 index abf3f0bd..00000000 Binary files a/public/textures/minecraft/pink_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/pink_concrete.png b/public/textures/minecraft/pink_concrete.png deleted file mode 100644 index 987a122c..00000000 Binary files a/public/textures/minecraft/pink_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/pink_concrete_powder.png b/public/textures/minecraft/pink_concrete_powder.png deleted file mode 100644 index 736a5ed9..00000000 Binary files a/public/textures/minecraft/pink_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/pink_dye.png b/public/textures/minecraft/pink_dye.png deleted file mode 100644 index f3ee4ffd..00000000 Binary files a/public/textures/minecraft/pink_dye.png and /dev/null differ diff --git a/public/textures/minecraft/pink_glazed_terracotta.png b/public/textures/minecraft/pink_glazed_terracotta.png deleted file mode 100644 index 4f0a06b9..00000000 Binary files a/public/textures/minecraft/pink_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/pink_petals.png b/public/textures/minecraft/pink_petals.png deleted file mode 100644 index 76093b2a..00000000 Binary files a/public/textures/minecraft/pink_petals.png and /dev/null differ diff --git a/public/textures/minecraft/pink_shulker_box.png b/public/textures/minecraft/pink_shulker_box.png deleted file mode 100644 index 5c192e3e..00000000 Binary files a/public/textures/minecraft/pink_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/pink_stained_glass.png b/public/textures/minecraft/pink_stained_glass.png deleted file mode 100644 index 80182680..00000000 Binary files a/public/textures/minecraft/pink_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/pink_stained_glass_pane.png b/public/textures/minecraft/pink_stained_glass_pane.png deleted file mode 100644 index 81a29609..00000000 Binary files a/public/textures/minecraft/pink_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/pink_terracotta.png b/public/textures/minecraft/pink_terracotta.png deleted file mode 100644 index 057fb4d0..00000000 Binary files a/public/textures/minecraft/pink_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/pink_tulip.png b/public/textures/minecraft/pink_tulip.png deleted file mode 100644 index 3b782253..00000000 Binary files a/public/textures/minecraft/pink_tulip.png and /dev/null differ diff --git a/public/textures/minecraft/pink_wool.png b/public/textures/minecraft/pink_wool.png deleted file mode 100644 index 6c8e73e5..00000000 Binary files a/public/textures/minecraft/pink_wool.png and /dev/null differ diff --git a/public/textures/minecraft/piston.png b/public/textures/minecraft/piston.png deleted file mode 100644 index ce47d3a5..00000000 Binary files a/public/textures/minecraft/piston.png and /dev/null differ diff --git a/public/textures/minecraft/pitcher_plant.png b/public/textures/minecraft/pitcher_plant.png deleted file mode 100644 index c0c9e30b..00000000 Binary files a/public/textures/minecraft/pitcher_plant.png and /dev/null differ diff --git a/public/textures/minecraft/pitcher_pod.png b/public/textures/minecraft/pitcher_pod.png deleted file mode 100644 index e9709589..00000000 Binary files a/public/textures/minecraft/pitcher_pod.png and /dev/null differ diff --git a/public/textures/minecraft/player_head.png b/public/textures/minecraft/player_head.png deleted file mode 100644 index 22a4a806..00000000 Binary files a/public/textures/minecraft/player_head.png and /dev/null differ diff --git a/public/textures/minecraft/plenty_pottery_sherd.png b/public/textures/minecraft/plenty_pottery_sherd.png deleted file mode 100644 index ddd51a4c..00000000 Binary files a/public/textures/minecraft/plenty_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/podzol.png b/public/textures/minecraft/podzol.png deleted file mode 100644 index 765ec353..00000000 Binary files a/public/textures/minecraft/podzol.png and /dev/null differ diff --git a/public/textures/minecraft/pointed_dripstone.png b/public/textures/minecraft/pointed_dripstone.png deleted file mode 100644 index e704cbe2..00000000 Binary files a/public/textures/minecraft/pointed_dripstone.png and /dev/null differ diff --git a/public/textures/minecraft/poisonous_potato.png b/public/textures/minecraft/poisonous_potato.png deleted file mode 100644 index df34a21e..00000000 Binary files a/public/textures/minecraft/poisonous_potato.png and /dev/null differ diff --git a/public/textures/minecraft/polar_bear_spawn_egg.png b/public/textures/minecraft/polar_bear_spawn_egg.png deleted file mode 100644 index f21a97e4..00000000 Binary files a/public/textures/minecraft/polar_bear_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/polished_andesite.png b/public/textures/minecraft/polished_andesite.png deleted file mode 100644 index a7cdb725..00000000 Binary files a/public/textures/minecraft/polished_andesite.png and /dev/null differ diff --git a/public/textures/minecraft/polished_andesite_slab.png b/public/textures/minecraft/polished_andesite_slab.png deleted file mode 100644 index bd40532b..00000000 Binary files a/public/textures/minecraft/polished_andesite_slab.png and /dev/null differ diff --git a/public/textures/minecraft/polished_andesite_stairs.png b/public/textures/minecraft/polished_andesite_stairs.png deleted file mode 100644 index 9b13a118..00000000 Binary files a/public/textures/minecraft/polished_andesite_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/polished_basalt.png b/public/textures/minecraft/polished_basalt.png deleted file mode 100644 index d32f6981..00000000 Binary files a/public/textures/minecraft/polished_basalt.png and /dev/null differ diff --git a/public/textures/minecraft/polished_blackstone.png b/public/textures/minecraft/polished_blackstone.png deleted file mode 100644 index 277feb17..00000000 Binary files a/public/textures/minecraft/polished_blackstone.png and /dev/null differ diff --git a/public/textures/minecraft/polished_blackstone_brick_slab.png b/public/textures/minecraft/polished_blackstone_brick_slab.png deleted file mode 100644 index 90f3f943..00000000 Binary files a/public/textures/minecraft/polished_blackstone_brick_slab.png and /dev/null differ diff --git a/public/textures/minecraft/polished_blackstone_brick_stairs.png b/public/textures/minecraft/polished_blackstone_brick_stairs.png deleted file mode 100644 index f4019129..00000000 Binary files a/public/textures/minecraft/polished_blackstone_brick_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/polished_blackstone_brick_wall.png b/public/textures/minecraft/polished_blackstone_brick_wall.png deleted file mode 100644 index b569c6a3..00000000 Binary files a/public/textures/minecraft/polished_blackstone_brick_wall.png and /dev/null differ diff --git a/public/textures/minecraft/polished_blackstone_bricks.png b/public/textures/minecraft/polished_blackstone_bricks.png deleted file mode 100644 index e92740cd..00000000 Binary files a/public/textures/minecraft/polished_blackstone_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/polished_blackstone_button.png b/public/textures/minecraft/polished_blackstone_button.png deleted file mode 100644 index 36683ab6..00000000 Binary files a/public/textures/minecraft/polished_blackstone_button.png and /dev/null differ diff --git a/public/textures/minecraft/polished_blackstone_pressure_plate.png b/public/textures/minecraft/polished_blackstone_pressure_plate.png deleted file mode 100644 index 7d118024..00000000 Binary files a/public/textures/minecraft/polished_blackstone_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/polished_blackstone_slab.png b/public/textures/minecraft/polished_blackstone_slab.png deleted file mode 100644 index 2a8d99ba..00000000 Binary files a/public/textures/minecraft/polished_blackstone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/polished_blackstone_stairs.png b/public/textures/minecraft/polished_blackstone_stairs.png deleted file mode 100644 index 87a84f8e..00000000 Binary files a/public/textures/minecraft/polished_blackstone_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/polished_blackstone_wall.png b/public/textures/minecraft/polished_blackstone_wall.png deleted file mode 100644 index 33e017cb..00000000 Binary files a/public/textures/minecraft/polished_blackstone_wall.png and /dev/null differ diff --git a/public/textures/minecraft/polished_deepslate.png b/public/textures/minecraft/polished_deepslate.png deleted file mode 100644 index cf2734f0..00000000 Binary files a/public/textures/minecraft/polished_deepslate.png and /dev/null differ diff --git a/public/textures/minecraft/polished_deepslate_slab.png b/public/textures/minecraft/polished_deepslate_slab.png deleted file mode 100644 index 194b490c..00000000 Binary files a/public/textures/minecraft/polished_deepslate_slab.png and /dev/null differ diff --git a/public/textures/minecraft/polished_deepslate_stairs.png b/public/textures/minecraft/polished_deepslate_stairs.png deleted file mode 100644 index dba7f374..00000000 Binary files a/public/textures/minecraft/polished_deepslate_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/polished_deepslate_wall.png b/public/textures/minecraft/polished_deepslate_wall.png deleted file mode 100644 index e0ec9929..00000000 Binary files a/public/textures/minecraft/polished_deepslate_wall.png and /dev/null differ diff --git a/public/textures/minecraft/polished_diorite.png b/public/textures/minecraft/polished_diorite.png deleted file mode 100644 index 6177921d..00000000 Binary files a/public/textures/minecraft/polished_diorite.png and /dev/null differ diff --git a/public/textures/minecraft/polished_diorite_slab.png b/public/textures/minecraft/polished_diorite_slab.png deleted file mode 100644 index adc14058..00000000 Binary files a/public/textures/minecraft/polished_diorite_slab.png and /dev/null differ diff --git a/public/textures/minecraft/polished_diorite_stairs.png b/public/textures/minecraft/polished_diorite_stairs.png deleted file mode 100644 index b10f9a48..00000000 Binary files a/public/textures/minecraft/polished_diorite_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/polished_granite.png b/public/textures/minecraft/polished_granite.png deleted file mode 100644 index e3746310..00000000 Binary files a/public/textures/minecraft/polished_granite.png and /dev/null differ diff --git a/public/textures/minecraft/polished_granite_slab.png b/public/textures/minecraft/polished_granite_slab.png deleted file mode 100644 index 3438e87f..00000000 Binary files a/public/textures/minecraft/polished_granite_slab.png and /dev/null differ diff --git a/public/textures/minecraft/polished_granite_stairs.png b/public/textures/minecraft/polished_granite_stairs.png deleted file mode 100644 index d738d1ce..00000000 Binary files a/public/textures/minecraft/polished_granite_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/polished_tuff.png b/public/textures/minecraft/polished_tuff.png deleted file mode 100644 index ce6d839b..00000000 Binary files a/public/textures/minecraft/polished_tuff.png and /dev/null differ diff --git a/public/textures/minecraft/polished_tuff_slab.png b/public/textures/minecraft/polished_tuff_slab.png deleted file mode 100644 index 83166041..00000000 Binary files a/public/textures/minecraft/polished_tuff_slab.png and /dev/null differ diff --git a/public/textures/minecraft/polished_tuff_stairs.png b/public/textures/minecraft/polished_tuff_stairs.png deleted file mode 100644 index d6e1107a..00000000 Binary files a/public/textures/minecraft/polished_tuff_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/polished_tuff_wall.png b/public/textures/minecraft/polished_tuff_wall.png deleted file mode 100644 index 34af3d31..00000000 Binary files a/public/textures/minecraft/polished_tuff_wall.png and /dev/null differ diff --git a/public/textures/minecraft/popped_chorus_fruit.png b/public/textures/minecraft/popped_chorus_fruit.png deleted file mode 100644 index d385971c..00000000 Binary files a/public/textures/minecraft/popped_chorus_fruit.png and /dev/null differ diff --git a/public/textures/minecraft/poppy.png b/public/textures/minecraft/poppy.png deleted file mode 100644 index 70395588..00000000 Binary files a/public/textures/minecraft/poppy.png and /dev/null differ diff --git a/public/textures/minecraft/porkchop.png b/public/textures/minecraft/porkchop.png deleted file mode 100644 index 51b29934..00000000 Binary files a/public/textures/minecraft/porkchop.png and /dev/null differ diff --git a/public/textures/minecraft/potato.png b/public/textures/minecraft/potato.png deleted file mode 100644 index 160014f9..00000000 Binary files a/public/textures/minecraft/potato.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png deleted file mode 100644 index ae566947..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png deleted file mode 100644 index ae566947..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png deleted file mode 100644 index ae566947..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png deleted file mode 100644 index 71f9ca21..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png deleted file mode 100644 index 65d1a536..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png deleted file mode 100644 index eacafc1a..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png deleted file mode 100644 index dad8741f..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png deleted file mode 100644 index 5175f7e2..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png deleted file mode 100644 index 99ffb872..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png deleted file mode 100644 index a61a183b..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png deleted file mode 100644 index 65d1a536..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png deleted file mode 100644 index 99ffb872..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png deleted file mode 100644 index a61a183b..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png deleted file mode 100644 index be05eb59..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png deleted file mode 100644 index 82603069..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png deleted file mode 100644 index 1812fdf8..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png deleted file mode 100644 index 1e33135a..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png deleted file mode 100644 index 74e444b1..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png deleted file mode 100644 index baaa7d03..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png deleted file mode 100644 index 302e85fe..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png deleted file mode 100644 index 0dbf9070..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png deleted file mode 100644 index d74f51d0..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png deleted file mode 100644 index 6edb9f29..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png deleted file mode 100644 index 3e012156..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png deleted file mode 100644 index 71f9ca21..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png deleted file mode 100644 index be05eb59..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png deleted file mode 100644 index e2d42780..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png deleted file mode 100644 index 82603069..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png deleted file mode 100644 index 1812fdf8..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png deleted file mode 100644 index 1e33135a..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png deleted file mode 100644 index 74e444b1..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png deleted file mode 100644 index baaa7d03..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png deleted file mode 100644 index eacafc1a..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png deleted file mode 100644 index dad8741f..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png deleted file mode 100644 index a61a183b..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png deleted file mode 100644 index 82603069..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png deleted file mode 100644 index 1812fdf8..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png deleted file mode 100644 index 74e444b1..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png deleted file mode 100644 index baaa7d03..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png deleted file mode 100644 index 302e85fe..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png deleted file mode 100644 index 18bae0f0..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png deleted file mode 100644 index 302e85fe..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png deleted file mode 100644 index 71f9ca21..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png deleted file mode 100644 index 0dbf9070..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png deleted file mode 100644 index 71f9ca21..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png deleted file mode 100644 index d74f51d0..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png deleted file mode 100644 index 6edb9f29..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png deleted file mode 100644 index b38130d4..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png and /dev/null differ diff --git a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png b/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png deleted file mode 100644 index 018b5690..00000000 Binary files a/public/textures/minecraft/potion__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png and /dev/null differ diff --git a/public/textures/minecraft/powder_snow_bucket.png b/public/textures/minecraft/powder_snow_bucket.png deleted file mode 100644 index b7a40736..00000000 Binary files a/public/textures/minecraft/powder_snow_bucket.png and /dev/null differ diff --git a/public/textures/minecraft/powered_rail.png b/public/textures/minecraft/powered_rail.png deleted file mode 100644 index 68835c76..00000000 Binary files a/public/textures/minecraft/powered_rail.png and /dev/null differ diff --git a/public/textures/minecraft/prismarine.png b/public/textures/minecraft/prismarine.png deleted file mode 100644 index a986faf7..00000000 Binary files a/public/textures/minecraft/prismarine.png and /dev/null differ diff --git a/public/textures/minecraft/prismarine_brick_slab.png b/public/textures/minecraft/prismarine_brick_slab.png deleted file mode 100644 index c8b9a343..00000000 Binary files a/public/textures/minecraft/prismarine_brick_slab.png and /dev/null differ diff --git a/public/textures/minecraft/prismarine_brick_stairs.png b/public/textures/minecraft/prismarine_brick_stairs.png deleted file mode 100644 index 6c32e58b..00000000 Binary files a/public/textures/minecraft/prismarine_brick_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/prismarine_bricks.png b/public/textures/minecraft/prismarine_bricks.png deleted file mode 100644 index b8080dd7..00000000 Binary files a/public/textures/minecraft/prismarine_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/prismarine_crystals.png b/public/textures/minecraft/prismarine_crystals.png deleted file mode 100644 index 8c43f696..00000000 Binary files a/public/textures/minecraft/prismarine_crystals.png and /dev/null differ diff --git a/public/textures/minecraft/prismarine_shard.png b/public/textures/minecraft/prismarine_shard.png deleted file mode 100644 index f9421605..00000000 Binary files a/public/textures/minecraft/prismarine_shard.png and /dev/null differ diff --git a/public/textures/minecraft/prismarine_slab.png b/public/textures/minecraft/prismarine_slab.png deleted file mode 100644 index b5b8cf40..00000000 Binary files a/public/textures/minecraft/prismarine_slab.png and /dev/null differ diff --git a/public/textures/minecraft/prismarine_stairs.png b/public/textures/minecraft/prismarine_stairs.png deleted file mode 100644 index 4b86c756..00000000 Binary files a/public/textures/minecraft/prismarine_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/prismarine_wall.png b/public/textures/minecraft/prismarine_wall.png deleted file mode 100644 index 5209ed69..00000000 Binary files a/public/textures/minecraft/prismarine_wall.png and /dev/null differ diff --git a/public/textures/minecraft/prize_pottery_sherd.png b/public/textures/minecraft/prize_pottery_sherd.png deleted file mode 100644 index 1cb52199..00000000 Binary files a/public/textures/minecraft/prize_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/pufferfish.png b/public/textures/minecraft/pufferfish.png deleted file mode 100644 index 1fcae9c1..00000000 Binary files a/public/textures/minecraft/pufferfish.png and /dev/null differ diff --git a/public/textures/minecraft/pufferfish_bucket.png b/public/textures/minecraft/pufferfish_bucket.png deleted file mode 100644 index 67f3bb31..00000000 Binary files a/public/textures/minecraft/pufferfish_bucket.png and /dev/null differ diff --git a/public/textures/minecraft/pufferfish_spawn_egg.png b/public/textures/minecraft/pufferfish_spawn_egg.png deleted file mode 100644 index 17e54ab7..00000000 Binary files a/public/textures/minecraft/pufferfish_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/pumpkin.png b/public/textures/minecraft/pumpkin.png deleted file mode 100644 index 24ad3fe5..00000000 Binary files a/public/textures/minecraft/pumpkin.png and /dev/null differ diff --git a/public/textures/minecraft/pumpkin_pie.png b/public/textures/minecraft/pumpkin_pie.png deleted file mode 100644 index 10a445c5..00000000 Binary files a/public/textures/minecraft/pumpkin_pie.png and /dev/null differ diff --git a/public/textures/minecraft/pumpkin_seeds.png b/public/textures/minecraft/pumpkin_seeds.png deleted file mode 100644 index 665f1ff3..00000000 Binary files a/public/textures/minecraft/pumpkin_seeds.png and /dev/null differ diff --git a/public/textures/minecraft/purple_banner.png b/public/textures/minecraft/purple_banner.png deleted file mode 100644 index 64bbc07a..00000000 Binary files a/public/textures/minecraft/purple_banner.png and /dev/null differ diff --git a/public/textures/minecraft/purple_bed.png b/public/textures/minecraft/purple_bed.png deleted file mode 100644 index 48aa55be..00000000 Binary files a/public/textures/minecraft/purple_bed.png and /dev/null differ diff --git a/public/textures/minecraft/purple_candle.png b/public/textures/minecraft/purple_candle.png deleted file mode 100644 index 19cca64c..00000000 Binary files a/public/textures/minecraft/purple_candle.png and /dev/null differ diff --git a/public/textures/minecraft/purple_carpet.png b/public/textures/minecraft/purple_carpet.png deleted file mode 100644 index 1ec8651b..00000000 Binary files a/public/textures/minecraft/purple_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/purple_concrete.png b/public/textures/minecraft/purple_concrete.png deleted file mode 100644 index 6a36cf0e..00000000 Binary files a/public/textures/minecraft/purple_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/purple_concrete_powder.png b/public/textures/minecraft/purple_concrete_powder.png deleted file mode 100644 index 7159b35e..00000000 Binary files a/public/textures/minecraft/purple_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/purple_dye.png b/public/textures/minecraft/purple_dye.png deleted file mode 100644 index 37439aee..00000000 Binary files a/public/textures/minecraft/purple_dye.png and /dev/null differ diff --git a/public/textures/minecraft/purple_glazed_terracotta.png b/public/textures/minecraft/purple_glazed_terracotta.png deleted file mode 100644 index bf44eb88..00000000 Binary files a/public/textures/minecraft/purple_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/purple_shulker_box.png b/public/textures/minecraft/purple_shulker_box.png deleted file mode 100644 index b4d8c460..00000000 Binary files a/public/textures/minecraft/purple_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/purple_stained_glass.png b/public/textures/minecraft/purple_stained_glass.png deleted file mode 100644 index 4baa76c3..00000000 Binary files a/public/textures/minecraft/purple_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/purple_stained_glass_pane.png b/public/textures/minecraft/purple_stained_glass_pane.png deleted file mode 100644 index 955481bb..00000000 Binary files a/public/textures/minecraft/purple_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/purple_terracotta.png b/public/textures/minecraft/purple_terracotta.png deleted file mode 100644 index 3c7f7924..00000000 Binary files a/public/textures/minecraft/purple_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/purple_wool.png b/public/textures/minecraft/purple_wool.png deleted file mode 100644 index d3aa18e5..00000000 Binary files a/public/textures/minecraft/purple_wool.png and /dev/null differ diff --git a/public/textures/minecraft/purpur_block.png b/public/textures/minecraft/purpur_block.png deleted file mode 100644 index f552ffab..00000000 Binary files a/public/textures/minecraft/purpur_block.png and /dev/null differ diff --git a/public/textures/minecraft/purpur_pillar.png b/public/textures/minecraft/purpur_pillar.png deleted file mode 100644 index 4bbfa34a..00000000 Binary files a/public/textures/minecraft/purpur_pillar.png and /dev/null differ diff --git a/public/textures/minecraft/purpur_slab.png b/public/textures/minecraft/purpur_slab.png deleted file mode 100644 index 1bc87235..00000000 Binary files a/public/textures/minecraft/purpur_slab.png and /dev/null differ diff --git a/public/textures/minecraft/purpur_stairs.png b/public/textures/minecraft/purpur_stairs.png deleted file mode 100644 index 08a4f24e..00000000 Binary files a/public/textures/minecraft/purpur_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/quartz.png b/public/textures/minecraft/quartz.png deleted file mode 100644 index 3f67a923..00000000 Binary files a/public/textures/minecraft/quartz.png and /dev/null differ diff --git a/public/textures/minecraft/quartz_block.png b/public/textures/minecraft/quartz_block.png deleted file mode 100644 index 3853140f..00000000 Binary files a/public/textures/minecraft/quartz_block.png and /dev/null differ diff --git a/public/textures/minecraft/quartz_bricks.png b/public/textures/minecraft/quartz_bricks.png deleted file mode 100644 index a4856c5c..00000000 Binary files a/public/textures/minecraft/quartz_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/quartz_pillar.png b/public/textures/minecraft/quartz_pillar.png deleted file mode 100644 index 25d99ca0..00000000 Binary files a/public/textures/minecraft/quartz_pillar.png and /dev/null differ diff --git a/public/textures/minecraft/quartz_slab.png b/public/textures/minecraft/quartz_slab.png deleted file mode 100644 index ec63bd7a..00000000 Binary files a/public/textures/minecraft/quartz_slab.png and /dev/null differ diff --git a/public/textures/minecraft/quartz_stairs.png b/public/textures/minecraft/quartz_stairs.png deleted file mode 100644 index 32b492f9..00000000 Binary files a/public/textures/minecraft/quartz_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/rabbit.png b/public/textures/minecraft/rabbit.png deleted file mode 100644 index 39765b1b..00000000 Binary files a/public/textures/minecraft/rabbit.png and /dev/null differ diff --git a/public/textures/minecraft/rabbit_foot.png b/public/textures/minecraft/rabbit_foot.png deleted file mode 100644 index 3ccbe7fd..00000000 Binary files a/public/textures/minecraft/rabbit_foot.png and /dev/null differ diff --git a/public/textures/minecraft/rabbit_hide.png b/public/textures/minecraft/rabbit_hide.png deleted file mode 100644 index eeba0e8b..00000000 Binary files a/public/textures/minecraft/rabbit_hide.png and /dev/null differ diff --git a/public/textures/minecraft/rabbit_spawn_egg.png b/public/textures/minecraft/rabbit_spawn_egg.png deleted file mode 100644 index ee38e858..00000000 Binary files a/public/textures/minecraft/rabbit_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/rabbit_stew.png b/public/textures/minecraft/rabbit_stew.png deleted file mode 100644 index 9f6451fd..00000000 Binary files a/public/textures/minecraft/rabbit_stew.png and /dev/null differ diff --git a/public/textures/minecraft/rail.png b/public/textures/minecraft/rail.png deleted file mode 100644 index e26b6122..00000000 Binary files a/public/textures/minecraft/rail.png and /dev/null differ diff --git a/public/textures/minecraft/raiser_armor_trim_smithing_template.png b/public/textures/minecraft/raiser_armor_trim_smithing_template.png deleted file mode 100644 index 03add4ba..00000000 Binary files a/public/textures/minecraft/raiser_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/ravager_spawn_egg.png b/public/textures/minecraft/ravager_spawn_egg.png deleted file mode 100644 index 85ea7dd6..00000000 Binary files a/public/textures/minecraft/ravager_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/raw_copper.png b/public/textures/minecraft/raw_copper.png deleted file mode 100644 index 0f2f6c14..00000000 Binary files a/public/textures/minecraft/raw_copper.png and /dev/null differ diff --git a/public/textures/minecraft/raw_copper_block.png b/public/textures/minecraft/raw_copper_block.png deleted file mode 100644 index b428bc68..00000000 Binary files a/public/textures/minecraft/raw_copper_block.png and /dev/null differ diff --git a/public/textures/minecraft/raw_gold.png b/public/textures/minecraft/raw_gold.png deleted file mode 100644 index ba68af65..00000000 Binary files a/public/textures/minecraft/raw_gold.png and /dev/null differ diff --git a/public/textures/minecraft/raw_gold_block.png b/public/textures/minecraft/raw_gold_block.png deleted file mode 100644 index 709551dd..00000000 Binary files a/public/textures/minecraft/raw_gold_block.png and /dev/null differ diff --git a/public/textures/minecraft/raw_iron.png b/public/textures/minecraft/raw_iron.png deleted file mode 100644 index fd12c16e..00000000 Binary files a/public/textures/minecraft/raw_iron.png and /dev/null differ diff --git a/public/textures/minecraft/raw_iron_block.png b/public/textures/minecraft/raw_iron_block.png deleted file mode 100644 index 8c757b82..00000000 Binary files a/public/textures/minecraft/raw_iron_block.png and /dev/null differ diff --git a/public/textures/minecraft/recovery_compass.png b/public/textures/minecraft/recovery_compass.png deleted file mode 100644 index 99dbd8e4..00000000 Binary files a/public/textures/minecraft/recovery_compass.png and /dev/null differ diff --git a/public/textures/minecraft/red_banner.png b/public/textures/minecraft/red_banner.png deleted file mode 100644 index 14076c07..00000000 Binary files a/public/textures/minecraft/red_banner.png and /dev/null differ diff --git a/public/textures/minecraft/red_bed.png b/public/textures/minecraft/red_bed.png deleted file mode 100644 index 01ac7e3e..00000000 Binary files a/public/textures/minecraft/red_bed.png and /dev/null differ diff --git a/public/textures/minecraft/red_candle.png b/public/textures/minecraft/red_candle.png deleted file mode 100644 index 77badcf0..00000000 Binary files a/public/textures/minecraft/red_candle.png and /dev/null differ diff --git a/public/textures/minecraft/red_carpet.png b/public/textures/minecraft/red_carpet.png deleted file mode 100644 index 72302d0c..00000000 Binary files a/public/textures/minecraft/red_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/red_concrete.png b/public/textures/minecraft/red_concrete.png deleted file mode 100644 index ea682ee5..00000000 Binary files a/public/textures/minecraft/red_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/red_concrete_powder.png b/public/textures/minecraft/red_concrete_powder.png deleted file mode 100644 index fcd94909..00000000 Binary files a/public/textures/minecraft/red_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/red_dye.png b/public/textures/minecraft/red_dye.png deleted file mode 100644 index ce838ee6..00000000 Binary files a/public/textures/minecraft/red_dye.png and /dev/null differ diff --git a/public/textures/minecraft/red_glazed_terracotta.png b/public/textures/minecraft/red_glazed_terracotta.png deleted file mode 100644 index 593db38e..00000000 Binary files a/public/textures/minecraft/red_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/red_mushroom.png b/public/textures/minecraft/red_mushroom.png deleted file mode 100644 index 85b56981..00000000 Binary files a/public/textures/minecraft/red_mushroom.png and /dev/null differ diff --git a/public/textures/minecraft/red_mushroom_block.png b/public/textures/minecraft/red_mushroom_block.png deleted file mode 100644 index ed8dc0f7..00000000 Binary files a/public/textures/minecraft/red_mushroom_block.png and /dev/null differ diff --git a/public/textures/minecraft/red_nether_brick_slab.png b/public/textures/minecraft/red_nether_brick_slab.png deleted file mode 100644 index 1d2e9663..00000000 Binary files a/public/textures/minecraft/red_nether_brick_slab.png and /dev/null differ diff --git a/public/textures/minecraft/red_nether_brick_stairs.png b/public/textures/minecraft/red_nether_brick_stairs.png deleted file mode 100644 index a98d3534..00000000 Binary files a/public/textures/minecraft/red_nether_brick_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/red_nether_brick_wall.png b/public/textures/minecraft/red_nether_brick_wall.png deleted file mode 100644 index 8753f87d..00000000 Binary files a/public/textures/minecraft/red_nether_brick_wall.png and /dev/null differ diff --git a/public/textures/minecraft/red_nether_bricks.png b/public/textures/minecraft/red_nether_bricks.png deleted file mode 100644 index 784267a0..00000000 Binary files a/public/textures/minecraft/red_nether_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/red_sand.png b/public/textures/minecraft/red_sand.png deleted file mode 100644 index 688d3266..00000000 Binary files a/public/textures/minecraft/red_sand.png and /dev/null differ diff --git a/public/textures/minecraft/red_sandstone.png b/public/textures/minecraft/red_sandstone.png deleted file mode 100644 index 35a6d0d5..00000000 Binary files a/public/textures/minecraft/red_sandstone.png and /dev/null differ diff --git a/public/textures/minecraft/red_sandstone_slab.png b/public/textures/minecraft/red_sandstone_slab.png deleted file mode 100644 index 767f26ef..00000000 Binary files a/public/textures/minecraft/red_sandstone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/red_sandstone_stairs.png b/public/textures/minecraft/red_sandstone_stairs.png deleted file mode 100644 index 775cc142..00000000 Binary files a/public/textures/minecraft/red_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/red_sandstone_wall.png b/public/textures/minecraft/red_sandstone_wall.png deleted file mode 100644 index a4f218f3..00000000 Binary files a/public/textures/minecraft/red_sandstone_wall.png and /dev/null differ diff --git a/public/textures/minecraft/red_shulker_box.png b/public/textures/minecraft/red_shulker_box.png deleted file mode 100644 index a6ab07c1..00000000 Binary files a/public/textures/minecraft/red_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/red_stained_glass.png b/public/textures/minecraft/red_stained_glass.png deleted file mode 100644 index 7b10eaec..00000000 Binary files a/public/textures/minecraft/red_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/red_stained_glass_pane.png b/public/textures/minecraft/red_stained_glass_pane.png deleted file mode 100644 index c3caf8fe..00000000 Binary files a/public/textures/minecraft/red_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/red_terracotta.png b/public/textures/minecraft/red_terracotta.png deleted file mode 100644 index 65f14f21..00000000 Binary files a/public/textures/minecraft/red_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/red_tulip.png b/public/textures/minecraft/red_tulip.png deleted file mode 100644 index eba91356..00000000 Binary files a/public/textures/minecraft/red_tulip.png and /dev/null differ diff --git a/public/textures/minecraft/red_wool.png b/public/textures/minecraft/red_wool.png deleted file mode 100644 index 265726ce..00000000 Binary files a/public/textures/minecraft/red_wool.png and /dev/null differ diff --git a/public/textures/minecraft/redstone.png b/public/textures/minecraft/redstone.png deleted file mode 100644 index bace7f60..00000000 Binary files a/public/textures/minecraft/redstone.png and /dev/null differ diff --git a/public/textures/minecraft/redstone_block.png b/public/textures/minecraft/redstone_block.png deleted file mode 100644 index db1e8982..00000000 Binary files a/public/textures/minecraft/redstone_block.png and /dev/null differ diff --git a/public/textures/minecraft/redstone_lamp.png b/public/textures/minecraft/redstone_lamp.png deleted file mode 100644 index df98b379..00000000 Binary files a/public/textures/minecraft/redstone_lamp.png and /dev/null differ diff --git a/public/textures/minecraft/redstone_ore.png b/public/textures/minecraft/redstone_ore.png deleted file mode 100644 index a5b38f24..00000000 Binary files a/public/textures/minecraft/redstone_ore.png and /dev/null differ diff --git a/public/textures/minecraft/redstone_torch.png b/public/textures/minecraft/redstone_torch.png deleted file mode 100644 index 7533d83c..00000000 Binary files a/public/textures/minecraft/redstone_torch.png and /dev/null differ diff --git a/public/textures/minecraft/reinforced_deepslate.png b/public/textures/minecraft/reinforced_deepslate.png deleted file mode 100644 index cb7b7ad7..00000000 Binary files a/public/textures/minecraft/reinforced_deepslate.png and /dev/null differ diff --git a/public/textures/minecraft/repeater.png b/public/textures/minecraft/repeater.png deleted file mode 100644 index 8683101c..00000000 Binary files a/public/textures/minecraft/repeater.png and /dev/null differ diff --git a/public/textures/minecraft/respawn_anchor.png b/public/textures/minecraft/respawn_anchor.png deleted file mode 100644 index 715b3e9f..00000000 Binary files a/public/textures/minecraft/respawn_anchor.png and /dev/null differ diff --git a/public/textures/minecraft/rib_armor_trim_smithing_template.png b/public/textures/minecraft/rib_armor_trim_smithing_template.png deleted file mode 100644 index 58d9b9b4..00000000 Binary files a/public/textures/minecraft/rib_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/rooted_dirt.png b/public/textures/minecraft/rooted_dirt.png deleted file mode 100644 index 240c70cd..00000000 Binary files a/public/textures/minecraft/rooted_dirt.png and /dev/null differ diff --git a/public/textures/minecraft/rose_bush.png b/public/textures/minecraft/rose_bush.png deleted file mode 100644 index 90813b1b..00000000 Binary files a/public/textures/minecraft/rose_bush.png and /dev/null differ diff --git a/public/textures/minecraft/rotten_flesh.png b/public/textures/minecraft/rotten_flesh.png deleted file mode 100644 index 30577c1a..00000000 Binary files a/public/textures/minecraft/rotten_flesh.png and /dev/null differ diff --git a/public/textures/minecraft/saddle.png b/public/textures/minecraft/saddle.png deleted file mode 100644 index cde49b64..00000000 Binary files a/public/textures/minecraft/saddle.png and /dev/null differ diff --git a/public/textures/minecraft/salmon.png b/public/textures/minecraft/salmon.png deleted file mode 100644 index 54650057..00000000 Binary files a/public/textures/minecraft/salmon.png and /dev/null differ diff --git a/public/textures/minecraft/salmon_bucket.png b/public/textures/minecraft/salmon_bucket.png deleted file mode 100644 index 208ebf59..00000000 Binary files a/public/textures/minecraft/salmon_bucket.png and /dev/null differ diff --git a/public/textures/minecraft/salmon_spawn_egg.png b/public/textures/minecraft/salmon_spawn_egg.png deleted file mode 100644 index 34f9cd2f..00000000 Binary files a/public/textures/minecraft/salmon_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/sand.png b/public/textures/minecraft/sand.png deleted file mode 100644 index a7c01859..00000000 Binary files a/public/textures/minecraft/sand.png and /dev/null differ diff --git a/public/textures/minecraft/sandstone.png b/public/textures/minecraft/sandstone.png deleted file mode 100644 index 9c9f48ba..00000000 Binary files a/public/textures/minecraft/sandstone.png and /dev/null differ diff --git a/public/textures/minecraft/sandstone_slab.png b/public/textures/minecraft/sandstone_slab.png deleted file mode 100644 index be97760f..00000000 Binary files a/public/textures/minecraft/sandstone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/sandstone_stairs.png b/public/textures/minecraft/sandstone_stairs.png deleted file mode 100644 index 9d661bee..00000000 Binary files a/public/textures/minecraft/sandstone_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/sandstone_wall.png b/public/textures/minecraft/sandstone_wall.png deleted file mode 100644 index 1f8a8063..00000000 Binary files a/public/textures/minecraft/sandstone_wall.png and /dev/null differ diff --git a/public/textures/minecraft/scaffolding.png b/public/textures/minecraft/scaffolding.png deleted file mode 100644 index c1fa5407..00000000 Binary files a/public/textures/minecraft/scaffolding.png and /dev/null differ diff --git a/public/textures/minecraft/scrape_pottery_sherd.png b/public/textures/minecraft/scrape_pottery_sherd.png deleted file mode 100644 index a7823d90..00000000 Binary files a/public/textures/minecraft/scrape_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/sculk.png b/public/textures/minecraft/sculk.png deleted file mode 100644 index 0faaebb5..00000000 Binary files a/public/textures/minecraft/sculk.png and /dev/null differ diff --git a/public/textures/minecraft/sculk_catalyst.png b/public/textures/minecraft/sculk_catalyst.png deleted file mode 100644 index 8009c443..00000000 Binary files a/public/textures/minecraft/sculk_catalyst.png and /dev/null differ diff --git a/public/textures/minecraft/sculk_sensor.png b/public/textures/minecraft/sculk_sensor.png deleted file mode 100644 index c1007bec..00000000 Binary files a/public/textures/minecraft/sculk_sensor.png and /dev/null differ diff --git a/public/textures/minecraft/sculk_shrieker.png b/public/textures/minecraft/sculk_shrieker.png deleted file mode 100644 index 68cca975..00000000 Binary files a/public/textures/minecraft/sculk_shrieker.png and /dev/null differ diff --git a/public/textures/minecraft/sculk_vein.png b/public/textures/minecraft/sculk_vein.png deleted file mode 100644 index 18eff473..00000000 Binary files a/public/textures/minecraft/sculk_vein.png and /dev/null differ diff --git a/public/textures/minecraft/sea_lantern.png b/public/textures/minecraft/sea_lantern.png deleted file mode 100644 index 26ad1115..00000000 Binary files a/public/textures/minecraft/sea_lantern.png and /dev/null differ diff --git a/public/textures/minecraft/sea_pickle.png b/public/textures/minecraft/sea_pickle.png deleted file mode 100644 index b1c8f079..00000000 Binary files a/public/textures/minecraft/sea_pickle.png and /dev/null differ diff --git a/public/textures/minecraft/seagrass.png b/public/textures/minecraft/seagrass.png deleted file mode 100644 index 30401c1c..00000000 Binary files a/public/textures/minecraft/seagrass.png and /dev/null differ diff --git a/public/textures/minecraft/sentry_armor_trim_smithing_template.png b/public/textures/minecraft/sentry_armor_trim_smithing_template.png deleted file mode 100644 index 08e5652b..00000000 Binary files a/public/textures/minecraft/sentry_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/shaper_armor_trim_smithing_template.png b/public/textures/minecraft/shaper_armor_trim_smithing_template.png deleted file mode 100644 index dd8e3ebe..00000000 Binary files a/public/textures/minecraft/shaper_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/sheaf_pottery_sherd.png b/public/textures/minecraft/sheaf_pottery_sherd.png deleted file mode 100644 index cb3623b7..00000000 Binary files a/public/textures/minecraft/sheaf_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/shears.png b/public/textures/minecraft/shears.png deleted file mode 100644 index d61ede2a..00000000 Binary files a/public/textures/minecraft/shears.png and /dev/null differ diff --git a/public/textures/minecraft/sheep_spawn_egg.png b/public/textures/minecraft/sheep_spawn_egg.png deleted file mode 100644 index 0d7f891f..00000000 Binary files a/public/textures/minecraft/sheep_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/shelter_pottery_sherd.png b/public/textures/minecraft/shelter_pottery_sherd.png deleted file mode 100644 index 05c11655..00000000 Binary files a/public/textures/minecraft/shelter_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/shield.png b/public/textures/minecraft/shield.png deleted file mode 100644 index 23132fa0..00000000 Binary files a/public/textures/minecraft/shield.png and /dev/null differ diff --git a/public/textures/minecraft/short_grass.png b/public/textures/minecraft/short_grass.png deleted file mode 100644 index 1ac87245..00000000 Binary files a/public/textures/minecraft/short_grass.png and /dev/null differ diff --git a/public/textures/minecraft/shroomlight.png b/public/textures/minecraft/shroomlight.png deleted file mode 100644 index b710463c..00000000 Binary files a/public/textures/minecraft/shroomlight.png and /dev/null differ diff --git a/public/textures/minecraft/shulker_box.png b/public/textures/minecraft/shulker_box.png deleted file mode 100644 index 4d28467d..00000000 Binary files a/public/textures/minecraft/shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/shulker_shell.png b/public/textures/minecraft/shulker_shell.png deleted file mode 100644 index 82586520..00000000 Binary files a/public/textures/minecraft/shulker_shell.png and /dev/null differ diff --git a/public/textures/minecraft/shulker_spawn_egg.png b/public/textures/minecraft/shulker_spawn_egg.png deleted file mode 100644 index a60d2895..00000000 Binary files a/public/textures/minecraft/shulker_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/silence_armor_trim_smithing_template.png b/public/textures/minecraft/silence_armor_trim_smithing_template.png deleted file mode 100644 index 66579589..00000000 Binary files a/public/textures/minecraft/silence_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/silverfish_spawn_egg.png b/public/textures/minecraft/silverfish_spawn_egg.png deleted file mode 100644 index db2f6514..00000000 Binary files a/public/textures/minecraft/silverfish_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/skeleton_horse_spawn_egg.png b/public/textures/minecraft/skeleton_horse_spawn_egg.png deleted file mode 100644 index 3ccf96cc..00000000 Binary files a/public/textures/minecraft/skeleton_horse_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/skeleton_skull.png b/public/textures/minecraft/skeleton_skull.png deleted file mode 100644 index 68862b47..00000000 Binary files a/public/textures/minecraft/skeleton_skull.png and /dev/null differ diff --git a/public/textures/minecraft/skeleton_spawn_egg.png b/public/textures/minecraft/skeleton_spawn_egg.png deleted file mode 100644 index 3f0c8aa2..00000000 Binary files a/public/textures/minecraft/skeleton_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/skull_banner_pattern.png b/public/textures/minecraft/skull_banner_pattern.png deleted file mode 100644 index 43fad4e1..00000000 Binary files a/public/textures/minecraft/skull_banner_pattern.png and /dev/null differ diff --git a/public/textures/minecraft/skull_pottery_sherd.png b/public/textures/minecraft/skull_pottery_sherd.png deleted file mode 100644 index 1228e363..00000000 Binary files a/public/textures/minecraft/skull_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/slime_ball.png b/public/textures/minecraft/slime_ball.png deleted file mode 100644 index 58c8bfaf..00000000 Binary files a/public/textures/minecraft/slime_ball.png and /dev/null differ diff --git a/public/textures/minecraft/slime_block.png b/public/textures/minecraft/slime_block.png deleted file mode 100644 index 36d0f69d..00000000 Binary files a/public/textures/minecraft/slime_block.png and /dev/null differ diff --git a/public/textures/minecraft/slime_spawn_egg.png b/public/textures/minecraft/slime_spawn_egg.png deleted file mode 100644 index 38fddd02..00000000 Binary files a/public/textures/minecraft/slime_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/small_amethyst_bud.png b/public/textures/minecraft/small_amethyst_bud.png deleted file mode 100644 index ccc74337..00000000 Binary files a/public/textures/minecraft/small_amethyst_bud.png and /dev/null differ diff --git a/public/textures/minecraft/small_dripleaf.png b/public/textures/minecraft/small_dripleaf.png deleted file mode 100644 index f6b1bd3d..00000000 Binary files a/public/textures/minecraft/small_dripleaf.png and /dev/null differ diff --git a/public/textures/minecraft/smithing_table.png b/public/textures/minecraft/smithing_table.png deleted file mode 100644 index 9992e6e4..00000000 Binary files a/public/textures/minecraft/smithing_table.png and /dev/null differ diff --git a/public/textures/minecraft/smoker.png b/public/textures/minecraft/smoker.png deleted file mode 100644 index 40ddaac4..00000000 Binary files a/public/textures/minecraft/smoker.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_basalt.png b/public/textures/minecraft/smooth_basalt.png deleted file mode 100644 index fb52768b..00000000 Binary files a/public/textures/minecraft/smooth_basalt.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_quartz.png b/public/textures/minecraft/smooth_quartz.png deleted file mode 100644 index 506536c9..00000000 Binary files a/public/textures/minecraft/smooth_quartz.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_quartz_slab.png b/public/textures/minecraft/smooth_quartz_slab.png deleted file mode 100644 index d50db900..00000000 Binary files a/public/textures/minecraft/smooth_quartz_slab.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_quartz_stairs.png b/public/textures/minecraft/smooth_quartz_stairs.png deleted file mode 100644 index d8fd8c1e..00000000 Binary files a/public/textures/minecraft/smooth_quartz_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_red_sandstone.png b/public/textures/minecraft/smooth_red_sandstone.png deleted file mode 100644 index c673ce65..00000000 Binary files a/public/textures/minecraft/smooth_red_sandstone.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_red_sandstone_slab.png b/public/textures/minecraft/smooth_red_sandstone_slab.png deleted file mode 100644 index bc06aac4..00000000 Binary files a/public/textures/minecraft/smooth_red_sandstone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_red_sandstone_stairs.png b/public/textures/minecraft/smooth_red_sandstone_stairs.png deleted file mode 100644 index bee8cb93..00000000 Binary files a/public/textures/minecraft/smooth_red_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_sandstone.png b/public/textures/minecraft/smooth_sandstone.png deleted file mode 100644 index bbdf7b72..00000000 Binary files a/public/textures/minecraft/smooth_sandstone.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_sandstone_slab.png b/public/textures/minecraft/smooth_sandstone_slab.png deleted file mode 100644 index 532bb548..00000000 Binary files a/public/textures/minecraft/smooth_sandstone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_sandstone_stairs.png b/public/textures/minecraft/smooth_sandstone_stairs.png deleted file mode 100644 index 7432a788..00000000 Binary files a/public/textures/minecraft/smooth_sandstone_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_stone.png b/public/textures/minecraft/smooth_stone.png deleted file mode 100644 index 3ebe339c..00000000 Binary files a/public/textures/minecraft/smooth_stone.png and /dev/null differ diff --git a/public/textures/minecraft/smooth_stone_slab.png b/public/textures/minecraft/smooth_stone_slab.png deleted file mode 100644 index 920410b7..00000000 Binary files a/public/textures/minecraft/smooth_stone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/sniffer_egg.png b/public/textures/minecraft/sniffer_egg.png deleted file mode 100644 index deb56509..00000000 Binary files a/public/textures/minecraft/sniffer_egg.png and /dev/null differ diff --git a/public/textures/minecraft/sniffer_spawn_egg.png b/public/textures/minecraft/sniffer_spawn_egg.png deleted file mode 100644 index 754c07a2..00000000 Binary files a/public/textures/minecraft/sniffer_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/snort_pottery_sherd.png b/public/textures/minecraft/snort_pottery_sherd.png deleted file mode 100644 index 94078e60..00000000 Binary files a/public/textures/minecraft/snort_pottery_sherd.png and /dev/null differ diff --git a/public/textures/minecraft/snout_armor_trim_smithing_template.png b/public/textures/minecraft/snout_armor_trim_smithing_template.png deleted file mode 100644 index c08b8afc..00000000 Binary files a/public/textures/minecraft/snout_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/snow.png b/public/textures/minecraft/snow.png deleted file mode 100644 index de873c3a..00000000 Binary files a/public/textures/minecraft/snow.png and /dev/null differ diff --git a/public/textures/minecraft/snow_block.png b/public/textures/minecraft/snow_block.png deleted file mode 100644 index f83f5f18..00000000 Binary files a/public/textures/minecraft/snow_block.png and /dev/null differ diff --git a/public/textures/minecraft/snow_golem_spawn_egg.png b/public/textures/minecraft/snow_golem_spawn_egg.png deleted file mode 100644 index c952db96..00000000 Binary files a/public/textures/minecraft/snow_golem_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/snowball.png b/public/textures/minecraft/snowball.png deleted file mode 100644 index 0992afa9..00000000 Binary files a/public/textures/minecraft/snowball.png and /dev/null differ diff --git a/public/textures/minecraft/soul_campfire.png b/public/textures/minecraft/soul_campfire.png deleted file mode 100644 index 9ebc0488..00000000 Binary files a/public/textures/minecraft/soul_campfire.png and /dev/null differ diff --git a/public/textures/minecraft/soul_lantern.png b/public/textures/minecraft/soul_lantern.png deleted file mode 100644 index 76ed0f5d..00000000 Binary files a/public/textures/minecraft/soul_lantern.png and /dev/null differ diff --git a/public/textures/minecraft/soul_sand.png b/public/textures/minecraft/soul_sand.png deleted file mode 100644 index a231bca2..00000000 Binary files a/public/textures/minecraft/soul_sand.png and /dev/null differ diff --git a/public/textures/minecraft/soul_soil.png b/public/textures/minecraft/soul_soil.png deleted file mode 100644 index c599c97b..00000000 Binary files a/public/textures/minecraft/soul_soil.png and /dev/null differ diff --git a/public/textures/minecraft/soul_torch.png b/public/textures/minecraft/soul_torch.png deleted file mode 100644 index 1de86040..00000000 Binary files a/public/textures/minecraft/soul_torch.png and /dev/null differ diff --git a/public/textures/minecraft/spawner.png b/public/textures/minecraft/spawner.png deleted file mode 100644 index 5e96fdd1..00000000 Binary files a/public/textures/minecraft/spawner.png and /dev/null differ diff --git a/public/textures/minecraft/spectral_arrow.png b/public/textures/minecraft/spectral_arrow.png deleted file mode 100644 index e70e65cb..00000000 Binary files a/public/textures/minecraft/spectral_arrow.png and /dev/null differ diff --git a/public/textures/minecraft/spider_eye.png b/public/textures/minecraft/spider_eye.png deleted file mode 100644 index e7c18b4a..00000000 Binary files a/public/textures/minecraft/spider_eye.png and /dev/null differ diff --git a/public/textures/minecraft/spider_spawn_egg.png b/public/textures/minecraft/spider_spawn_egg.png deleted file mode 100644 index b90f1ec7..00000000 Binary files a/public/textures/minecraft/spider_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/spire_armor_trim_smithing_template.png b/public/textures/minecraft/spire_armor_trim_smithing_template.png deleted file mode 100644 index f1666451..00000000 Binary files a/public/textures/minecraft/spire_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png deleted file mode 100644 index 94aa5da0..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png deleted file mode 100644 index 94aa5da0..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png deleted file mode 100644 index 94aa5da0..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png deleted file mode 100644 index 6628c3d6..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png deleted file mode 100644 index 41725a19..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png deleted file mode 100644 index c851badf..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png deleted file mode 100644 index 6fa43de4..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png deleted file mode 100644 index ffd60ce7..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png deleted file mode 100644 index 11b9f83b..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png deleted file mode 100644 index ca034c8c..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png deleted file mode 100644 index 41725a19..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png deleted file mode 100644 index 11b9f83b..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png deleted file mode 100644 index ca034c8c..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png deleted file mode 100644 index caca7744..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png deleted file mode 100644 index c868621a..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png deleted file mode 100644 index 7099002c..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png deleted file mode 100644 index f3ed60f4..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png deleted file mode 100644 index 1576dab1..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png deleted file mode 100644 index 78350592..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png deleted file mode 100644 index acc57df3..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png deleted file mode 100644 index 1d32ee3e..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png deleted file mode 100644 index f47bb525..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png deleted file mode 100644 index 24f90248..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png deleted file mode 100644 index e6b22801..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png deleted file mode 100644 index 6628c3d6..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png deleted file mode 100644 index caca7744..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png deleted file mode 100644 index cf6147bf..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png deleted file mode 100644 index c868621a..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png deleted file mode 100644 index 7099002c..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png deleted file mode 100644 index f3ed60f4..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png deleted file mode 100644 index 1576dab1..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png deleted file mode 100644 index 78350592..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png deleted file mode 100644 index c851badf..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png deleted file mode 100644 index 6fa43de4..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png deleted file mode 100644 index ca034c8c..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png deleted file mode 100644 index c868621a..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png deleted file mode 100644 index 7099002c..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png deleted file mode 100644 index 1576dab1..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png deleted file mode 100644 index 78350592..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png deleted file mode 100644 index acc57df3..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png deleted file mode 100644 index d213ffb7..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png deleted file mode 100644 index acc57df3..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png deleted file mode 100644 index 6628c3d6..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png deleted file mode 100644 index 1d32ee3e..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png deleted file mode 100644 index 6628c3d6..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png deleted file mode 100644 index f47bb525..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png deleted file mode 100644 index 24f90248..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png deleted file mode 100644 index 9d54f7e3..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png and /dev/null differ diff --git a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png b/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png deleted file mode 100644 index 879c943c..00000000 Binary files a/public/textures/minecraft/splash_potion__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png and /dev/null differ diff --git a/public/textures/minecraft/sponge.png b/public/textures/minecraft/sponge.png deleted file mode 100644 index d242f6af..00000000 Binary files a/public/textures/minecraft/sponge.png and /dev/null differ diff --git a/public/textures/minecraft/spore_blossom.png b/public/textures/minecraft/spore_blossom.png deleted file mode 100644 index 6436a374..00000000 Binary files a/public/textures/minecraft/spore_blossom.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_boat.png b/public/textures/minecraft/spruce_boat.png deleted file mode 100644 index 6dedc106..00000000 Binary files a/public/textures/minecraft/spruce_boat.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_button.png b/public/textures/minecraft/spruce_button.png deleted file mode 100644 index 609007ef..00000000 Binary files a/public/textures/minecraft/spruce_button.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_chest_boat.png b/public/textures/minecraft/spruce_chest_boat.png deleted file mode 100644 index 62a590cb..00000000 Binary files a/public/textures/minecraft/spruce_chest_boat.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_door.png b/public/textures/minecraft/spruce_door.png deleted file mode 100644 index 4ba466c2..00000000 Binary files a/public/textures/minecraft/spruce_door.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_fence.png b/public/textures/minecraft/spruce_fence.png deleted file mode 100644 index 947dac5c..00000000 Binary files a/public/textures/minecraft/spruce_fence.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_fence_gate.png b/public/textures/minecraft/spruce_fence_gate.png deleted file mode 100644 index e26b2d6b..00000000 Binary files a/public/textures/minecraft/spruce_fence_gate.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_hanging_sign.png b/public/textures/minecraft/spruce_hanging_sign.png deleted file mode 100644 index 2001b457..00000000 Binary files a/public/textures/minecraft/spruce_hanging_sign.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_leaves.png b/public/textures/minecraft/spruce_leaves.png deleted file mode 100644 index 34cdab56..00000000 Binary files a/public/textures/minecraft/spruce_leaves.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_log.png b/public/textures/minecraft/spruce_log.png deleted file mode 100644 index bc9ab7fb..00000000 Binary files a/public/textures/minecraft/spruce_log.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_planks.png b/public/textures/minecraft/spruce_planks.png deleted file mode 100644 index d10bcd3d..00000000 Binary files a/public/textures/minecraft/spruce_planks.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_pressure_plate.png b/public/textures/minecraft/spruce_pressure_plate.png deleted file mode 100644 index dc7cf34c..00000000 Binary files a/public/textures/minecraft/spruce_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_sapling.png b/public/textures/minecraft/spruce_sapling.png deleted file mode 100644 index 0d842ea3..00000000 Binary files a/public/textures/minecraft/spruce_sapling.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_sign.png b/public/textures/minecraft/spruce_sign.png deleted file mode 100644 index 5d2affd1..00000000 Binary files a/public/textures/minecraft/spruce_sign.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_slab.png b/public/textures/minecraft/spruce_slab.png deleted file mode 100644 index a6212e8c..00000000 Binary files a/public/textures/minecraft/spruce_slab.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_stairs.png b/public/textures/minecraft/spruce_stairs.png deleted file mode 100644 index feef1b52..00000000 Binary files a/public/textures/minecraft/spruce_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_trapdoor.png b/public/textures/minecraft/spruce_trapdoor.png deleted file mode 100644 index 1e24afea..00000000 Binary files a/public/textures/minecraft/spruce_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/spruce_wood.png b/public/textures/minecraft/spruce_wood.png deleted file mode 100644 index 5e53f93e..00000000 Binary files a/public/textures/minecraft/spruce_wood.png and /dev/null differ diff --git a/public/textures/minecraft/spyglass.png b/public/textures/minecraft/spyglass.png deleted file mode 100644 index da91dd99..00000000 Binary files a/public/textures/minecraft/spyglass.png and /dev/null differ diff --git a/public/textures/minecraft/squid_spawn_egg.png b/public/textures/minecraft/squid_spawn_egg.png deleted file mode 100644 index 9885b3aa..00000000 Binary files a/public/textures/minecraft/squid_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/stick.png b/public/textures/minecraft/stick.png deleted file mode 100644 index f27178ec..00000000 Binary files a/public/textures/minecraft/stick.png and /dev/null differ diff --git a/public/textures/minecraft/sticky_piston.png b/public/textures/minecraft/sticky_piston.png deleted file mode 100644 index 24531093..00000000 Binary files a/public/textures/minecraft/sticky_piston.png and /dev/null differ diff --git a/public/textures/minecraft/stone.png b/public/textures/minecraft/stone.png deleted file mode 100644 index f2d5f8c3..00000000 Binary files a/public/textures/minecraft/stone.png and /dev/null differ diff --git a/public/textures/minecraft/stone_axe.png b/public/textures/minecraft/stone_axe.png deleted file mode 100644 index 56d0d7cd..00000000 Binary files a/public/textures/minecraft/stone_axe.png and /dev/null differ diff --git a/public/textures/minecraft/stone_brick_slab.png b/public/textures/minecraft/stone_brick_slab.png deleted file mode 100644 index a96d826a..00000000 Binary files a/public/textures/minecraft/stone_brick_slab.png and /dev/null differ diff --git a/public/textures/minecraft/stone_brick_stairs.png b/public/textures/minecraft/stone_brick_stairs.png deleted file mode 100644 index 9af405f8..00000000 Binary files a/public/textures/minecraft/stone_brick_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/stone_brick_wall.png b/public/textures/minecraft/stone_brick_wall.png deleted file mode 100644 index b877f854..00000000 Binary files a/public/textures/minecraft/stone_brick_wall.png and /dev/null differ diff --git a/public/textures/minecraft/stone_bricks.png b/public/textures/minecraft/stone_bricks.png deleted file mode 100644 index 46001e2b..00000000 Binary files a/public/textures/minecraft/stone_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/stone_button.png b/public/textures/minecraft/stone_button.png deleted file mode 100644 index 3b0f2052..00000000 Binary files a/public/textures/minecraft/stone_button.png and /dev/null differ diff --git a/public/textures/minecraft/stone_hoe.png b/public/textures/minecraft/stone_hoe.png deleted file mode 100644 index 79cfc4ef..00000000 Binary files a/public/textures/minecraft/stone_hoe.png and /dev/null differ diff --git a/public/textures/minecraft/stone_pickaxe.png b/public/textures/minecraft/stone_pickaxe.png deleted file mode 100644 index 2a935928..00000000 Binary files a/public/textures/minecraft/stone_pickaxe.png and /dev/null differ diff --git a/public/textures/minecraft/stone_pressure_plate.png b/public/textures/minecraft/stone_pressure_plate.png deleted file mode 100644 index 37442a64..00000000 Binary files a/public/textures/minecraft/stone_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/stone_shovel.png b/public/textures/minecraft/stone_shovel.png deleted file mode 100644 index e3191692..00000000 Binary files a/public/textures/minecraft/stone_shovel.png and /dev/null differ diff --git a/public/textures/minecraft/stone_slab.png b/public/textures/minecraft/stone_slab.png deleted file mode 100644 index 47a4371f..00000000 Binary files a/public/textures/minecraft/stone_slab.png and /dev/null differ diff --git a/public/textures/minecraft/stone_stairs.png b/public/textures/minecraft/stone_stairs.png deleted file mode 100644 index 6400c3bf..00000000 Binary files a/public/textures/minecraft/stone_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/stone_sword.png b/public/textures/minecraft/stone_sword.png deleted file mode 100644 index 6b19040d..00000000 Binary files a/public/textures/minecraft/stone_sword.png and /dev/null differ diff --git a/public/textures/minecraft/stonecutter.png b/public/textures/minecraft/stonecutter.png deleted file mode 100644 index 068d39d9..00000000 Binary files a/public/textures/minecraft/stonecutter.png and /dev/null differ diff --git a/public/textures/minecraft/stray_spawn_egg.png b/public/textures/minecraft/stray_spawn_egg.png deleted file mode 100644 index 3d1f08c7..00000000 Binary files a/public/textures/minecraft/stray_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/strider_spawn_egg.png b/public/textures/minecraft/strider_spawn_egg.png deleted file mode 100644 index 231d05e5..00000000 Binary files a/public/textures/minecraft/strider_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/string.png b/public/textures/minecraft/string.png deleted file mode 100644 index 6613e3f9..00000000 Binary files a/public/textures/minecraft/string.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_acacia_log.png b/public/textures/minecraft/stripped_acacia_log.png deleted file mode 100644 index fa7fe78f..00000000 Binary files a/public/textures/minecraft/stripped_acacia_log.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_acacia_wood.png b/public/textures/minecraft/stripped_acacia_wood.png deleted file mode 100644 index 42ed2a5f..00000000 Binary files a/public/textures/minecraft/stripped_acacia_wood.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_bamboo_block.png b/public/textures/minecraft/stripped_bamboo_block.png deleted file mode 100644 index 9d5b071e..00000000 Binary files a/public/textures/minecraft/stripped_bamboo_block.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_birch_log.png b/public/textures/minecraft/stripped_birch_log.png deleted file mode 100644 index 77e89c56..00000000 Binary files a/public/textures/minecraft/stripped_birch_log.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_birch_wood.png b/public/textures/minecraft/stripped_birch_wood.png deleted file mode 100644 index f9901795..00000000 Binary files a/public/textures/minecraft/stripped_birch_wood.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_cherry_log.png b/public/textures/minecraft/stripped_cherry_log.png deleted file mode 100644 index d5886cb8..00000000 Binary files a/public/textures/minecraft/stripped_cherry_log.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_cherry_wood.png b/public/textures/minecraft/stripped_cherry_wood.png deleted file mode 100644 index 251edbbe..00000000 Binary files a/public/textures/minecraft/stripped_cherry_wood.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_crimson_hyphae.png b/public/textures/minecraft/stripped_crimson_hyphae.png deleted file mode 100644 index 7087797d..00000000 Binary files a/public/textures/minecraft/stripped_crimson_hyphae.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_crimson_stem.png b/public/textures/minecraft/stripped_crimson_stem.png deleted file mode 100644 index f5187f04..00000000 Binary files a/public/textures/minecraft/stripped_crimson_stem.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_dark_oak_log.png b/public/textures/minecraft/stripped_dark_oak_log.png deleted file mode 100644 index e231e3fe..00000000 Binary files a/public/textures/minecraft/stripped_dark_oak_log.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_dark_oak_wood.png b/public/textures/minecraft/stripped_dark_oak_wood.png deleted file mode 100644 index ee631622..00000000 Binary files a/public/textures/minecraft/stripped_dark_oak_wood.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_jungle_log.png b/public/textures/minecraft/stripped_jungle_log.png deleted file mode 100644 index 79a9083c..00000000 Binary files a/public/textures/minecraft/stripped_jungle_log.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_jungle_wood.png b/public/textures/minecraft/stripped_jungle_wood.png deleted file mode 100644 index 0fb2fb84..00000000 Binary files a/public/textures/minecraft/stripped_jungle_wood.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_mangrove_log.png b/public/textures/minecraft/stripped_mangrove_log.png deleted file mode 100644 index 7d8622cc..00000000 Binary files a/public/textures/minecraft/stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_mangrove_wood.png b/public/textures/minecraft/stripped_mangrove_wood.png deleted file mode 100644 index 3500ec9f..00000000 Binary files a/public/textures/minecraft/stripped_mangrove_wood.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_oak_log.png b/public/textures/minecraft/stripped_oak_log.png deleted file mode 100644 index 7ce7ded6..00000000 Binary files a/public/textures/minecraft/stripped_oak_log.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_oak_wood.png b/public/textures/minecraft/stripped_oak_wood.png deleted file mode 100644 index 3fb51598..00000000 Binary files a/public/textures/minecraft/stripped_oak_wood.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_spruce_log.png b/public/textures/minecraft/stripped_spruce_log.png deleted file mode 100644 index 05d74748..00000000 Binary files a/public/textures/minecraft/stripped_spruce_log.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_spruce_wood.png b/public/textures/minecraft/stripped_spruce_wood.png deleted file mode 100644 index 7e875c1f..00000000 Binary files a/public/textures/minecraft/stripped_spruce_wood.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_warped_hyphae.png b/public/textures/minecraft/stripped_warped_hyphae.png deleted file mode 100644 index 68e97d58..00000000 Binary files a/public/textures/minecraft/stripped_warped_hyphae.png and /dev/null differ diff --git a/public/textures/minecraft/stripped_warped_stem.png b/public/textures/minecraft/stripped_warped_stem.png deleted file mode 100644 index dd2558b4..00000000 Binary files a/public/textures/minecraft/stripped_warped_stem.png and /dev/null differ diff --git a/public/textures/minecraft/sugar.png b/public/textures/minecraft/sugar.png deleted file mode 100644 index 5da9e6a1..00000000 Binary files a/public/textures/minecraft/sugar.png and /dev/null differ diff --git a/public/textures/minecraft/sugar_cane.png b/public/textures/minecraft/sugar_cane.png deleted file mode 100644 index deb35bf3..00000000 Binary files a/public/textures/minecraft/sugar_cane.png and /dev/null differ diff --git a/public/textures/minecraft/sunflower.png b/public/textures/minecraft/sunflower.png deleted file mode 100644 index 94e23ea0..00000000 Binary files a/public/textures/minecraft/sunflower.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_gravel.png b/public/textures/minecraft/suspicious_gravel.png deleted file mode 100644 index a534c0b1..00000000 Binary files a/public/textures/minecraft/suspicious_gravel.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_sand.png b/public/textures/minecraft/suspicious_sand.png deleted file mode 100644 index c0a85c20..00000000 Binary files a/public/textures/minecraft/suspicious_sand.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__100,id__'minecraft__night_vision'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__100,id__'minecraft__night_vision'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__100,id__'minecraft__night_vision'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__fire_resistance'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__fire_resistance'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__fire_resistance'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__jump_boost'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__jump_boost'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__jump_boost'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__mining_fatigue'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__mining_fatigue'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__mining_fatigue'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__strength'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__strength'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__120,id__'minecraft__strength'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__140,id__'minecraft__nausea'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__140,id__'minecraft__nausea'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__140,id__'minecraft__nausea'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__140,id__'minecraft__saturation'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__140,id__'minecraft__saturation'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__140,id__'minecraft__saturation'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__180,id__'minecraft__weakness'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__180,id__'minecraft__weakness'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__180,id__'minecraft__weakness'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__200,id__'minecraft__poison'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__200,id__'minecraft__poison'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__200,id__'minecraft__poison'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__2000,id__'minecraft__speed'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__2000,id__'minecraft__speed'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__2000,id__'minecraft__speed'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__220,id__'minecraft__blindness'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__220,id__'minecraft__blindness'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__220,id__'minecraft__blindness'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__240,id__'minecraft__poison'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__240,id__'minecraft__poison'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__240,id__'minecraft__poison'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__7,id__'minecraft__saturation'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__7,id__'minecraft__saturation'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__7,id__'minecraft__saturation'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__80,id__'minecraft__fire_resistance'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__80,id__'minecraft__fire_resistance'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{duration__80,id__'minecraft__fire_resistance'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__blindness'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__blindness'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__blindness'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__nausea'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__nausea'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__nausea'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__regeneration'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__regeneration'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__regeneration'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__saturation'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__saturation'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__saturation'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__water_breathing'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__water_breathing'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__water_breathing'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__wither'}]}.png b/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__wither'}]}.png deleted file mode 100644 index 29a289d5..00000000 Binary files a/public/textures/minecraft/suspicious_stew__{'minecraft__suspicious_stew_effects'__[{id__'minecraft__wither'}]}.png and /dev/null differ diff --git a/public/textures/minecraft/sweet_berries.png b/public/textures/minecraft/sweet_berries.png deleted file mode 100644 index 36e50677..00000000 Binary files a/public/textures/minecraft/sweet_berries.png and /dev/null differ diff --git a/public/textures/minecraft/tadpole_bucket.png b/public/textures/minecraft/tadpole_bucket.png deleted file mode 100644 index 5a79690e..00000000 Binary files a/public/textures/minecraft/tadpole_bucket.png and /dev/null differ diff --git a/public/textures/minecraft/tadpole_spawn_egg.png b/public/textures/minecraft/tadpole_spawn_egg.png deleted file mode 100644 index 4db3af61..00000000 Binary files a/public/textures/minecraft/tadpole_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/tall_grass.png b/public/textures/minecraft/tall_grass.png deleted file mode 100644 index 2def8b0f..00000000 Binary files a/public/textures/minecraft/tall_grass.png and /dev/null differ diff --git a/public/textures/minecraft/target.png b/public/textures/minecraft/target.png deleted file mode 100644 index 3674d15d..00000000 Binary files a/public/textures/minecraft/target.png and /dev/null differ diff --git a/public/textures/minecraft/terracotta.png b/public/textures/minecraft/terracotta.png deleted file mode 100644 index 0326227e..00000000 Binary files a/public/textures/minecraft/terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/tide_armor_trim_smithing_template.png b/public/textures/minecraft/tide_armor_trim_smithing_template.png deleted file mode 100644 index b7f716ea..00000000 Binary files a/public/textures/minecraft/tide_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/tinted_glass.png b/public/textures/minecraft/tinted_glass.png deleted file mode 100644 index 2742db93..00000000 Binary files a/public/textures/minecraft/tinted_glass.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png deleted file mode 100644 index df93d709..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'illagerinvasion__berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png deleted file mode 100644 index df93d709..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'illagerinvasion__long_berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png deleted file mode 100644 index df93d709..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'illagerinvasion__strong_berserking'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png deleted file mode 100644 index 991a388a..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__awkward'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png deleted file mode 100644 index 45723d78..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__fire_resistance'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png deleted file mode 100644 index 13e8232a..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__harming'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png deleted file mode 100644 index 84d2fac0..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__healing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png deleted file mode 100644 index 38a49d02..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__infested'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png deleted file mode 100644 index b7afec1d..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__invisibility'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png deleted file mode 100644 index 4b7d682f..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png deleted file mode 100644 index 45723d78..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_fire_resistance'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png deleted file mode 100644 index b7afec1d..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_invisibility'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png deleted file mode 100644 index 4b7d682f..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png deleted file mode 100644 index 21eab734..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_night_vision'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png deleted file mode 100644 index 75624dcb..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png deleted file mode 100644 index 8301c751..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png deleted file mode 100644 index 7baad040..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_slow_falling'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png deleted file mode 100644 index 01bba113..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png deleted file mode 100644 index 8bcd0812..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png deleted file mode 100644 index e6175372..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png deleted file mode 100644 index 5ba76701..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png deleted file mode 100644 index d61494db..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_water_breathing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png deleted file mode 100644 index fcdeda00..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__long_weakness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png deleted file mode 100644 index 18af1a57..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__luck'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png deleted file mode 100644 index 991a388a..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__mundane'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png deleted file mode 100644 index 21eab734..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__night_vision'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png deleted file mode 100644 index 0302f759..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__oozing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png deleted file mode 100644 index 75624dcb..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png deleted file mode 100644 index 8301c751..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png deleted file mode 100644 index 7baad040..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__slow_falling'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png deleted file mode 100644 index 01bba113..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png deleted file mode 100644 index 8bcd0812..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png deleted file mode 100644 index 13e8232a..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_harming'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png deleted file mode 100644 index 84d2fac0..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_healing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png deleted file mode 100644 index 4b7d682f..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_leaping'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png deleted file mode 100644 index 75624dcb..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_poison'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png deleted file mode 100644 index 8301c751..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_regeneration'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png deleted file mode 100644 index 01bba113..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_slowness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png deleted file mode 100644 index 8bcd0812..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_strength'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png deleted file mode 100644 index e6175372..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png deleted file mode 100644 index 29ec3a2e..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__strong_turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png deleted file mode 100644 index e6175372..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__swiftness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png deleted file mode 100644 index 991a388a..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__thick'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png deleted file mode 100644 index 5ba76701..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__turtle_master'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png deleted file mode 100644 index 991a388a..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__water'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png deleted file mode 100644 index d61494db..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__water_breathing'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png deleted file mode 100644 index fcdeda00..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__weakness'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png deleted file mode 100644 index dad9b111..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__weaving'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png b/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png deleted file mode 100644 index 3996bd29..00000000 Binary files a/public/textures/minecraft/tipped_arrow__{'minecraft__potion_contents'__{potion__'minecraft__wind_charged'}}.png and /dev/null differ diff --git a/public/textures/minecraft/tnt.png b/public/textures/minecraft/tnt.png deleted file mode 100644 index 41624083..00000000 Binary files a/public/textures/minecraft/tnt.png and /dev/null differ diff --git a/public/textures/minecraft/tnt_minecart.png b/public/textures/minecraft/tnt_minecart.png deleted file mode 100644 index 5fc9fb0b..00000000 Binary files a/public/textures/minecraft/tnt_minecart.png and /dev/null differ diff --git a/public/textures/minecraft/torch.png b/public/textures/minecraft/torch.png deleted file mode 100644 index c9f97ded..00000000 Binary files a/public/textures/minecraft/torch.png and /dev/null differ diff --git a/public/textures/minecraft/torchflower.png b/public/textures/minecraft/torchflower.png deleted file mode 100644 index 393bee9d..00000000 Binary files a/public/textures/minecraft/torchflower.png and /dev/null differ diff --git a/public/textures/minecraft/torchflower_seeds.png b/public/textures/minecraft/torchflower_seeds.png deleted file mode 100644 index d5db2bf1..00000000 Binary files a/public/textures/minecraft/torchflower_seeds.png and /dev/null differ diff --git a/public/textures/minecraft/totem_of_undying.png b/public/textures/minecraft/totem_of_undying.png deleted file mode 100644 index d33eb09e..00000000 Binary files a/public/textures/minecraft/totem_of_undying.png and /dev/null differ diff --git a/public/textures/minecraft/trader_llama_spawn_egg.png b/public/textures/minecraft/trader_llama_spawn_egg.png deleted file mode 100644 index bd6c4f9d..00000000 Binary files a/public/textures/minecraft/trader_llama_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/trapped_chest.png b/public/textures/minecraft/trapped_chest.png deleted file mode 100644 index b7dca1c0..00000000 Binary files a/public/textures/minecraft/trapped_chest.png and /dev/null differ diff --git a/public/textures/minecraft/trial_key.png b/public/textures/minecraft/trial_key.png deleted file mode 100644 index cc21b789..00000000 Binary files a/public/textures/minecraft/trial_key.png and /dev/null differ diff --git a/public/textures/minecraft/trial_spawner.png b/public/textures/minecraft/trial_spawner.png deleted file mode 100644 index 005604d3..00000000 Binary files a/public/textures/minecraft/trial_spawner.png and /dev/null differ diff --git a/public/textures/minecraft/trident.png b/public/textures/minecraft/trident.png deleted file mode 100644 index 23f00e7c..00000000 Binary files a/public/textures/minecraft/trident.png and /dev/null differ diff --git a/public/textures/minecraft/tripwire_hook.png b/public/textures/minecraft/tripwire_hook.png deleted file mode 100644 index e54fab1f..00000000 Binary files a/public/textures/minecraft/tripwire_hook.png and /dev/null differ diff --git a/public/textures/minecraft/tropical_fish.png b/public/textures/minecraft/tropical_fish.png deleted file mode 100644 index 50c167e4..00000000 Binary files a/public/textures/minecraft/tropical_fish.png and /dev/null differ diff --git a/public/textures/minecraft/tropical_fish_bucket.png b/public/textures/minecraft/tropical_fish_bucket.png deleted file mode 100644 index c0a9f42b..00000000 Binary files a/public/textures/minecraft/tropical_fish_bucket.png and /dev/null differ diff --git a/public/textures/minecraft/tropical_fish_spawn_egg.png b/public/textures/minecraft/tropical_fish_spawn_egg.png deleted file mode 100644 index 14e3f0bf..00000000 Binary files a/public/textures/minecraft/tropical_fish_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/tube_coral.png b/public/textures/minecraft/tube_coral.png deleted file mode 100644 index dbbb234f..00000000 Binary files a/public/textures/minecraft/tube_coral.png and /dev/null differ diff --git a/public/textures/minecraft/tube_coral_block.png b/public/textures/minecraft/tube_coral_block.png deleted file mode 100644 index 5b6f4cac..00000000 Binary files a/public/textures/minecraft/tube_coral_block.png and /dev/null differ diff --git a/public/textures/minecraft/tube_coral_fan.png b/public/textures/minecraft/tube_coral_fan.png deleted file mode 100644 index 0148a209..00000000 Binary files a/public/textures/minecraft/tube_coral_fan.png and /dev/null differ diff --git a/public/textures/minecraft/tuff.png b/public/textures/minecraft/tuff.png deleted file mode 100644 index 6bd7360e..00000000 Binary files a/public/textures/minecraft/tuff.png and /dev/null differ diff --git a/public/textures/minecraft/tuff_brick_slab.png b/public/textures/minecraft/tuff_brick_slab.png deleted file mode 100644 index 7a815a04..00000000 Binary files a/public/textures/minecraft/tuff_brick_slab.png and /dev/null differ diff --git a/public/textures/minecraft/tuff_brick_stairs.png b/public/textures/minecraft/tuff_brick_stairs.png deleted file mode 100644 index 81432ecb..00000000 Binary files a/public/textures/minecraft/tuff_brick_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/tuff_brick_wall.png b/public/textures/minecraft/tuff_brick_wall.png deleted file mode 100644 index d75c67e8..00000000 Binary files a/public/textures/minecraft/tuff_brick_wall.png and /dev/null differ diff --git a/public/textures/minecraft/tuff_bricks.png b/public/textures/minecraft/tuff_bricks.png deleted file mode 100644 index b544013d..00000000 Binary files a/public/textures/minecraft/tuff_bricks.png and /dev/null differ diff --git a/public/textures/minecraft/tuff_slab.png b/public/textures/minecraft/tuff_slab.png deleted file mode 100644 index 0a393265..00000000 Binary files a/public/textures/minecraft/tuff_slab.png and /dev/null differ diff --git a/public/textures/minecraft/tuff_stairs.png b/public/textures/minecraft/tuff_stairs.png deleted file mode 100644 index 7fc12bf2..00000000 Binary files a/public/textures/minecraft/tuff_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/tuff_wall.png b/public/textures/minecraft/tuff_wall.png deleted file mode 100644 index 84a3639f..00000000 Binary files a/public/textures/minecraft/tuff_wall.png and /dev/null differ diff --git a/public/textures/minecraft/turtle_egg.png b/public/textures/minecraft/turtle_egg.png deleted file mode 100644 index 081ef577..00000000 Binary files a/public/textures/minecraft/turtle_egg.png and /dev/null differ diff --git a/public/textures/minecraft/turtle_helmet.png b/public/textures/minecraft/turtle_helmet.png deleted file mode 100644 index b1b74568..00000000 Binary files a/public/textures/minecraft/turtle_helmet.png and /dev/null differ diff --git a/public/textures/minecraft/turtle_scute.png b/public/textures/minecraft/turtle_scute.png deleted file mode 100644 index 0fb3f9cb..00000000 Binary files a/public/textures/minecraft/turtle_scute.png and /dev/null differ diff --git a/public/textures/minecraft/turtle_spawn_egg.png b/public/textures/minecraft/turtle_spawn_egg.png deleted file mode 100644 index 5721d401..00000000 Binary files a/public/textures/minecraft/turtle_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/twisting_vines.png b/public/textures/minecraft/twisting_vines.png deleted file mode 100644 index 4f208c58..00000000 Binary files a/public/textures/minecraft/twisting_vines.png and /dev/null differ diff --git a/public/textures/minecraft/vault.png b/public/textures/minecraft/vault.png deleted file mode 100644 index f791212c..00000000 Binary files a/public/textures/minecraft/vault.png and /dev/null differ diff --git a/public/textures/minecraft/verdant_froglight.png b/public/textures/minecraft/verdant_froglight.png deleted file mode 100644 index 65b07175..00000000 Binary files a/public/textures/minecraft/verdant_froglight.png and /dev/null differ diff --git a/public/textures/minecraft/vex_armor_trim_smithing_template.png b/public/textures/minecraft/vex_armor_trim_smithing_template.png deleted file mode 100644 index b560755f..00000000 Binary files a/public/textures/minecraft/vex_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/vex_spawn_egg.png b/public/textures/minecraft/vex_spawn_egg.png deleted file mode 100644 index dca3d69d..00000000 Binary files a/public/textures/minecraft/vex_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/villager_spawn_egg.png b/public/textures/minecraft/villager_spawn_egg.png deleted file mode 100644 index f33bcf13..00000000 Binary files a/public/textures/minecraft/villager_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/vindicator_spawn_egg.png b/public/textures/minecraft/vindicator_spawn_egg.png deleted file mode 100644 index 011d83fa..00000000 Binary files a/public/textures/minecraft/vindicator_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/vine.png b/public/textures/minecraft/vine.png deleted file mode 100644 index ba320760..00000000 Binary files a/public/textures/minecraft/vine.png and /dev/null differ diff --git a/public/textures/minecraft/wandering_trader_spawn_egg.png b/public/textures/minecraft/wandering_trader_spawn_egg.png deleted file mode 100644 index 35cdef1d..00000000 Binary files a/public/textures/minecraft/wandering_trader_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/ward_armor_trim_smithing_template.png b/public/textures/minecraft/ward_armor_trim_smithing_template.png deleted file mode 100644 index ed317e71..00000000 Binary files a/public/textures/minecraft/ward_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/warden_spawn_egg.png b/public/textures/minecraft/warden_spawn_egg.png deleted file mode 100644 index 2d1bef4d..00000000 Binary files a/public/textures/minecraft/warden_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/warped_button.png b/public/textures/minecraft/warped_button.png deleted file mode 100644 index 0a25015e..00000000 Binary files a/public/textures/minecraft/warped_button.png and /dev/null differ diff --git a/public/textures/minecraft/warped_door.png b/public/textures/minecraft/warped_door.png deleted file mode 100644 index a5c9de02..00000000 Binary files a/public/textures/minecraft/warped_door.png and /dev/null differ diff --git a/public/textures/minecraft/warped_fence.png b/public/textures/minecraft/warped_fence.png deleted file mode 100644 index 20c03b81..00000000 Binary files a/public/textures/minecraft/warped_fence.png and /dev/null differ diff --git a/public/textures/minecraft/warped_fence_gate.png b/public/textures/minecraft/warped_fence_gate.png deleted file mode 100644 index 94e99657..00000000 Binary files a/public/textures/minecraft/warped_fence_gate.png and /dev/null differ diff --git a/public/textures/minecraft/warped_fungus.png b/public/textures/minecraft/warped_fungus.png deleted file mode 100644 index 6689558a..00000000 Binary files a/public/textures/minecraft/warped_fungus.png and /dev/null differ diff --git a/public/textures/minecraft/warped_fungus_on_a_stick.png b/public/textures/minecraft/warped_fungus_on_a_stick.png deleted file mode 100644 index cfcc54eb..00000000 Binary files a/public/textures/minecraft/warped_fungus_on_a_stick.png and /dev/null differ diff --git a/public/textures/minecraft/warped_hanging_sign.png b/public/textures/minecraft/warped_hanging_sign.png deleted file mode 100644 index 89e7a51a..00000000 Binary files a/public/textures/minecraft/warped_hanging_sign.png and /dev/null differ diff --git a/public/textures/minecraft/warped_hyphae.png b/public/textures/minecraft/warped_hyphae.png deleted file mode 100644 index 20b5dc57..00000000 Binary files a/public/textures/minecraft/warped_hyphae.png and /dev/null differ diff --git a/public/textures/minecraft/warped_nylium.png b/public/textures/minecraft/warped_nylium.png deleted file mode 100644 index fdcf0b7e..00000000 Binary files a/public/textures/minecraft/warped_nylium.png and /dev/null differ diff --git a/public/textures/minecraft/warped_planks.png b/public/textures/minecraft/warped_planks.png deleted file mode 100644 index f7e0598e..00000000 Binary files a/public/textures/minecraft/warped_planks.png and /dev/null differ diff --git a/public/textures/minecraft/warped_pressure_plate.png b/public/textures/minecraft/warped_pressure_plate.png deleted file mode 100644 index 107c02a7..00000000 Binary files a/public/textures/minecraft/warped_pressure_plate.png and /dev/null differ diff --git a/public/textures/minecraft/warped_roots.png b/public/textures/minecraft/warped_roots.png deleted file mode 100644 index 8b73778a..00000000 Binary files a/public/textures/minecraft/warped_roots.png and /dev/null differ diff --git a/public/textures/minecraft/warped_sign.png b/public/textures/minecraft/warped_sign.png deleted file mode 100644 index ba6b4ca9..00000000 Binary files a/public/textures/minecraft/warped_sign.png and /dev/null differ diff --git a/public/textures/minecraft/warped_slab.png b/public/textures/minecraft/warped_slab.png deleted file mode 100644 index da65517d..00000000 Binary files a/public/textures/minecraft/warped_slab.png and /dev/null differ diff --git a/public/textures/minecraft/warped_stairs.png b/public/textures/minecraft/warped_stairs.png deleted file mode 100644 index ed354aa8..00000000 Binary files a/public/textures/minecraft/warped_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/warped_stem.png b/public/textures/minecraft/warped_stem.png deleted file mode 100644 index bf33871a..00000000 Binary files a/public/textures/minecraft/warped_stem.png and /dev/null differ diff --git a/public/textures/minecraft/warped_trapdoor.png b/public/textures/minecraft/warped_trapdoor.png deleted file mode 100644 index 1e8054c4..00000000 Binary files a/public/textures/minecraft/warped_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/warped_wart_block.png b/public/textures/minecraft/warped_wart_block.png deleted file mode 100644 index c6efaae0..00000000 Binary files a/public/textures/minecraft/warped_wart_block.png and /dev/null differ diff --git a/public/textures/minecraft/water_bucket.png b/public/textures/minecraft/water_bucket.png deleted file mode 100644 index 21df436c..00000000 Binary files a/public/textures/minecraft/water_bucket.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_chiseled_copper.png b/public/textures/minecraft/waxed_chiseled_copper.png deleted file mode 100644 index bee7cf12..00000000 Binary files a/public/textures/minecraft/waxed_chiseled_copper.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_copper_block.png b/public/textures/minecraft/waxed_copper_block.png deleted file mode 100644 index 04105504..00000000 Binary files a/public/textures/minecraft/waxed_copper_block.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_copper_bulb.png b/public/textures/minecraft/waxed_copper_bulb.png deleted file mode 100644 index 772b0bc2..00000000 Binary files a/public/textures/minecraft/waxed_copper_bulb.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_copper_door.png b/public/textures/minecraft/waxed_copper_door.png deleted file mode 100644 index a890b5f7..00000000 Binary files a/public/textures/minecraft/waxed_copper_door.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_copper_grate.png b/public/textures/minecraft/waxed_copper_grate.png deleted file mode 100644 index 5636dc6d..00000000 Binary files a/public/textures/minecraft/waxed_copper_grate.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_copper_trapdoor.png b/public/textures/minecraft/waxed_copper_trapdoor.png deleted file mode 100644 index 66447999..00000000 Binary files a/public/textures/minecraft/waxed_copper_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_cut_copper.png b/public/textures/minecraft/waxed_cut_copper.png deleted file mode 100644 index c9d44236..00000000 Binary files a/public/textures/minecraft/waxed_cut_copper.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_cut_copper_slab.png b/public/textures/minecraft/waxed_cut_copper_slab.png deleted file mode 100644 index f6ae9341..00000000 Binary files a/public/textures/minecraft/waxed_cut_copper_slab.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_cut_copper_stairs.png b/public/textures/minecraft/waxed_cut_copper_stairs.png deleted file mode 100644 index 8975122f..00000000 Binary files a/public/textures/minecraft/waxed_cut_copper_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_exposed_chiseled_copper.png b/public/textures/minecraft/waxed_exposed_chiseled_copper.png deleted file mode 100644 index 7fb17de7..00000000 Binary files a/public/textures/minecraft/waxed_exposed_chiseled_copper.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_exposed_copper.png b/public/textures/minecraft/waxed_exposed_copper.png deleted file mode 100644 index c9355740..00000000 Binary files a/public/textures/minecraft/waxed_exposed_copper.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_exposed_copper_bulb.png b/public/textures/minecraft/waxed_exposed_copper_bulb.png deleted file mode 100644 index 677e2f23..00000000 Binary files a/public/textures/minecraft/waxed_exposed_copper_bulb.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_exposed_copper_door.png b/public/textures/minecraft/waxed_exposed_copper_door.png deleted file mode 100644 index 5decc8ea..00000000 Binary files a/public/textures/minecraft/waxed_exposed_copper_door.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_exposed_copper_grate.png b/public/textures/minecraft/waxed_exposed_copper_grate.png deleted file mode 100644 index 16eb3c84..00000000 Binary files a/public/textures/minecraft/waxed_exposed_copper_grate.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_exposed_copper_trapdoor.png b/public/textures/minecraft/waxed_exposed_copper_trapdoor.png deleted file mode 100644 index 578e6c5d..00000000 Binary files a/public/textures/minecraft/waxed_exposed_copper_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_exposed_cut_copper.png b/public/textures/minecraft/waxed_exposed_cut_copper.png deleted file mode 100644 index 1ab962f0..00000000 Binary files a/public/textures/minecraft/waxed_exposed_cut_copper.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_exposed_cut_copper_slab.png b/public/textures/minecraft/waxed_exposed_cut_copper_slab.png deleted file mode 100644 index f2775208..00000000 Binary files a/public/textures/minecraft/waxed_exposed_cut_copper_slab.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_exposed_cut_copper_stairs.png b/public/textures/minecraft/waxed_exposed_cut_copper_stairs.png deleted file mode 100644 index d93e123f..00000000 Binary files a/public/textures/minecraft/waxed_exposed_cut_copper_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_oxidized_chiseled_copper.png b/public/textures/minecraft/waxed_oxidized_chiseled_copper.png deleted file mode 100644 index e2c6834d..00000000 Binary files a/public/textures/minecraft/waxed_oxidized_chiseled_copper.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_oxidized_copper.png b/public/textures/minecraft/waxed_oxidized_copper.png deleted file mode 100644 index 647dd8f6..00000000 Binary files a/public/textures/minecraft/waxed_oxidized_copper.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_oxidized_copper_bulb.png b/public/textures/minecraft/waxed_oxidized_copper_bulb.png deleted file mode 100644 index eda2e1d5..00000000 Binary files a/public/textures/minecraft/waxed_oxidized_copper_bulb.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_oxidized_copper_door.png b/public/textures/minecraft/waxed_oxidized_copper_door.png deleted file mode 100644 index cb9cdcf1..00000000 Binary files a/public/textures/minecraft/waxed_oxidized_copper_door.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_oxidized_copper_grate.png b/public/textures/minecraft/waxed_oxidized_copper_grate.png deleted file mode 100644 index a6286bdb..00000000 Binary files a/public/textures/minecraft/waxed_oxidized_copper_grate.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_oxidized_copper_trapdoor.png b/public/textures/minecraft/waxed_oxidized_copper_trapdoor.png deleted file mode 100644 index 69ca0a13..00000000 Binary files a/public/textures/minecraft/waxed_oxidized_copper_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_oxidized_cut_copper.png b/public/textures/minecraft/waxed_oxidized_cut_copper.png deleted file mode 100644 index fd6cfaf3..00000000 Binary files a/public/textures/minecraft/waxed_oxidized_cut_copper.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_oxidized_cut_copper_slab.png b/public/textures/minecraft/waxed_oxidized_cut_copper_slab.png deleted file mode 100644 index 4f83ec6e..00000000 Binary files a/public/textures/minecraft/waxed_oxidized_cut_copper_slab.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_oxidized_cut_copper_stairs.png b/public/textures/minecraft/waxed_oxidized_cut_copper_stairs.png deleted file mode 100644 index 27a5be14..00000000 Binary files a/public/textures/minecraft/waxed_oxidized_cut_copper_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_weathered_chiseled_copper.png b/public/textures/minecraft/waxed_weathered_chiseled_copper.png deleted file mode 100644 index 1dc77a66..00000000 Binary files a/public/textures/minecraft/waxed_weathered_chiseled_copper.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_weathered_copper.png b/public/textures/minecraft/waxed_weathered_copper.png deleted file mode 100644 index 7906a248..00000000 Binary files a/public/textures/minecraft/waxed_weathered_copper.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_weathered_copper_bulb.png b/public/textures/minecraft/waxed_weathered_copper_bulb.png deleted file mode 100644 index 259ae263..00000000 Binary files a/public/textures/minecraft/waxed_weathered_copper_bulb.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_weathered_copper_door.png b/public/textures/minecraft/waxed_weathered_copper_door.png deleted file mode 100644 index 2e2f43a0..00000000 Binary files a/public/textures/minecraft/waxed_weathered_copper_door.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_weathered_copper_grate.png b/public/textures/minecraft/waxed_weathered_copper_grate.png deleted file mode 100644 index 3b945f81..00000000 Binary files a/public/textures/minecraft/waxed_weathered_copper_grate.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_weathered_copper_trapdoor.png b/public/textures/minecraft/waxed_weathered_copper_trapdoor.png deleted file mode 100644 index 1933120e..00000000 Binary files a/public/textures/minecraft/waxed_weathered_copper_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_weathered_cut_copper.png b/public/textures/minecraft/waxed_weathered_cut_copper.png deleted file mode 100644 index e38892dc..00000000 Binary files a/public/textures/minecraft/waxed_weathered_cut_copper.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_weathered_cut_copper_slab.png b/public/textures/minecraft/waxed_weathered_cut_copper_slab.png deleted file mode 100644 index 1d564fcd..00000000 Binary files a/public/textures/minecraft/waxed_weathered_cut_copper_slab.png and /dev/null differ diff --git a/public/textures/minecraft/waxed_weathered_cut_copper_stairs.png b/public/textures/minecraft/waxed_weathered_cut_copper_stairs.png deleted file mode 100644 index 92ef1e57..00000000 Binary files a/public/textures/minecraft/waxed_weathered_cut_copper_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/wayfinder_armor_trim_smithing_template.png b/public/textures/minecraft/wayfinder_armor_trim_smithing_template.png deleted file mode 100644 index 01807d8f..00000000 Binary files a/public/textures/minecraft/wayfinder_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/weathered_chiseled_copper.png b/public/textures/minecraft/weathered_chiseled_copper.png deleted file mode 100644 index 1dc77a66..00000000 Binary files a/public/textures/minecraft/weathered_chiseled_copper.png and /dev/null differ diff --git a/public/textures/minecraft/weathered_copper.png b/public/textures/minecraft/weathered_copper.png deleted file mode 100644 index 7906a248..00000000 Binary files a/public/textures/minecraft/weathered_copper.png and /dev/null differ diff --git a/public/textures/minecraft/weathered_copper_bulb.png b/public/textures/minecraft/weathered_copper_bulb.png deleted file mode 100644 index 259ae263..00000000 Binary files a/public/textures/minecraft/weathered_copper_bulb.png and /dev/null differ diff --git a/public/textures/minecraft/weathered_copper_door.png b/public/textures/minecraft/weathered_copper_door.png deleted file mode 100644 index 2e2f43a0..00000000 Binary files a/public/textures/minecraft/weathered_copper_door.png and /dev/null differ diff --git a/public/textures/minecraft/weathered_copper_grate.png b/public/textures/minecraft/weathered_copper_grate.png deleted file mode 100644 index 3b945f81..00000000 Binary files a/public/textures/minecraft/weathered_copper_grate.png and /dev/null differ diff --git a/public/textures/minecraft/weathered_copper_trapdoor.png b/public/textures/minecraft/weathered_copper_trapdoor.png deleted file mode 100644 index 1933120e..00000000 Binary files a/public/textures/minecraft/weathered_copper_trapdoor.png and /dev/null differ diff --git a/public/textures/minecraft/weathered_cut_copper.png b/public/textures/minecraft/weathered_cut_copper.png deleted file mode 100644 index e38892dc..00000000 Binary files a/public/textures/minecraft/weathered_cut_copper.png and /dev/null differ diff --git a/public/textures/minecraft/weathered_cut_copper_slab.png b/public/textures/minecraft/weathered_cut_copper_slab.png deleted file mode 100644 index 1d564fcd..00000000 Binary files a/public/textures/minecraft/weathered_cut_copper_slab.png and /dev/null differ diff --git a/public/textures/minecraft/weathered_cut_copper_stairs.png b/public/textures/minecraft/weathered_cut_copper_stairs.png deleted file mode 100644 index 92ef1e57..00000000 Binary files a/public/textures/minecraft/weathered_cut_copper_stairs.png and /dev/null differ diff --git a/public/textures/minecraft/weeping_vines.png b/public/textures/minecraft/weeping_vines.png deleted file mode 100644 index ee43a8f5..00000000 Binary files a/public/textures/minecraft/weeping_vines.png and /dev/null differ diff --git a/public/textures/minecraft/wet_sponge.png b/public/textures/minecraft/wet_sponge.png deleted file mode 100644 index e059817c..00000000 Binary files a/public/textures/minecraft/wet_sponge.png and /dev/null differ diff --git a/public/textures/minecraft/wheat.png b/public/textures/minecraft/wheat.png deleted file mode 100644 index b56be07b..00000000 Binary files a/public/textures/minecraft/wheat.png and /dev/null differ diff --git a/public/textures/minecraft/wheat_seeds.png b/public/textures/minecraft/wheat_seeds.png deleted file mode 100644 index 6c31b5d9..00000000 Binary files a/public/textures/minecraft/wheat_seeds.png and /dev/null differ diff --git a/public/textures/minecraft/white_banner.png b/public/textures/minecraft/white_banner.png deleted file mode 100644 index 27fd304f..00000000 Binary files a/public/textures/minecraft/white_banner.png and /dev/null differ diff --git a/public/textures/minecraft/white_bed.png b/public/textures/minecraft/white_bed.png deleted file mode 100644 index 3e995b16..00000000 Binary files a/public/textures/minecraft/white_bed.png and /dev/null differ diff --git a/public/textures/minecraft/white_candle.png b/public/textures/minecraft/white_candle.png deleted file mode 100644 index 13a54213..00000000 Binary files a/public/textures/minecraft/white_candle.png and /dev/null differ diff --git a/public/textures/minecraft/white_carpet.png b/public/textures/minecraft/white_carpet.png deleted file mode 100644 index a9eff82b..00000000 Binary files a/public/textures/minecraft/white_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/white_concrete.png b/public/textures/minecraft/white_concrete.png deleted file mode 100644 index 0967bf73..00000000 Binary files a/public/textures/minecraft/white_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/white_concrete_powder.png b/public/textures/minecraft/white_concrete_powder.png deleted file mode 100644 index 3cd21958..00000000 Binary files a/public/textures/minecraft/white_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/white_dye.png b/public/textures/minecraft/white_dye.png deleted file mode 100644 index 93799553..00000000 Binary files a/public/textures/minecraft/white_dye.png and /dev/null differ diff --git a/public/textures/minecraft/white_glazed_terracotta.png b/public/textures/minecraft/white_glazed_terracotta.png deleted file mode 100644 index df66716a..00000000 Binary files a/public/textures/minecraft/white_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/white_shulker_box.png b/public/textures/minecraft/white_shulker_box.png deleted file mode 100644 index 1ba8617f..00000000 Binary files a/public/textures/minecraft/white_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/white_stained_glass.png b/public/textures/minecraft/white_stained_glass.png deleted file mode 100644 index 52449d7f..00000000 Binary files a/public/textures/minecraft/white_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/white_stained_glass_pane.png b/public/textures/minecraft/white_stained_glass_pane.png deleted file mode 100644 index c95a78ab..00000000 Binary files a/public/textures/minecraft/white_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/white_terracotta.png b/public/textures/minecraft/white_terracotta.png deleted file mode 100644 index 235ebfb2..00000000 Binary files a/public/textures/minecraft/white_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/white_tulip.png b/public/textures/minecraft/white_tulip.png deleted file mode 100644 index d6dd5c9e..00000000 Binary files a/public/textures/minecraft/white_tulip.png and /dev/null differ diff --git a/public/textures/minecraft/white_wool.png b/public/textures/minecraft/white_wool.png deleted file mode 100644 index eb2a2ae7..00000000 Binary files a/public/textures/minecraft/white_wool.png and /dev/null differ diff --git a/public/textures/minecraft/wild_armor_trim_smithing_template.png b/public/textures/minecraft/wild_armor_trim_smithing_template.png deleted file mode 100644 index c89bc724..00000000 Binary files a/public/textures/minecraft/wild_armor_trim_smithing_template.png and /dev/null differ diff --git a/public/textures/minecraft/wind_charge.png b/public/textures/minecraft/wind_charge.png deleted file mode 100644 index 72fe08a1..00000000 Binary files a/public/textures/minecraft/wind_charge.png and /dev/null differ diff --git a/public/textures/minecraft/witch_spawn_egg.png b/public/textures/minecraft/witch_spawn_egg.png deleted file mode 100644 index dc436c84..00000000 Binary files a/public/textures/minecraft/witch_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/wither_rose.png b/public/textures/minecraft/wither_rose.png deleted file mode 100644 index 78ebf2b6..00000000 Binary files a/public/textures/minecraft/wither_rose.png and /dev/null differ diff --git a/public/textures/minecraft/wither_skeleton_skull.png b/public/textures/minecraft/wither_skeleton_skull.png deleted file mode 100644 index 0523d0c6..00000000 Binary files a/public/textures/minecraft/wither_skeleton_skull.png and /dev/null differ diff --git a/public/textures/minecraft/wither_skeleton_spawn_egg.png b/public/textures/minecraft/wither_skeleton_spawn_egg.png deleted file mode 100644 index c1545f30..00000000 Binary files a/public/textures/minecraft/wither_skeleton_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/wolf_armor.png b/public/textures/minecraft/wolf_armor.png deleted file mode 100644 index d3f142e8..00000000 Binary files a/public/textures/minecraft/wolf_armor.png and /dev/null differ diff --git a/public/textures/minecraft/wolf_spawn_egg.png b/public/textures/minecraft/wolf_spawn_egg.png deleted file mode 100644 index 82e510c0..00000000 Binary files a/public/textures/minecraft/wolf_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/wooden_axe.png b/public/textures/minecraft/wooden_axe.png deleted file mode 100644 index 53f46585..00000000 Binary files a/public/textures/minecraft/wooden_axe.png and /dev/null differ diff --git a/public/textures/minecraft/wooden_hoe.png b/public/textures/minecraft/wooden_hoe.png deleted file mode 100644 index b5e713ee..00000000 Binary files a/public/textures/minecraft/wooden_hoe.png and /dev/null differ diff --git a/public/textures/minecraft/wooden_pickaxe.png b/public/textures/minecraft/wooden_pickaxe.png deleted file mode 100644 index 2dc08d12..00000000 Binary files a/public/textures/minecraft/wooden_pickaxe.png and /dev/null differ diff --git a/public/textures/minecraft/wooden_shovel.png b/public/textures/minecraft/wooden_shovel.png deleted file mode 100644 index bc6de92f..00000000 Binary files a/public/textures/minecraft/wooden_shovel.png and /dev/null differ diff --git a/public/textures/minecraft/wooden_sword.png b/public/textures/minecraft/wooden_sword.png deleted file mode 100644 index 7a00dd61..00000000 Binary files a/public/textures/minecraft/wooden_sword.png and /dev/null differ diff --git a/public/textures/minecraft/writable_book.png b/public/textures/minecraft/writable_book.png deleted file mode 100644 index a08ffa3e..00000000 Binary files a/public/textures/minecraft/writable_book.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_banner.png b/public/textures/minecraft/yellow_banner.png deleted file mode 100644 index 7faa035e..00000000 Binary files a/public/textures/minecraft/yellow_banner.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_bed.png b/public/textures/minecraft/yellow_bed.png deleted file mode 100644 index 384b0548..00000000 Binary files a/public/textures/minecraft/yellow_bed.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_candle.png b/public/textures/minecraft/yellow_candle.png deleted file mode 100644 index cd7e0a2c..00000000 Binary files a/public/textures/minecraft/yellow_candle.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_carpet.png b/public/textures/minecraft/yellow_carpet.png deleted file mode 100644 index f3a4c429..00000000 Binary files a/public/textures/minecraft/yellow_carpet.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_concrete.png b/public/textures/minecraft/yellow_concrete.png deleted file mode 100644 index 3ef9e65d..00000000 Binary files a/public/textures/minecraft/yellow_concrete.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_concrete_powder.png b/public/textures/minecraft/yellow_concrete_powder.png deleted file mode 100644 index 4a63ae3b..00000000 Binary files a/public/textures/minecraft/yellow_concrete_powder.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_dye.png b/public/textures/minecraft/yellow_dye.png deleted file mode 100644 index ce8d46e4..00000000 Binary files a/public/textures/minecraft/yellow_dye.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_glazed_terracotta.png b/public/textures/minecraft/yellow_glazed_terracotta.png deleted file mode 100644 index 2c563709..00000000 Binary files a/public/textures/minecraft/yellow_glazed_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_shulker_box.png b/public/textures/minecraft/yellow_shulker_box.png deleted file mode 100644 index 9342c247..00000000 Binary files a/public/textures/minecraft/yellow_shulker_box.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_stained_glass.png b/public/textures/minecraft/yellow_stained_glass.png deleted file mode 100644 index 133548f9..00000000 Binary files a/public/textures/minecraft/yellow_stained_glass.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_stained_glass_pane.png b/public/textures/minecraft/yellow_stained_glass_pane.png deleted file mode 100644 index 6fef103c..00000000 Binary files a/public/textures/minecraft/yellow_stained_glass_pane.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_terracotta.png b/public/textures/minecraft/yellow_terracotta.png deleted file mode 100644 index a27bb394..00000000 Binary files a/public/textures/minecraft/yellow_terracotta.png and /dev/null differ diff --git a/public/textures/minecraft/yellow_wool.png b/public/textures/minecraft/yellow_wool.png deleted file mode 100644 index 5cfd5945..00000000 Binary files a/public/textures/minecraft/yellow_wool.png and /dev/null differ diff --git a/public/textures/minecraft/zoglin_spawn_egg.png b/public/textures/minecraft/zoglin_spawn_egg.png deleted file mode 100644 index f2ad4d8a..00000000 Binary files a/public/textures/minecraft/zoglin_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/zombie_head.png b/public/textures/minecraft/zombie_head.png deleted file mode 100644 index 06d612df..00000000 Binary files a/public/textures/minecraft/zombie_head.png and /dev/null differ diff --git a/public/textures/minecraft/zombie_horse_spawn_egg.png b/public/textures/minecraft/zombie_horse_spawn_egg.png deleted file mode 100644 index 9842eb61..00000000 Binary files a/public/textures/minecraft/zombie_horse_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/zombie_spawn_egg.png b/public/textures/minecraft/zombie_spawn_egg.png deleted file mode 100644 index d86c2a60..00000000 Binary files a/public/textures/minecraft/zombie_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/zombie_villager_spawn_egg.png b/public/textures/minecraft/zombie_villager_spawn_egg.png deleted file mode 100644 index 8c428480..00000000 Binary files a/public/textures/minecraft/zombie_villager_spawn_egg.png and /dev/null differ diff --git a/public/textures/minecraft/zombified_piglin_spawn_egg.png b/public/textures/minecraft/zombified_piglin_spawn_egg.png deleted file mode 100644 index 69b6a4b1..00000000 Binary files a/public/textures/minecraft/zombified_piglin_spawn_egg.png and /dev/null differ diff --git a/public/textures/more_immersive_wires/ae_coil.png b/public/textures/more_immersive_wires/ae_coil.png deleted file mode 100644 index e1ce818a..00000000 Binary files a/public/textures/more_immersive_wires/ae_coil.png and /dev/null differ diff --git a/public/textures/more_immersive_wires/ae_connector.png b/public/textures/more_immersive_wires/ae_connector.png deleted file mode 100644 index e7f566a6..00000000 Binary files a/public/textures/more_immersive_wires/ae_connector.png and /dev/null differ diff --git a/public/textures/more_immersive_wires/ae_dense_coil.png b/public/textures/more_immersive_wires/ae_dense_coil.png deleted file mode 100644 index 91951f2d..00000000 Binary files a/public/textures/more_immersive_wires/ae_dense_coil.png and /dev/null differ diff --git a/public/textures/more_immersive_wires/ae_dense_connector.png b/public/textures/more_immersive_wires/ae_dense_connector.png deleted file mode 100644 index 88ba5bbe..00000000 Binary files a/public/textures/more_immersive_wires/ae_dense_connector.png and /dev/null differ diff --git a/public/textures/more_immersive_wires/ae_dense_relay.png b/public/textures/more_immersive_wires/ae_dense_relay.png deleted file mode 100644 index 9efb13e6..00000000 Binary files a/public/textures/more_immersive_wires/ae_dense_relay.png and /dev/null differ diff --git a/public/textures/more_immersive_wires/ae_relay.png b/public/textures/more_immersive_wires/ae_relay.png deleted file mode 100644 index 137e9254..00000000 Binary files a/public/textures/more_immersive_wires/ae_relay.png and /dev/null differ diff --git a/public/textures/more_immersive_wires/cc_coil.png b/public/textures/more_immersive_wires/cc_coil.png deleted file mode 100644 index 8c7972ce..00000000 Binary files a/public/textures/more_immersive_wires/cc_coil.png and /dev/null differ diff --git a/public/textures/more_immersive_wires/cc_connector.png b/public/textures/more_immersive_wires/cc_connector.png deleted file mode 100644 index d1fbd4c6..00000000 Binary files a/public/textures/more_immersive_wires/cc_connector.png and /dev/null differ diff --git a/public/textures/more_immersive_wires/cc_modem.png b/public/textures/more_immersive_wires/cc_modem.png deleted file mode 100644 index 206fb031..00000000 Binary files a/public/textures/more_immersive_wires/cc_modem.png and /dev/null differ diff --git a/public/textures/more_immersive_wires/cc_relay.png b/public/textures/more_immersive_wires/cc_relay.png deleted file mode 100644 index cb7dac6e..00000000 Binary files a/public/textures/more_immersive_wires/cc_relay.png and /dev/null differ diff --git a/public/textures/morered/and_2_gate.png b/public/textures/morered/and_2_gate.png deleted file mode 100644 index 4f3a8cc8..00000000 Binary files a/public/textures/morered/and_2_gate.png and /dev/null differ diff --git a/public/textures/morered/and_gate.png b/public/textures/morered/and_gate.png deleted file mode 100644 index cea07602..00000000 Binary files a/public/textures/morered/and_gate.png and /dev/null differ diff --git a/public/textures/morered/bitwise_and_gate.png b/public/textures/morered/bitwise_and_gate.png deleted file mode 100644 index fc3434e2..00000000 Binary files a/public/textures/morered/bitwise_and_gate.png and /dev/null differ diff --git a/public/textures/morered/bitwise_diode.png b/public/textures/morered/bitwise_diode.png deleted file mode 100644 index f0ac3dae..00000000 Binary files a/public/textures/morered/bitwise_diode.png and /dev/null differ diff --git a/public/textures/morered/bitwise_not_gate.png b/public/textures/morered/bitwise_not_gate.png deleted file mode 100644 index a29ce55b..00000000 Binary files a/public/textures/morered/bitwise_not_gate.png and /dev/null differ diff --git a/public/textures/morered/bitwise_or_gate.png b/public/textures/morered/bitwise_or_gate.png deleted file mode 100644 index 42c758b3..00000000 Binary files a/public/textures/morered/bitwise_or_gate.png and /dev/null differ diff --git a/public/textures/morered/bitwise_xnor_gate.png b/public/textures/morered/bitwise_xnor_gate.png deleted file mode 100644 index c1d3c857..00000000 Binary files a/public/textures/morered/bitwise_xnor_gate.png and /dev/null differ diff --git a/public/textures/morered/bitwise_xor_gate.png b/public/textures/morered/bitwise_xor_gate.png deleted file mode 100644 index 9ba88a11..00000000 Binary files a/public/textures/morered/bitwise_xor_gate.png and /dev/null differ diff --git a/public/textures/morered/black_network_cable.png b/public/textures/morered/black_network_cable.png deleted file mode 100644 index e786898d..00000000 Binary files a/public/textures/morered/black_network_cable.png and /dev/null differ diff --git a/public/textures/morered/blue_network_cable.png b/public/textures/morered/blue_network_cable.png deleted file mode 100644 index 2cb972ed..00000000 Binary files a/public/textures/morered/blue_network_cable.png and /dev/null differ diff --git a/public/textures/morered/brown_network_cable.png b/public/textures/morered/brown_network_cable.png deleted file mode 100644 index 8b7e5279..00000000 Binary files a/public/textures/morered/brown_network_cable.png and /dev/null differ diff --git a/public/textures/morered/bundled_cable_post.png b/public/textures/morered/bundled_cable_post.png deleted file mode 100644 index d56851c2..00000000 Binary files a/public/textures/morered/bundled_cable_post.png and /dev/null differ diff --git a/public/textures/morered/bundled_cable_relay_plate.png b/public/textures/morered/bundled_cable_relay_plate.png deleted file mode 100644 index 5e336aa6..00000000 Binary files a/public/textures/morered/bundled_cable_relay_plate.png and /dev/null differ diff --git a/public/textures/morered/bundled_cable_spool.png b/public/textures/morered/bundled_cable_spool.png deleted file mode 100644 index 4647ff50..00000000 Binary files a/public/textures/morered/bundled_cable_spool.png and /dev/null differ diff --git a/public/textures/morered/bundled_network_cable.png b/public/textures/morered/bundled_network_cable.png deleted file mode 100644 index 05c57f23..00000000 Binary files a/public/textures/morered/bundled_network_cable.png and /dev/null differ diff --git a/public/textures/morered/cyan_network_cable.png b/public/textures/morered/cyan_network_cable.png deleted file mode 100644 index 5b1d6e5f..00000000 Binary files a/public/textures/morered/cyan_network_cable.png and /dev/null differ diff --git a/public/textures/morered/diode.png b/public/textures/morered/diode.png deleted file mode 100644 index 3d87c40f..00000000 Binary files a/public/textures/morered/diode.png and /dev/null differ diff --git a/public/textures/morered/gray_network_cable.png b/public/textures/morered/gray_network_cable.png deleted file mode 100644 index 3b5ce27c..00000000 Binary files a/public/textures/morered/gray_network_cable.png and /dev/null differ diff --git a/public/textures/morered/green_network_cable.png b/public/textures/morered/green_network_cable.png deleted file mode 100644 index 338f3d58..00000000 Binary files a/public/textures/morered/green_network_cable.png and /dev/null differ diff --git a/public/textures/morered/hexidecrubrometer.png b/public/textures/morered/hexidecrubrometer.png deleted file mode 100644 index e4fa1c28..00000000 Binary files a/public/textures/morered/hexidecrubrometer.png and /dev/null differ diff --git a/public/textures/morered/latch.png b/public/textures/morered/latch.png deleted file mode 100644 index a148a52b..00000000 Binary files a/public/textures/morered/latch.png and /dev/null differ diff --git a/public/textures/morered/light_blue_network_cable.png b/public/textures/morered/light_blue_network_cable.png deleted file mode 100644 index 48900278..00000000 Binary files a/public/textures/morered/light_blue_network_cable.png and /dev/null differ diff --git a/public/textures/morered/light_gray_network_cable.png b/public/textures/morered/light_gray_network_cable.png deleted file mode 100644 index 68744520..00000000 Binary files a/public/textures/morered/light_gray_network_cable.png and /dev/null differ diff --git a/public/textures/morered/lime_network_cable.png b/public/textures/morered/lime_network_cable.png deleted file mode 100644 index 345b2c33..00000000 Binary files a/public/textures/morered/lime_network_cable.png and /dev/null differ diff --git a/public/textures/morered/magenta_network_cable.png b/public/textures/morered/magenta_network_cable.png deleted file mode 100644 index a6e0c10c..00000000 Binary files a/public/textures/morered/magenta_network_cable.png and /dev/null differ diff --git a/public/textures/morered/multiplexer.png b/public/textures/morered/multiplexer.png deleted file mode 100644 index b2e2d3d7..00000000 Binary files a/public/textures/morered/multiplexer.png and /dev/null differ diff --git a/public/textures/morered/nand_2_gate.png b/public/textures/morered/nand_2_gate.png deleted file mode 100644 index 988b02d9..00000000 Binary files a/public/textures/morered/nand_2_gate.png and /dev/null differ diff --git a/public/textures/morered/nand_gate.png b/public/textures/morered/nand_gate.png deleted file mode 100644 index ae3b629b..00000000 Binary files a/public/textures/morered/nand_gate.png and /dev/null differ diff --git a/public/textures/morered/nor_gate.png b/public/textures/morered/nor_gate.png deleted file mode 100644 index c8a10da9..00000000 Binary files a/public/textures/morered/nor_gate.png and /dev/null differ diff --git a/public/textures/morered/not_gate.png b/public/textures/morered/not_gate.png deleted file mode 100644 index 43ade6ae..00000000 Binary files a/public/textures/morered/not_gate.png and /dev/null differ diff --git a/public/textures/morered/or_gate.png b/public/textures/morered/or_gate.png deleted file mode 100644 index 1f96cc7d..00000000 Binary files a/public/textures/morered/or_gate.png and /dev/null differ diff --git a/public/textures/morered/orange_network_cable.png b/public/textures/morered/orange_network_cable.png deleted file mode 100644 index fc3a6d12..00000000 Binary files a/public/textures/morered/orange_network_cable.png and /dev/null differ diff --git a/public/textures/morered/pink_network_cable.png b/public/textures/morered/pink_network_cable.png deleted file mode 100644 index 15a69987..00000000 Binary files a/public/textures/morered/pink_network_cable.png and /dev/null differ diff --git a/public/textures/morered/pulse_gate.png b/public/textures/morered/pulse_gate.png deleted file mode 100644 index c54e5265..00000000 Binary files a/public/textures/morered/pulse_gate.png and /dev/null differ diff --git a/public/textures/morered/purple_network_cable.png b/public/textures/morered/purple_network_cable.png deleted file mode 100644 index 49088ab9..00000000 Binary files a/public/textures/morered/purple_network_cable.png and /dev/null differ diff --git a/public/textures/morered/red_alloy_ingot.png b/public/textures/morered/red_alloy_ingot.png deleted file mode 100644 index fa8088cd..00000000 Binary files a/public/textures/morered/red_alloy_ingot.png and /dev/null differ diff --git a/public/textures/morered/red_alloy_wire.png b/public/textures/morered/red_alloy_wire.png deleted file mode 100644 index 4eb952a4..00000000 Binary files a/public/textures/morered/red_alloy_wire.png and /dev/null differ diff --git a/public/textures/morered/red_network_cable.png b/public/textures/morered/red_network_cable.png deleted file mode 100644 index 0586af7b..00000000 Binary files a/public/textures/morered/red_network_cable.png and /dev/null differ diff --git a/public/textures/morered/redwire_post.png b/public/textures/morered/redwire_post.png deleted file mode 100644 index 359104fa..00000000 Binary files a/public/textures/morered/redwire_post.png and /dev/null differ diff --git a/public/textures/morered/redwire_post_plate.png b/public/textures/morered/redwire_post_plate.png deleted file mode 100644 index 6b3b1a38..00000000 Binary files a/public/textures/morered/redwire_post_plate.png and /dev/null differ diff --git a/public/textures/morered/redwire_post_relay_plate.png b/public/textures/morered/redwire_post_relay_plate.png deleted file mode 100644 index 38bebde7..00000000 Binary files a/public/textures/morered/redwire_post_relay_plate.png and /dev/null differ diff --git a/public/textures/morered/redwire_spool.png b/public/textures/morered/redwire_spool.png deleted file mode 100644 index 35b8b05c..00000000 Binary files a/public/textures/morered/redwire_spool.png and /dev/null differ diff --git a/public/textures/morered/soldering_table.png b/public/textures/morered/soldering_table.png deleted file mode 100644 index f5bf9830..00000000 Binary files a/public/textures/morered/soldering_table.png and /dev/null differ diff --git a/public/textures/morered/stone_plate.png b/public/textures/morered/stone_plate.png deleted file mode 100644 index aa6fd7c0..00000000 Binary files a/public/textures/morered/stone_plate.png and /dev/null differ diff --git a/public/textures/morered/white_network_cable.png b/public/textures/morered/white_network_cable.png deleted file mode 100644 index ed743dfd..00000000 Binary files a/public/textures/morered/white_network_cable.png and /dev/null differ diff --git a/public/textures/morered/xnor_gate.png b/public/textures/morered/xnor_gate.png deleted file mode 100644 index df956fd7..00000000 Binary files a/public/textures/morered/xnor_gate.png and /dev/null differ diff --git a/public/textures/morered/xor_gate.png b/public/textures/morered/xor_gate.png deleted file mode 100644 index b4bfa7a9..00000000 Binary files a/public/textures/morered/xor_gate.png and /dev/null differ diff --git a/public/textures/morered/yellow_network_cable.png b/public/textures/morered/yellow_network_cable.png deleted file mode 100644 index 877b8517..00000000 Binary files a/public/textures/morered/yellow_network_cable.png and /dev/null differ diff --git a/public/textures/mynethersdelight/bacon-wrapped_sausage_on_a_stick.png b/public/textures/mynethersdelight/bacon-wrapped_sausage_on_a_stick.png deleted file mode 100644 index 2efdcf6c..00000000 Binary files a/public/textures/mynethersdelight/bacon-wrapped_sausage_on_a_stick.png and /dev/null differ diff --git a/public/textures/mynethersdelight/blackstone_bricks_cabinet.png b/public/textures/mynethersdelight/blackstone_bricks_cabinet.png deleted file mode 100644 index 2979c373..00000000 Binary files a/public/textures/mynethersdelight/blackstone_bricks_cabinet.png and /dev/null differ diff --git a/public/textures/mynethersdelight/bleeding_tartar.png b/public/textures/mynethersdelight/bleeding_tartar.png deleted file mode 100644 index 81f152eb..00000000 Binary files a/public/textures/mynethersdelight/bleeding_tartar.png and /dev/null differ diff --git a/public/textures/mynethersdelight/blue_tenderloin_steak.png b/public/textures/mynethersdelight/blue_tenderloin_steak.png deleted file mode 100644 index ff894ef6..00000000 Binary files a/public/textures/mynethersdelight/blue_tenderloin_steak.png and /dev/null differ diff --git a/public/textures/mynethersdelight/boiled_egg.png b/public/textures/mynethersdelight/boiled_egg.png deleted file mode 100644 index e86c7fc9..00000000 Binary files a/public/textures/mynethersdelight/boiled_egg.png and /dev/null differ diff --git a/public/textures/mynethersdelight/bread_loaf.png b/public/textures/mynethersdelight/bread_loaf.png deleted file mode 100644 index 6325baef..00000000 Binary files a/public/textures/mynethersdelight/bread_loaf.png and /dev/null differ diff --git a/public/textures/mynethersdelight/breakfast_sampler.png b/public/textures/mynethersdelight/breakfast_sampler.png deleted file mode 100644 index 1cc24ff1..00000000 Binary files a/public/textures/mynethersdelight/breakfast_sampler.png and /dev/null differ diff --git a/public/textures/mynethersdelight/bullet_pepper.png b/public/textures/mynethersdelight/bullet_pepper.png deleted file mode 100644 index 3e1298ac..00000000 Binary files a/public/textures/mynethersdelight/bullet_pepper.png and /dev/null differ diff --git a/public/textures/mynethersdelight/bullet_pepper_crate.png b/public/textures/mynethersdelight/bullet_pepper_crate.png deleted file mode 100644 index 357d58c0..00000000 Binary files a/public/textures/mynethersdelight/bullet_pepper_crate.png and /dev/null differ diff --git a/public/textures/mynethersdelight/burnt_roll.png b/public/textures/mynethersdelight/burnt_roll.png deleted file mode 100644 index f51167f8..00000000 Binary files a/public/textures/mynethersdelight/burnt_roll.png and /dev/null differ diff --git a/public/textures/mynethersdelight/chilidog.png b/public/textures/mynethersdelight/chilidog.png deleted file mode 100644 index 0dc4cd17..00000000 Binary files a/public/textures/mynethersdelight/chilidog.png and /dev/null differ diff --git a/public/textures/mynethersdelight/cold_striderloaf.png b/public/textures/mynethersdelight/cold_striderloaf.png deleted file mode 100644 index 176db83e..00000000 Binary files a/public/textures/mynethersdelight/cold_striderloaf.png and /dev/null differ diff --git a/public/textures/mynethersdelight/cooked_loin.png b/public/textures/mynethersdelight/cooked_loin.png deleted file mode 100644 index 716f39a9..00000000 Binary files a/public/textures/mynethersdelight/cooked_loin.png and /dev/null differ diff --git a/public/textures/mynethersdelight/crimson_fungus_colony.png b/public/textures/mynethersdelight/crimson_fungus_colony.png deleted file mode 100644 index 9b96e38e..00000000 Binary files a/public/textures/mynethersdelight/crimson_fungus_colony.png and /dev/null differ diff --git a/public/textures/mynethersdelight/crimson_stroganoff.png b/public/textures/mynethersdelight/crimson_stroganoff.png deleted file mode 100644 index 7c30054b..00000000 Binary files a/public/textures/mynethersdelight/crimson_stroganoff.png and /dev/null differ diff --git a/public/textures/mynethersdelight/deviled_egg.png b/public/textures/mynethersdelight/deviled_egg.png deleted file mode 100644 index 33636bf9..00000000 Binary files a/public/textures/mynethersdelight/deviled_egg.png and /dev/null differ diff --git a/public/textures/mynethersdelight/dried_ghast_with_milk.png b/public/textures/mynethersdelight/dried_ghast_with_milk.png deleted file mode 100644 index 06ed8bd2..00000000 Binary files a/public/textures/mynethersdelight/dried_ghast_with_milk.png and /dev/null differ diff --git a/public/textures/mynethersdelight/egg_soup.png b/public/textures/mynethersdelight/egg_soup.png deleted file mode 100644 index a3bb2093..00000000 Binary files a/public/textures/mynethersdelight/egg_soup.png and /dev/null differ diff --git a/public/textures/mynethersdelight/enchanted_golden_egg.png b/public/textures/mynethersdelight/enchanted_golden_egg.png deleted file mode 100644 index 81ec1dda..00000000 Binary files a/public/textures/mynethersdelight/enchanted_golden_egg.png and /dev/null differ diff --git a/public/textures/mynethersdelight/fried_hoglin_chop.png b/public/textures/mynethersdelight/fried_hoglin_chop.png deleted file mode 100644 index 9ab5d7b9..00000000 Binary files a/public/textures/mynethersdelight/fried_hoglin_chop.png and /dev/null differ diff --git a/public/textures/mynethersdelight/fries_ghasta.png b/public/textures/mynethersdelight/fries_ghasta.png deleted file mode 100644 index cc9fa84f..00000000 Binary files a/public/textures/mynethersdelight/fries_ghasta.png and /dev/null differ diff --git a/public/textures/mynethersdelight/ghasmati.png b/public/textures/mynethersdelight/ghasmati.png deleted file mode 100644 index ae3b467a..00000000 Binary files a/public/textures/mynethersdelight/ghasmati.png and /dev/null differ diff --git a/public/textures/mynethersdelight/ghast_dough.png b/public/textures/mynethersdelight/ghast_dough.png deleted file mode 100644 index f7ead16e..00000000 Binary files a/public/textures/mynethersdelight/ghast_dough.png and /dev/null differ diff --git a/public/textures/mynethersdelight/ghast_salad.png b/public/textures/mynethersdelight/ghast_salad.png deleted file mode 100644 index 726bf0bf..00000000 Binary files a/public/textures/mynethersdelight/ghast_salad.png and /dev/null differ diff --git a/public/textures/mynethersdelight/ghast_sourdough.png b/public/textures/mynethersdelight/ghast_sourdough.png deleted file mode 100644 index 273f1ea8..00000000 Binary files a/public/textures/mynethersdelight/ghast_sourdough.png and /dev/null differ diff --git a/public/textures/mynethersdelight/ghasta.png b/public/textures/mynethersdelight/ghasta.png deleted file mode 100644 index e52d08f7..00000000 Binary files a/public/textures/mynethersdelight/ghasta.png and /dev/null differ diff --git a/public/textures/mynethersdelight/ghasta_with_cream.png b/public/textures/mynethersdelight/ghasta_with_cream.png deleted file mode 100644 index ca9033db..00000000 Binary files a/public/textures/mynethersdelight/ghasta_with_cream.png and /dev/null differ diff --git a/public/textures/mynethersdelight/giant_takoyaki.png b/public/textures/mynethersdelight/giant_takoyaki.png deleted file mode 100644 index ee510ba6..00000000 Binary files a/public/textures/mynethersdelight/giant_takoyaki.png and /dev/null differ diff --git a/public/textures/mynethersdelight/golden_egg.png b/public/textures/mynethersdelight/golden_egg.png deleted file mode 100644 index 054bbe8e..00000000 Binary files a/public/textures/mynethersdelight/golden_egg.png and /dev/null differ diff --git a/public/textures/mynethersdelight/hoglin_hide.png b/public/textures/mynethersdelight/hoglin_hide.png deleted file mode 100644 index 852dafa3..00000000 Binary files a/public/textures/mynethersdelight/hoglin_hide.png and /dev/null differ diff --git a/public/textures/mynethersdelight/hoglin_loin.png b/public/textures/mynethersdelight/hoglin_loin.png deleted file mode 100644 index d286d85e..00000000 Binary files a/public/textures/mynethersdelight/hoglin_loin.png and /dev/null differ diff --git a/public/textures/mynethersdelight/hoglin_sausage.png b/public/textures/mynethersdelight/hoglin_sausage.png deleted file mode 100644 index 2bb96d29..00000000 Binary files a/public/textures/mynethersdelight/hoglin_sausage.png and /dev/null differ diff --git a/public/textures/mynethersdelight/hoglin_trophy.png b/public/textures/mynethersdelight/hoglin_trophy.png deleted file mode 100644 index e646079f..00000000 Binary files a/public/textures/mynethersdelight/hoglin_trophy.png and /dev/null differ diff --git a/public/textures/mynethersdelight/hot_cream.png b/public/textures/mynethersdelight/hot_cream.png deleted file mode 100644 index 85c26b52..00000000 Binary files a/public/textures/mynethersdelight/hot_cream.png and /dev/null differ diff --git a/public/textures/mynethersdelight/hot_cream_cone.png b/public/textures/mynethersdelight/hot_cream_cone.png deleted file mode 100644 index 9e178da9..00000000 Binary files a/public/textures/mynethersdelight/hot_cream_cone.png and /dev/null differ diff --git a/public/textures/mynethersdelight/hot_wings.png b/public/textures/mynethersdelight/hot_wings.png deleted file mode 100644 index cd16a5cd..00000000 Binary files a/public/textures/mynethersdelight/hot_wings.png and /dev/null differ diff --git a/public/textures/mynethersdelight/hot_wings_bucket.png b/public/textures/mynethersdelight/hot_wings_bucket.png deleted file mode 100644 index de08d0cc..00000000 Binary files a/public/textures/mynethersdelight/hot_wings_bucket.png and /dev/null differ diff --git a/public/textures/mynethersdelight/hotdog.png b/public/textures/mynethersdelight/hotdog.png deleted file mode 100644 index 4c8827f1..00000000 Binary files a/public/textures/mynethersdelight/hotdog.png and /dev/null differ diff --git a/public/textures/mynethersdelight/hotdog_with_mixed_salad.png b/public/textures/mynethersdelight/hotdog_with_mixed_salad.png deleted file mode 100644 index 54135190..00000000 Binary files a/public/textures/mynethersdelight/hotdog_with_mixed_salad.png and /dev/null differ diff --git a/public/textures/mynethersdelight/hotdog_with_nether_salad.png b/public/textures/mynethersdelight/hotdog_with_nether_salad.png deleted file mode 100644 index 59d07119..00000000 Binary files a/public/textures/mynethersdelight/hotdog_with_nether_salad.png and /dev/null differ diff --git a/public/textures/mynethersdelight/letios_compost.png b/public/textures/mynethersdelight/letios_compost.png deleted file mode 100644 index 022248df..00000000 Binary files a/public/textures/mynethersdelight/letios_compost.png and /dev/null differ diff --git a/public/textures/mynethersdelight/magma_cake_block.png b/public/textures/mynethersdelight/magma_cake_block.png deleted file mode 100644 index e23c6c84..00000000 Binary files a/public/textures/mynethersdelight/magma_cake_block.png and /dev/null differ diff --git a/public/textures/mynethersdelight/magma_cake_slice.png b/public/textures/mynethersdelight/magma_cake_slice.png deleted file mode 100644 index 82e6ee40..00000000 Binary files a/public/textures/mynethersdelight/magma_cake_slice.png and /dev/null differ diff --git a/public/textures/mynethersdelight/minced_strider.png b/public/textures/mynethersdelight/minced_strider.png deleted file mode 100644 index 5a83dfc9..00000000 Binary files a/public/textures/mynethersdelight/minced_strider.png and /dev/null differ diff --git a/public/textures/mynethersdelight/nether_bricks_cabinet.png b/public/textures/mynethersdelight/nether_bricks_cabinet.png deleted file mode 100644 index 2edfbb79..00000000 Binary files a/public/textures/mynethersdelight/nether_bricks_cabinet.png and /dev/null differ diff --git a/public/textures/mynethersdelight/nether_bricks_stove.png b/public/textures/mynethersdelight/nether_bricks_stove.png deleted file mode 100644 index 06b2b629..00000000 Binary files a/public/textures/mynethersdelight/nether_bricks_stove.png and /dev/null differ diff --git a/public/textures/mynethersdelight/nether_burger.png b/public/textures/mynethersdelight/nether_burger.png deleted file mode 100644 index 4f639a27..00000000 Binary files a/public/textures/mynethersdelight/nether_burger.png and /dev/null differ diff --git a/public/textures/mynethersdelight/plate_of_cold_striderloaf.png b/public/textures/mynethersdelight/plate_of_cold_striderloaf.png deleted file mode 100644 index a08a26cc..00000000 Binary files a/public/textures/mynethersdelight/plate_of_cold_striderloaf.png and /dev/null differ diff --git a/public/textures/mynethersdelight/plate_of_ghasta_with_cream.png b/public/textures/mynethersdelight/plate_of_ghasta_with_cream.png deleted file mode 100644 index 5278b8a4..00000000 Binary files a/public/textures/mynethersdelight/plate_of_ghasta_with_cream.png and /dev/null differ diff --git a/public/textures/mynethersdelight/plate_of_striderloaf.png b/public/textures/mynethersdelight/plate_of_striderloaf.png deleted file mode 100644 index be3ade32..00000000 Binary files a/public/textures/mynethersdelight/plate_of_striderloaf.png and /dev/null differ diff --git a/public/textures/mynethersdelight/plate_of_stuffed_hoglin.png b/public/textures/mynethersdelight/plate_of_stuffed_hoglin.png deleted file mode 100644 index 3823385d..00000000 Binary files a/public/textures/mynethersdelight/plate_of_stuffed_hoglin.png and /dev/null differ diff --git a/public/textures/mynethersdelight/plate_of_stuffed_hoglin_ham.png b/public/textures/mynethersdelight/plate_of_stuffed_hoglin_ham.png deleted file mode 100644 index e9409126..00000000 Binary files a/public/textures/mynethersdelight/plate_of_stuffed_hoglin_ham.png and /dev/null differ diff --git a/public/textures/mynethersdelight/plate_of_stuffed_hoglin_snout.png b/public/textures/mynethersdelight/plate_of_stuffed_hoglin_snout.png deleted file mode 100644 index fd41ace5..00000000 Binary files a/public/textures/mynethersdelight/plate_of_stuffed_hoglin_snout.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powder_cannon.png b/public/textures/mynethersdelight/powder_cannon.png deleted file mode 100644 index e59570d2..00000000 Binary files a/public/textures/mynethersdelight/powder_cannon.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_block.png b/public/textures/mynethersdelight/powdery_block.png deleted file mode 100644 index 2c347ee7..00000000 Binary files a/public/textures/mynethersdelight/powdery_block.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_button.png b/public/textures/mynethersdelight/powdery_button.png deleted file mode 100644 index b9733ac2..00000000 Binary files a/public/textures/mynethersdelight/powdery_button.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_cabinet.png b/public/textures/mynethersdelight/powdery_cabinet.png deleted file mode 100644 index 132a3516..00000000 Binary files a/public/textures/mynethersdelight/powdery_cabinet.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_door.png b/public/textures/mynethersdelight/powdery_door.png deleted file mode 100644 index d7eb210b..00000000 Binary files a/public/textures/mynethersdelight/powdery_door.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_fence.png b/public/textures/mynethersdelight/powdery_fence.png deleted file mode 100644 index e99a7370..00000000 Binary files a/public/textures/mynethersdelight/powdery_fence.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_fence_gate.png b/public/textures/mynethersdelight/powdery_fence_gate.png deleted file mode 100644 index 1f228ee4..00000000 Binary files a/public/textures/mynethersdelight/powdery_fence_gate.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_hanging_sign.png b/public/textures/mynethersdelight/powdery_hanging_sign.png deleted file mode 100644 index 1e25b62c..00000000 Binary files a/public/textures/mynethersdelight/powdery_hanging_sign.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_mosaic.png b/public/textures/mynethersdelight/powdery_mosaic.png deleted file mode 100644 index e208baf3..00000000 Binary files a/public/textures/mynethersdelight/powdery_mosaic.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_mosaic_slab.png b/public/textures/mynethersdelight/powdery_mosaic_slab.png deleted file mode 100644 index 335b8371..00000000 Binary files a/public/textures/mynethersdelight/powdery_mosaic_slab.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_mosaic_stairs.png b/public/textures/mynethersdelight/powdery_mosaic_stairs.png deleted file mode 100644 index 9532a5c6..00000000 Binary files a/public/textures/mynethersdelight/powdery_mosaic_stairs.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_planks.png b/public/textures/mynethersdelight/powdery_planks.png deleted file mode 100644 index e99ae99e..00000000 Binary files a/public/textures/mynethersdelight/powdery_planks.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_pressure_plate.png b/public/textures/mynethersdelight/powdery_pressure_plate.png deleted file mode 100644 index 074db21c..00000000 Binary files a/public/textures/mynethersdelight/powdery_pressure_plate.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_sign.png b/public/textures/mynethersdelight/powdery_sign.png deleted file mode 100644 index dc38bbee..00000000 Binary files a/public/textures/mynethersdelight/powdery_sign.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_slab.png b/public/textures/mynethersdelight/powdery_slab.png deleted file mode 100644 index b85d46df..00000000 Binary files a/public/textures/mynethersdelight/powdery_slab.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_stairs.png b/public/textures/mynethersdelight/powdery_stairs.png deleted file mode 100644 index e3f5e488..00000000 Binary files a/public/textures/mynethersdelight/powdery_stairs.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_torch.png b/public/textures/mynethersdelight/powdery_torch.png deleted file mode 100644 index c5fe854f..00000000 Binary files a/public/textures/mynethersdelight/powdery_torch.png and /dev/null differ diff --git a/public/textures/mynethersdelight/powdery_trapdoor.png b/public/textures/mynethersdelight/powdery_trapdoor.png deleted file mode 100644 index 1ea2879c..00000000 Binary files a/public/textures/mynethersdelight/powdery_trapdoor.png and /dev/null differ diff --git a/public/textures/mynethersdelight/raw_stuffed_hoglin.png b/public/textures/mynethersdelight/raw_stuffed_hoglin.png deleted file mode 100644 index e52acb4a..00000000 Binary files a/public/textures/mynethersdelight/raw_stuffed_hoglin.png and /dev/null differ diff --git a/public/textures/mynethersdelight/red_loin_on_a_stick.png b/public/textures/mynethersdelight/red_loin_on_a_stick.png deleted file mode 100644 index bf0e6ad5..00000000 Binary files a/public/textures/mynethersdelight/red_loin_on_a_stick.png and /dev/null differ diff --git a/public/textures/mynethersdelight/red_nether_bricks_cabinet.png b/public/textures/mynethersdelight/red_nether_bricks_cabinet.png deleted file mode 100644 index 5cf9a111..00000000 Binary files a/public/textures/mynethersdelight/red_nether_bricks_cabinet.png and /dev/null differ diff --git a/public/textures/mynethersdelight/resurgent_soil.png b/public/textures/mynethersdelight/resurgent_soil.png deleted file mode 100644 index a2eae4b4..00000000 Binary files a/public/textures/mynethersdelight/resurgent_soil.png and /dev/null differ diff --git a/public/textures/mynethersdelight/resurgent_soil_farmland.png b/public/textures/mynethersdelight/resurgent_soil_farmland.png deleted file mode 100644 index 71ac629b..00000000 Binary files a/public/textures/mynethersdelight/resurgent_soil_farmland.png and /dev/null differ diff --git a/public/textures/mynethersdelight/roast_ear.png b/public/textures/mynethersdelight/roast_ear.png deleted file mode 100644 index dee2ada9..00000000 Binary files a/public/textures/mynethersdelight/roast_ear.png and /dev/null differ diff --git a/public/textures/mynethersdelight/roast_stuffed_hoglin.png b/public/textures/mynethersdelight/roast_stuffed_hoglin.png deleted file mode 100644 index 2304cadd..00000000 Binary files a/public/textures/mynethersdelight/roast_stuffed_hoglin.png and /dev/null differ diff --git a/public/textures/mynethersdelight/roasted_sausage.png b/public/textures/mynethersdelight/roasted_sausage.png deleted file mode 100644 index b007b6aa..00000000 Binary files a/public/textures/mynethersdelight/roasted_sausage.png and /dev/null differ diff --git a/public/textures/mynethersdelight/rock_soup.png b/public/textures/mynethersdelight/rock_soup.png deleted file mode 100644 index 35550db3..00000000 Binary files a/public/textures/mynethersdelight/rock_soup.png and /dev/null differ diff --git a/public/textures/mynethersdelight/sausage_and_potatoes.png b/public/textures/mynethersdelight/sausage_and_potatoes.png deleted file mode 100644 index 52052ad4..00000000 Binary files a/public/textures/mynethersdelight/sausage_and_potatoes.png and /dev/null differ diff --git a/public/textures/mynethersdelight/scotch_eggs.png b/public/textures/mynethersdelight/scotch_eggs.png deleted file mode 100644 index df22c3b4..00000000 Binary files a/public/textures/mynethersdelight/scotch_eggs.png and /dev/null differ diff --git a/public/textures/mynethersdelight/sizzling_pudding.png b/public/textures/mynethersdelight/sizzling_pudding.png deleted file mode 100644 index 51da5d32..00000000 Binary files a/public/textures/mynethersdelight/sizzling_pudding.png and /dev/null differ diff --git a/public/textures/mynethersdelight/skoglin_trophy.png b/public/textures/mynethersdelight/skoglin_trophy.png deleted file mode 100644 index 6f2f6c17..00000000 Binary files a/public/textures/mynethersdelight/skoglin_trophy.png and /dev/null differ diff --git a/public/textures/mynethersdelight/slices_of_bread.png b/public/textures/mynethersdelight/slices_of_bread.png deleted file mode 100644 index b99faeeb..00000000 Binary files a/public/textures/mynethersdelight/slices_of_bread.png and /dev/null differ diff --git a/public/textures/mynethersdelight/spicy_cotton.png b/public/textures/mynethersdelight/spicy_cotton.png deleted file mode 100644 index e585aa6d..00000000 Binary files a/public/textures/mynethersdelight/spicy_cotton.png and /dev/null differ diff --git a/public/textures/mynethersdelight/spicy_curry.png b/public/textures/mynethersdelight/spicy_curry.png deleted file mode 100644 index 306998b6..00000000 Binary files a/public/textures/mynethersdelight/spicy_curry.png and /dev/null differ diff --git a/public/textures/mynethersdelight/spicy_hoglin_stew.png b/public/textures/mynethersdelight/spicy_hoglin_stew.png deleted file mode 100644 index 1ff81069..00000000 Binary files a/public/textures/mynethersdelight/spicy_hoglin_stew.png and /dev/null differ diff --git a/public/textures/mynethersdelight/spicy_noodle_soup.png b/public/textures/mynethersdelight/spicy_noodle_soup.png deleted file mode 100644 index 538bfcc8..00000000 Binary files a/public/textures/mynethersdelight/spicy_noodle_soup.png and /dev/null differ diff --git a/public/textures/mynethersdelight/spicy_skewer.png b/public/textures/mynethersdelight/spicy_skewer.png deleted file mode 100644 index a98acdb5..00000000 Binary files a/public/textures/mynethersdelight/spicy_skewer.png and /dev/null differ diff --git a/public/textures/mynethersdelight/strider_egg.png b/public/textures/mynethersdelight/strider_egg.png deleted file mode 100644 index 83b9fc82..00000000 Binary files a/public/textures/mynethersdelight/strider_egg.png and /dev/null differ diff --git a/public/textures/mynethersdelight/strider_rock.png b/public/textures/mynethersdelight/strider_rock.png deleted file mode 100644 index bdc9f899..00000000 Binary files a/public/textures/mynethersdelight/strider_rock.png and /dev/null differ diff --git a/public/textures/mynethersdelight/strider_slice.png b/public/textures/mynethersdelight/strider_slice.png deleted file mode 100644 index 6350da05..00000000 Binary files a/public/textures/mynethersdelight/strider_slice.png and /dev/null differ diff --git a/public/textures/mynethersdelight/strider_stew.png b/public/textures/mynethersdelight/strider_stew.png deleted file mode 100644 index 548bbc0d..00000000 Binary files a/public/textures/mynethersdelight/strider_stew.png and /dev/null differ diff --git a/public/textures/mynethersdelight/strider_with_grilled_fungus.png b/public/textures/mynethersdelight/strider_with_grilled_fungus.png deleted file mode 100644 index a05d48a2..00000000 Binary files a/public/textures/mynethersdelight/strider_with_grilled_fungus.png and /dev/null differ diff --git a/public/textures/mynethersdelight/striderloaf.png b/public/textures/mynethersdelight/striderloaf.png deleted file mode 100644 index d95a2998..00000000 Binary files a/public/textures/mynethersdelight/striderloaf.png and /dev/null differ diff --git a/public/textures/mynethersdelight/stripped_powdery_block.png b/public/textures/mynethersdelight/stripped_powdery_block.png deleted file mode 100644 index e05453dc..00000000 Binary files a/public/textures/mynethersdelight/stripped_powdery_block.png and /dev/null differ diff --git a/public/textures/mynethersdelight/stuffed_pepper.png b/public/textures/mynethersdelight/stuffed_pepper.png deleted file mode 100644 index b126423d..00000000 Binary files a/public/textures/mynethersdelight/stuffed_pepper.png and /dev/null differ diff --git a/public/textures/mynethersdelight/tear_popsicle.png b/public/textures/mynethersdelight/tear_popsicle.png deleted file mode 100644 index 65e9d06f..00000000 Binary files a/public/textures/mynethersdelight/tear_popsicle.png and /dev/null differ diff --git a/public/textures/mynethersdelight/toasts.png b/public/textures/mynethersdelight/toasts.png deleted file mode 100644 index 38e2c734..00000000 Binary files a/public/textures/mynethersdelight/toasts.png and /dev/null differ diff --git a/public/textures/mynethersdelight/twisted_ghasta.png b/public/textures/mynethersdelight/twisted_ghasta.png deleted file mode 100644 index aeee861c..00000000 Binary files a/public/textures/mynethersdelight/twisted_ghasta.png and /dev/null differ diff --git a/public/textures/mynethersdelight/warped_fungus_colony.png b/public/textures/mynethersdelight/warped_fungus_colony.png deleted file mode 100644 index 0d85eb58..00000000 Binary files a/public/textures/mynethersdelight/warped_fungus_colony.png and /dev/null differ diff --git a/public/textures/mynethersdelight/waxed_hoglin_trophy.png b/public/textures/mynethersdelight/waxed_hoglin_trophy.png deleted file mode 100644 index e646079f..00000000 Binary files a/public/textures/mynethersdelight/waxed_hoglin_trophy.png and /dev/null differ diff --git a/public/textures/mynethersdelight/zoglin_trophy.png b/public/textures/mynethersdelight/zoglin_trophy.png deleted file mode 100644 index d1e8562c..00000000 Binary files a/public/textures/mynethersdelight/zoglin_trophy.png and /dev/null differ diff --git a/public/textures/naturescompass/naturescompass.png b/public/textures/naturescompass/naturescompass.png deleted file mode 100644 index ad5731d8..00000000 Binary files a/public/textures/naturescompass/naturescompass.png and /dev/null differ diff --git a/public/textures/nethervillagertrader/hell_armor_boots.png b/public/textures/nethervillagertrader/hell_armor_boots.png deleted file mode 100644 index e06de215..00000000 Binary files a/public/textures/nethervillagertrader/hell_armor_boots.png and /dev/null differ diff --git a/public/textures/nethervillagertrader/hell_armor_chestplate.png b/public/textures/nethervillagertrader/hell_armor_chestplate.png deleted file mode 100644 index 8acc7ec9..00000000 Binary files a/public/textures/nethervillagertrader/hell_armor_chestplate.png and /dev/null differ diff --git a/public/textures/nethervillagertrader/hell_armor_helmet.png b/public/textures/nethervillagertrader/hell_armor_helmet.png deleted file mode 100644 index 50e9b01f..00000000 Binary files a/public/textures/nethervillagertrader/hell_armor_helmet.png and /dev/null differ diff --git a/public/textures/nethervillagertrader/hell_armor_leggings.png b/public/textures/nethervillagertrader/hell_armor_leggings.png deleted file mode 100644 index 555ba77d..00000000 Binary files a/public/textures/nethervillagertrader/hell_armor_leggings.png and /dev/null differ diff --git a/public/textures/nethervillagertrader/hell_axe.png b/public/textures/nethervillagertrader/hell_axe.png deleted file mode 100644 index 28b93960..00000000 Binary files a/public/textures/nethervillagertrader/hell_axe.png and /dev/null differ diff --git a/public/textures/nethervillagertrader/hell_ingot.png b/public/textures/nethervillagertrader/hell_ingot.png deleted file mode 100644 index 198c0fa0..00000000 Binary files a/public/textures/nethervillagertrader/hell_ingot.png and /dev/null differ diff --git a/public/textures/nethervillagertrader/hell_potion.png b/public/textures/nethervillagertrader/hell_potion.png deleted file mode 100644 index d7abff08..00000000 Binary files a/public/textures/nethervillagertrader/hell_potion.png and /dev/null differ diff --git a/public/textures/nethervillagertrader/hell_sword.png b/public/textures/nethervillagertrader/hell_sword.png deleted file mode 100644 index 23c936b1..00000000 Binary files a/public/textures/nethervillagertrader/hell_sword.png and /dev/null differ diff --git a/public/textures/nethervillagertrader/nether_sickle.png b/public/textures/nethervillagertrader/nether_sickle.png deleted file mode 100644 index ce3f97a9..00000000 Binary files a/public/textures/nethervillagertrader/nether_sickle.png and /dev/null differ diff --git a/public/textures/oceansdelight/baked_tentacle_on_a_stick.png b/public/textures/oceansdelight/baked_tentacle_on_a_stick.png deleted file mode 100644 index 4b13e734..00000000 Binary files a/public/textures/oceansdelight/baked_tentacle_on_a_stick.png and /dev/null differ diff --git a/public/textures/oceansdelight/bowl_of_guardian_soup.png b/public/textures/oceansdelight/bowl_of_guardian_soup.png deleted file mode 100644 index a56b15c1..00000000 Binary files a/public/textures/oceansdelight/bowl_of_guardian_soup.png and /dev/null differ diff --git a/public/textures/oceansdelight/braised_sea_pickle.png b/public/textures/oceansdelight/braised_sea_pickle.png deleted file mode 100644 index ed716180..00000000 Binary files a/public/textures/oceansdelight/braised_sea_pickle.png and /dev/null differ diff --git a/public/textures/oceansdelight/cabbage_wrapped_elder_guardian.png b/public/textures/oceansdelight/cabbage_wrapped_elder_guardian.png deleted file mode 100644 index eac85c0e..00000000 Binary files a/public/textures/oceansdelight/cabbage_wrapped_elder_guardian.png and /dev/null differ diff --git a/public/textures/oceansdelight/cooked_elder_guardian_slice.png b/public/textures/oceansdelight/cooked_elder_guardian_slice.png deleted file mode 100644 index a0691b0f..00000000 Binary files a/public/textures/oceansdelight/cooked_elder_guardian_slice.png and /dev/null differ diff --git a/public/textures/oceansdelight/cooked_guardian_tail.png b/public/textures/oceansdelight/cooked_guardian_tail.png deleted file mode 100644 index 5698dcd0..00000000 Binary files a/public/textures/oceansdelight/cooked_guardian_tail.png and /dev/null differ diff --git a/public/textures/oceansdelight/cooked_stuffed_cod.png b/public/textures/oceansdelight/cooked_stuffed_cod.png deleted file mode 100644 index 4abda857..00000000 Binary files a/public/textures/oceansdelight/cooked_stuffed_cod.png and /dev/null differ diff --git a/public/textures/oceansdelight/cut_tentacles.png b/public/textures/oceansdelight/cut_tentacles.png deleted file mode 100644 index 4bfbc253..00000000 Binary files a/public/textures/oceansdelight/cut_tentacles.png and /dev/null differ diff --git a/public/textures/oceansdelight/elder_guardian_roll.png b/public/textures/oceansdelight/elder_guardian_roll.png deleted file mode 100644 index 1959fac3..00000000 Binary files a/public/textures/oceansdelight/elder_guardian_roll.png and /dev/null differ diff --git a/public/textures/oceansdelight/elder_guardian_slab.png b/public/textures/oceansdelight/elder_guardian_slab.png deleted file mode 100644 index 7d56ceac..00000000 Binary files a/public/textures/oceansdelight/elder_guardian_slab.png and /dev/null differ diff --git a/public/textures/oceansdelight/elder_guardian_slice.png b/public/textures/oceansdelight/elder_guardian_slice.png deleted file mode 100644 index 871782cf..00000000 Binary files a/public/textures/oceansdelight/elder_guardian_slice.png and /dev/null differ diff --git a/public/textures/oceansdelight/fugu_roll.png b/public/textures/oceansdelight/fugu_roll.png deleted file mode 100644 index 6d730f09..00000000 Binary files a/public/textures/oceansdelight/fugu_roll.png and /dev/null differ diff --git a/public/textures/oceansdelight/fugu_slice.png b/public/textures/oceansdelight/fugu_slice.png deleted file mode 100644 index bb64facd..00000000 Binary files a/public/textures/oceansdelight/fugu_slice.png and /dev/null differ diff --git a/public/textures/oceansdelight/guardian.png b/public/textures/oceansdelight/guardian.png deleted file mode 100644 index 130b3fcb..00000000 Binary files a/public/textures/oceansdelight/guardian.png and /dev/null differ diff --git a/public/textures/oceansdelight/guardian_soup.png b/public/textures/oceansdelight/guardian_soup.png deleted file mode 100644 index 0abdf21a..00000000 Binary files a/public/textures/oceansdelight/guardian_soup.png and /dev/null differ diff --git a/public/textures/oceansdelight/guardian_tail.png b/public/textures/oceansdelight/guardian_tail.png deleted file mode 100644 index 0a3b93ca..00000000 Binary files a/public/textures/oceansdelight/guardian_tail.png and /dev/null differ diff --git a/public/textures/oceansdelight/honey_fried_kelp.png b/public/textures/oceansdelight/honey_fried_kelp.png deleted file mode 100644 index 14419ee7..00000000 Binary files a/public/textures/oceansdelight/honey_fried_kelp.png and /dev/null differ diff --git a/public/textures/oceansdelight/seagrass_salad.png b/public/textures/oceansdelight/seagrass_salad.png deleted file mode 100644 index bf275ba0..00000000 Binary files a/public/textures/oceansdelight/seagrass_salad.png and /dev/null differ diff --git a/public/textures/oceansdelight/squid_rings.png b/public/textures/oceansdelight/squid_rings.png deleted file mode 100644 index 6eb80832..00000000 Binary files a/public/textures/oceansdelight/squid_rings.png and /dev/null differ diff --git a/public/textures/oceansdelight/stuffed_cod.png b/public/textures/oceansdelight/stuffed_cod.png deleted file mode 100644 index 17fc4c84..00000000 Binary files a/public/textures/oceansdelight/stuffed_cod.png and /dev/null differ diff --git a/public/textures/oceansdelight/tentacle_on_a_stick.png b/public/textures/oceansdelight/tentacle_on_a_stick.png deleted file mode 100644 index 08fca23b..00000000 Binary files a/public/textures/oceansdelight/tentacle_on_a_stick.png and /dev/null differ diff --git a/public/textures/oceansdelight/tentacles.png b/public/textures/oceansdelight/tentacles.png deleted file mode 100644 index 0d1515c3..00000000 Binary files a/public/textures/oceansdelight/tentacles.png and /dev/null differ diff --git a/public/textures/piglinproliferation/buckler.png b/public/textures/piglinproliferation/buckler.png deleted file mode 100644 index 989479d0..00000000 Binary files a/public/textures/piglinproliferation/buckler.png and /dev/null differ diff --git a/public/textures/piglinproliferation/piglin_alchemist_head.png b/public/textures/piglinproliferation/piglin_alchemist_head.png deleted file mode 100644 index d63512a2..00000000 Binary files a/public/textures/piglinproliferation/piglin_alchemist_head.png and /dev/null differ diff --git a/public/textures/piglinproliferation/piglin_alchemist_spawn_egg.png b/public/textures/piglinproliferation/piglin_alchemist_spawn_egg.png deleted file mode 100644 index d33aa0f6..00000000 Binary files a/public/textures/piglinproliferation/piglin_alchemist_spawn_egg.png and /dev/null differ diff --git a/public/textures/piglinproliferation/piglin_brute_head.png b/public/textures/piglinproliferation/piglin_brute_head.png deleted file mode 100644 index 06b6a62b..00000000 Binary files a/public/textures/piglinproliferation/piglin_brute_head.png and /dev/null differ diff --git a/public/textures/piglinproliferation/piglin_traveler_head.png b/public/textures/piglinproliferation/piglin_traveler_head.png deleted file mode 100644 index 8b199c28..00000000 Binary files a/public/textures/piglinproliferation/piglin_traveler_head.png and /dev/null differ diff --git a/public/textures/piglinproliferation/piglin_traveler_spawn_egg.png b/public/textures/piglinproliferation/piglin_traveler_spawn_egg.png deleted file mode 100644 index f24715ef..00000000 Binary files a/public/textures/piglinproliferation/piglin_traveler_spawn_egg.png and /dev/null differ diff --git a/public/textures/piglinproliferation/stone_fire_ring.png b/public/textures/piglinproliferation/stone_fire_ring.png deleted file mode 100644 index e50a87ad..00000000 Binary files a/public/textures/piglinproliferation/stone_fire_ring.png and /dev/null differ diff --git a/public/textures/piglinproliferation/travelers_compass.png b/public/textures/piglinproliferation/travelers_compass.png deleted file mode 100644 index 67c0b415..00000000 Binary files a/public/textures/piglinproliferation/travelers_compass.png and /dev/null differ diff --git a/public/textures/piglinproliferation/zombified_piglin_head.png b/public/textures/piglinproliferation/zombified_piglin_head.png deleted file mode 100644 index fcc39539..00000000 Binary files a/public/textures/piglinproliferation/zombified_piglin_head.png and /dev/null differ diff --git a/public/textures/raided/electromancer_spawn_egg.png b/public/textures/raided/electromancer_spawn_egg.png deleted file mode 100644 index ba3e6515..00000000 Binary files a/public/textures/raided/electromancer_spawn_egg.png and /dev/null differ diff --git a/public/textures/raided/incinerator_spawn_egg.png b/public/textures/raided/incinerator_spawn_egg.png deleted file mode 100644 index ba3e6515..00000000 Binary files a/public/textures/raided/incinerator_spawn_egg.png and /dev/null differ diff --git a/public/textures/raided/inquisitor_spawn_egg.png b/public/textures/raided/inquisitor_spawn_egg.png deleted file mode 100644 index ba3e6515..00000000 Binary files a/public/textures/raided/inquisitor_spawn_egg.png and /dev/null differ diff --git a/public/textures/raided/necromancer_spawn_egg.png b/public/textures/raided/necromancer_spawn_egg.png deleted file mode 100644 index ba3e6515..00000000 Binary files a/public/textures/raided/necromancer_spawn_egg.png and /dev/null differ diff --git a/public/textures/raided/savager_spawn_egg.png b/public/textures/raided/savager_spawn_egg.png deleted file mode 100644 index ba3e6515..00000000 Binary files a/public/textures/raided/savager_spawn_egg.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_beams.png b/public/textures/rechiseled/acacia_planks_beams.png deleted file mode 100644 index 488c75eb..00000000 Binary files a/public/textures/rechiseled/acacia_planks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_beams_connecting.png b/public/textures/rechiseled/acacia_planks_beams_connecting.png deleted file mode 100644 index 488c75eb..00000000 Binary files a/public/textures/rechiseled/acacia_planks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_brick_pattern.png b/public/textures/rechiseled/acacia_planks_brick_pattern.png deleted file mode 100644 index 3e5aa5b1..00000000 Binary files a/public/textures/rechiseled/acacia_planks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_brick_pattern_connecting.png b/public/textures/rechiseled/acacia_planks_brick_pattern_connecting.png deleted file mode 100644 index 3e5aa5b1..00000000 Binary files a/public/textures/rechiseled/acacia_planks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_brick_paving.png b/public/textures/rechiseled/acacia_planks_brick_paving.png deleted file mode 100644 index adebace3..00000000 Binary files a/public/textures/rechiseled/acacia_planks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_brick_paving_connecting.png b/public/textures/rechiseled/acacia_planks_brick_paving_connecting.png deleted file mode 100644 index adebace3..00000000 Binary files a/public/textures/rechiseled/acacia_planks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_bricks.png b/public/textures/rechiseled/acacia_planks_bricks.png deleted file mode 100644 index 5471680f..00000000 Binary files a/public/textures/rechiseled/acacia_planks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_bricks_connecting.png b/public/textures/rechiseled/acacia_planks_bricks_connecting.png deleted file mode 100644 index 5471680f..00000000 Binary files a/public/textures/rechiseled/acacia_planks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_crate.png b/public/textures/rechiseled/acacia_planks_crate.png deleted file mode 100644 index 08a09277..00000000 Binary files a/public/textures/rechiseled/acacia_planks_crate.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_crate_connecting.png b/public/textures/rechiseled/acacia_planks_crate_connecting.png deleted file mode 100644 index 08a09277..00000000 Binary files a/public/textures/rechiseled/acacia_planks_crate_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_diagonal_stripes.png b/public/textures/rechiseled/acacia_planks_diagonal_stripes.png deleted file mode 100644 index 7b8dab87..00000000 Binary files a/public/textures/rechiseled/acacia_planks_diagonal_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_diagonal_stripes_connecting.png b/public/textures/rechiseled/acacia_planks_diagonal_stripes_connecting.png deleted file mode 100644 index 7b8dab87..00000000 Binary files a/public/textures/rechiseled/acacia_planks_diagonal_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_diagonal_tiles.png b/public/textures/rechiseled/acacia_planks_diagonal_tiles.png deleted file mode 100644 index 4bba561e..00000000 Binary files a/public/textures/rechiseled/acacia_planks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_diagonal_tiles_connecting.png b/public/textures/rechiseled/acacia_planks_diagonal_tiles_connecting.png deleted file mode 100644 index 4bba561e..00000000 Binary files a/public/textures/rechiseled/acacia_planks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_dotted.png b/public/textures/rechiseled/acacia_planks_dotted.png deleted file mode 100644 index 248b26bc..00000000 Binary files a/public/textures/rechiseled/acacia_planks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_dotted_connecting.png b/public/textures/rechiseled/acacia_planks_dotted_connecting.png deleted file mode 100644 index 248b26bc..00000000 Binary files a/public/textures/rechiseled/acacia_planks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_flooring.png b/public/textures/rechiseled/acacia_planks_flooring.png deleted file mode 100644 index d031df04..00000000 Binary files a/public/textures/rechiseled/acacia_planks_flooring.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_flooring_connecting.png b/public/textures/rechiseled/acacia_planks_flooring_connecting.png deleted file mode 100644 index d031df04..00000000 Binary files a/public/textures/rechiseled/acacia_planks_flooring_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_large_tiles.png b/public/textures/rechiseled/acacia_planks_large_tiles.png deleted file mode 100644 index 1c184378..00000000 Binary files a/public/textures/rechiseled/acacia_planks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_large_tiles_connecting.png b/public/textures/rechiseled/acacia_planks_large_tiles_connecting.png deleted file mode 100644 index 1c184378..00000000 Binary files a/public/textures/rechiseled/acacia_planks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_mosaic.png b/public/textures/rechiseled/acacia_planks_mosaic.png deleted file mode 100644 index 101ac6ca..00000000 Binary files a/public/textures/rechiseled/acacia_planks_mosaic.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_pattern.png b/public/textures/rechiseled/acacia_planks_pattern.png deleted file mode 100644 index f93ebd8e..00000000 Binary files a/public/textures/rechiseled/acacia_planks_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_pattern_connecting.png b/public/textures/rechiseled/acacia_planks_pattern_connecting.png deleted file mode 100644 index f93ebd8e..00000000 Binary files a/public/textures/rechiseled/acacia_planks_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_rotated_bricks.png b/public/textures/rechiseled/acacia_planks_rotated_bricks.png deleted file mode 100644 index 96aeccf8..00000000 Binary files a/public/textures/rechiseled/acacia_planks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_rotated_bricks_connecting.png b/public/textures/rechiseled/acacia_planks_rotated_bricks_connecting.png deleted file mode 100644 index 96aeccf8..00000000 Binary files a/public/textures/rechiseled/acacia_planks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_small_bricks.png b/public/textures/rechiseled/acacia_planks_small_bricks.png deleted file mode 100644 index 27ed9d07..00000000 Binary files a/public/textures/rechiseled/acacia_planks_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_small_bricks_connecting.png b/public/textures/rechiseled/acacia_planks_small_bricks_connecting.png deleted file mode 100644 index 27ed9d07..00000000 Binary files a/public/textures/rechiseled/acacia_planks_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_small_tiles.png b/public/textures/rechiseled/acacia_planks_small_tiles.png deleted file mode 100644 index f19f8669..00000000 Binary files a/public/textures/rechiseled/acacia_planks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_small_tiles_connecting.png b/public/textures/rechiseled/acacia_planks_small_tiles_connecting.png deleted file mode 100644 index f19f8669..00000000 Binary files a/public/textures/rechiseled/acacia_planks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_squares.png b/public/textures/rechiseled/acacia_planks_squares.png deleted file mode 100644 index 50c8140d..00000000 Binary files a/public/textures/rechiseled/acacia_planks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_squares_connecting.png b/public/textures/rechiseled/acacia_planks_squares_connecting.png deleted file mode 100644 index 50c8140d..00000000 Binary files a/public/textures/rechiseled/acacia_planks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_tiles.png b/public/textures/rechiseled/acacia_planks_tiles.png deleted file mode 100644 index df596363..00000000 Binary files a/public/textures/rechiseled/acacia_planks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_tiles_connecting.png b/public/textures/rechiseled/acacia_planks_tiles_connecting.png deleted file mode 100644 index df596363..00000000 Binary files a/public/textures/rechiseled/acacia_planks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_wavy.png b/public/textures/rechiseled/acacia_planks_wavy.png deleted file mode 100644 index a3c62b1d..00000000 Binary files a/public/textures/rechiseled/acacia_planks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_wavy_connecting.png b/public/textures/rechiseled/acacia_planks_wavy_connecting.png deleted file mode 100644 index a3c62b1d..00000000 Binary files a/public/textures/rechiseled/acacia_planks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_woven.png b/public/textures/rechiseled/acacia_planks_woven.png deleted file mode 100644 index f3c2b4f0..00000000 Binary files a/public/textures/rechiseled/acacia_planks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/acacia_planks_woven_connecting.png b/public/textures/rechiseled/acacia_planks_woven_connecting.png deleted file mode 100644 index f3c2b4f0..00000000 Binary files a/public/textures/rechiseled/acacia_planks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_beams.png b/public/textures/rechiseled/amethyst_block_beams.png deleted file mode 100644 index def0ec06..00000000 Binary files a/public/textures/rechiseled/amethyst_block_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_beams_connecting.png b/public/textures/rechiseled/amethyst_block_beams_connecting.png deleted file mode 100644 index def0ec06..00000000 Binary files a/public/textures/rechiseled/amethyst_block_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_bordered_diagonal_tiles.png b/public/textures/rechiseled/amethyst_block_bordered_diagonal_tiles.png deleted file mode 100644 index 6c6ab2f1..00000000 Binary files a/public/textures/rechiseled/amethyst_block_bordered_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_bordered_diagonal_tiles_connecting.png b/public/textures/rechiseled/amethyst_block_bordered_diagonal_tiles_connecting.png deleted file mode 100644 index 6c6ab2f1..00000000 Binary files a/public/textures/rechiseled/amethyst_block_bordered_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_bricks.png b/public/textures/rechiseled/amethyst_block_bricks.png deleted file mode 100644 index d09059c3..00000000 Binary files a/public/textures/rechiseled/amethyst_block_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_bricks_connecting.png b/public/textures/rechiseled/amethyst_block_bricks_connecting.png deleted file mode 100644 index d09059c3..00000000 Binary files a/public/textures/rechiseled/amethyst_block_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_cut.png b/public/textures/rechiseled/amethyst_block_cut.png deleted file mode 100644 index 7cd2869a..00000000 Binary files a/public/textures/rechiseled/amethyst_block_cut.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_cut_connecting.png b/public/textures/rechiseled/amethyst_block_cut_connecting.png deleted file mode 100644 index 7cd2869a..00000000 Binary files a/public/textures/rechiseled/amethyst_block_cut_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_diagonal_tiles.png b/public/textures/rechiseled/amethyst_block_diagonal_tiles.png deleted file mode 100644 index ed486069..00000000 Binary files a/public/textures/rechiseled/amethyst_block_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_edged.png b/public/textures/rechiseled/amethyst_block_edged.png deleted file mode 100644 index 896da456..00000000 Binary files a/public/textures/rechiseled/amethyst_block_edged.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_edged_connecting.png b/public/textures/rechiseled/amethyst_block_edged_connecting.png deleted file mode 100644 index 896da456..00000000 Binary files a/public/textures/rechiseled/amethyst_block_edged_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_jewel.png b/public/textures/rechiseled/amethyst_block_jewel.png deleted file mode 100644 index 7829d97a..00000000 Binary files a/public/textures/rechiseled/amethyst_block_jewel.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_pillar.png b/public/textures/rechiseled/amethyst_block_pillar.png deleted file mode 100644 index 02265f31..00000000 Binary files a/public/textures/rechiseled/amethyst_block_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_pillar_connecting.png b/public/textures/rechiseled/amethyst_block_pillar_connecting.png deleted file mode 100644 index 02265f31..00000000 Binary files a/public/textures/rechiseled/amethyst_block_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_polished.png b/public/textures/rechiseled/amethyst_block_polished.png deleted file mode 100644 index 8d780405..00000000 Binary files a/public/textures/rechiseled/amethyst_block_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_polished_connecting.png b/public/textures/rechiseled/amethyst_block_polished_connecting.png deleted file mode 100644 index 8d780405..00000000 Binary files a/public/textures/rechiseled/amethyst_block_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_shiny.png b/public/textures/rechiseled/amethyst_block_shiny.png deleted file mode 100644 index f464e8e5..00000000 Binary files a/public/textures/rechiseled/amethyst_block_shiny.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_shiny_connecting.png b/public/textures/rechiseled/amethyst_block_shiny_connecting.png deleted file mode 100644 index f464e8e5..00000000 Binary files a/public/textures/rechiseled/amethyst_block_shiny_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_smooth.png b/public/textures/rechiseled/amethyst_block_smooth.png deleted file mode 100644 index 566e8595..00000000 Binary files a/public/textures/rechiseled/amethyst_block_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_tiles.png b/public/textures/rechiseled/amethyst_block_tiles.png deleted file mode 100644 index 03c9d0b0..00000000 Binary files a/public/textures/rechiseled/amethyst_block_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/amethyst_block_tiles_connecting.png b/public/textures/rechiseled/amethyst_block_tiles_connecting.png deleted file mode 100644 index 03c9d0b0..00000000 Binary files a/public/textures/rechiseled/amethyst_block_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_brick_pattern.png b/public/textures/rechiseled/andesite_brick_pattern.png deleted file mode 100644 index 0ee4cfaf..00000000 Binary files a/public/textures/rechiseled/andesite_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_brick_pattern_connecting.png b/public/textures/rechiseled/andesite_brick_pattern_connecting.png deleted file mode 100644 index 0ee4cfaf..00000000 Binary files a/public/textures/rechiseled/andesite_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_brick_paving.png b/public/textures/rechiseled/andesite_brick_paving.png deleted file mode 100644 index 328aeeb6..00000000 Binary files a/public/textures/rechiseled/andesite_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_brick_paving_connecting.png b/public/textures/rechiseled/andesite_brick_paving_connecting.png deleted file mode 100644 index 328aeeb6..00000000 Binary files a/public/textures/rechiseled/andesite_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_bricks.png b/public/textures/rechiseled/andesite_bricks.png deleted file mode 100644 index b7117c72..00000000 Binary files a/public/textures/rechiseled/andesite_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_bricks_connecting.png b/public/textures/rechiseled/andesite_bricks_connecting.png deleted file mode 100644 index b7117c72..00000000 Binary files a/public/textures/rechiseled/andesite_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_diagonal_bricks.png b/public/textures/rechiseled/andesite_diagonal_bricks.png deleted file mode 100644 index 295913d3..00000000 Binary files a/public/textures/rechiseled/andesite_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_diagonal_bricks_connecting.png b/public/textures/rechiseled/andesite_diagonal_bricks_connecting.png deleted file mode 100644 index 295913d3..00000000 Binary files a/public/textures/rechiseled/andesite_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_dotted.png b/public/textures/rechiseled/andesite_dotted.png deleted file mode 100644 index 59bdf355..00000000 Binary files a/public/textures/rechiseled/andesite_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_dotted_connecting.png b/public/textures/rechiseled/andesite_dotted_connecting.png deleted file mode 100644 index 59bdf355..00000000 Binary files a/public/textures/rechiseled/andesite_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_paving.png b/public/textures/rechiseled/andesite_paving.png deleted file mode 100644 index 4f75e9e7..00000000 Binary files a/public/textures/rechiseled/andesite_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_paving_connecting.png b/public/textures/rechiseled/andesite_paving_connecting.png deleted file mode 100644 index 4f75e9e7..00000000 Binary files a/public/textures/rechiseled/andesite_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_polished_connecting.png b/public/textures/rechiseled/andesite_polished_connecting.png deleted file mode 100644 index 4f2e00a8..00000000 Binary files a/public/textures/rechiseled/andesite_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_rotated_bricks.png b/public/textures/rechiseled/andesite_rotated_bricks.png deleted file mode 100644 index cbc824ec..00000000 Binary files a/public/textures/rechiseled/andesite_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_rotated_bricks_connecting.png b/public/textures/rechiseled/andesite_rotated_bricks_connecting.png deleted file mode 100644 index cbc824ec..00000000 Binary files a/public/textures/rechiseled/andesite_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_squares.png b/public/textures/rechiseled/andesite_squares.png deleted file mode 100644 index c8576a31..00000000 Binary files a/public/textures/rechiseled/andesite_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_squares_connecting.png b/public/textures/rechiseled/andesite_squares_connecting.png deleted file mode 100644 index c8576a31..00000000 Binary files a/public/textures/rechiseled/andesite_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_tiles.png b/public/textures/rechiseled/andesite_tiles.png deleted file mode 100644 index 5f9f9faa..00000000 Binary files a/public/textures/rechiseled/andesite_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_tiles_connecting.png b/public/textures/rechiseled/andesite_tiles_connecting.png deleted file mode 100644 index 5f9f9faa..00000000 Binary files a/public/textures/rechiseled/andesite_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_wavy.png b/public/textures/rechiseled/andesite_wavy.png deleted file mode 100644 index 0141ee07..00000000 Binary files a/public/textures/rechiseled/andesite_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/andesite_wavy_connecting.png b/public/textures/rechiseled/andesite_wavy_connecting.png deleted file mode 100644 index 0141ee07..00000000 Binary files a/public/textures/rechiseled/andesite_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_beams.png b/public/textures/rechiseled/bamboo_planks_beams.png deleted file mode 100644 index 4bdea493..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_beams_connecting.png b/public/textures/rechiseled/bamboo_planks_beams_connecting.png deleted file mode 100644 index 4bdea493..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_brick_pattern.png b/public/textures/rechiseled/bamboo_planks_brick_pattern.png deleted file mode 100644 index e7216b3b..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_brick_pattern_connecting.png b/public/textures/rechiseled/bamboo_planks_brick_pattern_connecting.png deleted file mode 100644 index e7216b3b..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_brick_paving.png b/public/textures/rechiseled/bamboo_planks_brick_paving.png deleted file mode 100644 index a40ea629..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_brick_paving_connecting.png b/public/textures/rechiseled/bamboo_planks_brick_paving_connecting.png deleted file mode 100644 index a40ea629..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_bricks.png b/public/textures/rechiseled/bamboo_planks_bricks.png deleted file mode 100644 index bc7fdd28..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_bricks_connecting.png b/public/textures/rechiseled/bamboo_planks_bricks_connecting.png deleted file mode 100644 index bc7fdd28..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_crate.png b/public/textures/rechiseled/bamboo_planks_crate.png deleted file mode 100644 index 8bfedc95..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_crate.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_crate_connecting.png b/public/textures/rechiseled/bamboo_planks_crate_connecting.png deleted file mode 100644 index 8bfedc95..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_crate_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_diagonal_stripes.png b/public/textures/rechiseled/bamboo_planks_diagonal_stripes.png deleted file mode 100644 index ebb6ac8d..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_diagonal_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_diagonal_stripes_connecting.png b/public/textures/rechiseled/bamboo_planks_diagonal_stripes_connecting.png deleted file mode 100644 index ebb6ac8d..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_diagonal_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_diagonal_tiles.png b/public/textures/rechiseled/bamboo_planks_diagonal_tiles.png deleted file mode 100644 index 576060de..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_diagonal_tiles_connecting.png b/public/textures/rechiseled/bamboo_planks_diagonal_tiles_connecting.png deleted file mode 100644 index 576060de..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_dotted.png b/public/textures/rechiseled/bamboo_planks_dotted.png deleted file mode 100644 index 2cc7e19d..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_dotted_connecting.png b/public/textures/rechiseled/bamboo_planks_dotted_connecting.png deleted file mode 100644 index 2cc7e19d..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_flooring.png b/public/textures/rechiseled/bamboo_planks_flooring.png deleted file mode 100644 index 2a78a7fb..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_flooring.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_flooring_connecting.png b/public/textures/rechiseled/bamboo_planks_flooring_connecting.png deleted file mode 100644 index 2a78a7fb..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_flooring_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_large_tiles.png b/public/textures/rechiseled/bamboo_planks_large_tiles.png deleted file mode 100644 index dc00e9d4..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_large_tiles_connecting.png b/public/textures/rechiseled/bamboo_planks_large_tiles_connecting.png deleted file mode 100644 index dc00e9d4..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_pattern.png b/public/textures/rechiseled/bamboo_planks_pattern.png deleted file mode 100644 index 7f07dff2..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_pattern_connecting.png b/public/textures/rechiseled/bamboo_planks_pattern_connecting.png deleted file mode 100644 index 7f07dff2..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_rotated_bricks.png b/public/textures/rechiseled/bamboo_planks_rotated_bricks.png deleted file mode 100644 index e00f3056..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_rotated_bricks_connecting.png b/public/textures/rechiseled/bamboo_planks_rotated_bricks_connecting.png deleted file mode 100644 index e00f3056..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_small_bricks.png b/public/textures/rechiseled/bamboo_planks_small_bricks.png deleted file mode 100644 index dcdb9220..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_small_bricks_connecting.png b/public/textures/rechiseled/bamboo_planks_small_bricks_connecting.png deleted file mode 100644 index dcdb9220..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_small_tiles.png b/public/textures/rechiseled/bamboo_planks_small_tiles.png deleted file mode 100644 index ffe72e16..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_small_tiles_connecting.png b/public/textures/rechiseled/bamboo_planks_small_tiles_connecting.png deleted file mode 100644 index ffe72e16..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_squares.png b/public/textures/rechiseled/bamboo_planks_squares.png deleted file mode 100644 index 0255df77..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_squares_connecting.png b/public/textures/rechiseled/bamboo_planks_squares_connecting.png deleted file mode 100644 index 0255df77..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_tiles.png b/public/textures/rechiseled/bamboo_planks_tiles.png deleted file mode 100644 index a86bbd6b..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_tiles_connecting.png b/public/textures/rechiseled/bamboo_planks_tiles_connecting.png deleted file mode 100644 index a86bbd6b..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_wavy.png b/public/textures/rechiseled/bamboo_planks_wavy.png deleted file mode 100644 index 778e9864..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_wavy_connecting.png b/public/textures/rechiseled/bamboo_planks_wavy_connecting.png deleted file mode 100644 index 778e9864..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_woven.png b/public/textures/rechiseled/bamboo_planks_woven.png deleted file mode 100644 index 97b8d62e..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/bamboo_planks_woven_connecting.png b/public/textures/rechiseled/bamboo_planks_woven_connecting.png deleted file mode 100644 index 97b8d62e..00000000 Binary files a/public/textures/rechiseled/bamboo_planks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_beams.png b/public/textures/rechiseled/basalt_beams.png deleted file mode 100644 index 3fd3e6b0..00000000 Binary files a/public/textures/rechiseled/basalt_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_beams_connecting.png b/public/textures/rechiseled/basalt_beams_connecting.png deleted file mode 100644 index 3fd3e6b0..00000000 Binary files a/public/textures/rechiseled/basalt_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_bordered.png b/public/textures/rechiseled/basalt_bordered.png deleted file mode 100644 index b73803f0..00000000 Binary files a/public/textures/rechiseled/basalt_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_bordered_connecting.png b/public/textures/rechiseled/basalt_bordered_connecting.png deleted file mode 100644 index b73803f0..00000000 Binary files a/public/textures/rechiseled/basalt_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_bordered_polished.png b/public/textures/rechiseled/basalt_bordered_polished.png deleted file mode 100644 index 00342c24..00000000 Binary files a/public/textures/rechiseled/basalt_bordered_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_bordered_polished_connecting.png b/public/textures/rechiseled/basalt_bordered_polished_connecting.png deleted file mode 100644 index 00342c24..00000000 Binary files a/public/textures/rechiseled/basalt_bordered_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_bricks.png b/public/textures/rechiseled/basalt_bricks.png deleted file mode 100644 index 460c3cc0..00000000 Binary files a/public/textures/rechiseled/basalt_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_bricks_connecting.png b/public/textures/rechiseled/basalt_bricks_connecting.png deleted file mode 100644 index 460c3cc0..00000000 Binary files a/public/textures/rechiseled/basalt_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_chiseled_piglin.png b/public/textures/rechiseled/basalt_chiseled_piglin.png deleted file mode 100644 index ca39c39b..00000000 Binary files a/public/textures/rechiseled/basalt_chiseled_piglin.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_diagonal_tiles.png b/public/textures/rechiseled/basalt_diagonal_tiles.png deleted file mode 100644 index 2c207940..00000000 Binary files a/public/textures/rechiseled/basalt_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_diagonal_tiles_connecting.png b/public/textures/rechiseled/basalt_diagonal_tiles_connecting.png deleted file mode 100644 index 2c207940..00000000 Binary files a/public/textures/rechiseled/basalt_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_pattern.png b/public/textures/rechiseled/basalt_pattern.png deleted file mode 100644 index fbe2a93e..00000000 Binary files a/public/textures/rechiseled/basalt_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_pattern_connecting.png b/public/textures/rechiseled/basalt_pattern_connecting.png deleted file mode 100644 index fbe2a93e..00000000 Binary files a/public/textures/rechiseled/basalt_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_patterned.png b/public/textures/rechiseled/basalt_patterned.png deleted file mode 100644 index db20d77a..00000000 Binary files a/public/textures/rechiseled/basalt_patterned.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_patterned_connecting.png b/public/textures/rechiseled/basalt_patterned_connecting.png deleted file mode 100644 index db20d77a..00000000 Binary files a/public/textures/rechiseled/basalt_patterned_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_tiles.png b/public/textures/rechiseled/basalt_tiles.png deleted file mode 100644 index b09340a2..00000000 Binary files a/public/textures/rechiseled/basalt_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/basalt_tiles_connecting.png b/public/textures/rechiseled/basalt_tiles_connecting.png deleted file mode 100644 index b09340a2..00000000 Binary files a/public/textures/rechiseled/basalt_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_beams.png b/public/textures/rechiseled/birch_planks_beams.png deleted file mode 100644 index 863b20df..00000000 Binary files a/public/textures/rechiseled/birch_planks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_beams_connecting.png b/public/textures/rechiseled/birch_planks_beams_connecting.png deleted file mode 100644 index 863b20df..00000000 Binary files a/public/textures/rechiseled/birch_planks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_brick_pattern.png b/public/textures/rechiseled/birch_planks_brick_pattern.png deleted file mode 100644 index 9a324109..00000000 Binary files a/public/textures/rechiseled/birch_planks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_brick_pattern_connecting.png b/public/textures/rechiseled/birch_planks_brick_pattern_connecting.png deleted file mode 100644 index 9a324109..00000000 Binary files a/public/textures/rechiseled/birch_planks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_brick_paving.png b/public/textures/rechiseled/birch_planks_brick_paving.png deleted file mode 100644 index 6773be01..00000000 Binary files a/public/textures/rechiseled/birch_planks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_brick_paving_connecting.png b/public/textures/rechiseled/birch_planks_brick_paving_connecting.png deleted file mode 100644 index 6773be01..00000000 Binary files a/public/textures/rechiseled/birch_planks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_bricks.png b/public/textures/rechiseled/birch_planks_bricks.png deleted file mode 100644 index 347a1ae1..00000000 Binary files a/public/textures/rechiseled/birch_planks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_bricks_connecting.png b/public/textures/rechiseled/birch_planks_bricks_connecting.png deleted file mode 100644 index 347a1ae1..00000000 Binary files a/public/textures/rechiseled/birch_planks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_crate.png b/public/textures/rechiseled/birch_planks_crate.png deleted file mode 100644 index 8ce756a6..00000000 Binary files a/public/textures/rechiseled/birch_planks_crate.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_crate_connecting.png b/public/textures/rechiseled/birch_planks_crate_connecting.png deleted file mode 100644 index 8ce756a6..00000000 Binary files a/public/textures/rechiseled/birch_planks_crate_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_diagonal_stripes.png b/public/textures/rechiseled/birch_planks_diagonal_stripes.png deleted file mode 100644 index 98fecdcb..00000000 Binary files a/public/textures/rechiseled/birch_planks_diagonal_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_diagonal_stripes_connecting.png b/public/textures/rechiseled/birch_planks_diagonal_stripes_connecting.png deleted file mode 100644 index 98fecdcb..00000000 Binary files a/public/textures/rechiseled/birch_planks_diagonal_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_diagonal_tiles.png b/public/textures/rechiseled/birch_planks_diagonal_tiles.png deleted file mode 100644 index 105db59e..00000000 Binary files a/public/textures/rechiseled/birch_planks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_diagonal_tiles_connecting.png b/public/textures/rechiseled/birch_planks_diagonal_tiles_connecting.png deleted file mode 100644 index 105db59e..00000000 Binary files a/public/textures/rechiseled/birch_planks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_dotted.png b/public/textures/rechiseled/birch_planks_dotted.png deleted file mode 100644 index 46387bb3..00000000 Binary files a/public/textures/rechiseled/birch_planks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_dotted_connecting.png b/public/textures/rechiseled/birch_planks_dotted_connecting.png deleted file mode 100644 index 46387bb3..00000000 Binary files a/public/textures/rechiseled/birch_planks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_flooring.png b/public/textures/rechiseled/birch_planks_flooring.png deleted file mode 100644 index edabf716..00000000 Binary files a/public/textures/rechiseled/birch_planks_flooring.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_flooring_connecting.png b/public/textures/rechiseled/birch_planks_flooring_connecting.png deleted file mode 100644 index edabf716..00000000 Binary files a/public/textures/rechiseled/birch_planks_flooring_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_large_tiles.png b/public/textures/rechiseled/birch_planks_large_tiles.png deleted file mode 100644 index a8b30aee..00000000 Binary files a/public/textures/rechiseled/birch_planks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_large_tiles_connecting.png b/public/textures/rechiseled/birch_planks_large_tiles_connecting.png deleted file mode 100644 index a8b30aee..00000000 Binary files a/public/textures/rechiseled/birch_planks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_mosaic.png b/public/textures/rechiseled/birch_planks_mosaic.png deleted file mode 100644 index 265b1c7b..00000000 Binary files a/public/textures/rechiseled/birch_planks_mosaic.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_pattern.png b/public/textures/rechiseled/birch_planks_pattern.png deleted file mode 100644 index 86942d0e..00000000 Binary files a/public/textures/rechiseled/birch_planks_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_pattern_connecting.png b/public/textures/rechiseled/birch_planks_pattern_connecting.png deleted file mode 100644 index 86942d0e..00000000 Binary files a/public/textures/rechiseled/birch_planks_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_rotated_bricks.png b/public/textures/rechiseled/birch_planks_rotated_bricks.png deleted file mode 100644 index 83463954..00000000 Binary files a/public/textures/rechiseled/birch_planks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_rotated_bricks_connecting.png b/public/textures/rechiseled/birch_planks_rotated_bricks_connecting.png deleted file mode 100644 index 83463954..00000000 Binary files a/public/textures/rechiseled/birch_planks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_small_bricks.png b/public/textures/rechiseled/birch_planks_small_bricks.png deleted file mode 100644 index b7861b19..00000000 Binary files a/public/textures/rechiseled/birch_planks_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_small_bricks_connecting.png b/public/textures/rechiseled/birch_planks_small_bricks_connecting.png deleted file mode 100644 index b7861b19..00000000 Binary files a/public/textures/rechiseled/birch_planks_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_small_tiles.png b/public/textures/rechiseled/birch_planks_small_tiles.png deleted file mode 100644 index 65f1b664..00000000 Binary files a/public/textures/rechiseled/birch_planks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_small_tiles_connecting.png b/public/textures/rechiseled/birch_planks_small_tiles_connecting.png deleted file mode 100644 index 65f1b664..00000000 Binary files a/public/textures/rechiseled/birch_planks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_squares.png b/public/textures/rechiseled/birch_planks_squares.png deleted file mode 100644 index f2451e55..00000000 Binary files a/public/textures/rechiseled/birch_planks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_squares_connecting.png b/public/textures/rechiseled/birch_planks_squares_connecting.png deleted file mode 100644 index f2451e55..00000000 Binary files a/public/textures/rechiseled/birch_planks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_tiles.png b/public/textures/rechiseled/birch_planks_tiles.png deleted file mode 100644 index 5709aed2..00000000 Binary files a/public/textures/rechiseled/birch_planks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_tiles_connecting.png b/public/textures/rechiseled/birch_planks_tiles_connecting.png deleted file mode 100644 index 5709aed2..00000000 Binary files a/public/textures/rechiseled/birch_planks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_wavy.png b/public/textures/rechiseled/birch_planks_wavy.png deleted file mode 100644 index a7f6931a..00000000 Binary files a/public/textures/rechiseled/birch_planks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_wavy_connecting.png b/public/textures/rechiseled/birch_planks_wavy_connecting.png deleted file mode 100644 index a7f6931a..00000000 Binary files a/public/textures/rechiseled/birch_planks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_woven.png b/public/textures/rechiseled/birch_planks_woven.png deleted file mode 100644 index 8d390a96..00000000 Binary files a/public/textures/rechiseled/birch_planks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/birch_planks_woven_connecting.png b/public/textures/rechiseled/birch_planks_woven_connecting.png deleted file mode 100644 index 8d390a96..00000000 Binary files a/public/textures/rechiseled/birch_planks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blackstone_brick_pattern.png b/public/textures/rechiseled/blackstone_brick_pattern.png deleted file mode 100644 index 5b6e9bcb..00000000 Binary files a/public/textures/rechiseled/blackstone_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/blackstone_brick_pattern_connecting.png b/public/textures/rechiseled/blackstone_brick_pattern_connecting.png deleted file mode 100644 index 5b6e9bcb..00000000 Binary files a/public/textures/rechiseled/blackstone_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blackstone_brick_paving.png b/public/textures/rechiseled/blackstone_brick_paving.png deleted file mode 100644 index 9f754812..00000000 Binary files a/public/textures/rechiseled/blackstone_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/blackstone_brick_paving_connecting.png b/public/textures/rechiseled/blackstone_brick_paving_connecting.png deleted file mode 100644 index 9f754812..00000000 Binary files a/public/textures/rechiseled/blackstone_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blackstone_diagonal_bricks.png b/public/textures/rechiseled/blackstone_diagonal_bricks.png deleted file mode 100644 index 3ac4551a..00000000 Binary files a/public/textures/rechiseled/blackstone_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/blackstone_diagonal_bricks_connecting.png b/public/textures/rechiseled/blackstone_diagonal_bricks_connecting.png deleted file mode 100644 index 3ac4551a..00000000 Binary files a/public/textures/rechiseled/blackstone_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blackstone_polished_connecting.png b/public/textures/rechiseled/blackstone_polished_connecting.png deleted file mode 100644 index 9e798bed..00000000 Binary files a/public/textures/rechiseled/blackstone_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blackstone_rotated_bricks.png b/public/textures/rechiseled/blackstone_rotated_bricks.png deleted file mode 100644 index 6d5c0652..00000000 Binary files a/public/textures/rechiseled/blackstone_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/blackstone_rotated_bricks_connecting.png b/public/textures/rechiseled/blackstone_rotated_bricks_connecting.png deleted file mode 100644 index 6d5c0652..00000000 Binary files a/public/textures/rechiseled/blackstone_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blackstone_tiles.png b/public/textures/rechiseled/blackstone_tiles.png deleted file mode 100644 index 08d035b0..00000000 Binary files a/public/textures/rechiseled/blackstone_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/blackstone_tiles_connecting.png b/public/textures/rechiseled/blackstone_tiles_connecting.png deleted file mode 100644 index 08d035b0..00000000 Binary files a/public/textures/rechiseled/blackstone_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_bordered.png b/public/textures/rechiseled/blue_ice_bordered.png deleted file mode 100644 index 18be4257..00000000 Binary files a/public/textures/rechiseled/blue_ice_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_bordered_connecting.png b/public/textures/rechiseled/blue_ice_bordered_connecting.png deleted file mode 100644 index 18be4257..00000000 Binary files a/public/textures/rechiseled/blue_ice_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_bricks.png b/public/textures/rechiseled/blue_ice_bricks.png deleted file mode 100644 index cd0e4258..00000000 Binary files a/public/textures/rechiseled/blue_ice_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_bricks_connecting.png b/public/textures/rechiseled/blue_ice_bricks_connecting.png deleted file mode 100644 index cd0e4258..00000000 Binary files a/public/textures/rechiseled/blue_ice_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_chiseled.png b/public/textures/rechiseled/blue_ice_chiseled.png deleted file mode 100644 index aced3d7e..00000000 Binary files a/public/textures/rechiseled/blue_ice_chiseled.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_chiseled_connecting.png b/public/textures/rechiseled/blue_ice_chiseled_connecting.png deleted file mode 100644 index aced3d7e..00000000 Binary files a/public/textures/rechiseled/blue_ice_chiseled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_cone.png b/public/textures/rechiseled/blue_ice_cone.png deleted file mode 100644 index 3b2f9fbb..00000000 Binary files a/public/textures/rechiseled/blue_ice_cone.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_cracked.png b/public/textures/rechiseled/blue_ice_cracked.png deleted file mode 100644 index b2aac72a..00000000 Binary files a/public/textures/rechiseled/blue_ice_cracked.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_patterned.png b/public/textures/rechiseled/blue_ice_patterned.png deleted file mode 100644 index f1f5b5d1..00000000 Binary files a/public/textures/rechiseled/blue_ice_patterned.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_patterned_connecting.png b/public/textures/rechiseled/blue_ice_patterned_connecting.png deleted file mode 100644 index f1f5b5d1..00000000 Binary files a/public/textures/rechiseled/blue_ice_patterned_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_pillar.png b/public/textures/rechiseled/blue_ice_pillar.png deleted file mode 100644 index 855c9d11..00000000 Binary files a/public/textures/rechiseled/blue_ice_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_pillar_connecting.png b/public/textures/rechiseled/blue_ice_pillar_connecting.png deleted file mode 100644 index 855c9d11..00000000 Binary files a/public/textures/rechiseled/blue_ice_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_rocky.png b/public/textures/rechiseled/blue_ice_rocky.png deleted file mode 100644 index 6a640b56..00000000 Binary files a/public/textures/rechiseled/blue_ice_rocky.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_slanted_tiles.png b/public/textures/rechiseled/blue_ice_slanted_tiles.png deleted file mode 100644 index bac15637..00000000 Binary files a/public/textures/rechiseled/blue_ice_slanted_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_slanted_tiles_connecting.png b/public/textures/rechiseled/blue_ice_slanted_tiles_connecting.png deleted file mode 100644 index bac15637..00000000 Binary files a/public/textures/rechiseled/blue_ice_slanted_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_tiles.png b/public/textures/rechiseled/blue_ice_tiles.png deleted file mode 100644 index 28d55d34..00000000 Binary files a/public/textures/rechiseled/blue_ice_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/blue_ice_tiles_connecting.png b/public/textures/rechiseled/blue_ice_tiles_connecting.png deleted file mode 100644 index 28d55d34..00000000 Binary files a/public/textures/rechiseled/blue_ice_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_bordered.png b/public/textures/rechiseled/bone_block_bordered.png deleted file mode 100644 index 74c368b4..00000000 Binary files a/public/textures/rechiseled/bone_block_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_bordered_connecting.png b/public/textures/rechiseled/bone_block_bordered_connecting.png deleted file mode 100644 index 74c368b4..00000000 Binary files a/public/textures/rechiseled/bone_block_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_bundled.png b/public/textures/rechiseled/bone_block_bundled.png deleted file mode 100644 index e6d3e362..00000000 Binary files a/public/textures/rechiseled/bone_block_bundled.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_chiseled.png b/public/textures/rechiseled/bone_block_chiseled.png deleted file mode 100644 index 0666cbb8..00000000 Binary files a/public/textures/rechiseled/bone_block_chiseled.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_chiseled_connecting.png b/public/textures/rechiseled/bone_block_chiseled_connecting.png deleted file mode 100644 index 0666cbb8..00000000 Binary files a/public/textures/rechiseled/bone_block_chiseled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_connecting_connecting.png b/public/textures/rechiseled/bone_block_connecting_connecting.png deleted file mode 100644 index b87aa167..00000000 Binary files a/public/textures/rechiseled/bone_block_connecting_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_cracked.png b/public/textures/rechiseled/bone_block_cracked.png deleted file mode 100644 index 7f0209f0..00000000 Binary files a/public/textures/rechiseled/bone_block_cracked.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_decorated.png b/public/textures/rechiseled/bone_block_decorated.png deleted file mode 100644 index 81003eeb..00000000 Binary files a/public/textures/rechiseled/bone_block_decorated.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_decorated_bordered.png b/public/textures/rechiseled/bone_block_decorated_bordered.png deleted file mode 100644 index 0b085dd6..00000000 Binary files a/public/textures/rechiseled/bone_block_decorated_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_decorated_bordered_connecting.png b/public/textures/rechiseled/bone_block_decorated_bordered_connecting.png deleted file mode 100644 index 0b085dd6..00000000 Binary files a/public/textures/rechiseled/bone_block_decorated_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_inverted_tiles.png b/public/textures/rechiseled/bone_block_inverted_tiles.png deleted file mode 100644 index fca3b275..00000000 Binary files a/public/textures/rechiseled/bone_block_inverted_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_inverted_tiles_connecting.png b/public/textures/rechiseled/bone_block_inverted_tiles_connecting.png deleted file mode 100644 index fca3b275..00000000 Binary files a/public/textures/rechiseled/bone_block_inverted_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_patterned.png b/public/textures/rechiseled/bone_block_patterned.png deleted file mode 100644 index 27eeccda..00000000 Binary files a/public/textures/rechiseled/bone_block_patterned.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_patterned_connecting.png b/public/textures/rechiseled/bone_block_patterned_connecting.png deleted file mode 100644 index 27eeccda..00000000 Binary files a/public/textures/rechiseled/bone_block_patterned_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_pillar.png b/public/textures/rechiseled/bone_block_pillar.png deleted file mode 100644 index df063548..00000000 Binary files a/public/textures/rechiseled/bone_block_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_pillar_connecting.png b/public/textures/rechiseled/bone_block_pillar_connecting.png deleted file mode 100644 index df063548..00000000 Binary files a/public/textures/rechiseled/bone_block_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_rib.png b/public/textures/rechiseled/bone_block_rib.png deleted file mode 100644 index fbfec2cd..00000000 Binary files a/public/textures/rechiseled/bone_block_rib.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_skull.png b/public/textures/rechiseled/bone_block_skull.png deleted file mode 100644 index af314c8f..00000000 Binary files a/public/textures/rechiseled/bone_block_skull.png and /dev/null differ diff --git a/public/textures/rechiseled/bone_block_smooth.png b/public/textures/rechiseled/bone_block_smooth.png deleted file mode 100644 index 10fc846c..00000000 Binary files a/public/textures/rechiseled/bone_block_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_beams.png b/public/textures/rechiseled/cherry_planks_beams.png deleted file mode 100644 index c3833792..00000000 Binary files a/public/textures/rechiseled/cherry_planks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_beams_connecting.png b/public/textures/rechiseled/cherry_planks_beams_connecting.png deleted file mode 100644 index c3833792..00000000 Binary files a/public/textures/rechiseled/cherry_planks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_brick_pattern.png b/public/textures/rechiseled/cherry_planks_brick_pattern.png deleted file mode 100644 index c873e531..00000000 Binary files a/public/textures/rechiseled/cherry_planks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_brick_pattern_connecting.png b/public/textures/rechiseled/cherry_planks_brick_pattern_connecting.png deleted file mode 100644 index c873e531..00000000 Binary files a/public/textures/rechiseled/cherry_planks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_brick_paving.png b/public/textures/rechiseled/cherry_planks_brick_paving.png deleted file mode 100644 index 29dea269..00000000 Binary files a/public/textures/rechiseled/cherry_planks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_brick_paving_connecting.png b/public/textures/rechiseled/cherry_planks_brick_paving_connecting.png deleted file mode 100644 index 29dea269..00000000 Binary files a/public/textures/rechiseled/cherry_planks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_bricks.png b/public/textures/rechiseled/cherry_planks_bricks.png deleted file mode 100644 index b329b6cb..00000000 Binary files a/public/textures/rechiseled/cherry_planks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_bricks_connecting.png b/public/textures/rechiseled/cherry_planks_bricks_connecting.png deleted file mode 100644 index b329b6cb..00000000 Binary files a/public/textures/rechiseled/cherry_planks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_crate.png b/public/textures/rechiseled/cherry_planks_crate.png deleted file mode 100644 index 83d4cf18..00000000 Binary files a/public/textures/rechiseled/cherry_planks_crate.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_crate_connecting.png b/public/textures/rechiseled/cherry_planks_crate_connecting.png deleted file mode 100644 index 83d4cf18..00000000 Binary files a/public/textures/rechiseled/cherry_planks_crate_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_diagonal_stripes.png b/public/textures/rechiseled/cherry_planks_diagonal_stripes.png deleted file mode 100644 index b106856a..00000000 Binary files a/public/textures/rechiseled/cherry_planks_diagonal_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_diagonal_stripes_connecting.png b/public/textures/rechiseled/cherry_planks_diagonal_stripes_connecting.png deleted file mode 100644 index b106856a..00000000 Binary files a/public/textures/rechiseled/cherry_planks_diagonal_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_diagonal_tiles.png b/public/textures/rechiseled/cherry_planks_diagonal_tiles.png deleted file mode 100644 index 5d0839ee..00000000 Binary files a/public/textures/rechiseled/cherry_planks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_diagonal_tiles_connecting.png b/public/textures/rechiseled/cherry_planks_diagonal_tiles_connecting.png deleted file mode 100644 index 5d0839ee..00000000 Binary files a/public/textures/rechiseled/cherry_planks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_dotted.png b/public/textures/rechiseled/cherry_planks_dotted.png deleted file mode 100644 index c4331bed..00000000 Binary files a/public/textures/rechiseled/cherry_planks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_dotted_connecting.png b/public/textures/rechiseled/cherry_planks_dotted_connecting.png deleted file mode 100644 index c4331bed..00000000 Binary files a/public/textures/rechiseled/cherry_planks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_flooring.png b/public/textures/rechiseled/cherry_planks_flooring.png deleted file mode 100644 index d9ace157..00000000 Binary files a/public/textures/rechiseled/cherry_planks_flooring.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_flooring_connecting.png b/public/textures/rechiseled/cherry_planks_flooring_connecting.png deleted file mode 100644 index d9ace157..00000000 Binary files a/public/textures/rechiseled/cherry_planks_flooring_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_large_tiles.png b/public/textures/rechiseled/cherry_planks_large_tiles.png deleted file mode 100644 index b71d1ad0..00000000 Binary files a/public/textures/rechiseled/cherry_planks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_large_tiles_connecting.png b/public/textures/rechiseled/cherry_planks_large_tiles_connecting.png deleted file mode 100644 index b71d1ad0..00000000 Binary files a/public/textures/rechiseled/cherry_planks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_mosaic.png b/public/textures/rechiseled/cherry_planks_mosaic.png deleted file mode 100644 index afa9789f..00000000 Binary files a/public/textures/rechiseled/cherry_planks_mosaic.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_pattern.png b/public/textures/rechiseled/cherry_planks_pattern.png deleted file mode 100644 index 811fd96d..00000000 Binary files a/public/textures/rechiseled/cherry_planks_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_pattern_connecting.png b/public/textures/rechiseled/cherry_planks_pattern_connecting.png deleted file mode 100644 index 811fd96d..00000000 Binary files a/public/textures/rechiseled/cherry_planks_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_rotated_bricks.png b/public/textures/rechiseled/cherry_planks_rotated_bricks.png deleted file mode 100644 index a078d3ad..00000000 Binary files a/public/textures/rechiseled/cherry_planks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_rotated_bricks_connecting.png b/public/textures/rechiseled/cherry_planks_rotated_bricks_connecting.png deleted file mode 100644 index a078d3ad..00000000 Binary files a/public/textures/rechiseled/cherry_planks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_small_bricks.png b/public/textures/rechiseled/cherry_planks_small_bricks.png deleted file mode 100644 index b4566e43..00000000 Binary files a/public/textures/rechiseled/cherry_planks_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_small_bricks_connecting.png b/public/textures/rechiseled/cherry_planks_small_bricks_connecting.png deleted file mode 100644 index b4566e43..00000000 Binary files a/public/textures/rechiseled/cherry_planks_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_small_tiles.png b/public/textures/rechiseled/cherry_planks_small_tiles.png deleted file mode 100644 index a20b7067..00000000 Binary files a/public/textures/rechiseled/cherry_planks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_small_tiles_connecting.png b/public/textures/rechiseled/cherry_planks_small_tiles_connecting.png deleted file mode 100644 index a20b7067..00000000 Binary files a/public/textures/rechiseled/cherry_planks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_squares.png b/public/textures/rechiseled/cherry_planks_squares.png deleted file mode 100644 index f3c20ce9..00000000 Binary files a/public/textures/rechiseled/cherry_planks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_squares_connecting.png b/public/textures/rechiseled/cherry_planks_squares_connecting.png deleted file mode 100644 index f3c20ce9..00000000 Binary files a/public/textures/rechiseled/cherry_planks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_tiles.png b/public/textures/rechiseled/cherry_planks_tiles.png deleted file mode 100644 index 6f0b5a65..00000000 Binary files a/public/textures/rechiseled/cherry_planks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_tiles_connecting.png b/public/textures/rechiseled/cherry_planks_tiles_connecting.png deleted file mode 100644 index 6f0b5a65..00000000 Binary files a/public/textures/rechiseled/cherry_planks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_wavy.png b/public/textures/rechiseled/cherry_planks_wavy.png deleted file mode 100644 index 17311cde..00000000 Binary files a/public/textures/rechiseled/cherry_planks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_wavy_connecting.png b/public/textures/rechiseled/cherry_planks_wavy_connecting.png deleted file mode 100644 index 17311cde..00000000 Binary files a/public/textures/rechiseled/cherry_planks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_woven.png b/public/textures/rechiseled/cherry_planks_woven.png deleted file mode 100644 index 6b02b7b8..00000000 Binary files a/public/textures/rechiseled/cherry_planks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/cherry_planks_woven_connecting.png b/public/textures/rechiseled/cherry_planks_woven_connecting.png deleted file mode 100644 index 6b02b7b8..00000000 Binary files a/public/textures/rechiseled/cherry_planks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/chisel.png b/public/textures/rechiseled/chisel.png deleted file mode 100644 index 7f97c634..00000000 Binary files a/public/textures/rechiseled/chisel.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_carved.png b/public/textures/rechiseled/coal_block_carved.png deleted file mode 100644 index 6f03a48b..00000000 Binary files a/public/textures/rechiseled/coal_block_carved.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_carved_connecting.png b/public/textures/rechiseled/coal_block_carved_connecting.png deleted file mode 100644 index 6f03a48b..00000000 Binary files a/public/textures/rechiseled/coal_block_carved_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_chiseled.png b/public/textures/rechiseled/coal_block_chiseled.png deleted file mode 100644 index 0dd9556a..00000000 Binary files a/public/textures/rechiseled/coal_block_chiseled.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_chiseled_connecting.png b/public/textures/rechiseled/coal_block_chiseled_connecting.png deleted file mode 100644 index 0dd9556a..00000000 Binary files a/public/textures/rechiseled/coal_block_chiseled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_circles.png b/public/textures/rechiseled/coal_block_circles.png deleted file mode 100644 index b13c4bbb..00000000 Binary files a/public/textures/rechiseled/coal_block_circles.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_circles_connecting.png b/public/textures/rechiseled/coal_block_circles_connecting.png deleted file mode 100644 index b13c4bbb..00000000 Binary files a/public/textures/rechiseled/coal_block_circles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_compacted.png b/public/textures/rechiseled/coal_block_compacted.png deleted file mode 100644 index 9bc79600..00000000 Binary files a/public/textures/rechiseled/coal_block_compacted.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_compacted_connecting.png b/public/textures/rechiseled/coal_block_compacted_connecting.png deleted file mode 100644 index 9bc79600..00000000 Binary files a/public/textures/rechiseled/coal_block_compacted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_ovals.png b/public/textures/rechiseled/coal_block_ovals.png deleted file mode 100644 index ecc2049e..00000000 Binary files a/public/textures/rechiseled/coal_block_ovals.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_ovals_connecting.png b/public/textures/rechiseled/coal_block_ovals_connecting.png deleted file mode 100644 index ecc2049e..00000000 Binary files a/public/textures/rechiseled/coal_block_ovals_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_pattern.png b/public/textures/rechiseled/coal_block_pattern.png deleted file mode 100644 index 22c5cff6..00000000 Binary files a/public/textures/rechiseled/coal_block_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_pattern_connecting.png b/public/textures/rechiseled/coal_block_pattern_connecting.png deleted file mode 100644 index 22c5cff6..00000000 Binary files a/public/textures/rechiseled/coal_block_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_pillar.png b/public/textures/rechiseled/coal_block_pillar.png deleted file mode 100644 index 1469dcd9..00000000 Binary files a/public/textures/rechiseled/coal_block_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_pillar_connecting.png b/public/textures/rechiseled/coal_block_pillar_connecting.png deleted file mode 100644 index 1469dcd9..00000000 Binary files a/public/textures/rechiseled/coal_block_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_polished.png b/public/textures/rechiseled/coal_block_polished.png deleted file mode 100644 index 832c1838..00000000 Binary files a/public/textures/rechiseled/coal_block_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_rotated_bricks.png b/public/textures/rechiseled/coal_block_rotated_bricks.png deleted file mode 100644 index 27709794..00000000 Binary files a/public/textures/rechiseled/coal_block_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_rotated_bricks_connecting.png b/public/textures/rechiseled/coal_block_rotated_bricks_connecting.png deleted file mode 100644 index 27709794..00000000 Binary files a/public/textures/rechiseled/coal_block_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_small_tiles.png b/public/textures/rechiseled/coal_block_small_tiles.png deleted file mode 100644 index a6108dcc..00000000 Binary files a/public/textures/rechiseled/coal_block_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_small_tiles_connecting.png b/public/textures/rechiseled/coal_block_small_tiles_connecting.png deleted file mode 100644 index a6108dcc..00000000 Binary files a/public/textures/rechiseled/coal_block_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_stripes.png b/public/textures/rechiseled/coal_block_stripes.png deleted file mode 100644 index 39898c4b..00000000 Binary files a/public/textures/rechiseled/coal_block_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/coal_block_stripes_connecting.png b/public/textures/rechiseled/coal_block_stripes_connecting.png deleted file mode 100644 index 39898c4b..00000000 Binary files a/public/textures/rechiseled/coal_block_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_beams.png b/public/textures/rechiseled/cobbled_deepslate_beams.png deleted file mode 100644 index 773b9cb0..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_beams_connecting.png b/public/textures/rechiseled/cobbled_deepslate_beams_connecting.png deleted file mode 100644 index 773b9cb0..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_brick_pattern.png b/public/textures/rechiseled/cobbled_deepslate_brick_pattern.png deleted file mode 100644 index 8ed20923..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_brick_pattern_connecting.png b/public/textures/rechiseled/cobbled_deepslate_brick_pattern_connecting.png deleted file mode 100644 index 8ed20923..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_brick_paving.png b/public/textures/rechiseled/cobbled_deepslate_brick_paving.png deleted file mode 100644 index 739b4a5c..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_brick_paving_connecting.png b/public/textures/rechiseled/cobbled_deepslate_brick_paving_connecting.png deleted file mode 100644 index 739b4a5c..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_bricks.png b/public/textures/rechiseled/cobbled_deepslate_bricks.png deleted file mode 100644 index 6efc004e..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_bricks_connecting.png b/public/textures/rechiseled/cobbled_deepslate_bricks_connecting.png deleted file mode 100644 index 6efc004e..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_large_tiles.png b/public/textures/rechiseled/cobbled_deepslate_large_tiles.png deleted file mode 100644 index e9a09a00..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_large_tiles_connecting.png b/public/textures/rechiseled/cobbled_deepslate_large_tiles_connecting.png deleted file mode 100644 index e9a09a00..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_paving.png b/public/textures/rechiseled/cobbled_deepslate_paving.png deleted file mode 100644 index 03d7daf6..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_paving_connecting.png b/public/textures/rechiseled/cobbled_deepslate_paving_connecting.png deleted file mode 100644 index 03d7daf6..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_pillar.png b/public/textures/rechiseled/cobbled_deepslate_pillar.png deleted file mode 100644 index bc6b0cf9..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_pillar_connecting.png b/public/textures/rechiseled/cobbled_deepslate_pillar_connecting.png deleted file mode 100644 index bc6b0cf9..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_pulverized.png b/public/textures/rechiseled/cobbled_deepslate_pulverized.png deleted file mode 100644 index 60251a1d..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_pulverized.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_pulverized_connecting.png b/public/textures/rechiseled/cobbled_deepslate_pulverized_connecting.png deleted file mode 100644 index 60251a1d..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_pulverized_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_rotated_bricks.png b/public/textures/rechiseled/cobbled_deepslate_rotated_bricks.png deleted file mode 100644 index 20639891..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_rotated_bricks_connecting.png b/public/textures/rechiseled/cobbled_deepslate_rotated_bricks_connecting.png deleted file mode 100644 index 20639891..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_small_tiles.png b/public/textures/rechiseled/cobbled_deepslate_small_tiles.png deleted file mode 100644 index 9120a5a5..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_small_tiles_connecting.png b/public/textures/rechiseled/cobbled_deepslate_small_tiles_connecting.png deleted file mode 100644 index 9120a5a5..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_squares.png b/public/textures/rechiseled/cobbled_deepslate_squares.png deleted file mode 100644 index 0602cf7e..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_squares_connecting.png b/public/textures/rechiseled/cobbled_deepslate_squares_connecting.png deleted file mode 100644 index 0602cf7e..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_stripes.png b/public/textures/rechiseled/cobbled_deepslate_stripes.png deleted file mode 100644 index e1e0bbd9..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_stripes_connecting.png b/public/textures/rechiseled/cobbled_deepslate_stripes_connecting.png deleted file mode 100644 index e1e0bbd9..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_tiles.png b/public/textures/rechiseled/cobbled_deepslate_tiles.png deleted file mode 100644 index 5260a149..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_tiles_connecting.png b/public/textures/rechiseled/cobbled_deepslate_tiles_connecting.png deleted file mode 100644 index 5260a149..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_worn_stripes.png b/public/textures/rechiseled/cobbled_deepslate_worn_stripes.png deleted file mode 100644 index 9aa2e8d6..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_worn_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/cobbled_deepslate_worn_stripes_connecting.png b/public/textures/rechiseled/cobbled_deepslate_worn_stripes_connecting.png deleted file mode 100644 index 9aa2e8d6..00000000 Binary files a/public/textures/rechiseled/cobbled_deepslate_worn_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_beams.png b/public/textures/rechiseled/cobblestone_beams.png deleted file mode 100644 index b07ce454..00000000 Binary files a/public/textures/rechiseled/cobblestone_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_beams_connecting.png b/public/textures/rechiseled/cobblestone_beams_connecting.png deleted file mode 100644 index b07ce454..00000000 Binary files a/public/textures/rechiseled/cobblestone_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_brick_pattern.png b/public/textures/rechiseled/cobblestone_brick_pattern.png deleted file mode 100644 index 447690e0..00000000 Binary files a/public/textures/rechiseled/cobblestone_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_brick_pattern_connecting.png b/public/textures/rechiseled/cobblestone_brick_pattern_connecting.png deleted file mode 100644 index 447690e0..00000000 Binary files a/public/textures/rechiseled/cobblestone_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_brick_paving.png b/public/textures/rechiseled/cobblestone_brick_paving.png deleted file mode 100644 index f430f63b..00000000 Binary files a/public/textures/rechiseled/cobblestone_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_brick_paving_connecting.png b/public/textures/rechiseled/cobblestone_brick_paving_connecting.png deleted file mode 100644 index f430f63b..00000000 Binary files a/public/textures/rechiseled/cobblestone_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_chiseled_border.png b/public/textures/rechiseled/cobblestone_chiseled_border.png deleted file mode 100644 index f9e451c6..00000000 Binary files a/public/textures/rechiseled/cobblestone_chiseled_border.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_chiseled_border_connecting.png b/public/textures/rechiseled/cobblestone_chiseled_border_connecting.png deleted file mode 100644 index f9e451c6..00000000 Binary files a/public/textures/rechiseled/cobblestone_chiseled_border_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_crosses.png b/public/textures/rechiseled/cobblestone_crosses.png deleted file mode 100644 index 28dbb822..00000000 Binary files a/public/textures/rechiseled/cobblestone_crosses.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_crosses_connecting.png b/public/textures/rechiseled/cobblestone_crosses_connecting.png deleted file mode 100644 index 28dbb822..00000000 Binary files a/public/textures/rechiseled/cobblestone_crosses_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_dented.png b/public/textures/rechiseled/cobblestone_dented.png deleted file mode 100644 index 6c49bcca..00000000 Binary files a/public/textures/rechiseled/cobblestone_dented.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_dented_connecting.png b/public/textures/rechiseled/cobblestone_dented_connecting.png deleted file mode 100644 index 6c49bcca..00000000 Binary files a/public/textures/rechiseled/cobblestone_dented_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_inverted_dented.png b/public/textures/rechiseled/cobblestone_inverted_dented.png deleted file mode 100644 index 2434e3d5..00000000 Binary files a/public/textures/rechiseled/cobblestone_inverted_dented.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_inverted_dented_connecting.png b/public/textures/rechiseled/cobblestone_inverted_dented_connecting.png deleted file mode 100644 index 2434e3d5..00000000 Binary files a/public/textures/rechiseled/cobblestone_inverted_dented_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_large_squares.png b/public/textures/rechiseled/cobblestone_large_squares.png deleted file mode 100644 index 3f27ecbb..00000000 Binary files a/public/textures/rechiseled/cobblestone_large_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_paving.png b/public/textures/rechiseled/cobblestone_paving.png deleted file mode 100644 index 878d1fad..00000000 Binary files a/public/textures/rechiseled/cobblestone_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_paving_connecting.png b/public/textures/rechiseled/cobblestone_paving_connecting.png deleted file mode 100644 index 878d1fad..00000000 Binary files a/public/textures/rechiseled/cobblestone_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_pillar.png b/public/textures/rechiseled/cobblestone_pillar.png deleted file mode 100644 index df417b6e..00000000 Binary files a/public/textures/rechiseled/cobblestone_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_pillar_connecting.png b/public/textures/rechiseled/cobblestone_pillar_connecting.png deleted file mode 100644 index df417b6e..00000000 Binary files a/public/textures/rechiseled/cobblestone_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_polished.png b/public/textures/rechiseled/cobblestone_polished.png deleted file mode 100644 index 7c4cdca2..00000000 Binary files a/public/textures/rechiseled/cobblestone_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_pulverized.png b/public/textures/rechiseled/cobblestone_pulverized.png deleted file mode 100644 index b605c734..00000000 Binary files a/public/textures/rechiseled/cobblestone_pulverized.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_pulverized_connecting.png b/public/textures/rechiseled/cobblestone_pulverized_connecting.png deleted file mode 100644 index b605c734..00000000 Binary files a/public/textures/rechiseled/cobblestone_pulverized_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_rotated_bricks.png b/public/textures/rechiseled/cobblestone_rotated_bricks.png deleted file mode 100644 index 40433b0a..00000000 Binary files a/public/textures/rechiseled/cobblestone_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_rotated_bricks_connecting.png b/public/textures/rechiseled/cobblestone_rotated_bricks_connecting.png deleted file mode 100644 index 40433b0a..00000000 Binary files a/public/textures/rechiseled/cobblestone_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_sheared.png b/public/textures/rechiseled/cobblestone_sheared.png deleted file mode 100644 index 8d9af919..00000000 Binary files a/public/textures/rechiseled/cobblestone_sheared.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_small_tiles.png b/public/textures/rechiseled/cobblestone_small_tiles.png deleted file mode 100644 index 24a3caf6..00000000 Binary files a/public/textures/rechiseled/cobblestone_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_small_tiles_connecting.png b/public/textures/rechiseled/cobblestone_small_tiles_connecting.png deleted file mode 100644 index 24a3caf6..00000000 Binary files a/public/textures/rechiseled/cobblestone_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_squares.png b/public/textures/rechiseled/cobblestone_squares.png deleted file mode 100644 index f634c3cd..00000000 Binary files a/public/textures/rechiseled/cobblestone_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_squares_connecting.png b/public/textures/rechiseled/cobblestone_squares_connecting.png deleted file mode 100644 index f634c3cd..00000000 Binary files a/public/textures/rechiseled/cobblestone_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_stripes.png b/public/textures/rechiseled/cobblestone_stripes.png deleted file mode 100644 index 8bdd77d0..00000000 Binary files a/public/textures/rechiseled/cobblestone_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_stripes_connecting.png b/public/textures/rechiseled/cobblestone_stripes_connecting.png deleted file mode 100644 index 8bdd77d0..00000000 Binary files a/public/textures/rechiseled/cobblestone_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_tiles.png b/public/textures/rechiseled/cobblestone_tiles.png deleted file mode 100644 index d7fed952..00000000 Binary files a/public/textures/rechiseled/cobblestone_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_tiles_connecting.png b/public/textures/rechiseled/cobblestone_tiles_connecting.png deleted file mode 100644 index d7fed952..00000000 Binary files a/public/textures/rechiseled/cobblestone_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_worn_stripes.png b/public/textures/rechiseled/cobblestone_worn_stripes.png deleted file mode 100644 index 844b4a56..00000000 Binary files a/public/textures/rechiseled/cobblestone_worn_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/cobblestone_worn_stripes_connecting.png b/public/textures/rechiseled/cobblestone_worn_stripes_connecting.png deleted file mode 100644 index 844b4a56..00000000 Binary files a/public/textures/rechiseled/cobblestone_worn_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_bars.png b/public/textures/rechiseled/copper_block_bars.png deleted file mode 100644 index 4eb220ec..00000000 Binary files a/public/textures/rechiseled/copper_block_bars.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_bars_connecting.png b/public/textures/rechiseled/copper_block_bars_connecting.png deleted file mode 100644 index 4eb220ec..00000000 Binary files a/public/textures/rechiseled/copper_block_bars_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_circles.png b/public/textures/rechiseled/copper_block_circles.png deleted file mode 100644 index 1a334d13..00000000 Binary files a/public/textures/rechiseled/copper_block_circles.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_circles_connecting.png b/public/textures/rechiseled/copper_block_circles_connecting.png deleted file mode 100644 index 1a334d13..00000000 Binary files a/public/textures/rechiseled/copper_block_circles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_cone.png b/public/textures/rechiseled/copper_block_cone.png deleted file mode 100644 index 8bf9a4b6..00000000 Binary files a/public/textures/rechiseled/copper_block_cone.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_gears.png b/public/textures/rechiseled/copper_block_gears.png deleted file mode 100644 index a326f991..00000000 Binary files a/public/textures/rechiseled/copper_block_gears.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_gears_connecting.png b/public/textures/rechiseled/copper_block_gears_connecting.png deleted file mode 100644 index a326f991..00000000 Binary files a/public/textures/rechiseled/copper_block_gears_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_lines.png b/public/textures/rechiseled/copper_block_lines.png deleted file mode 100644 index d8cc3661..00000000 Binary files a/public/textures/rechiseled/copper_block_lines.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_lines_connecting.png b/public/textures/rechiseled/copper_block_lines_connecting.png deleted file mode 100644 index d8cc3661..00000000 Binary files a/public/textures/rechiseled/copper_block_lines_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_pattern.png b/public/textures/rechiseled/copper_block_pattern.png deleted file mode 100644 index bedc39f7..00000000 Binary files a/public/textures/rechiseled/copper_block_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_pattern_connecting.png b/public/textures/rechiseled/copper_block_pattern_connecting.png deleted file mode 100644 index bedc39f7..00000000 Binary files a/public/textures/rechiseled/copper_block_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_pillar.png b/public/textures/rechiseled/copper_block_pillar.png deleted file mode 100644 index 87700b95..00000000 Binary files a/public/textures/rechiseled/copper_block_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_pillar_connecting.png b/public/textures/rechiseled/copper_block_pillar_connecting.png deleted file mode 100644 index 87700b95..00000000 Binary files a/public/textures/rechiseled/copper_block_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_polished.png b/public/textures/rechiseled/copper_block_polished.png deleted file mode 100644 index 4411ca19..00000000 Binary files a/public/textures/rechiseled/copper_block_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_polished_connecting.png b/public/textures/rechiseled/copper_block_polished_connecting.png deleted file mode 100644 index 4411ca19..00000000 Binary files a/public/textures/rechiseled/copper_block_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_shafts.png b/public/textures/rechiseled/copper_block_shafts.png deleted file mode 100644 index 6249f370..00000000 Binary files a/public/textures/rechiseled/copper_block_shafts.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_shafts_connecting.png b/public/textures/rechiseled/copper_block_shafts_connecting.png deleted file mode 100644 index 6249f370..00000000 Binary files a/public/textures/rechiseled/copper_block_shafts_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_small_bricks.png b/public/textures/rechiseled/copper_block_small_bricks.png deleted file mode 100644 index 4a492455..00000000 Binary files a/public/textures/rechiseled/copper_block_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_small_bricks_connecting.png b/public/textures/rechiseled/copper_block_small_bricks_connecting.png deleted file mode 100644 index 4a492455..00000000 Binary files a/public/textures/rechiseled/copper_block_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/copper_block_smooth.png b/public/textures/rechiseled/copper_block_smooth.png deleted file mode 100644 index 76b9173d..00000000 Binary files a/public/textures/rechiseled/copper_block_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_beams.png b/public/textures/rechiseled/crimson_planks_beams.png deleted file mode 100644 index 71c84951..00000000 Binary files a/public/textures/rechiseled/crimson_planks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_beams_connecting.png b/public/textures/rechiseled/crimson_planks_beams_connecting.png deleted file mode 100644 index 71c84951..00000000 Binary files a/public/textures/rechiseled/crimson_planks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_brick_pattern.png b/public/textures/rechiseled/crimson_planks_brick_pattern.png deleted file mode 100644 index 13dfa4c2..00000000 Binary files a/public/textures/rechiseled/crimson_planks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_brick_pattern_connecting.png b/public/textures/rechiseled/crimson_planks_brick_pattern_connecting.png deleted file mode 100644 index 13dfa4c2..00000000 Binary files a/public/textures/rechiseled/crimson_planks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_brick_paving.png b/public/textures/rechiseled/crimson_planks_brick_paving.png deleted file mode 100644 index 6055e109..00000000 Binary files a/public/textures/rechiseled/crimson_planks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_brick_paving_connecting.png b/public/textures/rechiseled/crimson_planks_brick_paving_connecting.png deleted file mode 100644 index 6055e109..00000000 Binary files a/public/textures/rechiseled/crimson_planks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_bricks.png b/public/textures/rechiseled/crimson_planks_bricks.png deleted file mode 100644 index 4caa88a3..00000000 Binary files a/public/textures/rechiseled/crimson_planks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_bricks_connecting.png b/public/textures/rechiseled/crimson_planks_bricks_connecting.png deleted file mode 100644 index 4caa88a3..00000000 Binary files a/public/textures/rechiseled/crimson_planks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_crate.png b/public/textures/rechiseled/crimson_planks_crate.png deleted file mode 100644 index 66a7dcb3..00000000 Binary files a/public/textures/rechiseled/crimson_planks_crate.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_crate_connecting.png b/public/textures/rechiseled/crimson_planks_crate_connecting.png deleted file mode 100644 index 66a7dcb3..00000000 Binary files a/public/textures/rechiseled/crimson_planks_crate_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_diagonal_stripes.png b/public/textures/rechiseled/crimson_planks_diagonal_stripes.png deleted file mode 100644 index 24844fb2..00000000 Binary files a/public/textures/rechiseled/crimson_planks_diagonal_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_diagonal_stripes_connecting.png b/public/textures/rechiseled/crimson_planks_diagonal_stripes_connecting.png deleted file mode 100644 index 24844fb2..00000000 Binary files a/public/textures/rechiseled/crimson_planks_diagonal_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_diagonal_tiles.png b/public/textures/rechiseled/crimson_planks_diagonal_tiles.png deleted file mode 100644 index ee0527d3..00000000 Binary files a/public/textures/rechiseled/crimson_planks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_diagonal_tiles_connecting.png b/public/textures/rechiseled/crimson_planks_diagonal_tiles_connecting.png deleted file mode 100644 index ee0527d3..00000000 Binary files a/public/textures/rechiseled/crimson_planks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_dotted.png b/public/textures/rechiseled/crimson_planks_dotted.png deleted file mode 100644 index 51e3319a..00000000 Binary files a/public/textures/rechiseled/crimson_planks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_dotted_connecting.png b/public/textures/rechiseled/crimson_planks_dotted_connecting.png deleted file mode 100644 index 51e3319a..00000000 Binary files a/public/textures/rechiseled/crimson_planks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_flooring.png b/public/textures/rechiseled/crimson_planks_flooring.png deleted file mode 100644 index 0130fa2a..00000000 Binary files a/public/textures/rechiseled/crimson_planks_flooring.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_flooring_connecting.png b/public/textures/rechiseled/crimson_planks_flooring_connecting.png deleted file mode 100644 index 0130fa2a..00000000 Binary files a/public/textures/rechiseled/crimson_planks_flooring_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_large_tiles.png b/public/textures/rechiseled/crimson_planks_large_tiles.png deleted file mode 100644 index 4273599f..00000000 Binary files a/public/textures/rechiseled/crimson_planks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_large_tiles_connecting.png b/public/textures/rechiseled/crimson_planks_large_tiles_connecting.png deleted file mode 100644 index 4273599f..00000000 Binary files a/public/textures/rechiseled/crimson_planks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_mosaic.png b/public/textures/rechiseled/crimson_planks_mosaic.png deleted file mode 100644 index 51a4653b..00000000 Binary files a/public/textures/rechiseled/crimson_planks_mosaic.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_pattern.png b/public/textures/rechiseled/crimson_planks_pattern.png deleted file mode 100644 index 79e2c70d..00000000 Binary files a/public/textures/rechiseled/crimson_planks_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_pattern_connecting.png b/public/textures/rechiseled/crimson_planks_pattern_connecting.png deleted file mode 100644 index 79e2c70d..00000000 Binary files a/public/textures/rechiseled/crimson_planks_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_rotated_bricks.png b/public/textures/rechiseled/crimson_planks_rotated_bricks.png deleted file mode 100644 index 34e80401..00000000 Binary files a/public/textures/rechiseled/crimson_planks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_rotated_bricks_connecting.png b/public/textures/rechiseled/crimson_planks_rotated_bricks_connecting.png deleted file mode 100644 index 34e80401..00000000 Binary files a/public/textures/rechiseled/crimson_planks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_small_bricks.png b/public/textures/rechiseled/crimson_planks_small_bricks.png deleted file mode 100644 index 2973cbf8..00000000 Binary files a/public/textures/rechiseled/crimson_planks_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_small_bricks_connecting.png b/public/textures/rechiseled/crimson_planks_small_bricks_connecting.png deleted file mode 100644 index 2973cbf8..00000000 Binary files a/public/textures/rechiseled/crimson_planks_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_small_tiles.png b/public/textures/rechiseled/crimson_planks_small_tiles.png deleted file mode 100644 index be8c91ca..00000000 Binary files a/public/textures/rechiseled/crimson_planks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_small_tiles_connecting.png b/public/textures/rechiseled/crimson_planks_small_tiles_connecting.png deleted file mode 100644 index be8c91ca..00000000 Binary files a/public/textures/rechiseled/crimson_planks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_squares.png b/public/textures/rechiseled/crimson_planks_squares.png deleted file mode 100644 index 2e25bbfc..00000000 Binary files a/public/textures/rechiseled/crimson_planks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_squares_connecting.png b/public/textures/rechiseled/crimson_planks_squares_connecting.png deleted file mode 100644 index 2e25bbfc..00000000 Binary files a/public/textures/rechiseled/crimson_planks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_tiles.png b/public/textures/rechiseled/crimson_planks_tiles.png deleted file mode 100644 index e2f17b82..00000000 Binary files a/public/textures/rechiseled/crimson_planks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_tiles_connecting.png b/public/textures/rechiseled/crimson_planks_tiles_connecting.png deleted file mode 100644 index e2f17b82..00000000 Binary files a/public/textures/rechiseled/crimson_planks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_wavy.png b/public/textures/rechiseled/crimson_planks_wavy.png deleted file mode 100644 index ea10424a..00000000 Binary files a/public/textures/rechiseled/crimson_planks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_wavy_connecting.png b/public/textures/rechiseled/crimson_planks_wavy_connecting.png deleted file mode 100644 index ea10424a..00000000 Binary files a/public/textures/rechiseled/crimson_planks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_woven.png b/public/textures/rechiseled/crimson_planks_woven.png deleted file mode 100644 index 49b12c44..00000000 Binary files a/public/textures/rechiseled/crimson_planks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/crimson_planks_woven_connecting.png b/public/textures/rechiseled/crimson_planks_woven_connecting.png deleted file mode 100644 index 49b12c44..00000000 Binary files a/public/textures/rechiseled/crimson_planks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_beams.png b/public/textures/rechiseled/dark_oak_planks_beams.png deleted file mode 100644 index b99eaca2..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_beams_connecting.png b/public/textures/rechiseled/dark_oak_planks_beams_connecting.png deleted file mode 100644 index b99eaca2..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_brick_pattern.png b/public/textures/rechiseled/dark_oak_planks_brick_pattern.png deleted file mode 100644 index 555aa67f..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_brick_pattern_connecting.png b/public/textures/rechiseled/dark_oak_planks_brick_pattern_connecting.png deleted file mode 100644 index 555aa67f..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_brick_paving.png b/public/textures/rechiseled/dark_oak_planks_brick_paving.png deleted file mode 100644 index 497a91ba..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_brick_paving_connecting.png b/public/textures/rechiseled/dark_oak_planks_brick_paving_connecting.png deleted file mode 100644 index 497a91ba..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_bricks.png b/public/textures/rechiseled/dark_oak_planks_bricks.png deleted file mode 100644 index 460d4ea4..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_bricks_connecting.png b/public/textures/rechiseled/dark_oak_planks_bricks_connecting.png deleted file mode 100644 index 460d4ea4..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_crate.png b/public/textures/rechiseled/dark_oak_planks_crate.png deleted file mode 100644 index f8a27f07..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_crate.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_crate_connecting.png b/public/textures/rechiseled/dark_oak_planks_crate_connecting.png deleted file mode 100644 index f8a27f07..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_crate_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_diagonal_stripes.png b/public/textures/rechiseled/dark_oak_planks_diagonal_stripes.png deleted file mode 100644 index 59d09df5..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_diagonal_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_diagonal_stripes_connecting.png b/public/textures/rechiseled/dark_oak_planks_diagonal_stripes_connecting.png deleted file mode 100644 index 59d09df5..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_diagonal_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_diagonal_tiles.png b/public/textures/rechiseled/dark_oak_planks_diagonal_tiles.png deleted file mode 100644 index 4c0323e1..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_diagonal_tiles_connecting.png b/public/textures/rechiseled/dark_oak_planks_diagonal_tiles_connecting.png deleted file mode 100644 index 4c0323e1..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_dotted.png b/public/textures/rechiseled/dark_oak_planks_dotted.png deleted file mode 100644 index 7ed2cb34..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_dotted_connecting.png b/public/textures/rechiseled/dark_oak_planks_dotted_connecting.png deleted file mode 100644 index 7ed2cb34..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_flooring.png b/public/textures/rechiseled/dark_oak_planks_flooring.png deleted file mode 100644 index 42bcdda0..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_flooring.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_flooring_connecting.png b/public/textures/rechiseled/dark_oak_planks_flooring_connecting.png deleted file mode 100644 index 42bcdda0..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_flooring_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_large_tiles.png b/public/textures/rechiseled/dark_oak_planks_large_tiles.png deleted file mode 100644 index 196accc4..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_large_tiles_connecting.png b/public/textures/rechiseled/dark_oak_planks_large_tiles_connecting.png deleted file mode 100644 index 196accc4..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_mosaic.png b/public/textures/rechiseled/dark_oak_planks_mosaic.png deleted file mode 100644 index 12630c6c..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_mosaic.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_pattern.png b/public/textures/rechiseled/dark_oak_planks_pattern.png deleted file mode 100644 index f06b4e47..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_pattern_connecting.png b/public/textures/rechiseled/dark_oak_planks_pattern_connecting.png deleted file mode 100644 index f06b4e47..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_rotated_bricks.png b/public/textures/rechiseled/dark_oak_planks_rotated_bricks.png deleted file mode 100644 index 28c7f857..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_rotated_bricks_connecting.png b/public/textures/rechiseled/dark_oak_planks_rotated_bricks_connecting.png deleted file mode 100644 index 28c7f857..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_small_bricks.png b/public/textures/rechiseled/dark_oak_planks_small_bricks.png deleted file mode 100644 index f224338b..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_small_bricks_connecting.png b/public/textures/rechiseled/dark_oak_planks_small_bricks_connecting.png deleted file mode 100644 index f224338b..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_small_tiles.png b/public/textures/rechiseled/dark_oak_planks_small_tiles.png deleted file mode 100644 index b07b0be2..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_small_tiles_connecting.png b/public/textures/rechiseled/dark_oak_planks_small_tiles_connecting.png deleted file mode 100644 index b07b0be2..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_squares.png b/public/textures/rechiseled/dark_oak_planks_squares.png deleted file mode 100644 index f810be96..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_squares_connecting.png b/public/textures/rechiseled/dark_oak_planks_squares_connecting.png deleted file mode 100644 index f810be96..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_tiles.png b/public/textures/rechiseled/dark_oak_planks_tiles.png deleted file mode 100644 index d50132a4..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_tiles_connecting.png b/public/textures/rechiseled/dark_oak_planks_tiles_connecting.png deleted file mode 100644 index d50132a4..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_wavy.png b/public/textures/rechiseled/dark_oak_planks_wavy.png deleted file mode 100644 index 9d252974..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_wavy_connecting.png b/public/textures/rechiseled/dark_oak_planks_wavy_connecting.png deleted file mode 100644 index 9d252974..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_woven.png b/public/textures/rechiseled/dark_oak_planks_woven.png deleted file mode 100644 index 3876f00a..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_oak_planks_woven_connecting.png b/public/textures/rechiseled/dark_oak_planks_woven_connecting.png deleted file mode 100644 index 3876f00a..00000000 Binary files a/public/textures/rechiseled/dark_oak_planks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_beams.png b/public/textures/rechiseled/dark_prismarine_beams.png deleted file mode 100644 index ca91b34d..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_beams_connecting.png b/public/textures/rechiseled/dark_prismarine_beams_connecting.png deleted file mode 100644 index ca91b34d..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_brick_paving.png b/public/textures/rechiseled/dark_prismarine_brick_paving.png deleted file mode 100644 index 52723399..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_brick_paving_connecting.png b/public/textures/rechiseled/dark_prismarine_brick_paving_connecting.png deleted file mode 100644 index 52723399..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_bricks.png b/public/textures/rechiseled/dark_prismarine_bricks.png deleted file mode 100644 index 3bbf77e8..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_bricks_connecting.png b/public/textures/rechiseled/dark_prismarine_bricks_connecting.png deleted file mode 100644 index 3bbf77e8..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_dotted.png b/public/textures/rechiseled/dark_prismarine_dotted.png deleted file mode 100644 index 6a23ba8e..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_dotted_connecting.png b/public/textures/rechiseled/dark_prismarine_dotted_connecting.png deleted file mode 100644 index 6a23ba8e..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_fabric.png b/public/textures/rechiseled/dark_prismarine_fabric.png deleted file mode 100644 index 550548a1..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_fabric.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_fabric_connecting.png b/public/textures/rechiseled/dark_prismarine_fabric_connecting.png deleted file mode 100644 index 550548a1..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_fabric_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_large_tiles.png b/public/textures/rechiseled/dark_prismarine_large_tiles.png deleted file mode 100644 index 4f848361..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_large_tiles_connecting.png b/public/textures/rechiseled/dark_prismarine_large_tiles_connecting.png deleted file mode 100644 index 4f848361..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_rotated_bricks.png b/public/textures/rechiseled/dark_prismarine_rotated_bricks.png deleted file mode 100644 index 9e001651..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_rotated_bricks_connecting.png b/public/textures/rechiseled/dark_prismarine_rotated_bricks_connecting.png deleted file mode 100644 index 9e001651..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_rows.png b/public/textures/rechiseled/dark_prismarine_rows.png deleted file mode 100644 index dd837746..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_rows.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_rows_connecting.png b/public/textures/rechiseled/dark_prismarine_rows_connecting.png deleted file mode 100644 index dd837746..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_rows_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_squares.png b/public/textures/rechiseled/dark_prismarine_squares.png deleted file mode 100644 index 8890b993..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_squares_connecting.png b/public/textures/rechiseled/dark_prismarine_squares_connecting.png deleted file mode 100644 index 8890b993..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_tiles.png b/public/textures/rechiseled/dark_prismarine_tiles.png deleted file mode 100644 index 3ab2a4d0..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_tiles_connecting.png b/public/textures/rechiseled/dark_prismarine_tiles_connecting.png deleted file mode 100644 index 3ab2a4d0..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_wavy.png b/public/textures/rechiseled/dark_prismarine_wavy.png deleted file mode 100644 index 726c0095..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_wavy_connecting.png b/public/textures/rechiseled/dark_prismarine_wavy_connecting.png deleted file mode 100644 index 726c0095..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_woven.png b/public/textures/rechiseled/dark_prismarine_woven.png deleted file mode 100644 index 7911538a..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/dark_prismarine_woven_connecting.png b/public/textures/rechiseled/dark_prismarine_woven_connecting.png deleted file mode 100644 index 7911538a..00000000 Binary files a/public/textures/rechiseled/dark_prismarine_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_chiseled.png b/public/textures/rechiseled/diamond_block_chiseled.png deleted file mode 100644 index 60c7caba..00000000 Binary files a/public/textures/rechiseled/diamond_block_chiseled.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_chiseled_connecting.png b/public/textures/rechiseled/diamond_block_chiseled_connecting.png deleted file mode 100644 index 60c7caba..00000000 Binary files a/public/textures/rechiseled/diamond_block_chiseled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_chiseled_cubes.png b/public/textures/rechiseled/diamond_block_chiseled_cubes.png deleted file mode 100644 index 6253c782..00000000 Binary files a/public/textures/rechiseled/diamond_block_chiseled_cubes.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_chiseled_cubes_connecting.png b/public/textures/rechiseled/diamond_block_chiseled_cubes_connecting.png deleted file mode 100644 index 6253c782..00000000 Binary files a/public/textures/rechiseled/diamond_block_chiseled_cubes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_connecting_connecting.png b/public/textures/rechiseled/diamond_block_connecting_connecting.png deleted file mode 100644 index 9d3ec6f5..00000000 Binary files a/public/textures/rechiseled/diamond_block_connecting_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_diagonal_tiles.png b/public/textures/rechiseled/diamond_block_diagonal_tiles.png deleted file mode 100644 index 690b5ee3..00000000 Binary files a/public/textures/rechiseled/diamond_block_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_grid.png b/public/textures/rechiseled/diamond_block_grid.png deleted file mode 100644 index 0b3d4b80..00000000 Binary files a/public/textures/rechiseled/diamond_block_grid.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_grid_connecting.png b/public/textures/rechiseled/diamond_block_grid_connecting.png deleted file mode 100644 index 0b3d4b80..00000000 Binary files a/public/textures/rechiseled/diamond_block_grid_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_jewel_block.png b/public/textures/rechiseled/diamond_block_jewel_block.png deleted file mode 100644 index caa1af8e..00000000 Binary files a/public/textures/rechiseled/diamond_block_jewel_block.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_jewel_block_connecting.png b/public/textures/rechiseled/diamond_block_jewel_block_connecting.png deleted file mode 100644 index caa1af8e..00000000 Binary files a/public/textures/rechiseled/diamond_block_jewel_block_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_polished.png b/public/textures/rechiseled/diamond_block_polished.png deleted file mode 100644 index 54542a01..00000000 Binary files a/public/textures/rechiseled/diamond_block_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_polished_connecting.png b/public/textures/rechiseled/diamond_block_polished_connecting.png deleted file mode 100644 index 54542a01..00000000 Binary files a/public/textures/rechiseled/diamond_block_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_rhombuses.png b/public/textures/rechiseled/diamond_block_rhombuses.png deleted file mode 100644 index c5ba2457..00000000 Binary files a/public/textures/rechiseled/diamond_block_rhombuses.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_rhombuses_connecting.png b/public/textures/rechiseled/diamond_block_rhombuses_connecting.png deleted file mode 100644 index c5ba2457..00000000 Binary files a/public/textures/rechiseled/diamond_block_rhombuses_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_shiny.png b/public/textures/rechiseled/diamond_block_shiny.png deleted file mode 100644 index d1881acf..00000000 Binary files a/public/textures/rechiseled/diamond_block_shiny.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_shiny_bordered.png b/public/textures/rechiseled/diamond_block_shiny_bordered.png deleted file mode 100644 index 193c69bf..00000000 Binary files a/public/textures/rechiseled/diamond_block_shiny_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_shiny_bordered_connecting.png b/public/textures/rechiseled/diamond_block_shiny_bordered_connecting.png deleted file mode 100644 index 193c69bf..00000000 Binary files a/public/textures/rechiseled/diamond_block_shiny_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_small_tiles.png b/public/textures/rechiseled/diamond_block_small_tiles.png deleted file mode 100644 index 72fb79ce..00000000 Binary files a/public/textures/rechiseled/diamond_block_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_small_tiles_connecting.png b/public/textures/rechiseled/diamond_block_small_tiles_connecting.png deleted file mode 100644 index 72fb79ce..00000000 Binary files a/public/textures/rechiseled/diamond_block_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diamond_block_smooth.png b/public/textures/rechiseled/diamond_block_smooth.png deleted file mode 100644 index b0026893..00000000 Binary files a/public/textures/rechiseled/diamond_block_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_brick_pattern.png b/public/textures/rechiseled/diorite_brick_pattern.png deleted file mode 100644 index 8f00c4f5..00000000 Binary files a/public/textures/rechiseled/diorite_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_brick_pattern_connecting.png b/public/textures/rechiseled/diorite_brick_pattern_connecting.png deleted file mode 100644 index 8f00c4f5..00000000 Binary files a/public/textures/rechiseled/diorite_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_brick_paving.png b/public/textures/rechiseled/diorite_brick_paving.png deleted file mode 100644 index ac528b14..00000000 Binary files a/public/textures/rechiseled/diorite_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_brick_paving_connecting.png b/public/textures/rechiseled/diorite_brick_paving_connecting.png deleted file mode 100644 index ac528b14..00000000 Binary files a/public/textures/rechiseled/diorite_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_bricks.png b/public/textures/rechiseled/diorite_bricks.png deleted file mode 100644 index 900631f5..00000000 Binary files a/public/textures/rechiseled/diorite_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_bricks_connecting.png b/public/textures/rechiseled/diorite_bricks_connecting.png deleted file mode 100644 index 900631f5..00000000 Binary files a/public/textures/rechiseled/diorite_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_diagonal_bricks.png b/public/textures/rechiseled/diorite_diagonal_bricks.png deleted file mode 100644 index 01c589eb..00000000 Binary files a/public/textures/rechiseled/diorite_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_diagonal_bricks_connecting.png b/public/textures/rechiseled/diorite_diagonal_bricks_connecting.png deleted file mode 100644 index 01c589eb..00000000 Binary files a/public/textures/rechiseled/diorite_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_dotted.png b/public/textures/rechiseled/diorite_dotted.png deleted file mode 100644 index 57203556..00000000 Binary files a/public/textures/rechiseled/diorite_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_dotted_connecting.png b/public/textures/rechiseled/diorite_dotted_connecting.png deleted file mode 100644 index 57203556..00000000 Binary files a/public/textures/rechiseled/diorite_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_paving.png b/public/textures/rechiseled/diorite_paving.png deleted file mode 100644 index 91053ac6..00000000 Binary files a/public/textures/rechiseled/diorite_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_paving_connecting.png b/public/textures/rechiseled/diorite_paving_connecting.png deleted file mode 100644 index 91053ac6..00000000 Binary files a/public/textures/rechiseled/diorite_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_polished_connecting.png b/public/textures/rechiseled/diorite_polished_connecting.png deleted file mode 100644 index 8b6d741a..00000000 Binary files a/public/textures/rechiseled/diorite_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_rotated_bricks.png b/public/textures/rechiseled/diorite_rotated_bricks.png deleted file mode 100644 index f0181f73..00000000 Binary files a/public/textures/rechiseled/diorite_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_rotated_bricks_connecting.png b/public/textures/rechiseled/diorite_rotated_bricks_connecting.png deleted file mode 100644 index f0181f73..00000000 Binary files a/public/textures/rechiseled/diorite_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_squares.png b/public/textures/rechiseled/diorite_squares.png deleted file mode 100644 index f44d6cae..00000000 Binary files a/public/textures/rechiseled/diorite_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_squares_connecting.png b/public/textures/rechiseled/diorite_squares_connecting.png deleted file mode 100644 index f44d6cae..00000000 Binary files a/public/textures/rechiseled/diorite_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_tiles.png b/public/textures/rechiseled/diorite_tiles.png deleted file mode 100644 index 65b9f432..00000000 Binary files a/public/textures/rechiseled/diorite_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_tiles_connecting.png b/public/textures/rechiseled/diorite_tiles_connecting.png deleted file mode 100644 index 65b9f432..00000000 Binary files a/public/textures/rechiseled/diorite_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_wavy.png b/public/textures/rechiseled/diorite_wavy.png deleted file mode 100644 index ef271e64..00000000 Binary files a/public/textures/rechiseled/diorite_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/diorite_wavy_connecting.png b/public/textures/rechiseled/diorite_wavy_connecting.png deleted file mode 100644 index ef271e64..00000000 Binary files a/public/textures/rechiseled/diorite_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_blobs.png b/public/textures/rechiseled/dirt_blobs.png deleted file mode 100644 index d8443ab2..00000000 Binary files a/public/textures/rechiseled/dirt_blobs.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_blobs_connecting.png b/public/textures/rechiseled/dirt_blobs_connecting.png deleted file mode 100644 index d8443ab2..00000000 Binary files a/public/textures/rechiseled/dirt_blobs_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_bricks.png b/public/textures/rechiseled/dirt_bricks.png deleted file mode 100644 index f7af5be3..00000000 Binary files a/public/textures/rechiseled/dirt_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_bricks_connecting.png b/public/textures/rechiseled/dirt_bricks_connecting.png deleted file mode 100644 index f7af5be3..00000000 Binary files a/public/textures/rechiseled/dirt_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_chunks.png b/public/textures/rechiseled/dirt_chunks.png deleted file mode 100644 index 773c0519..00000000 Binary files a/public/textures/rechiseled/dirt_chunks.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_chunks_connecting.png b/public/textures/rechiseled/dirt_chunks_connecting.png deleted file mode 100644 index 773c0519..00000000 Binary files a/public/textures/rechiseled/dirt_chunks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_clumps.png b/public/textures/rechiseled/dirt_clumps.png deleted file mode 100644 index 5a3a4af7..00000000 Binary files a/public/textures/rechiseled/dirt_clumps.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_clumps_connecting.png b/public/textures/rechiseled/dirt_clumps_connecting.png deleted file mode 100644 index 5a3a4af7..00000000 Binary files a/public/textures/rechiseled/dirt_clumps_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_cobbled.png b/public/textures/rechiseled/dirt_cobbled.png deleted file mode 100644 index b2917efd..00000000 Binary files a/public/textures/rechiseled/dirt_cobbled.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_grooves.png b/public/textures/rechiseled/dirt_grooves.png deleted file mode 100644 index 70ce0b8b..00000000 Binary files a/public/textures/rechiseled/dirt_grooves.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_large_tiles.png b/public/textures/rechiseled/dirt_large_tiles.png deleted file mode 100644 index fcfd94a5..00000000 Binary files a/public/textures/rechiseled/dirt_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_large_tiles_connecting.png b/public/textures/rechiseled/dirt_large_tiles_connecting.png deleted file mode 100644 index fcfd94a5..00000000 Binary files a/public/textures/rechiseled/dirt_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_muddy.png b/public/textures/rechiseled/dirt_muddy.png deleted file mode 100644 index ee88c499..00000000 Binary files a/public/textures/rechiseled/dirt_muddy.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_small_bricks.png b/public/textures/rechiseled/dirt_small_bricks.png deleted file mode 100644 index 65911971..00000000 Binary files a/public/textures/rechiseled/dirt_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_small_bricks_connecting.png b/public/textures/rechiseled/dirt_small_bricks_connecting.png deleted file mode 100644 index 65911971..00000000 Binary files a/public/textures/rechiseled/dirt_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_small_tiles.png b/public/textures/rechiseled/dirt_small_tiles.png deleted file mode 100644 index adc63761..00000000 Binary files a/public/textures/rechiseled/dirt_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_small_tiles_connecting.png b/public/textures/rechiseled/dirt_small_tiles_connecting.png deleted file mode 100644 index adc63761..00000000 Binary files a/public/textures/rechiseled/dirt_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_smooth_clumps.png b/public/textures/rechiseled/dirt_smooth_clumps.png deleted file mode 100644 index 8aa62946..00000000 Binary files a/public/textures/rechiseled/dirt_smooth_clumps.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_smooth_clumps_connecting.png b/public/textures/rechiseled/dirt_smooth_clumps_connecting.png deleted file mode 100644 index 8aa62946..00000000 Binary files a/public/textures/rechiseled/dirt_smooth_clumps_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_soil.png b/public/textures/rechiseled/dirt_soil.png deleted file mode 100644 index dab23602..00000000 Binary files a/public/textures/rechiseled/dirt_soil.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_soil_connecting.png b/public/textures/rechiseled/dirt_soil_connecting.png deleted file mode 100644 index dab23602..00000000 Binary files a/public/textures/rechiseled/dirt_soil_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_squares.png b/public/textures/rechiseled/dirt_squares.png deleted file mode 100644 index 4af26972..00000000 Binary files a/public/textures/rechiseled/dirt_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_squares_connecting.png b/public/textures/rechiseled/dirt_squares_connecting.png deleted file mode 100644 index 4af26972..00000000 Binary files a/public/textures/rechiseled/dirt_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_tiles.png b/public/textures/rechiseled/dirt_tiles.png deleted file mode 100644 index c522a7b3..00000000 Binary files a/public/textures/rechiseled/dirt_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_tiles_connecting.png b/public/textures/rechiseled/dirt_tiles_connecting.png deleted file mode 100644 index c522a7b3..00000000 Binary files a/public/textures/rechiseled/dirt_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_tilled.png b/public/textures/rechiseled/dirt_tilled.png deleted file mode 100644 index 14457824..00000000 Binary files a/public/textures/rechiseled/dirt_tilled.png and /dev/null differ diff --git a/public/textures/rechiseled/dirt_tilled_connecting.png b/public/textures/rechiseled/dirt_tilled_connecting.png deleted file mode 100644 index 14457824..00000000 Binary files a/public/textures/rechiseled/dirt_tilled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_bordered_crosses.png b/public/textures/rechiseled/emerald_block_bordered_crosses.png deleted file mode 100644 index 142848f4..00000000 Binary files a/public/textures/rechiseled/emerald_block_bordered_crosses.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_bordered_crosses_connecting.png b/public/textures/rechiseled/emerald_block_bordered_crosses_connecting.png deleted file mode 100644 index 142848f4..00000000 Binary files a/public/textures/rechiseled/emerald_block_bordered_crosses_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_bordered_plating.png b/public/textures/rechiseled/emerald_block_bordered_plating.png deleted file mode 100644 index bdc8ed9b..00000000 Binary files a/public/textures/rechiseled/emerald_block_bordered_plating.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_bordered_plating_connecting.png b/public/textures/rechiseled/emerald_block_bordered_plating_connecting.png deleted file mode 100644 index bdc8ed9b..00000000 Binary files a/public/textures/rechiseled/emerald_block_bordered_plating_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_chiseled.png b/public/textures/rechiseled/emerald_block_chiseled.png deleted file mode 100644 index 96084c8d..00000000 Binary files a/public/textures/rechiseled/emerald_block_chiseled.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_chiseled_connecting.png b/public/textures/rechiseled/emerald_block_chiseled_connecting.png deleted file mode 100644 index 96084c8d..00000000 Binary files a/public/textures/rechiseled/emerald_block_chiseled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_clovers.png b/public/textures/rechiseled/emerald_block_clovers.png deleted file mode 100644 index 53c1fdbf..00000000 Binary files a/public/textures/rechiseled/emerald_block_clovers.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_clovers_connecting.png b/public/textures/rechiseled/emerald_block_clovers_connecting.png deleted file mode 100644 index 53c1fdbf..00000000 Binary files a/public/textures/rechiseled/emerald_block_clovers_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_crosses.png b/public/textures/rechiseled/emerald_block_crosses.png deleted file mode 100644 index 15a15372..00000000 Binary files a/public/textures/rechiseled/emerald_block_crosses.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_crystal.png b/public/textures/rechiseled/emerald_block_crystal.png deleted file mode 100644 index e98fc087..00000000 Binary files a/public/textures/rechiseled/emerald_block_crystal.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_crystal_connecting.png b/public/textures/rechiseled/emerald_block_crystal_connecting.png deleted file mode 100644 index e98fc087..00000000 Binary files a/public/textures/rechiseled/emerald_block_crystal_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_patterned.png b/public/textures/rechiseled/emerald_block_patterned.png deleted file mode 100644 index 4fa3c43b..00000000 Binary files a/public/textures/rechiseled/emerald_block_patterned.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_patterned_connecting.png b/public/textures/rechiseled/emerald_block_patterned_connecting.png deleted file mode 100644 index 4fa3c43b..00000000 Binary files a/public/textures/rechiseled/emerald_block_patterned_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_patterned_squares.png b/public/textures/rechiseled/emerald_block_patterned_squares.png deleted file mode 100644 index cc3cfb25..00000000 Binary files a/public/textures/rechiseled/emerald_block_patterned_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_patterned_squares_connecting.png b/public/textures/rechiseled/emerald_block_patterned_squares_connecting.png deleted file mode 100644 index cc3cfb25..00000000 Binary files a/public/textures/rechiseled/emerald_block_patterned_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_pillar.png b/public/textures/rechiseled/emerald_block_pillar.png deleted file mode 100644 index 5b6c0cb1..00000000 Binary files a/public/textures/rechiseled/emerald_block_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_pillar_connecting.png b/public/textures/rechiseled/emerald_block_pillar_connecting.png deleted file mode 100644 index 5b6c0cb1..00000000 Binary files a/public/textures/rechiseled/emerald_block_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_plating.png b/public/textures/rechiseled/emerald_block_plating.png deleted file mode 100644 index 7da7c462..00000000 Binary files a/public/textures/rechiseled/emerald_block_plating.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_polished.png b/public/textures/rechiseled/emerald_block_polished.png deleted file mode 100644 index 232d42ad..00000000 Binary files a/public/textures/rechiseled/emerald_block_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_polished_connecting.png b/public/textures/rechiseled/emerald_block_polished_connecting.png deleted file mode 100644 index 232d42ad..00000000 Binary files a/public/textures/rechiseled/emerald_block_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_smooth.png b/public/textures/rechiseled/emerald_block_smooth.png deleted file mode 100644 index 071d8946..00000000 Binary files a/public/textures/rechiseled/emerald_block_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_striped.png b/public/textures/rechiseled/emerald_block_striped.png deleted file mode 100644 index 5d50aabf..00000000 Binary files a/public/textures/rechiseled/emerald_block_striped.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_striped_connecting.png b/public/textures/rechiseled/emerald_block_striped_connecting.png deleted file mode 100644 index 5d50aabf..00000000 Binary files a/public/textures/rechiseled/emerald_block_striped_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_waxed.png b/public/textures/rechiseled/emerald_block_waxed.png deleted file mode 100644 index 054d0bff..00000000 Binary files a/public/textures/rechiseled/emerald_block_waxed.png and /dev/null differ diff --git a/public/textures/rechiseled/emerald_block_waxed_connecting.png b/public/textures/rechiseled/emerald_block_waxed_connecting.png deleted file mode 100644 index 054d0bff..00000000 Binary files a/public/textures/rechiseled/emerald_block_waxed_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_blobs.png b/public/textures/rechiseled/end_stone_blobs.png deleted file mode 100644 index 4f9c861a..00000000 Binary files a/public/textures/rechiseled/end_stone_blobs.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_blobs_connecting.png b/public/textures/rechiseled/end_stone_blobs_connecting.png deleted file mode 100644 index 4f9c861a..00000000 Binary files a/public/textures/rechiseled/end_stone_blobs_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_brick_pattern.png b/public/textures/rechiseled/end_stone_brick_pattern.png deleted file mode 100644 index 2d87ea8d..00000000 Binary files a/public/textures/rechiseled/end_stone_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_brick_pattern_connecting.png b/public/textures/rechiseled/end_stone_brick_pattern_connecting.png deleted file mode 100644 index 2d87ea8d..00000000 Binary files a/public/textures/rechiseled/end_stone_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_brick_paving.png b/public/textures/rechiseled/end_stone_brick_paving.png deleted file mode 100644 index dff8498b..00000000 Binary files a/public/textures/rechiseled/end_stone_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_brick_paving_connecting.png b/public/textures/rechiseled/end_stone_brick_paving_connecting.png deleted file mode 100644 index dff8498b..00000000 Binary files a/public/textures/rechiseled/end_stone_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_chiseled.png b/public/textures/rechiseled/end_stone_chiseled.png deleted file mode 100644 index 3f184dc9..00000000 Binary files a/public/textures/rechiseled/end_stone_chiseled.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_chiseled_connecting.png b/public/textures/rechiseled/end_stone_chiseled_connecting.png deleted file mode 100644 index 3f184dc9..00000000 Binary files a/public/textures/rechiseled/end_stone_chiseled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_crushed.png b/public/textures/rechiseled/end_stone_crushed.png deleted file mode 100644 index b40b096a..00000000 Binary files a/public/textures/rechiseled/end_stone_crushed.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_crushed_connecting.png b/public/textures/rechiseled/end_stone_crushed_connecting.png deleted file mode 100644 index b40b096a..00000000 Binary files a/public/textures/rechiseled/end_stone_crushed_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_diagonal_bricks.png b/public/textures/rechiseled/end_stone_diagonal_bricks.png deleted file mode 100644 index 7c9013f2..00000000 Binary files a/public/textures/rechiseled/end_stone_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_diagonal_bricks_connecting.png b/public/textures/rechiseled/end_stone_diagonal_bricks_connecting.png deleted file mode 100644 index 7c9013f2..00000000 Binary files a/public/textures/rechiseled/end_stone_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_mesh.png b/public/textures/rechiseled/end_stone_mesh.png deleted file mode 100644 index 005601b2..00000000 Binary files a/public/textures/rechiseled/end_stone_mesh.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_mesh_connecting.png b/public/textures/rechiseled/end_stone_mesh_connecting.png deleted file mode 100644 index 005601b2..00000000 Binary files a/public/textures/rechiseled/end_stone_mesh_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_paving.png b/public/textures/rechiseled/end_stone_paving.png deleted file mode 100644 index 263fe014..00000000 Binary files a/public/textures/rechiseled/end_stone_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_paving_connecting.png b/public/textures/rechiseled/end_stone_paving_connecting.png deleted file mode 100644 index 263fe014..00000000 Binary files a/public/textures/rechiseled/end_stone_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_polished.png b/public/textures/rechiseled/end_stone_polished.png deleted file mode 100644 index 9de5992c..00000000 Binary files a/public/textures/rechiseled/end_stone_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_polished_connecting.png b/public/textures/rechiseled/end_stone_polished_connecting.png deleted file mode 100644 index 9de5992c..00000000 Binary files a/public/textures/rechiseled/end_stone_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_rotated_bricks.png b/public/textures/rechiseled/end_stone_rotated_bricks.png deleted file mode 100644 index e3c18bd1..00000000 Binary files a/public/textures/rechiseled/end_stone_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_rotated_bricks_connecting.png b/public/textures/rechiseled/end_stone_rotated_bricks_connecting.png deleted file mode 100644 index e3c18bd1..00000000 Binary files a/public/textures/rechiseled/end_stone_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_scales.png b/public/textures/rechiseled/end_stone_scales.png deleted file mode 100644 index e1da51ec..00000000 Binary files a/public/textures/rechiseled/end_stone_scales.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_scales_connecting.png b/public/textures/rechiseled/end_stone_scales_connecting.png deleted file mode 100644 index e1da51ec..00000000 Binary files a/public/textures/rechiseled/end_stone_scales_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_small_tiles.png b/public/textures/rechiseled/end_stone_small_tiles.png deleted file mode 100644 index 472e0acc..00000000 Binary files a/public/textures/rechiseled/end_stone_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_small_tiles_connecting.png b/public/textures/rechiseled/end_stone_small_tiles_connecting.png deleted file mode 100644 index 472e0acc..00000000 Binary files a/public/textures/rechiseled/end_stone_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_spiral_pattern.png b/public/textures/rechiseled/end_stone_spiral_pattern.png deleted file mode 100644 index 06060105..00000000 Binary files a/public/textures/rechiseled/end_stone_spiral_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_spiral_pattern_connecting.png b/public/textures/rechiseled/end_stone_spiral_pattern_connecting.png deleted file mode 100644 index 06060105..00000000 Binary files a/public/textures/rechiseled/end_stone_spiral_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_squares.png b/public/textures/rechiseled/end_stone_squares.png deleted file mode 100644 index 5cfb9db0..00000000 Binary files a/public/textures/rechiseled/end_stone_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_squares_connecting.png b/public/textures/rechiseled/end_stone_squares_connecting.png deleted file mode 100644 index 5cfb9db0..00000000 Binary files a/public/textures/rechiseled/end_stone_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_tiles.png b/public/textures/rechiseled/end_stone_tiles.png deleted file mode 100644 index 6a026ad5..00000000 Binary files a/public/textures/rechiseled/end_stone_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/end_stone_tiles_connecting.png b/public/textures/rechiseled/end_stone_tiles_connecting.png deleted file mode 100644 index 6a026ad5..00000000 Binary files a/public/textures/rechiseled/end_stone_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_brick_pattern.png b/public/textures/rechiseled/glowstone_brick_pattern.png deleted file mode 100644 index 6d83bc61..00000000 Binary files a/public/textures/rechiseled/glowstone_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_brick_pattern_connecting.png b/public/textures/rechiseled/glowstone_brick_pattern_connecting.png deleted file mode 100644 index 6d83bc61..00000000 Binary files a/public/textures/rechiseled/glowstone_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_brick_paving.png b/public/textures/rechiseled/glowstone_brick_paving.png deleted file mode 100644 index 41b97f37..00000000 Binary files a/public/textures/rechiseled/glowstone_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_brick_paving_connecting.png b/public/textures/rechiseled/glowstone_brick_paving_connecting.png deleted file mode 100644 index 41b97f37..00000000 Binary files a/public/textures/rechiseled/glowstone_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_bricks.png b/public/textures/rechiseled/glowstone_bricks.png deleted file mode 100644 index 7f5512bc..00000000 Binary files a/public/textures/rechiseled/glowstone_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_bricks_connecting.png b/public/textures/rechiseled/glowstone_bricks_connecting.png deleted file mode 100644 index 7f5512bc..00000000 Binary files a/public/textures/rechiseled/glowstone_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_crushed.png b/public/textures/rechiseled/glowstone_crushed.png deleted file mode 100644 index bac83464..00000000 Binary files a/public/textures/rechiseled/glowstone_crushed.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_crushed_connecting.png b/public/textures/rechiseled/glowstone_crushed_connecting.png deleted file mode 100644 index bac83464..00000000 Binary files a/public/textures/rechiseled/glowstone_crushed_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_large_tiles.png b/public/textures/rechiseled/glowstone_large_tiles.png deleted file mode 100644 index 97d65234..00000000 Binary files a/public/textures/rechiseled/glowstone_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_large_tiles_connecting.png b/public/textures/rechiseled/glowstone_large_tiles_connecting.png deleted file mode 100644 index 97d65234..00000000 Binary files a/public/textures/rechiseled/glowstone_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_rotated_bricks.png b/public/textures/rechiseled/glowstone_rotated_bricks.png deleted file mode 100644 index 8e9b8588..00000000 Binary files a/public/textures/rechiseled/glowstone_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_rotated_bricks_connecting.png b/public/textures/rechiseled/glowstone_rotated_bricks_connecting.png deleted file mode 100644 index 8e9b8588..00000000 Binary files a/public/textures/rechiseled/glowstone_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_small_tiles.png b/public/textures/rechiseled/glowstone_small_tiles.png deleted file mode 100644 index 4b5a31a3..00000000 Binary files a/public/textures/rechiseled/glowstone_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_small_tiles_connecting.png b/public/textures/rechiseled/glowstone_small_tiles_connecting.png deleted file mode 100644 index 4b5a31a3..00000000 Binary files a/public/textures/rechiseled/glowstone_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_smooth.png b/public/textures/rechiseled/glowstone_smooth.png deleted file mode 100644 index 06b8a815..00000000 Binary files a/public/textures/rechiseled/glowstone_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_smooth_connecting.png b/public/textures/rechiseled/glowstone_smooth_connecting.png deleted file mode 100644 index 06b8a815..00000000 Binary files a/public/textures/rechiseled/glowstone_smooth_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_tiles.png b/public/textures/rechiseled/glowstone_tiles.png deleted file mode 100644 index b636484f..00000000 Binary files a/public/textures/rechiseled/glowstone_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/glowstone_tiles_connecting.png b/public/textures/rechiseled/glowstone_tiles_connecting.png deleted file mode 100644 index b636484f..00000000 Binary files a/public/textures/rechiseled/glowstone_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_beams.png b/public/textures/rechiseled/gold_block_beams.png deleted file mode 100644 index 2e58b09d..00000000 Binary files a/public/textures/rechiseled/gold_block_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_beams_connecting.png b/public/textures/rechiseled/gold_block_beams_connecting.png deleted file mode 100644 index 2e58b09d..00000000 Binary files a/public/textures/rechiseled/gold_block_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_bordered.png b/public/textures/rechiseled/gold_block_bordered.png deleted file mode 100644 index 182bba77..00000000 Binary files a/public/textures/rechiseled/gold_block_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_bordered_connecting.png b/public/textures/rechiseled/gold_block_bordered_connecting.png deleted file mode 100644 index 182bba77..00000000 Binary files a/public/textures/rechiseled/gold_block_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_lines.png b/public/textures/rechiseled/gold_block_lines.png deleted file mode 100644 index 64d19861..00000000 Binary files a/public/textures/rechiseled/gold_block_lines.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_lines_connecting.png b/public/textures/rechiseled/gold_block_lines_connecting.png deleted file mode 100644 index 64d19861..00000000 Binary files a/public/textures/rechiseled/gold_block_lines_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_pattern.png b/public/textures/rechiseled/gold_block_pattern.png deleted file mode 100644 index 87eb3b65..00000000 Binary files a/public/textures/rechiseled/gold_block_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_pattern_connecting.png b/public/textures/rechiseled/gold_block_pattern_connecting.png deleted file mode 100644 index 87eb3b65..00000000 Binary files a/public/textures/rechiseled/gold_block_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_polished.png b/public/textures/rechiseled/gold_block_polished.png deleted file mode 100644 index 08e7e136..00000000 Binary files a/public/textures/rechiseled/gold_block_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_polished_connecting.png b/public/textures/rechiseled/gold_block_polished_connecting.png deleted file mode 100644 index 08e7e136..00000000 Binary files a/public/textures/rechiseled/gold_block_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_scales.png b/public/textures/rechiseled/gold_block_scales.png deleted file mode 100644 index 07ac1368..00000000 Binary files a/public/textures/rechiseled/gold_block_scales.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_scales_connecting.png b/public/textures/rechiseled/gold_block_scales_connecting.png deleted file mode 100644 index 07ac1368..00000000 Binary files a/public/textures/rechiseled/gold_block_scales_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_small_bricks.png b/public/textures/rechiseled/gold_block_small_bricks.png deleted file mode 100644 index 5101e1a0..00000000 Binary files a/public/textures/rechiseled/gold_block_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_small_bricks_connecting.png b/public/textures/rechiseled/gold_block_small_bricks_connecting.png deleted file mode 100644 index 5101e1a0..00000000 Binary files a/public/textures/rechiseled/gold_block_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_small_tiles.png b/public/textures/rechiseled/gold_block_small_tiles.png deleted file mode 100644 index a4a36b21..00000000 Binary files a/public/textures/rechiseled/gold_block_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_small_tiles_connecting.png b/public/textures/rechiseled/gold_block_small_tiles_connecting.png deleted file mode 100644 index a4a36b21..00000000 Binary files a/public/textures/rechiseled/gold_block_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_smooth.png b/public/textures/rechiseled/gold_block_smooth.png deleted file mode 100644 index 0becf10d..00000000 Binary files a/public/textures/rechiseled/gold_block_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_striped.png b/public/textures/rechiseled/gold_block_striped.png deleted file mode 100644 index 392834fa..00000000 Binary files a/public/textures/rechiseled/gold_block_striped.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_striped_connecting.png b/public/textures/rechiseled/gold_block_striped_connecting.png deleted file mode 100644 index 392834fa..00000000 Binary files a/public/textures/rechiseled/gold_block_striped_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_tiles.png b/public/textures/rechiseled/gold_block_tiles.png deleted file mode 100644 index 3b4c69a6..00000000 Binary files a/public/textures/rechiseled/gold_block_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/gold_block_tiles_connecting.png b/public/textures/rechiseled/gold_block_tiles_connecting.png deleted file mode 100644 index 3b4c69a6..00000000 Binary files a/public/textures/rechiseled/gold_block_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_brick_pattern.png b/public/textures/rechiseled/granite_brick_pattern.png deleted file mode 100644 index 5877af75..00000000 Binary files a/public/textures/rechiseled/granite_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_brick_pattern_connecting.png b/public/textures/rechiseled/granite_brick_pattern_connecting.png deleted file mode 100644 index 5877af75..00000000 Binary files a/public/textures/rechiseled/granite_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_brick_paving.png b/public/textures/rechiseled/granite_brick_paving.png deleted file mode 100644 index d6cc37aa..00000000 Binary files a/public/textures/rechiseled/granite_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_brick_paving_connecting.png b/public/textures/rechiseled/granite_brick_paving_connecting.png deleted file mode 100644 index d6cc37aa..00000000 Binary files a/public/textures/rechiseled/granite_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_bricks.png b/public/textures/rechiseled/granite_bricks.png deleted file mode 100644 index 8aebb4bf..00000000 Binary files a/public/textures/rechiseled/granite_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_bricks_connecting.png b/public/textures/rechiseled/granite_bricks_connecting.png deleted file mode 100644 index 8aebb4bf..00000000 Binary files a/public/textures/rechiseled/granite_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_diagonal_bricks.png b/public/textures/rechiseled/granite_diagonal_bricks.png deleted file mode 100644 index 1dcf242e..00000000 Binary files a/public/textures/rechiseled/granite_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_diagonal_bricks_connecting.png b/public/textures/rechiseled/granite_diagonal_bricks_connecting.png deleted file mode 100644 index 1dcf242e..00000000 Binary files a/public/textures/rechiseled/granite_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_dotted.png b/public/textures/rechiseled/granite_dotted.png deleted file mode 100644 index 0b5799a5..00000000 Binary files a/public/textures/rechiseled/granite_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_dotted_connecting.png b/public/textures/rechiseled/granite_dotted_connecting.png deleted file mode 100644 index 0b5799a5..00000000 Binary files a/public/textures/rechiseled/granite_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_paving.png b/public/textures/rechiseled/granite_paving.png deleted file mode 100644 index e93f33aa..00000000 Binary files a/public/textures/rechiseled/granite_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_paving_connecting.png b/public/textures/rechiseled/granite_paving_connecting.png deleted file mode 100644 index e93f33aa..00000000 Binary files a/public/textures/rechiseled/granite_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_polished_connecting.png b/public/textures/rechiseled/granite_polished_connecting.png deleted file mode 100644 index 9fd4a5bc..00000000 Binary files a/public/textures/rechiseled/granite_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_rotated_bricks.png b/public/textures/rechiseled/granite_rotated_bricks.png deleted file mode 100644 index e08625e6..00000000 Binary files a/public/textures/rechiseled/granite_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_rotated_bricks_connecting.png b/public/textures/rechiseled/granite_rotated_bricks_connecting.png deleted file mode 100644 index e08625e6..00000000 Binary files a/public/textures/rechiseled/granite_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_squares.png b/public/textures/rechiseled/granite_squares.png deleted file mode 100644 index 31628bb9..00000000 Binary files a/public/textures/rechiseled/granite_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_squares_connecting.png b/public/textures/rechiseled/granite_squares_connecting.png deleted file mode 100644 index 31628bb9..00000000 Binary files a/public/textures/rechiseled/granite_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_tiles.png b/public/textures/rechiseled/granite_tiles.png deleted file mode 100644 index 42da999d..00000000 Binary files a/public/textures/rechiseled/granite_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_tiles_connecting.png b/public/textures/rechiseled/granite_tiles_connecting.png deleted file mode 100644 index 42da999d..00000000 Binary files a/public/textures/rechiseled/granite_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_wavy.png b/public/textures/rechiseled/granite_wavy.png deleted file mode 100644 index 29e6b4ec..00000000 Binary files a/public/textures/rechiseled/granite_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/granite_wavy_connecting.png b/public/textures/rechiseled/granite_wavy_connecting.png deleted file mode 100644 index 29e6b4ec..00000000 Binary files a/public/textures/rechiseled/granite_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_bordered.png b/public/textures/rechiseled/iron_block_bordered.png deleted file mode 100644 index 5bbb8282..00000000 Binary files a/public/textures/rechiseled/iron_block_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_bordered_connecting.png b/public/textures/rechiseled/iron_block_bordered_connecting.png deleted file mode 100644 index 5bbb8282..00000000 Binary files a/public/textures/rechiseled/iron_block_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_chiseled.png b/public/textures/rechiseled/iron_block_chiseled.png deleted file mode 100644 index f846d56c..00000000 Binary files a/public/textures/rechiseled/iron_block_chiseled.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_chiseled_connecting.png b/public/textures/rechiseled/iron_block_chiseled_connecting.png deleted file mode 100644 index f846d56c..00000000 Binary files a/public/textures/rechiseled/iron_block_chiseled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_connecting_connecting.png b/public/textures/rechiseled/iron_block_connecting_connecting.png deleted file mode 100644 index e97c4e04..00000000 Binary files a/public/textures/rechiseled/iron_block_connecting_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_framed.png b/public/textures/rechiseled/iron_block_framed.png deleted file mode 100644 index 6c138f78..00000000 Binary files a/public/textures/rechiseled/iron_block_framed.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_framed_connecting.png b/public/textures/rechiseled/iron_block_framed_connecting.png deleted file mode 100644 index 6c138f78..00000000 Binary files a/public/textures/rechiseled/iron_block_framed_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_gears.png b/public/textures/rechiseled/iron_block_gears.png deleted file mode 100644 index 6af2b405..00000000 Binary files a/public/textures/rechiseled/iron_block_gears.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_gears_connecting.png b/public/textures/rechiseled/iron_block_gears_connecting.png deleted file mode 100644 index 6af2b405..00000000 Binary files a/public/textures/rechiseled/iron_block_gears_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_lines.png b/public/textures/rechiseled/iron_block_lines.png deleted file mode 100644 index bd52dd74..00000000 Binary files a/public/textures/rechiseled/iron_block_lines.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_lines_connecting.png b/public/textures/rechiseled/iron_block_lines_connecting.png deleted file mode 100644 index bd52dd74..00000000 Binary files a/public/textures/rechiseled/iron_block_lines_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_patterned.png b/public/textures/rechiseled/iron_block_patterned.png deleted file mode 100644 index 2d3975ba..00000000 Binary files a/public/textures/rechiseled/iron_block_patterned.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_patterned_connecting.png b/public/textures/rechiseled/iron_block_patterned_connecting.png deleted file mode 100644 index 2d3975ba..00000000 Binary files a/public/textures/rechiseled/iron_block_patterned_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_pipes.png b/public/textures/rechiseled/iron_block_pipes.png deleted file mode 100644 index 297ce4aa..00000000 Binary files a/public/textures/rechiseled/iron_block_pipes.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_pipes_connecting.png b/public/textures/rechiseled/iron_block_pipes_connecting.png deleted file mode 100644 index 297ce4aa..00000000 Binary files a/public/textures/rechiseled/iron_block_pipes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_plated.png b/public/textures/rechiseled/iron_block_plated.png deleted file mode 100644 index fe610c84..00000000 Binary files a/public/textures/rechiseled/iron_block_plated.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_polished.png b/public/textures/rechiseled/iron_block_polished.png deleted file mode 100644 index 61416ded..00000000 Binary files a/public/textures/rechiseled/iron_block_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_polished_connecting.png b/public/textures/rechiseled/iron_block_polished_connecting.png deleted file mode 100644 index 61416ded..00000000 Binary files a/public/textures/rechiseled/iron_block_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_processed.png b/public/textures/rechiseled/iron_block_processed.png deleted file mode 100644 index 773a7798..00000000 Binary files a/public/textures/rechiseled/iron_block_processed.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_processed_connecting.png b/public/textures/rechiseled/iron_block_processed_connecting.png deleted file mode 100644 index 773a7798..00000000 Binary files a/public/textures/rechiseled/iron_block_processed_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_pulverized.png b/public/textures/rechiseled/iron_block_pulverized.png deleted file mode 100644 index b9da72b2..00000000 Binary files a/public/textures/rechiseled/iron_block_pulverized.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_reinforced.png b/public/textures/rechiseled/iron_block_reinforced.png deleted file mode 100644 index a5479eee..00000000 Binary files a/public/textures/rechiseled/iron_block_reinforced.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_sheets.png b/public/textures/rechiseled/iron_block_sheets.png deleted file mode 100644 index f96dcbe8..00000000 Binary files a/public/textures/rechiseled/iron_block_sheets.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_small_bricks.png b/public/textures/rechiseled/iron_block_small_bricks.png deleted file mode 100644 index 401f74b3..00000000 Binary files a/public/textures/rechiseled/iron_block_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_small_bricks_connecting.png b/public/textures/rechiseled/iron_block_small_bricks_connecting.png deleted file mode 100644 index 401f74b3..00000000 Binary files a/public/textures/rechiseled/iron_block_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/iron_block_smooth.png b/public/textures/rechiseled/iron_block_smooth.png deleted file mode 100644 index 408ba032..00000000 Binary files a/public/textures/rechiseled/iron_block_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_beams.png b/public/textures/rechiseled/jungle_planks_beams.png deleted file mode 100644 index 95cf4792..00000000 Binary files a/public/textures/rechiseled/jungle_planks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_beams_connecting.png b/public/textures/rechiseled/jungle_planks_beams_connecting.png deleted file mode 100644 index 95cf4792..00000000 Binary files a/public/textures/rechiseled/jungle_planks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_brick_pattern.png b/public/textures/rechiseled/jungle_planks_brick_pattern.png deleted file mode 100644 index dab43b24..00000000 Binary files a/public/textures/rechiseled/jungle_planks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_brick_pattern_connecting.png b/public/textures/rechiseled/jungle_planks_brick_pattern_connecting.png deleted file mode 100644 index dab43b24..00000000 Binary files a/public/textures/rechiseled/jungle_planks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_brick_paving.png b/public/textures/rechiseled/jungle_planks_brick_paving.png deleted file mode 100644 index e31cf2d1..00000000 Binary files a/public/textures/rechiseled/jungle_planks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_brick_paving_connecting.png b/public/textures/rechiseled/jungle_planks_brick_paving_connecting.png deleted file mode 100644 index e31cf2d1..00000000 Binary files a/public/textures/rechiseled/jungle_planks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_bricks.png b/public/textures/rechiseled/jungle_planks_bricks.png deleted file mode 100644 index f638b9c3..00000000 Binary files a/public/textures/rechiseled/jungle_planks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_bricks_connecting.png b/public/textures/rechiseled/jungle_planks_bricks_connecting.png deleted file mode 100644 index f638b9c3..00000000 Binary files a/public/textures/rechiseled/jungle_planks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_crate.png b/public/textures/rechiseled/jungle_planks_crate.png deleted file mode 100644 index f60dccfa..00000000 Binary files a/public/textures/rechiseled/jungle_planks_crate.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_crate_connecting.png b/public/textures/rechiseled/jungle_planks_crate_connecting.png deleted file mode 100644 index f60dccfa..00000000 Binary files a/public/textures/rechiseled/jungle_planks_crate_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_diagonal_stripes.png b/public/textures/rechiseled/jungle_planks_diagonal_stripes.png deleted file mode 100644 index 0221e9dd..00000000 Binary files a/public/textures/rechiseled/jungle_planks_diagonal_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_diagonal_stripes_connecting.png b/public/textures/rechiseled/jungle_planks_diagonal_stripes_connecting.png deleted file mode 100644 index 0221e9dd..00000000 Binary files a/public/textures/rechiseled/jungle_planks_diagonal_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_diagonal_tiles.png b/public/textures/rechiseled/jungle_planks_diagonal_tiles.png deleted file mode 100644 index e953ebf8..00000000 Binary files a/public/textures/rechiseled/jungle_planks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_diagonal_tiles_connecting.png b/public/textures/rechiseled/jungle_planks_diagonal_tiles_connecting.png deleted file mode 100644 index e953ebf8..00000000 Binary files a/public/textures/rechiseled/jungle_planks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_dotted.png b/public/textures/rechiseled/jungle_planks_dotted.png deleted file mode 100644 index ca060ee9..00000000 Binary files a/public/textures/rechiseled/jungle_planks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_dotted_connecting.png b/public/textures/rechiseled/jungle_planks_dotted_connecting.png deleted file mode 100644 index ca060ee9..00000000 Binary files a/public/textures/rechiseled/jungle_planks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_flooring.png b/public/textures/rechiseled/jungle_planks_flooring.png deleted file mode 100644 index 8fb36c51..00000000 Binary files a/public/textures/rechiseled/jungle_planks_flooring.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_flooring_connecting.png b/public/textures/rechiseled/jungle_planks_flooring_connecting.png deleted file mode 100644 index 8fb36c51..00000000 Binary files a/public/textures/rechiseled/jungle_planks_flooring_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_large_tiles.png b/public/textures/rechiseled/jungle_planks_large_tiles.png deleted file mode 100644 index a9a6baa9..00000000 Binary files a/public/textures/rechiseled/jungle_planks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_large_tiles_connecting.png b/public/textures/rechiseled/jungle_planks_large_tiles_connecting.png deleted file mode 100644 index a9a6baa9..00000000 Binary files a/public/textures/rechiseled/jungle_planks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_mosaic.png b/public/textures/rechiseled/jungle_planks_mosaic.png deleted file mode 100644 index 23295e6d..00000000 Binary files a/public/textures/rechiseled/jungle_planks_mosaic.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_pattern.png b/public/textures/rechiseled/jungle_planks_pattern.png deleted file mode 100644 index 7b9466de..00000000 Binary files a/public/textures/rechiseled/jungle_planks_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_pattern_connecting.png b/public/textures/rechiseled/jungle_planks_pattern_connecting.png deleted file mode 100644 index 7b9466de..00000000 Binary files a/public/textures/rechiseled/jungle_planks_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_rotated_bricks.png b/public/textures/rechiseled/jungle_planks_rotated_bricks.png deleted file mode 100644 index da8e026a..00000000 Binary files a/public/textures/rechiseled/jungle_planks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_rotated_bricks_connecting.png b/public/textures/rechiseled/jungle_planks_rotated_bricks_connecting.png deleted file mode 100644 index da8e026a..00000000 Binary files a/public/textures/rechiseled/jungle_planks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_small_bricks.png b/public/textures/rechiseled/jungle_planks_small_bricks.png deleted file mode 100644 index fde7bf7a..00000000 Binary files a/public/textures/rechiseled/jungle_planks_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_small_bricks_connecting.png b/public/textures/rechiseled/jungle_planks_small_bricks_connecting.png deleted file mode 100644 index fde7bf7a..00000000 Binary files a/public/textures/rechiseled/jungle_planks_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_small_tiles.png b/public/textures/rechiseled/jungle_planks_small_tiles.png deleted file mode 100644 index c2322f96..00000000 Binary files a/public/textures/rechiseled/jungle_planks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_small_tiles_connecting.png b/public/textures/rechiseled/jungle_planks_small_tiles_connecting.png deleted file mode 100644 index c2322f96..00000000 Binary files a/public/textures/rechiseled/jungle_planks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_squares.png b/public/textures/rechiseled/jungle_planks_squares.png deleted file mode 100644 index 040c1e6f..00000000 Binary files a/public/textures/rechiseled/jungle_planks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_squares_connecting.png b/public/textures/rechiseled/jungle_planks_squares_connecting.png deleted file mode 100644 index 040c1e6f..00000000 Binary files a/public/textures/rechiseled/jungle_planks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_tiles.png b/public/textures/rechiseled/jungle_planks_tiles.png deleted file mode 100644 index c1215ad7..00000000 Binary files a/public/textures/rechiseled/jungle_planks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_tiles_connecting.png b/public/textures/rechiseled/jungle_planks_tiles_connecting.png deleted file mode 100644 index c1215ad7..00000000 Binary files a/public/textures/rechiseled/jungle_planks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_wavy.png b/public/textures/rechiseled/jungle_planks_wavy.png deleted file mode 100644 index 00327921..00000000 Binary files a/public/textures/rechiseled/jungle_planks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_wavy_connecting.png b/public/textures/rechiseled/jungle_planks_wavy_connecting.png deleted file mode 100644 index 00327921..00000000 Binary files a/public/textures/rechiseled/jungle_planks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_woven.png b/public/textures/rechiseled/jungle_planks_woven.png deleted file mode 100644 index 40cab938..00000000 Binary files a/public/textures/rechiseled/jungle_planks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/jungle_planks_woven_connecting.png b/public/textures/rechiseled/jungle_planks_woven_connecting.png deleted file mode 100644 index 40cab938..00000000 Binary files a/public/textures/rechiseled/jungle_planks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_bordered.png b/public/textures/rechiseled/lapis_block_bordered.png deleted file mode 100644 index 6f11c24f..00000000 Binary files a/public/textures/rechiseled/lapis_block_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_bordered_connecting.png b/public/textures/rechiseled/lapis_block_bordered_connecting.png deleted file mode 100644 index 6f11c24f..00000000 Binary files a/public/textures/rechiseled/lapis_block_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_chiseled.png b/public/textures/rechiseled/lapis_block_chiseled.png deleted file mode 100644 index ac1bbadd..00000000 Binary files a/public/textures/rechiseled/lapis_block_chiseled.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_chiseled_connecting.png b/public/textures/rechiseled/lapis_block_chiseled_connecting.png deleted file mode 100644 index ac1bbadd..00000000 Binary files a/public/textures/rechiseled/lapis_block_chiseled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_cobbled.png b/public/textures/rechiseled/lapis_block_cobbled.png deleted file mode 100644 index 92f567e2..00000000 Binary files a/public/textures/rechiseled/lapis_block_cobbled.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_connecting_connecting.png b/public/textures/rechiseled/lapis_block_connecting_connecting.png deleted file mode 100644 index a4208b4d..00000000 Binary files a/public/textures/rechiseled/lapis_block_connecting_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_crushed.png b/public/textures/rechiseled/lapis_block_crushed.png deleted file mode 100644 index 7ebec5c1..00000000 Binary files a/public/textures/rechiseled/lapis_block_crushed.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_decorated.png b/public/textures/rechiseled/lapis_block_decorated.png deleted file mode 100644 index aca5c97d..00000000 Binary files a/public/textures/rechiseled/lapis_block_decorated.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_decorated_connecting.png b/public/textures/rechiseled/lapis_block_decorated_connecting.png deleted file mode 100644 index aca5c97d..00000000 Binary files a/public/textures/rechiseled/lapis_block_decorated_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_glossy.png b/public/textures/rechiseled/lapis_block_glossy.png deleted file mode 100644 index c0fcdd0f..00000000 Binary files a/public/textures/rechiseled/lapis_block_glossy.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_glossy_connecting.png b/public/textures/rechiseled/lapis_block_glossy_connecting.png deleted file mode 100644 index c0fcdd0f..00000000 Binary files a/public/textures/rechiseled/lapis_block_glossy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_inverted_tiles.png b/public/textures/rechiseled/lapis_block_inverted_tiles.png deleted file mode 100644 index 69407bfd..00000000 Binary files a/public/textures/rechiseled/lapis_block_inverted_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_inverted_tiles_connecting.png b/public/textures/rechiseled/lapis_block_inverted_tiles_connecting.png deleted file mode 100644 index 69407bfd..00000000 Binary files a/public/textures/rechiseled/lapis_block_inverted_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_mosaic.png b/public/textures/rechiseled/lapis_block_mosaic.png deleted file mode 100644 index dfec23b4..00000000 Binary files a/public/textures/rechiseled/lapis_block_mosaic.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_mosaic_connecting.png b/public/textures/rechiseled/lapis_block_mosaic_connecting.png deleted file mode 100644 index dfec23b4..00000000 Binary files a/public/textures/rechiseled/lapis_block_mosaic_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_pattern.png b/public/textures/rechiseled/lapis_block_pattern.png deleted file mode 100644 index 3b6006f0..00000000 Binary files a/public/textures/rechiseled/lapis_block_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_pattern_connecting.png b/public/textures/rechiseled/lapis_block_pattern_connecting.png deleted file mode 100644 index 3b6006f0..00000000 Binary files a/public/textures/rechiseled/lapis_block_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_pillar.png b/public/textures/rechiseled/lapis_block_pillar.png deleted file mode 100644 index 7121a015..00000000 Binary files a/public/textures/rechiseled/lapis_block_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_pillar_connecting.png b/public/textures/rechiseled/lapis_block_pillar_connecting.png deleted file mode 100644 index 7121a015..00000000 Binary files a/public/textures/rechiseled/lapis_block_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_polished.png b/public/textures/rechiseled/lapis_block_polished.png deleted file mode 100644 index ef2f675f..00000000 Binary files a/public/textures/rechiseled/lapis_block_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_polished_connecting.png b/public/textures/rechiseled/lapis_block_polished_connecting.png deleted file mode 100644 index ef2f675f..00000000 Binary files a/public/textures/rechiseled/lapis_block_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_scales.png b/public/textures/rechiseled/lapis_block_scales.png deleted file mode 100644 index c5e7b19e..00000000 Binary files a/public/textures/rechiseled/lapis_block_scales.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_scales_connecting.png b/public/textures/rechiseled/lapis_block_scales_connecting.png deleted file mode 100644 index c5e7b19e..00000000 Binary files a/public/textures/rechiseled/lapis_block_scales_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_small_tiles.png b/public/textures/rechiseled/lapis_block_small_tiles.png deleted file mode 100644 index c4ec9dae..00000000 Binary files a/public/textures/rechiseled/lapis_block_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_small_tiles_connecting.png b/public/textures/rechiseled/lapis_block_small_tiles_connecting.png deleted file mode 100644 index c4ec9dae..00000000 Binary files a/public/textures/rechiseled/lapis_block_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_smooth.png b/public/textures/rechiseled/lapis_block_smooth.png deleted file mode 100644 index 6b43c930..00000000 Binary files a/public/textures/rechiseled/lapis_block_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_stripes.png b/public/textures/rechiseled/lapis_block_stripes.png deleted file mode 100644 index 6123b234..00000000 Binary files a/public/textures/rechiseled/lapis_block_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_stripes_connecting.png b/public/textures/rechiseled/lapis_block_stripes_connecting.png deleted file mode 100644 index 6123b234..00000000 Binary files a/public/textures/rechiseled/lapis_block_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_swirling.png b/public/textures/rechiseled/lapis_block_swirling.png deleted file mode 100644 index 9556f633..00000000 Binary files a/public/textures/rechiseled/lapis_block_swirling.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_tiles.png b/public/textures/rechiseled/lapis_block_tiles.png deleted file mode 100644 index f4e558be..00000000 Binary files a/public/textures/rechiseled/lapis_block_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/lapis_block_tiles_connecting.png b/public/textures/rechiseled/lapis_block_tiles_connecting.png deleted file mode 100644 index f4e558be..00000000 Binary files a/public/textures/rechiseled/lapis_block_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_beams.png b/public/textures/rechiseled/mangrove_planks_beams.png deleted file mode 100644 index 23942065..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_beams_connecting.png b/public/textures/rechiseled/mangrove_planks_beams_connecting.png deleted file mode 100644 index 23942065..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_brick_pattern.png b/public/textures/rechiseled/mangrove_planks_brick_pattern.png deleted file mode 100644 index 8b10dbfc..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_brick_pattern_connecting.png b/public/textures/rechiseled/mangrove_planks_brick_pattern_connecting.png deleted file mode 100644 index 8b10dbfc..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_brick_paving.png b/public/textures/rechiseled/mangrove_planks_brick_paving.png deleted file mode 100644 index 34a2c87a..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_brick_paving_connecting.png b/public/textures/rechiseled/mangrove_planks_brick_paving_connecting.png deleted file mode 100644 index 34a2c87a..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_bricks.png b/public/textures/rechiseled/mangrove_planks_bricks.png deleted file mode 100644 index a0946c04..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_bricks_connecting.png b/public/textures/rechiseled/mangrove_planks_bricks_connecting.png deleted file mode 100644 index a0946c04..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_crate.png b/public/textures/rechiseled/mangrove_planks_crate.png deleted file mode 100644 index 4defd857..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_crate.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_crate_connecting.png b/public/textures/rechiseled/mangrove_planks_crate_connecting.png deleted file mode 100644 index 4defd857..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_crate_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_diagonal_stripes.png b/public/textures/rechiseled/mangrove_planks_diagonal_stripes.png deleted file mode 100644 index 9c3e2294..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_diagonal_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_diagonal_stripes_connecting.png b/public/textures/rechiseled/mangrove_planks_diagonal_stripes_connecting.png deleted file mode 100644 index 9c3e2294..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_diagonal_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_diagonal_tiles.png b/public/textures/rechiseled/mangrove_planks_diagonal_tiles.png deleted file mode 100644 index bf4ac150..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_diagonal_tiles_connecting.png b/public/textures/rechiseled/mangrove_planks_diagonal_tiles_connecting.png deleted file mode 100644 index bf4ac150..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_dotted.png b/public/textures/rechiseled/mangrove_planks_dotted.png deleted file mode 100644 index 802ac5aa..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_dotted_connecting.png b/public/textures/rechiseled/mangrove_planks_dotted_connecting.png deleted file mode 100644 index 802ac5aa..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_flooring.png b/public/textures/rechiseled/mangrove_planks_flooring.png deleted file mode 100644 index 1a8f8ecf..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_flooring.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_flooring_connecting.png b/public/textures/rechiseled/mangrove_planks_flooring_connecting.png deleted file mode 100644 index 1a8f8ecf..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_flooring_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_large_tiles.png b/public/textures/rechiseled/mangrove_planks_large_tiles.png deleted file mode 100644 index d7e6528c..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_large_tiles_connecting.png b/public/textures/rechiseled/mangrove_planks_large_tiles_connecting.png deleted file mode 100644 index d7e6528c..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_mosaic.png b/public/textures/rechiseled/mangrove_planks_mosaic.png deleted file mode 100644 index bcd503d2..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_mosaic.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_pattern.png b/public/textures/rechiseled/mangrove_planks_pattern.png deleted file mode 100644 index c6f22a58..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_pattern_connecting.png b/public/textures/rechiseled/mangrove_planks_pattern_connecting.png deleted file mode 100644 index c6f22a58..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_rotated_bricks.png b/public/textures/rechiseled/mangrove_planks_rotated_bricks.png deleted file mode 100644 index 5fca2ee4..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_rotated_bricks_connecting.png b/public/textures/rechiseled/mangrove_planks_rotated_bricks_connecting.png deleted file mode 100644 index 5fca2ee4..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_small_bricks.png b/public/textures/rechiseled/mangrove_planks_small_bricks.png deleted file mode 100644 index d5f486d9..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_small_bricks_connecting.png b/public/textures/rechiseled/mangrove_planks_small_bricks_connecting.png deleted file mode 100644 index d5f486d9..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_small_tiles.png b/public/textures/rechiseled/mangrove_planks_small_tiles.png deleted file mode 100644 index 1e1fc8e0..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_small_tiles_connecting.png b/public/textures/rechiseled/mangrove_planks_small_tiles_connecting.png deleted file mode 100644 index 1e1fc8e0..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_squares.png b/public/textures/rechiseled/mangrove_planks_squares.png deleted file mode 100644 index 1cac6ab8..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_squares_connecting.png b/public/textures/rechiseled/mangrove_planks_squares_connecting.png deleted file mode 100644 index 1cac6ab8..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_tiles.png b/public/textures/rechiseled/mangrove_planks_tiles.png deleted file mode 100644 index f6951d41..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_tiles_connecting.png b/public/textures/rechiseled/mangrove_planks_tiles_connecting.png deleted file mode 100644 index f6951d41..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_wavy.png b/public/textures/rechiseled/mangrove_planks_wavy.png deleted file mode 100644 index c97c279c..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_wavy_connecting.png b/public/textures/rechiseled/mangrove_planks_wavy_connecting.png deleted file mode 100644 index c97c279c..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_woven.png b/public/textures/rechiseled/mangrove_planks_woven.png deleted file mode 100644 index 8a12e20e..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/mangrove_planks_woven_connecting.png b/public/textures/rechiseled/mangrove_planks_woven_connecting.png deleted file mode 100644 index 8a12e20e..00000000 Binary files a/public/textures/rechiseled/mangrove_planks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_beams.png b/public/textures/rechiseled/mossy_cobblestone_beams.png deleted file mode 100644 index 9cadf73e..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_beams_connecting.png b/public/textures/rechiseled/mossy_cobblestone_beams_connecting.png deleted file mode 100644 index 9cadf73e..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_dented.png b/public/textures/rechiseled/mossy_cobblestone_dented.png deleted file mode 100644 index 93e7ab7f..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_dented.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_dented_connecting.png b/public/textures/rechiseled/mossy_cobblestone_dented_connecting.png deleted file mode 100644 index 93e7ab7f..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_dented_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_inverted_dented.png b/public/textures/rechiseled/mossy_cobblestone_inverted_dented.png deleted file mode 100644 index 384cd542..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_inverted_dented.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_inverted_dented_connecting.png b/public/textures/rechiseled/mossy_cobblestone_inverted_dented_connecting.png deleted file mode 100644 index 384cd542..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_inverted_dented_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_paving.png b/public/textures/rechiseled/mossy_cobblestone_paving.png deleted file mode 100644 index 33260cea..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_paving_connecting.png b/public/textures/rechiseled/mossy_cobblestone_paving_connecting.png deleted file mode 100644 index 33260cea..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_small_tiles.png b/public/textures/rechiseled/mossy_cobblestone_small_tiles.png deleted file mode 100644 index 27220786..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_small_tiles_connecting.png b/public/textures/rechiseled/mossy_cobblestone_small_tiles_connecting.png deleted file mode 100644 index 27220786..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_squares.png b/public/textures/rechiseled/mossy_cobblestone_squares.png deleted file mode 100644 index 3dcca37e..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_squares_connecting.png b/public/textures/rechiseled/mossy_cobblestone_squares_connecting.png deleted file mode 100644 index 3dcca37e..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_stripes.png b/public/textures/rechiseled/mossy_cobblestone_stripes.png deleted file mode 100644 index 214e643d..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_stripes_connecting.png b/public/textures/rechiseled/mossy_cobblestone_stripes_connecting.png deleted file mode 100644 index 214e643d..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_worn_stripes.png b/public/textures/rechiseled/mossy_cobblestone_worn_stripes.png deleted file mode 100644 index 42c9738e..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_worn_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/mossy_cobblestone_worn_stripes_connecting.png b/public/textures/rechiseled/mossy_cobblestone_worn_stripes_connecting.png deleted file mode 100644 index 42c9738e..00000000 Binary files a/public/textures/rechiseled/mossy_cobblestone_worn_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_beams.png b/public/textures/rechiseled/nether_bricks_beams.png deleted file mode 100644 index 3b38f049..00000000 Binary files a/public/textures/rechiseled/nether_bricks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_beams_connecting.png b/public/textures/rechiseled/nether_bricks_beams_connecting.png deleted file mode 100644 index 3b38f049..00000000 Binary files a/public/textures/rechiseled/nether_bricks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_brick_pattern.png b/public/textures/rechiseled/nether_bricks_brick_pattern.png deleted file mode 100644 index 9162eb4a..00000000 Binary files a/public/textures/rechiseled/nether_bricks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_brick_pattern_connecting.png b/public/textures/rechiseled/nether_bricks_brick_pattern_connecting.png deleted file mode 100644 index 9162eb4a..00000000 Binary files a/public/textures/rechiseled/nether_bricks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_brick_paving.png b/public/textures/rechiseled/nether_bricks_brick_paving.png deleted file mode 100644 index adb54f69..00000000 Binary files a/public/textures/rechiseled/nether_bricks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_brick_paving_connecting.png b/public/textures/rechiseled/nether_bricks_brick_paving_connecting.png deleted file mode 100644 index adb54f69..00000000 Binary files a/public/textures/rechiseled/nether_bricks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_chiseled_squares.png b/public/textures/rechiseled/nether_bricks_chiseled_squares.png deleted file mode 100644 index 7eb966b2..00000000 Binary files a/public/textures/rechiseled/nether_bricks_chiseled_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_chiseled_squares_connecting.png b/public/textures/rechiseled/nether_bricks_chiseled_squares_connecting.png deleted file mode 100644 index 7eb966b2..00000000 Binary files a/public/textures/rechiseled/nether_bricks_chiseled_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_diagonal_bricks.png b/public/textures/rechiseled/nether_bricks_diagonal_bricks.png deleted file mode 100644 index 13b62a8a..00000000 Binary files a/public/textures/rechiseled/nether_bricks_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_diagonal_bricks_connecting.png b/public/textures/rechiseled/nether_bricks_diagonal_bricks_connecting.png deleted file mode 100644 index 13b62a8a..00000000 Binary files a/public/textures/rechiseled/nether_bricks_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_large_bricks.png b/public/textures/rechiseled/nether_bricks_large_bricks.png deleted file mode 100644 index 48e81ef3..00000000 Binary files a/public/textures/rechiseled/nether_bricks_large_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_large_bricks_connecting.png b/public/textures/rechiseled/nether_bricks_large_bricks_connecting.png deleted file mode 100644 index 48e81ef3..00000000 Binary files a/public/textures/rechiseled/nether_bricks_large_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_large_tiles.png b/public/textures/rechiseled/nether_bricks_large_tiles.png deleted file mode 100644 index 515b82ca..00000000 Binary files a/public/textures/rechiseled/nether_bricks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_large_tiles_connecting.png b/public/textures/rechiseled/nether_bricks_large_tiles_connecting.png deleted file mode 100644 index 515b82ca..00000000 Binary files a/public/textures/rechiseled/nether_bricks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_rotated_bricks.png b/public/textures/rechiseled/nether_bricks_rotated_bricks.png deleted file mode 100644 index 441b589d..00000000 Binary files a/public/textures/rechiseled/nether_bricks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_rotated_bricks_connecting.png b/public/textures/rechiseled/nether_bricks_rotated_bricks_connecting.png deleted file mode 100644 index 441b589d..00000000 Binary files a/public/textures/rechiseled/nether_bricks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_small_tiles.png b/public/textures/rechiseled/nether_bricks_small_tiles.png deleted file mode 100644 index 7930b887..00000000 Binary files a/public/textures/rechiseled/nether_bricks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_small_tiles_connecting.png b/public/textures/rechiseled/nether_bricks_small_tiles_connecting.png deleted file mode 100644 index 7930b887..00000000 Binary files a/public/textures/rechiseled/nether_bricks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_smooth.png b/public/textures/rechiseled/nether_bricks_smooth.png deleted file mode 100644 index 8760e101..00000000 Binary files a/public/textures/rechiseled/nether_bricks_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_smooth_connecting.png b/public/textures/rechiseled/nether_bricks_smooth_connecting.png deleted file mode 100644 index 8760e101..00000000 Binary files a/public/textures/rechiseled/nether_bricks_smooth_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_squares.png b/public/textures/rechiseled/nether_bricks_squares.png deleted file mode 100644 index 74768190..00000000 Binary files a/public/textures/rechiseled/nether_bricks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_squares_connecting.png b/public/textures/rechiseled/nether_bricks_squares_connecting.png deleted file mode 100644 index 74768190..00000000 Binary files a/public/textures/rechiseled/nether_bricks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_tiles.png b/public/textures/rechiseled/nether_bricks_tiles.png deleted file mode 100644 index 84a77a0a..00000000 Binary files a/public/textures/rechiseled/nether_bricks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/nether_bricks_tiles_connecting.png b/public/textures/rechiseled/nether_bricks_tiles_connecting.png deleted file mode 100644 index 84a77a0a..00000000 Binary files a/public/textures/rechiseled/nether_bricks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_beams.png b/public/textures/rechiseled/netherite_block_beams.png deleted file mode 100644 index 233397be..00000000 Binary files a/public/textures/rechiseled/netherite_block_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_beams_connecting.png b/public/textures/rechiseled/netherite_block_beams_connecting.png deleted file mode 100644 index 233397be..00000000 Binary files a/public/textures/rechiseled/netherite_block_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_bricks.png b/public/textures/rechiseled/netherite_block_bricks.png deleted file mode 100644 index abedd69e..00000000 Binary files a/public/textures/rechiseled/netherite_block_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_bricks_connecting.png b/public/textures/rechiseled/netherite_block_bricks_connecting.png deleted file mode 100644 index abedd69e..00000000 Binary files a/public/textures/rechiseled/netherite_block_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_chiseled.png b/public/textures/rechiseled/netherite_block_chiseled.png deleted file mode 100644 index 848ab8d8..00000000 Binary files a/public/textures/rechiseled/netherite_block_chiseled.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_chiseled_connecting.png b/public/textures/rechiseled/netherite_block_chiseled_connecting.png deleted file mode 100644 index 848ab8d8..00000000 Binary files a/public/textures/rechiseled/netherite_block_chiseled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_compacted.png b/public/textures/rechiseled/netherite_block_compacted.png deleted file mode 100644 index 4b1fc66e..00000000 Binary files a/public/textures/rechiseled/netherite_block_compacted.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_compacted_connecting.png b/public/textures/rechiseled/netherite_block_compacted_connecting.png deleted file mode 100644 index 4b1fc66e..00000000 Binary files a/public/textures/rechiseled/netherite_block_compacted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_decorated.png b/public/textures/rechiseled/netherite_block_decorated.png deleted file mode 100644 index 05890edd..00000000 Binary files a/public/textures/rechiseled/netherite_block_decorated.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_decorated_connecting.png b/public/textures/rechiseled/netherite_block_decorated_connecting.png deleted file mode 100644 index 05890edd..00000000 Binary files a/public/textures/rechiseled/netherite_block_decorated_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_diagonal_tiles.png b/public/textures/rechiseled/netherite_block_diagonal_tiles.png deleted file mode 100644 index ea389173..00000000 Binary files a/public/textures/rechiseled/netherite_block_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_diagonal_tiles_connecting.png b/public/textures/rechiseled/netherite_block_diagonal_tiles_connecting.png deleted file mode 100644 index ea389173..00000000 Binary files a/public/textures/rechiseled/netherite_block_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_indented.png b/public/textures/rechiseled/netherite_block_indented.png deleted file mode 100644 index 7bf82551..00000000 Binary files a/public/textures/rechiseled/netherite_block_indented.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_indented_connecting.png b/public/textures/rechiseled/netherite_block_indented_connecting.png deleted file mode 100644 index 7bf82551..00000000 Binary files a/public/textures/rechiseled/netherite_block_indented_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_meteoric.png b/public/textures/rechiseled/netherite_block_meteoric.png deleted file mode 100644 index 8c0be026..00000000 Binary files a/public/textures/rechiseled/netherite_block_meteoric.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_patterned.png b/public/textures/rechiseled/netherite_block_patterned.png deleted file mode 100644 index b9d9a5d7..00000000 Binary files a/public/textures/rechiseled/netherite_block_patterned.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_patterned_connecting.png b/public/textures/rechiseled/netherite_block_patterned_connecting.png deleted file mode 100644 index b9d9a5d7..00000000 Binary files a/public/textures/rechiseled/netherite_block_patterned_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_pillar.png b/public/textures/rechiseled/netherite_block_pillar.png deleted file mode 100644 index ac3cb891..00000000 Binary files a/public/textures/rechiseled/netherite_block_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_pillar_connecting.png b/public/textures/rechiseled/netherite_block_pillar_connecting.png deleted file mode 100644 index ac3cb891..00000000 Binary files a/public/textures/rechiseled/netherite_block_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_small_tiles.png b/public/textures/rechiseled/netherite_block_small_tiles.png deleted file mode 100644 index bfd51047..00000000 Binary files a/public/textures/rechiseled/netherite_block_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_small_tiles_connecting.png b/public/textures/rechiseled/netherite_block_small_tiles_connecting.png deleted file mode 100644 index bfd51047..00000000 Binary files a/public/textures/rechiseled/netherite_block_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherite_block_smooth.png b/public/textures/rechiseled/netherite_block_smooth.png deleted file mode 100644 index 7cc73021..00000000 Binary files a/public/textures/rechiseled/netherite_block_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_beams.png b/public/textures/rechiseled/netherrack_beams.png deleted file mode 100644 index 52663e19..00000000 Binary files a/public/textures/rechiseled/netherrack_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_beams_connecting.png b/public/textures/rechiseled/netherrack_beams_connecting.png deleted file mode 100644 index 52663e19..00000000 Binary files a/public/textures/rechiseled/netherrack_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_brick_pattern.png b/public/textures/rechiseled/netherrack_brick_pattern.png deleted file mode 100644 index 71f420ff..00000000 Binary files a/public/textures/rechiseled/netherrack_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_brick_pattern_connecting.png b/public/textures/rechiseled/netherrack_brick_pattern_connecting.png deleted file mode 100644 index 71f420ff..00000000 Binary files a/public/textures/rechiseled/netherrack_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_brick_paving.png b/public/textures/rechiseled/netherrack_brick_paving.png deleted file mode 100644 index d0f68187..00000000 Binary files a/public/textures/rechiseled/netherrack_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_brick_paving_connecting.png b/public/textures/rechiseled/netherrack_brick_paving_connecting.png deleted file mode 100644 index d0f68187..00000000 Binary files a/public/textures/rechiseled/netherrack_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_bricks.png b/public/textures/rechiseled/netherrack_bricks.png deleted file mode 100644 index c0a4f8ee..00000000 Binary files a/public/textures/rechiseled/netherrack_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_bricks_connecting.png b/public/textures/rechiseled/netherrack_bricks_connecting.png deleted file mode 100644 index c0a4f8ee..00000000 Binary files a/public/textures/rechiseled/netherrack_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_dented.png b/public/textures/rechiseled/netherrack_dented.png deleted file mode 100644 index 84d82759..00000000 Binary files a/public/textures/rechiseled/netherrack_dented.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_dented_connecting.png b/public/textures/rechiseled/netherrack_dented_connecting.png deleted file mode 100644 index 84d82759..00000000 Binary files a/public/textures/rechiseled/netherrack_dented_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_rotated_bricks.png b/public/textures/rechiseled/netherrack_rotated_bricks.png deleted file mode 100644 index a4e7a517..00000000 Binary files a/public/textures/rechiseled/netherrack_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_rotated_bricks_connecting.png b/public/textures/rechiseled/netherrack_rotated_bricks_connecting.png deleted file mode 100644 index a4e7a517..00000000 Binary files a/public/textures/rechiseled/netherrack_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_small_tiles.png b/public/textures/rechiseled/netherrack_small_tiles.png deleted file mode 100644 index 08ac3925..00000000 Binary files a/public/textures/rechiseled/netherrack_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_small_tiles_connecting.png b/public/textures/rechiseled/netherrack_small_tiles_connecting.png deleted file mode 100644 index 08ac3925..00000000 Binary files a/public/textures/rechiseled/netherrack_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_stripes.png b/public/textures/rechiseled/netherrack_stripes.png deleted file mode 100644 index c241cc07..00000000 Binary files a/public/textures/rechiseled/netherrack_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_stripes_connecting.png b/public/textures/rechiseled/netherrack_stripes_connecting.png deleted file mode 100644 index c241cc07..00000000 Binary files a/public/textures/rechiseled/netherrack_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_tiles.png b/public/textures/rechiseled/netherrack_tiles.png deleted file mode 100644 index bfbf11fc..00000000 Binary files a/public/textures/rechiseled/netherrack_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/netherrack_tiles_connecting.png b/public/textures/rechiseled/netherrack_tiles_connecting.png deleted file mode 100644 index bfbf11fc..00000000 Binary files a/public/textures/rechiseled/netherrack_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_beams.png b/public/textures/rechiseled/oak_planks_beams.png deleted file mode 100644 index f924c1fd..00000000 Binary files a/public/textures/rechiseled/oak_planks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_beams_connecting.png b/public/textures/rechiseled/oak_planks_beams_connecting.png deleted file mode 100644 index f924c1fd..00000000 Binary files a/public/textures/rechiseled/oak_planks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_brick_pattern.png b/public/textures/rechiseled/oak_planks_brick_pattern.png deleted file mode 100644 index 80a04260..00000000 Binary files a/public/textures/rechiseled/oak_planks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_brick_pattern_connecting.png b/public/textures/rechiseled/oak_planks_brick_pattern_connecting.png deleted file mode 100644 index 80a04260..00000000 Binary files a/public/textures/rechiseled/oak_planks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_brick_paving.png b/public/textures/rechiseled/oak_planks_brick_paving.png deleted file mode 100644 index 694547b4..00000000 Binary files a/public/textures/rechiseled/oak_planks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_brick_paving_connecting.png b/public/textures/rechiseled/oak_planks_brick_paving_connecting.png deleted file mode 100644 index 694547b4..00000000 Binary files a/public/textures/rechiseled/oak_planks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_bricks.png b/public/textures/rechiseled/oak_planks_bricks.png deleted file mode 100644 index 611440e7..00000000 Binary files a/public/textures/rechiseled/oak_planks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_bricks_connecting.png b/public/textures/rechiseled/oak_planks_bricks_connecting.png deleted file mode 100644 index 611440e7..00000000 Binary files a/public/textures/rechiseled/oak_planks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_crate.png b/public/textures/rechiseled/oak_planks_crate.png deleted file mode 100644 index 3dff7fe9..00000000 Binary files a/public/textures/rechiseled/oak_planks_crate.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_crate_connecting.png b/public/textures/rechiseled/oak_planks_crate_connecting.png deleted file mode 100644 index 3dff7fe9..00000000 Binary files a/public/textures/rechiseled/oak_planks_crate_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_diagonal_stripes.png b/public/textures/rechiseled/oak_planks_diagonal_stripes.png deleted file mode 100644 index bb9e7700..00000000 Binary files a/public/textures/rechiseled/oak_planks_diagonal_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_diagonal_stripes_connecting.png b/public/textures/rechiseled/oak_planks_diagonal_stripes_connecting.png deleted file mode 100644 index bb9e7700..00000000 Binary files a/public/textures/rechiseled/oak_planks_diagonal_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_diagonal_tiles.png b/public/textures/rechiseled/oak_planks_diagonal_tiles.png deleted file mode 100644 index d02a0247..00000000 Binary files a/public/textures/rechiseled/oak_planks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_diagonal_tiles_connecting.png b/public/textures/rechiseled/oak_planks_diagonal_tiles_connecting.png deleted file mode 100644 index d02a0247..00000000 Binary files a/public/textures/rechiseled/oak_planks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_dotted.png b/public/textures/rechiseled/oak_planks_dotted.png deleted file mode 100644 index 972391b7..00000000 Binary files a/public/textures/rechiseled/oak_planks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_dotted_connecting.png b/public/textures/rechiseled/oak_planks_dotted_connecting.png deleted file mode 100644 index 972391b7..00000000 Binary files a/public/textures/rechiseled/oak_planks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_flooring.png b/public/textures/rechiseled/oak_planks_flooring.png deleted file mode 100644 index 0ebee18c..00000000 Binary files a/public/textures/rechiseled/oak_planks_flooring.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_flooring_connecting.png b/public/textures/rechiseled/oak_planks_flooring_connecting.png deleted file mode 100644 index 0ebee18c..00000000 Binary files a/public/textures/rechiseled/oak_planks_flooring_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_large_tiles.png b/public/textures/rechiseled/oak_planks_large_tiles.png deleted file mode 100644 index 7c10d6de..00000000 Binary files a/public/textures/rechiseled/oak_planks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_large_tiles_connecting.png b/public/textures/rechiseled/oak_planks_large_tiles_connecting.png deleted file mode 100644 index 7c10d6de..00000000 Binary files a/public/textures/rechiseled/oak_planks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_mosaic.png b/public/textures/rechiseled/oak_planks_mosaic.png deleted file mode 100644 index 101f4a42..00000000 Binary files a/public/textures/rechiseled/oak_planks_mosaic.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_pattern.png b/public/textures/rechiseled/oak_planks_pattern.png deleted file mode 100644 index 56b243cd..00000000 Binary files a/public/textures/rechiseled/oak_planks_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_pattern_connecting.png b/public/textures/rechiseled/oak_planks_pattern_connecting.png deleted file mode 100644 index 56b243cd..00000000 Binary files a/public/textures/rechiseled/oak_planks_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_rotated_bricks.png b/public/textures/rechiseled/oak_planks_rotated_bricks.png deleted file mode 100644 index 92b1ec26..00000000 Binary files a/public/textures/rechiseled/oak_planks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_rotated_bricks_connecting.png b/public/textures/rechiseled/oak_planks_rotated_bricks_connecting.png deleted file mode 100644 index 92b1ec26..00000000 Binary files a/public/textures/rechiseled/oak_planks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_small_bricks.png b/public/textures/rechiseled/oak_planks_small_bricks.png deleted file mode 100644 index 4fe0c095..00000000 Binary files a/public/textures/rechiseled/oak_planks_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_small_bricks_connecting.png b/public/textures/rechiseled/oak_planks_small_bricks_connecting.png deleted file mode 100644 index 4fe0c095..00000000 Binary files a/public/textures/rechiseled/oak_planks_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_small_tiles.png b/public/textures/rechiseled/oak_planks_small_tiles.png deleted file mode 100644 index 686a015b..00000000 Binary files a/public/textures/rechiseled/oak_planks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_small_tiles_connecting.png b/public/textures/rechiseled/oak_planks_small_tiles_connecting.png deleted file mode 100644 index 686a015b..00000000 Binary files a/public/textures/rechiseled/oak_planks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_squares.png b/public/textures/rechiseled/oak_planks_squares.png deleted file mode 100644 index 3b9832c0..00000000 Binary files a/public/textures/rechiseled/oak_planks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_squares_connecting.png b/public/textures/rechiseled/oak_planks_squares_connecting.png deleted file mode 100644 index 3b9832c0..00000000 Binary files a/public/textures/rechiseled/oak_planks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_tiles.png b/public/textures/rechiseled/oak_planks_tiles.png deleted file mode 100644 index 6ca34fdf..00000000 Binary files a/public/textures/rechiseled/oak_planks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_tiles_connecting.png b/public/textures/rechiseled/oak_planks_tiles_connecting.png deleted file mode 100644 index 6ca34fdf..00000000 Binary files a/public/textures/rechiseled/oak_planks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_wavy.png b/public/textures/rechiseled/oak_planks_wavy.png deleted file mode 100644 index 144ef971..00000000 Binary files a/public/textures/rechiseled/oak_planks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_wavy_connecting.png b/public/textures/rechiseled/oak_planks_wavy_connecting.png deleted file mode 100644 index 144ef971..00000000 Binary files a/public/textures/rechiseled/oak_planks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_woven.png b/public/textures/rechiseled/oak_planks_woven.png deleted file mode 100644 index 0993ff13..00000000 Binary files a/public/textures/rechiseled/oak_planks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/oak_planks_woven_connecting.png b/public/textures/rechiseled/oak_planks_woven_connecting.png deleted file mode 100644 index 0993ff13..00000000 Binary files a/public/textures/rechiseled/oak_planks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_bordered.png b/public/textures/rechiseled/obsidian_bordered.png deleted file mode 100644 index d0378ffd..00000000 Binary files a/public/textures/rechiseled/obsidian_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_bordered_connecting.png b/public/textures/rechiseled/obsidian_bordered_connecting.png deleted file mode 100644 index d0378ffd..00000000 Binary files a/public/textures/rechiseled/obsidian_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_brick_pattern.png b/public/textures/rechiseled/obsidian_brick_pattern.png deleted file mode 100644 index a359667d..00000000 Binary files a/public/textures/rechiseled/obsidian_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_brick_pattern_connecting.png b/public/textures/rechiseled/obsidian_brick_pattern_connecting.png deleted file mode 100644 index a359667d..00000000 Binary files a/public/textures/rechiseled/obsidian_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_brick_paving.png b/public/textures/rechiseled/obsidian_brick_paving.png deleted file mode 100644 index 6e5a4519..00000000 Binary files a/public/textures/rechiseled/obsidian_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_brick_paving_connecting.png b/public/textures/rechiseled/obsidian_brick_paving_connecting.png deleted file mode 100644 index 6e5a4519..00000000 Binary files a/public/textures/rechiseled/obsidian_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_bricks.png b/public/textures/rechiseled/obsidian_bricks.png deleted file mode 100644 index 32e9abf1..00000000 Binary files a/public/textures/rechiseled/obsidian_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_bricks_connecting.png b/public/textures/rechiseled/obsidian_bricks_connecting.png deleted file mode 100644 index 32e9abf1..00000000 Binary files a/public/textures/rechiseled/obsidian_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_chiseled.png b/public/textures/rechiseled/obsidian_chiseled.png deleted file mode 100644 index 1e2891ea..00000000 Binary files a/public/textures/rechiseled/obsidian_chiseled.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_chiseled_circles.png b/public/textures/rechiseled/obsidian_chiseled_circles.png deleted file mode 100644 index 7266d45f..00000000 Binary files a/public/textures/rechiseled/obsidian_chiseled_circles.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_chiseled_circles_connecting.png b/public/textures/rechiseled/obsidian_chiseled_circles_connecting.png deleted file mode 100644 index 7266d45f..00000000 Binary files a/public/textures/rechiseled/obsidian_chiseled_circles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_chiseled_connecting.png b/public/textures/rechiseled/obsidian_chiseled_connecting.png deleted file mode 100644 index 1e2891ea..00000000 Binary files a/public/textures/rechiseled/obsidian_chiseled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_chiseled_creeper.png b/public/textures/rechiseled/obsidian_chiseled_creeper.png deleted file mode 100644 index df7469ac..00000000 Binary files a/public/textures/rechiseled/obsidian_chiseled_creeper.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_chiseled_skeleton.png b/public/textures/rechiseled/obsidian_chiseled_skeleton.png deleted file mode 100644 index 0ccb490c..00000000 Binary files a/public/textures/rechiseled/obsidian_chiseled_skeleton.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_dark.png b/public/textures/rechiseled/obsidian_dark.png deleted file mode 100644 index e48262ee..00000000 Binary files a/public/textures/rechiseled/obsidian_dark.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_dark_connecting.png b/public/textures/rechiseled/obsidian_dark_connecting.png deleted file mode 100644 index e48262ee..00000000 Binary files a/public/textures/rechiseled/obsidian_dark_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_large_tiles.png b/public/textures/rechiseled/obsidian_large_tiles.png deleted file mode 100644 index 625131fe..00000000 Binary files a/public/textures/rechiseled/obsidian_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_pillars.png b/public/textures/rechiseled/obsidian_pillars.png deleted file mode 100644 index b24f86bd..00000000 Binary files a/public/textures/rechiseled/obsidian_pillars.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_pillars_connecting.png b/public/textures/rechiseled/obsidian_pillars_connecting.png deleted file mode 100644 index b24f86bd..00000000 Binary files a/public/textures/rechiseled/obsidian_pillars_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_rotated_bricks.png b/public/textures/rechiseled/obsidian_rotated_bricks.png deleted file mode 100644 index 62501fe2..00000000 Binary files a/public/textures/rechiseled/obsidian_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_rotated_bricks_connecting.png b/public/textures/rechiseled/obsidian_rotated_bricks_connecting.png deleted file mode 100644 index 62501fe2..00000000 Binary files a/public/textures/rechiseled/obsidian_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_spots.png b/public/textures/rechiseled/obsidian_spots.png deleted file mode 100644 index 1776a0ea..00000000 Binary files a/public/textures/rechiseled/obsidian_spots.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_spots_connecting.png b/public/textures/rechiseled/obsidian_spots_connecting.png deleted file mode 100644 index 1776a0ea..00000000 Binary files a/public/textures/rechiseled/obsidian_spots_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_squares.png b/public/textures/rechiseled/obsidian_squares.png deleted file mode 100644 index 61fb1a34..00000000 Binary files a/public/textures/rechiseled/obsidian_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_squares_connecting.png b/public/textures/rechiseled/obsidian_squares_connecting.png deleted file mode 100644 index 61fb1a34..00000000 Binary files a/public/textures/rechiseled/obsidian_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_stripes.png b/public/textures/rechiseled/obsidian_stripes.png deleted file mode 100644 index 2b77dc65..00000000 Binary files a/public/textures/rechiseled/obsidian_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_stripes_connecting.png b/public/textures/rechiseled/obsidian_stripes_connecting.png deleted file mode 100644 index 2b77dc65..00000000 Binary files a/public/textures/rechiseled/obsidian_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_tiles.png b/public/textures/rechiseled/obsidian_tiles.png deleted file mode 100644 index 7ceda8bc..00000000 Binary files a/public/textures/rechiseled/obsidian_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/obsidian_tiles_connecting.png b/public/textures/rechiseled/obsidian_tiles_connecting.png deleted file mode 100644 index 7ceda8bc..00000000 Binary files a/public/textures/rechiseled/obsidian_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_beams.png b/public/textures/rechiseled/prismarine_bricks_beams.png deleted file mode 100644 index 7b03ed89..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_beams_connecting.png b/public/textures/rechiseled/prismarine_bricks_beams_connecting.png deleted file mode 100644 index 7b03ed89..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_brick_pattern.png b/public/textures/rechiseled/prismarine_bricks_brick_pattern.png deleted file mode 100644 index 6cbc7fd4..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_brick_pattern_connecting.png b/public/textures/rechiseled/prismarine_bricks_brick_pattern_connecting.png deleted file mode 100644 index 6cbc7fd4..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_brick_paving.png b/public/textures/rechiseled/prismarine_bricks_brick_paving.png deleted file mode 100644 index 6d0fd154..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_brick_paving_connecting.png b/public/textures/rechiseled/prismarine_bricks_brick_paving_connecting.png deleted file mode 100644 index 6d0fd154..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_bricks.png b/public/textures/rechiseled/prismarine_bricks_bricks.png deleted file mode 100644 index f21c3fd5..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_bricks_connecting.png b/public/textures/rechiseled/prismarine_bricks_bricks_connecting.png deleted file mode 100644 index f21c3fd5..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_chiseled_circles.png b/public/textures/rechiseled/prismarine_bricks_chiseled_circles.png deleted file mode 100644 index bffe5a9c..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_chiseled_circles.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_chiseled_circles_connecting.png b/public/textures/rechiseled/prismarine_bricks_chiseled_circles_connecting.png deleted file mode 100644 index bffe5a9c..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_chiseled_circles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_chiseled_squares.png b/public/textures/rechiseled/prismarine_bricks_chiseled_squares.png deleted file mode 100644 index 1d645b85..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_chiseled_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_chiseled_squares_connecting.png b/public/textures/rechiseled/prismarine_bricks_chiseled_squares_connecting.png deleted file mode 100644 index 1d645b85..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_chiseled_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_diagonal_bricks.png b/public/textures/rechiseled/prismarine_bricks_diagonal_bricks.png deleted file mode 100644 index da61c2cb..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_diagonal_bricks_connecting.png b/public/textures/rechiseled/prismarine_bricks_diagonal_bricks_connecting.png deleted file mode 100644 index da61c2cb..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_diagonal_tiles.png b/public/textures/rechiseled/prismarine_bricks_diagonal_tiles.png deleted file mode 100644 index cb3b5e60..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_diagonal_tiles_connecting.png b/public/textures/rechiseled/prismarine_bricks_diagonal_tiles_connecting.png deleted file mode 100644 index cb3b5e60..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_dotted.png b/public/textures/rechiseled/prismarine_bricks_dotted.png deleted file mode 100644 index 5a4209db..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_dotted_connecting.png b/public/textures/rechiseled/prismarine_bricks_dotted_connecting.png deleted file mode 100644 index 5a4209db..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_pillars.png b/public/textures/rechiseled/prismarine_bricks_pillars.png deleted file mode 100644 index f4af8462..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_pillars.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_pillars_connecting.png b/public/textures/rechiseled/prismarine_bricks_pillars_connecting.png deleted file mode 100644 index f4af8462..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_pillars_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_polished.png b/public/textures/rechiseled/prismarine_bricks_polished.png deleted file mode 100644 index dcf94276..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_polished_connecting.png b/public/textures/rechiseled/prismarine_bricks_polished_connecting.png deleted file mode 100644 index dcf94276..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_rotated_bricks.png b/public/textures/rechiseled/prismarine_bricks_rotated_bricks.png deleted file mode 100644 index eeaab67d..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_rotated_bricks_connecting.png b/public/textures/rechiseled/prismarine_bricks_rotated_bricks_connecting.png deleted file mode 100644 index eeaab67d..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_rows.png b/public/textures/rechiseled/prismarine_bricks_rows.png deleted file mode 100644 index 5cefc145..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_rows.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_rows_connecting.png b/public/textures/rechiseled/prismarine_bricks_rows_connecting.png deleted file mode 100644 index 5cefc145..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_rows_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_small_tiles.png b/public/textures/rechiseled/prismarine_bricks_small_tiles.png deleted file mode 100644 index 9459a860..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_small_tiles_connecting.png b/public/textures/rechiseled/prismarine_bricks_small_tiles_connecting.png deleted file mode 100644 index 9459a860..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_squares.png b/public/textures/rechiseled/prismarine_bricks_squares.png deleted file mode 100644 index fc8ffe5c..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_squares_connecting.png b/public/textures/rechiseled/prismarine_bricks_squares_connecting.png deleted file mode 100644 index fc8ffe5c..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_tiles.png b/public/textures/rechiseled/prismarine_bricks_tiles.png deleted file mode 100644 index badf11d3..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_tiles_connecting.png b/public/textures/rechiseled/prismarine_bricks_tiles_connecting.png deleted file mode 100644 index badf11d3..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_wavy.png b/public/textures/rechiseled/prismarine_bricks_wavy.png deleted file mode 100644 index 5d309776..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_wavy_connecting.png b/public/textures/rechiseled/prismarine_bricks_wavy_connecting.png deleted file mode 100644 index 5d309776..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_woven.png b/public/textures/rechiseled/prismarine_bricks_woven.png deleted file mode 100644 index 7e4df861..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/prismarine_bricks_woven_connecting.png b/public/textures/rechiseled/prismarine_bricks_woven_connecting.png deleted file mode 100644 index 7e4df861..00000000 Binary files a/public/textures/rechiseled/prismarine_bricks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_brick_pattern.png b/public/textures/rechiseled/purpur_brick_pattern.png deleted file mode 100644 index eee0c281..00000000 Binary files a/public/textures/rechiseled/purpur_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_brick_pattern_connecting.png b/public/textures/rechiseled/purpur_brick_pattern_connecting.png deleted file mode 100644 index eee0c281..00000000 Binary files a/public/textures/rechiseled/purpur_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_brick_paving.png b/public/textures/rechiseled/purpur_brick_paving.png deleted file mode 100644 index a0179b79..00000000 Binary files a/public/textures/rechiseled/purpur_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_brick_paving_connecting.png b/public/textures/rechiseled/purpur_brick_paving_connecting.png deleted file mode 100644 index a0179b79..00000000 Binary files a/public/textures/rechiseled/purpur_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_bricks.png b/public/textures/rechiseled/purpur_bricks.png deleted file mode 100644 index a2c972de..00000000 Binary files a/public/textures/rechiseled/purpur_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_bricks_connecting.png b/public/textures/rechiseled/purpur_bricks_connecting.png deleted file mode 100644 index a2c972de..00000000 Binary files a/public/textures/rechiseled/purpur_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_diagonal_bricks.png b/public/textures/rechiseled/purpur_diagonal_bricks.png deleted file mode 100644 index 040a2f41..00000000 Binary files a/public/textures/rechiseled/purpur_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_diagonal_bricks_connecting.png b/public/textures/rechiseled/purpur_diagonal_bricks_connecting.png deleted file mode 100644 index 040a2f41..00000000 Binary files a/public/textures/rechiseled/purpur_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_diagonal_tiles.png b/public/textures/rechiseled/purpur_diagonal_tiles.png deleted file mode 100644 index 1d507604..00000000 Binary files a/public/textures/rechiseled/purpur_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_diagonal_tiles_connecting.png b/public/textures/rechiseled/purpur_diagonal_tiles_connecting.png deleted file mode 100644 index 1d507604..00000000 Binary files a/public/textures/rechiseled/purpur_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_dotted.png b/public/textures/rechiseled/purpur_dotted.png deleted file mode 100644 index dcabf37d..00000000 Binary files a/public/textures/rechiseled/purpur_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_dotted_connecting.png b/public/textures/rechiseled/purpur_dotted_connecting.png deleted file mode 100644 index dcabf37d..00000000 Binary files a/public/textures/rechiseled/purpur_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_fabric.png b/public/textures/rechiseled/purpur_fabric.png deleted file mode 100644 index e492eebd..00000000 Binary files a/public/textures/rechiseled/purpur_fabric.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_fabric_connecting.png b/public/textures/rechiseled/purpur_fabric_connecting.png deleted file mode 100644 index e492eebd..00000000 Binary files a/public/textures/rechiseled/purpur_fabric_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_jagged_pattern.png b/public/textures/rechiseled/purpur_jagged_pattern.png deleted file mode 100644 index 132f16e5..00000000 Binary files a/public/textures/rechiseled/purpur_jagged_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_jagged_pattern_connecting.png b/public/textures/rechiseled/purpur_jagged_pattern_connecting.png deleted file mode 100644 index 132f16e5..00000000 Binary files a/public/textures/rechiseled/purpur_jagged_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_large_tiles.png b/public/textures/rechiseled/purpur_large_tiles.png deleted file mode 100644 index df18f03a..00000000 Binary files a/public/textures/rechiseled/purpur_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_large_tiles_connecting.png b/public/textures/rechiseled/purpur_large_tiles_connecting.png deleted file mode 100644 index df18f03a..00000000 Binary files a/public/textures/rechiseled/purpur_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_organic_pattern.png b/public/textures/rechiseled/purpur_organic_pattern.png deleted file mode 100644 index 31dbfe3f..00000000 Binary files a/public/textures/rechiseled/purpur_organic_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_organic_pattern_connecting.png b/public/textures/rechiseled/purpur_organic_pattern_connecting.png deleted file mode 100644 index 31dbfe3f..00000000 Binary files a/public/textures/rechiseled/purpur_organic_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_pillar.png b/public/textures/rechiseled/purpur_pillar.png deleted file mode 100644 index 94368ed4..00000000 Binary files a/public/textures/rechiseled/purpur_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_pillar_connecting.png b/public/textures/rechiseled/purpur_pillar_connecting.png deleted file mode 100644 index 94368ed4..00000000 Binary files a/public/textures/rechiseled/purpur_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_rotated_bricks.png b/public/textures/rechiseled/purpur_rotated_bricks.png deleted file mode 100644 index 66c6b976..00000000 Binary files a/public/textures/rechiseled/purpur_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_rotated_bricks_connecting.png b/public/textures/rechiseled/purpur_rotated_bricks_connecting.png deleted file mode 100644 index 66c6b976..00000000 Binary files a/public/textures/rechiseled/purpur_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_slanted_tiles.png b/public/textures/rechiseled/purpur_slanted_tiles.png deleted file mode 100644 index 8a3627b2..00000000 Binary files a/public/textures/rechiseled/purpur_slanted_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_slanted_tiles_connecting.png b/public/textures/rechiseled/purpur_slanted_tiles_connecting.png deleted file mode 100644 index 8a3627b2..00000000 Binary files a/public/textures/rechiseled/purpur_slanted_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_small_tiles.png b/public/textures/rechiseled/purpur_small_tiles.png deleted file mode 100644 index 08763d27..00000000 Binary files a/public/textures/rechiseled/purpur_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_small_tiles_connecting.png b/public/textures/rechiseled/purpur_small_tiles_connecting.png deleted file mode 100644 index 08763d27..00000000 Binary files a/public/textures/rechiseled/purpur_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_spiral_pattern.png b/public/textures/rechiseled/purpur_spiral_pattern.png deleted file mode 100644 index 992bc1d0..00000000 Binary files a/public/textures/rechiseled/purpur_spiral_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_spiral_pattern_connecting.png b/public/textures/rechiseled/purpur_spiral_pattern_connecting.png deleted file mode 100644 index 992bc1d0..00000000 Binary files a/public/textures/rechiseled/purpur_spiral_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_squares.png b/public/textures/rechiseled/purpur_squares.png deleted file mode 100644 index e9842bf8..00000000 Binary files a/public/textures/rechiseled/purpur_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_squares_connecting.png b/public/textures/rechiseled/purpur_squares_connecting.png deleted file mode 100644 index e9842bf8..00000000 Binary files a/public/textures/rechiseled/purpur_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_tiles_connecting.png b/public/textures/rechiseled/purpur_tiles_connecting.png deleted file mode 100644 index eb4d3c2d..00000000 Binary files a/public/textures/rechiseled/purpur_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_woven.png b/public/textures/rechiseled/purpur_woven.png deleted file mode 100644 index 99e7957d..00000000 Binary files a/public/textures/rechiseled/purpur_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/purpur_woven_connecting.png b/public/textures/rechiseled/purpur_woven_connecting.png deleted file mode 100644 index 99e7957d..00000000 Binary files a/public/textures/rechiseled/purpur_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_bordered.png b/public/textures/rechiseled/quartz_block_bordered.png deleted file mode 100644 index f69557e0..00000000 Binary files a/public/textures/rechiseled/quartz_block_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_bordered_connecting.png b/public/textures/rechiseled/quartz_block_bordered_connecting.png deleted file mode 100644 index f69557e0..00000000 Binary files a/public/textures/rechiseled/quartz_block_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_brick_paving.png b/public/textures/rechiseled/quartz_block_brick_paving.png deleted file mode 100644 index 3f6b8353..00000000 Binary files a/public/textures/rechiseled/quartz_block_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_brick_paving_connecting.png b/public/textures/rechiseled/quartz_block_brick_paving_connecting.png deleted file mode 100644 index 3f6b8353..00000000 Binary files a/public/textures/rechiseled/quartz_block_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_chiseled_pillar.png b/public/textures/rechiseled/quartz_block_chiseled_pillar.png deleted file mode 100644 index 3bd33264..00000000 Binary files a/public/textures/rechiseled/quartz_block_chiseled_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_chiseled_pillar_connecting.png b/public/textures/rechiseled/quartz_block_chiseled_pillar_connecting.png deleted file mode 100644 index 3bd33264..00000000 Binary files a/public/textures/rechiseled/quartz_block_chiseled_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_chiseled_squares.png b/public/textures/rechiseled/quartz_block_chiseled_squares.png deleted file mode 100644 index ad7b3725..00000000 Binary files a/public/textures/rechiseled/quartz_block_chiseled_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_connecting_connecting.png b/public/textures/rechiseled/quartz_block_connecting_connecting.png deleted file mode 100644 index ebcda332..00000000 Binary files a/public/textures/rechiseled/quartz_block_connecting_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_crosses.png b/public/textures/rechiseled/quartz_block_crosses.png deleted file mode 100644 index 5ca588cd..00000000 Binary files a/public/textures/rechiseled/quartz_block_crosses.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_crosses_connecting.png b/public/textures/rechiseled/quartz_block_crosses_connecting.png deleted file mode 100644 index 5ca588cd..00000000 Binary files a/public/textures/rechiseled/quartz_block_crosses_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_diagonal_tiles.png b/public/textures/rechiseled/quartz_block_diagonal_tiles.png deleted file mode 100644 index 16e576f8..00000000 Binary files a/public/textures/rechiseled/quartz_block_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_diagonal_tiles_connecting.png b/public/textures/rechiseled/quartz_block_diagonal_tiles_connecting.png deleted file mode 100644 index 16e576f8..00000000 Binary files a/public/textures/rechiseled/quartz_block_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_pattern.png b/public/textures/rechiseled/quartz_block_pattern.png deleted file mode 100644 index 42d813da..00000000 Binary files a/public/textures/rechiseled/quartz_block_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_pattern_connecting.png b/public/textures/rechiseled/quartz_block_pattern_connecting.png deleted file mode 100644 index 42d813da..00000000 Binary files a/public/textures/rechiseled/quartz_block_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_rotated_bricks.png b/public/textures/rechiseled/quartz_block_rotated_bricks.png deleted file mode 100644 index f2001b01..00000000 Binary files a/public/textures/rechiseled/quartz_block_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_rotated_bricks_connecting.png b/public/textures/rechiseled/quartz_block_rotated_bricks_connecting.png deleted file mode 100644 index f2001b01..00000000 Binary files a/public/textures/rechiseled/quartz_block_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_rows.png b/public/textures/rechiseled/quartz_block_rows.png deleted file mode 100644 index 63bfb7d6..00000000 Binary files a/public/textures/rechiseled/quartz_block_rows.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_rows_connecting.png b/public/textures/rechiseled/quartz_block_rows_connecting.png deleted file mode 100644 index 63bfb7d6..00000000 Binary files a/public/textures/rechiseled/quartz_block_rows_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_scales.png b/public/textures/rechiseled/quartz_block_scales.png deleted file mode 100644 index fd291872..00000000 Binary files a/public/textures/rechiseled/quartz_block_scales.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_scales_connecting.png b/public/textures/rechiseled/quartz_block_scales_connecting.png deleted file mode 100644 index fd291872..00000000 Binary files a/public/textures/rechiseled/quartz_block_scales_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_small_tiles.png b/public/textures/rechiseled/quartz_block_small_tiles.png deleted file mode 100644 index 97497b55..00000000 Binary files a/public/textures/rechiseled/quartz_block_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_small_tiles_connecting.png b/public/textures/rechiseled/quartz_block_small_tiles_connecting.png deleted file mode 100644 index 97497b55..00000000 Binary files a/public/textures/rechiseled/quartz_block_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_squares.png b/public/textures/rechiseled/quartz_block_squares.png deleted file mode 100644 index ca7bad01..00000000 Binary files a/public/textures/rechiseled/quartz_block_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_squares_connecting.png b/public/textures/rechiseled/quartz_block_squares_connecting.png deleted file mode 100644 index ca7bad01..00000000 Binary files a/public/textures/rechiseled/quartz_block_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_stripes.png b/public/textures/rechiseled/quartz_block_stripes.png deleted file mode 100644 index fc0de806..00000000 Binary files a/public/textures/rechiseled/quartz_block_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_stripes_connecting.png b/public/textures/rechiseled/quartz_block_stripes_connecting.png deleted file mode 100644 index fc0de806..00000000 Binary files a/public/textures/rechiseled/quartz_block_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_tiles.png b/public/textures/rechiseled/quartz_block_tiles.png deleted file mode 100644 index b03f89e0..00000000 Binary files a/public/textures/rechiseled/quartz_block_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/quartz_block_tiles_connecting.png b/public/textures/rechiseled/quartz_block_tiles_connecting.png deleted file mode 100644 index b03f89e0..00000000 Binary files a/public/textures/rechiseled/quartz_block_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_beams.png b/public/textures/rechiseled/red_nether_bricks_beams.png deleted file mode 100644 index f462b26b..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_beams_connecting.png b/public/textures/rechiseled/red_nether_bricks_beams_connecting.png deleted file mode 100644 index f462b26b..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_brick_pattern.png b/public/textures/rechiseled/red_nether_bricks_brick_pattern.png deleted file mode 100644 index 3a2068d1..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_brick_pattern_connecting.png b/public/textures/rechiseled/red_nether_bricks_brick_pattern_connecting.png deleted file mode 100644 index 3a2068d1..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_brick_paving.png b/public/textures/rechiseled/red_nether_bricks_brick_paving.png deleted file mode 100644 index a0130bd8..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_brick_paving_connecting.png b/public/textures/rechiseled/red_nether_bricks_brick_paving_connecting.png deleted file mode 100644 index a0130bd8..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_chiseled_squares.png b/public/textures/rechiseled/red_nether_bricks_chiseled_squares.png deleted file mode 100644 index 5f4cce94..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_chiseled_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_chiseled_squares_connecting.png b/public/textures/rechiseled/red_nether_bricks_chiseled_squares_connecting.png deleted file mode 100644 index 5f4cce94..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_chiseled_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_diagonal_bricks.png b/public/textures/rechiseled/red_nether_bricks_diagonal_bricks.png deleted file mode 100644 index 7767792c..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_diagonal_bricks_connecting.png b/public/textures/rechiseled/red_nether_bricks_diagonal_bricks_connecting.png deleted file mode 100644 index 7767792c..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_large_bricks.png b/public/textures/rechiseled/red_nether_bricks_large_bricks.png deleted file mode 100644 index e1c2c56e..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_large_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_large_bricks_connecting.png b/public/textures/rechiseled/red_nether_bricks_large_bricks_connecting.png deleted file mode 100644 index e1c2c56e..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_large_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_large_tiles.png b/public/textures/rechiseled/red_nether_bricks_large_tiles.png deleted file mode 100644 index 9d655f3a..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_large_tiles_connecting.png b/public/textures/rechiseled/red_nether_bricks_large_tiles_connecting.png deleted file mode 100644 index 9d655f3a..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_rotated_bricks.png b/public/textures/rechiseled/red_nether_bricks_rotated_bricks.png deleted file mode 100644 index 92fa9db2..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_rotated_bricks_connecting.png b/public/textures/rechiseled/red_nether_bricks_rotated_bricks_connecting.png deleted file mode 100644 index 92fa9db2..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_small_tiles.png b/public/textures/rechiseled/red_nether_bricks_small_tiles.png deleted file mode 100644 index c4214758..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_small_tiles_connecting.png b/public/textures/rechiseled/red_nether_bricks_small_tiles_connecting.png deleted file mode 100644 index c4214758..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_smooth.png b/public/textures/rechiseled/red_nether_bricks_smooth.png deleted file mode 100644 index e12e82d5..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_smooth_connecting.png b/public/textures/rechiseled/red_nether_bricks_smooth_connecting.png deleted file mode 100644 index e12e82d5..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_smooth_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_squares.png b/public/textures/rechiseled/red_nether_bricks_squares.png deleted file mode 100644 index caef38ea..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_squares_connecting.png b/public/textures/rechiseled/red_nether_bricks_squares_connecting.png deleted file mode 100644 index caef38ea..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_tiles.png b/public/textures/rechiseled/red_nether_bricks_tiles.png deleted file mode 100644 index 7e57f7b8..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/red_nether_bricks_tiles_connecting.png b/public/textures/rechiseled/red_nether_bricks_tiles_connecting.png deleted file mode 100644 index 7e57f7b8..00000000 Binary files a/public/textures/rechiseled/red_nether_bricks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_brick_pattern.png b/public/textures/rechiseled/red_sandstone_brick_pattern.png deleted file mode 100644 index aa76858d..00000000 Binary files a/public/textures/rechiseled/red_sandstone_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_brick_pattern_connecting.png b/public/textures/rechiseled/red_sandstone_brick_pattern_connecting.png deleted file mode 100644 index aa76858d..00000000 Binary files a/public/textures/rechiseled/red_sandstone_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_brick_paving.png b/public/textures/rechiseled/red_sandstone_brick_paving.png deleted file mode 100644 index 5a44023a..00000000 Binary files a/public/textures/rechiseled/red_sandstone_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_brick_paving_connecting.png b/public/textures/rechiseled/red_sandstone_brick_paving_connecting.png deleted file mode 100644 index 5a44023a..00000000 Binary files a/public/textures/rechiseled/red_sandstone_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_bricks.png b/public/textures/rechiseled/red_sandstone_bricks.png deleted file mode 100644 index 691d8ea8..00000000 Binary files a/public/textures/rechiseled/red_sandstone_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_bricks_connecting.png b/public/textures/rechiseled/red_sandstone_bricks_connecting.png deleted file mode 100644 index 691d8ea8..00000000 Binary files a/public/textures/rechiseled/red_sandstone_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_diagonal_bricks.png b/public/textures/rechiseled/red_sandstone_diagonal_bricks.png deleted file mode 100644 index 28a20df6..00000000 Binary files a/public/textures/rechiseled/red_sandstone_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_diagonal_bricks_connecting.png b/public/textures/rechiseled/red_sandstone_diagonal_bricks_connecting.png deleted file mode 100644 index 28a20df6..00000000 Binary files a/public/textures/rechiseled/red_sandstone_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_large_tiles.png b/public/textures/rechiseled/red_sandstone_large_tiles.png deleted file mode 100644 index d66d15ef..00000000 Binary files a/public/textures/rechiseled/red_sandstone_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_large_tiles_connecting.png b/public/textures/rechiseled/red_sandstone_large_tiles_connecting.png deleted file mode 100644 index d66d15ef..00000000 Binary files a/public/textures/rechiseled/red_sandstone_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_polished.png b/public/textures/rechiseled/red_sandstone_polished.png deleted file mode 100644 index bfa10911..00000000 Binary files a/public/textures/rechiseled/red_sandstone_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_polished_connecting.png b/public/textures/rechiseled/red_sandstone_polished_connecting.png deleted file mode 100644 index bfa10911..00000000 Binary files a/public/textures/rechiseled/red_sandstone_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_rotated_bricks.png b/public/textures/rechiseled/red_sandstone_rotated_bricks.png deleted file mode 100644 index 0e08fde6..00000000 Binary files a/public/textures/rechiseled/red_sandstone_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_rotated_bricks_connecting.png b/public/textures/rechiseled/red_sandstone_rotated_bricks_connecting.png deleted file mode 100644 index 0e08fde6..00000000 Binary files a/public/textures/rechiseled/red_sandstone_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_tiles.png b/public/textures/rechiseled/red_sandstone_tiles.png deleted file mode 100644 index b0f3a965..00000000 Binary files a/public/textures/rechiseled/red_sandstone_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/red_sandstone_tiles_connecting.png b/public/textures/rechiseled/red_sandstone_tiles_connecting.png deleted file mode 100644 index b0f3a965..00000000 Binary files a/public/textures/rechiseled/red_sandstone_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_bordered.png b/public/textures/rechiseled/redstone_block_bordered.png deleted file mode 100644 index 67db6bc4..00000000 Binary files a/public/textures/rechiseled/redstone_block_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_bordered_connecting.png b/public/textures/rechiseled/redstone_block_bordered_connecting.png deleted file mode 100644 index 67db6bc4..00000000 Binary files a/public/textures/rechiseled/redstone_block_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_brick_bordered.png b/public/textures/rechiseled/redstone_block_brick_bordered.png deleted file mode 100644 index 803a8f27..00000000 Binary files a/public/textures/rechiseled/redstone_block_brick_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_bricks.png b/public/textures/rechiseled/redstone_block_bricks.png deleted file mode 100644 index de097358..00000000 Binary files a/public/textures/rechiseled/redstone_block_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_bricks_connecting.png b/public/textures/rechiseled/redstone_block_bricks_connecting.png deleted file mode 100644 index de097358..00000000 Binary files a/public/textures/rechiseled/redstone_block_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_chiseled_clovers.png b/public/textures/rechiseled/redstone_block_chiseled_clovers.png deleted file mode 100644 index 7a456797..00000000 Binary files a/public/textures/rechiseled/redstone_block_chiseled_clovers.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_chiseled_clovers_connecting.png b/public/textures/rechiseled/redstone_block_chiseled_clovers_connecting.png deleted file mode 100644 index 7a456797..00000000 Binary files a/public/textures/rechiseled/redstone_block_chiseled_clovers_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_circles.png b/public/textures/rechiseled/redstone_block_circles.png deleted file mode 100644 index 51c9b43a..00000000 Binary files a/public/textures/rechiseled/redstone_block_circles.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_circles_connecting.png b/public/textures/rechiseled/redstone_block_circles_connecting.png deleted file mode 100644 index 51c9b43a..00000000 Binary files a/public/textures/rechiseled/redstone_block_circles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_compressed.png b/public/textures/rechiseled/redstone_block_compressed.png deleted file mode 100644 index dffbb2e9..00000000 Binary files a/public/textures/rechiseled/redstone_block_compressed.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_compressed_connecting.png b/public/textures/rechiseled/redstone_block_compressed_connecting.png deleted file mode 100644 index dffbb2e9..00000000 Binary files a/public/textures/rechiseled/redstone_block_compressed_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_crushed.png b/public/textures/rechiseled/redstone_block_crushed.png deleted file mode 100644 index 0cbbab99..00000000 Binary files a/public/textures/rechiseled/redstone_block_crushed.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_diagonal_tiles.png b/public/textures/rechiseled/redstone_block_diagonal_tiles.png deleted file mode 100644 index ff13e572..00000000 Binary files a/public/textures/rechiseled/redstone_block_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_diagonal_tiles_connecting.png b/public/textures/rechiseled/redstone_block_diagonal_tiles_connecting.png deleted file mode 100644 index ff13e572..00000000 Binary files a/public/textures/rechiseled/redstone_block_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_patterned.png b/public/textures/rechiseled/redstone_block_patterned.png deleted file mode 100644 index d232df97..00000000 Binary files a/public/textures/rechiseled/redstone_block_patterned.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_patterned_connecting.png b/public/textures/rechiseled/redstone_block_patterned_connecting.png deleted file mode 100644 index d232df97..00000000 Binary files a/public/textures/rechiseled/redstone_block_patterned_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_paving.png b/public/textures/rechiseled/redstone_block_paving.png deleted file mode 100644 index 7d4e58d4..00000000 Binary files a/public/textures/rechiseled/redstone_block_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_paving_connecting.png b/public/textures/rechiseled/redstone_block_paving_connecting.png deleted file mode 100644 index 7d4e58d4..00000000 Binary files a/public/textures/rechiseled/redstone_block_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_pillar.png b/public/textures/rechiseled/redstone_block_pillar.png deleted file mode 100644 index 6428ce07..00000000 Binary files a/public/textures/rechiseled/redstone_block_pillar.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_pillar_connecting.png b/public/textures/rechiseled/redstone_block_pillar_connecting.png deleted file mode 100644 index 6428ce07..00000000 Binary files a/public/textures/rechiseled/redstone_block_pillar_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_polished.png b/public/textures/rechiseled/redstone_block_polished.png deleted file mode 100644 index d1897526..00000000 Binary files a/public/textures/rechiseled/redstone_block_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_polished_connecting.png b/public/textures/rechiseled/redstone_block_polished_connecting.png deleted file mode 100644 index d1897526..00000000 Binary files a/public/textures/rechiseled/redstone_block_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_scales.png b/public/textures/rechiseled/redstone_block_scales.png deleted file mode 100644 index f097eade..00000000 Binary files a/public/textures/rechiseled/redstone_block_scales.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_scales_connecting.png b/public/textures/rechiseled/redstone_block_scales_connecting.png deleted file mode 100644 index f097eade..00000000 Binary files a/public/textures/rechiseled/redstone_block_scales_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_small_tiles.png b/public/textures/rechiseled/redstone_block_small_tiles.png deleted file mode 100644 index 9451aed5..00000000 Binary files a/public/textures/rechiseled/redstone_block_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_small_tiles_connecting.png b/public/textures/rechiseled/redstone_block_small_tiles_connecting.png deleted file mode 100644 index 9451aed5..00000000 Binary files a/public/textures/rechiseled/redstone_block_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/redstone_block_smooth.png b/public/textures/rechiseled/redstone_block_smooth.png deleted file mode 100644 index 7cd4a20a..00000000 Binary files a/public/textures/rechiseled/redstone_block_smooth.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_brick_pattern.png b/public/textures/rechiseled/sandstone_brick_pattern.png deleted file mode 100644 index 382c7ec4..00000000 Binary files a/public/textures/rechiseled/sandstone_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_brick_pattern_connecting.png b/public/textures/rechiseled/sandstone_brick_pattern_connecting.png deleted file mode 100644 index 382c7ec4..00000000 Binary files a/public/textures/rechiseled/sandstone_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_brick_paving.png b/public/textures/rechiseled/sandstone_brick_paving.png deleted file mode 100644 index 0fda293c..00000000 Binary files a/public/textures/rechiseled/sandstone_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_brick_paving_connecting.png b/public/textures/rechiseled/sandstone_brick_paving_connecting.png deleted file mode 100644 index 0fda293c..00000000 Binary files a/public/textures/rechiseled/sandstone_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_bricks.png b/public/textures/rechiseled/sandstone_bricks.png deleted file mode 100644 index d7061d51..00000000 Binary files a/public/textures/rechiseled/sandstone_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_bricks_connecting.png b/public/textures/rechiseled/sandstone_bricks_connecting.png deleted file mode 100644 index d7061d51..00000000 Binary files a/public/textures/rechiseled/sandstone_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_diagonal_bricks.png b/public/textures/rechiseled/sandstone_diagonal_bricks.png deleted file mode 100644 index 8932dad3..00000000 Binary files a/public/textures/rechiseled/sandstone_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_diagonal_bricks_connecting.png b/public/textures/rechiseled/sandstone_diagonal_bricks_connecting.png deleted file mode 100644 index 8932dad3..00000000 Binary files a/public/textures/rechiseled/sandstone_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_large_tiles.png b/public/textures/rechiseled/sandstone_large_tiles.png deleted file mode 100644 index a0094fe6..00000000 Binary files a/public/textures/rechiseled/sandstone_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_large_tiles_connecting.png b/public/textures/rechiseled/sandstone_large_tiles_connecting.png deleted file mode 100644 index a0094fe6..00000000 Binary files a/public/textures/rechiseled/sandstone_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_polished.png b/public/textures/rechiseled/sandstone_polished.png deleted file mode 100644 index 2f963390..00000000 Binary files a/public/textures/rechiseled/sandstone_polished.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_polished_connecting.png b/public/textures/rechiseled/sandstone_polished_connecting.png deleted file mode 100644 index 2f963390..00000000 Binary files a/public/textures/rechiseled/sandstone_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_rotated_bricks.png b/public/textures/rechiseled/sandstone_rotated_bricks.png deleted file mode 100644 index 418d3107..00000000 Binary files a/public/textures/rechiseled/sandstone_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_rotated_bricks_connecting.png b/public/textures/rechiseled/sandstone_rotated_bricks_connecting.png deleted file mode 100644 index 418d3107..00000000 Binary files a/public/textures/rechiseled/sandstone_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_tiles.png b/public/textures/rechiseled/sandstone_tiles.png deleted file mode 100644 index 9728edc8..00000000 Binary files a/public/textures/rechiseled/sandstone_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/sandstone_tiles_connecting.png b/public/textures/rechiseled/sandstone_tiles_connecting.png deleted file mode 100644 index 9728edc8..00000000 Binary files a/public/textures/rechiseled/sandstone_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_beams.png b/public/textures/rechiseled/spruce_planks_beams.png deleted file mode 100644 index c8f50508..00000000 Binary files a/public/textures/rechiseled/spruce_planks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_beams_connecting.png b/public/textures/rechiseled/spruce_planks_beams_connecting.png deleted file mode 100644 index c8f50508..00000000 Binary files a/public/textures/rechiseled/spruce_planks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_brick_pattern.png b/public/textures/rechiseled/spruce_planks_brick_pattern.png deleted file mode 100644 index 6258d0f6..00000000 Binary files a/public/textures/rechiseled/spruce_planks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_brick_pattern_connecting.png b/public/textures/rechiseled/spruce_planks_brick_pattern_connecting.png deleted file mode 100644 index 6258d0f6..00000000 Binary files a/public/textures/rechiseled/spruce_planks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_brick_paving.png b/public/textures/rechiseled/spruce_planks_brick_paving.png deleted file mode 100644 index 839d4433..00000000 Binary files a/public/textures/rechiseled/spruce_planks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_brick_paving_connecting.png b/public/textures/rechiseled/spruce_planks_brick_paving_connecting.png deleted file mode 100644 index 839d4433..00000000 Binary files a/public/textures/rechiseled/spruce_planks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_bricks.png b/public/textures/rechiseled/spruce_planks_bricks.png deleted file mode 100644 index 0ca94b73..00000000 Binary files a/public/textures/rechiseled/spruce_planks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_bricks_connecting.png b/public/textures/rechiseled/spruce_planks_bricks_connecting.png deleted file mode 100644 index 0ca94b73..00000000 Binary files a/public/textures/rechiseled/spruce_planks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_crate.png b/public/textures/rechiseled/spruce_planks_crate.png deleted file mode 100644 index 58c1b59c..00000000 Binary files a/public/textures/rechiseled/spruce_planks_crate.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_crate_connecting.png b/public/textures/rechiseled/spruce_planks_crate_connecting.png deleted file mode 100644 index 58c1b59c..00000000 Binary files a/public/textures/rechiseled/spruce_planks_crate_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_diagonal_stripes.png b/public/textures/rechiseled/spruce_planks_diagonal_stripes.png deleted file mode 100644 index 2cbb7ba3..00000000 Binary files a/public/textures/rechiseled/spruce_planks_diagonal_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_diagonal_stripes_connecting.png b/public/textures/rechiseled/spruce_planks_diagonal_stripes_connecting.png deleted file mode 100644 index 2cbb7ba3..00000000 Binary files a/public/textures/rechiseled/spruce_planks_diagonal_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_diagonal_tiles.png b/public/textures/rechiseled/spruce_planks_diagonal_tiles.png deleted file mode 100644 index 65883368..00000000 Binary files a/public/textures/rechiseled/spruce_planks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_diagonal_tiles_connecting.png b/public/textures/rechiseled/spruce_planks_diagonal_tiles_connecting.png deleted file mode 100644 index 65883368..00000000 Binary files a/public/textures/rechiseled/spruce_planks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_dotted.png b/public/textures/rechiseled/spruce_planks_dotted.png deleted file mode 100644 index 1953361d..00000000 Binary files a/public/textures/rechiseled/spruce_planks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_dotted_connecting.png b/public/textures/rechiseled/spruce_planks_dotted_connecting.png deleted file mode 100644 index 1953361d..00000000 Binary files a/public/textures/rechiseled/spruce_planks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_flooring.png b/public/textures/rechiseled/spruce_planks_flooring.png deleted file mode 100644 index 01b40150..00000000 Binary files a/public/textures/rechiseled/spruce_planks_flooring.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_flooring_connecting.png b/public/textures/rechiseled/spruce_planks_flooring_connecting.png deleted file mode 100644 index 01b40150..00000000 Binary files a/public/textures/rechiseled/spruce_planks_flooring_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_large_tiles.png b/public/textures/rechiseled/spruce_planks_large_tiles.png deleted file mode 100644 index 1d3a8d49..00000000 Binary files a/public/textures/rechiseled/spruce_planks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_large_tiles_connecting.png b/public/textures/rechiseled/spruce_planks_large_tiles_connecting.png deleted file mode 100644 index 1d3a8d49..00000000 Binary files a/public/textures/rechiseled/spruce_planks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_mosaic.png b/public/textures/rechiseled/spruce_planks_mosaic.png deleted file mode 100644 index 71c03c84..00000000 Binary files a/public/textures/rechiseled/spruce_planks_mosaic.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_pattern.png b/public/textures/rechiseled/spruce_planks_pattern.png deleted file mode 100644 index b6cc948a..00000000 Binary files a/public/textures/rechiseled/spruce_planks_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_pattern_connecting.png b/public/textures/rechiseled/spruce_planks_pattern_connecting.png deleted file mode 100644 index b6cc948a..00000000 Binary files a/public/textures/rechiseled/spruce_planks_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_rotated_bricks.png b/public/textures/rechiseled/spruce_planks_rotated_bricks.png deleted file mode 100644 index a271fd0b..00000000 Binary files a/public/textures/rechiseled/spruce_planks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_rotated_bricks_connecting.png b/public/textures/rechiseled/spruce_planks_rotated_bricks_connecting.png deleted file mode 100644 index a271fd0b..00000000 Binary files a/public/textures/rechiseled/spruce_planks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_small_bricks.png b/public/textures/rechiseled/spruce_planks_small_bricks.png deleted file mode 100644 index bad320e7..00000000 Binary files a/public/textures/rechiseled/spruce_planks_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_small_bricks_connecting.png b/public/textures/rechiseled/spruce_planks_small_bricks_connecting.png deleted file mode 100644 index bad320e7..00000000 Binary files a/public/textures/rechiseled/spruce_planks_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_small_tiles.png b/public/textures/rechiseled/spruce_planks_small_tiles.png deleted file mode 100644 index 6ced531f..00000000 Binary files a/public/textures/rechiseled/spruce_planks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_small_tiles_connecting.png b/public/textures/rechiseled/spruce_planks_small_tiles_connecting.png deleted file mode 100644 index 6ced531f..00000000 Binary files a/public/textures/rechiseled/spruce_planks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_squares.png b/public/textures/rechiseled/spruce_planks_squares.png deleted file mode 100644 index 80a2ee1c..00000000 Binary files a/public/textures/rechiseled/spruce_planks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_squares_connecting.png b/public/textures/rechiseled/spruce_planks_squares_connecting.png deleted file mode 100644 index 80a2ee1c..00000000 Binary files a/public/textures/rechiseled/spruce_planks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_tiles.png b/public/textures/rechiseled/spruce_planks_tiles.png deleted file mode 100644 index 4cacebd2..00000000 Binary files a/public/textures/rechiseled/spruce_planks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_tiles_connecting.png b/public/textures/rechiseled/spruce_planks_tiles_connecting.png deleted file mode 100644 index 4cacebd2..00000000 Binary files a/public/textures/rechiseled/spruce_planks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_wavy.png b/public/textures/rechiseled/spruce_planks_wavy.png deleted file mode 100644 index d50f88f2..00000000 Binary files a/public/textures/rechiseled/spruce_planks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_wavy_connecting.png b/public/textures/rechiseled/spruce_planks_wavy_connecting.png deleted file mode 100644 index d50f88f2..00000000 Binary files a/public/textures/rechiseled/spruce_planks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_woven.png b/public/textures/rechiseled/spruce_planks_woven.png deleted file mode 100644 index 27abb0d9..00000000 Binary files a/public/textures/rechiseled/spruce_planks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/spruce_planks_woven_connecting.png b/public/textures/rechiseled/spruce_planks_woven_connecting.png deleted file mode 100644 index 27abb0d9..00000000 Binary files a/public/textures/rechiseled/spruce_planks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_big_tiles.png b/public/textures/rechiseled/stone_big_tiles.png deleted file mode 100644 index 2cb245ab..00000000 Binary files a/public/textures/rechiseled/stone_big_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_big_tiles_connecting.png b/public/textures/rechiseled/stone_big_tiles_connecting.png deleted file mode 100644 index 2cb245ab..00000000 Binary files a/public/textures/rechiseled/stone_big_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_bordered.png b/public/textures/rechiseled/stone_bordered.png deleted file mode 100644 index 77352bf7..00000000 Binary files a/public/textures/rechiseled/stone_bordered.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_bordered_connecting.png b/public/textures/rechiseled/stone_bordered_connecting.png deleted file mode 100644 index 77352bf7..00000000 Binary files a/public/textures/rechiseled/stone_bordered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_brick_pattern.png b/public/textures/rechiseled/stone_brick_pattern.png deleted file mode 100644 index eaaa7a8e..00000000 Binary files a/public/textures/rechiseled/stone_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_brick_pattern_connecting.png b/public/textures/rechiseled/stone_brick_pattern_connecting.png deleted file mode 100644 index eaaa7a8e..00000000 Binary files a/public/textures/rechiseled/stone_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_brick_paving.png b/public/textures/rechiseled/stone_brick_paving.png deleted file mode 100644 index 6b8f0ac7..00000000 Binary files a/public/textures/rechiseled/stone_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_brick_paving_connecting.png b/public/textures/rechiseled/stone_brick_paving_connecting.png deleted file mode 100644 index 6b8f0ac7..00000000 Binary files a/public/textures/rechiseled/stone_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_chiseled_bricks_connecting.png b/public/textures/rechiseled/stone_chiseled_bricks_connecting.png deleted file mode 100644 index 508c668f..00000000 Binary files a/public/textures/rechiseled/stone_chiseled_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_cobbled.png b/public/textures/rechiseled/stone_cobbled.png deleted file mode 100644 index 8693003e..00000000 Binary files a/public/textures/rechiseled/stone_cobbled.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_crushed.png b/public/textures/rechiseled/stone_crushed.png deleted file mode 100644 index 0208a225..00000000 Binary files a/public/textures/rechiseled/stone_crushed.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_crushed_connecting.png b/public/textures/rechiseled/stone_crushed_connecting.png deleted file mode 100644 index 0208a225..00000000 Binary files a/public/textures/rechiseled/stone_crushed_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_diagonal_bricks.png b/public/textures/rechiseled/stone_diagonal_bricks.png deleted file mode 100644 index 3cbf930a..00000000 Binary files a/public/textures/rechiseled/stone_diagonal_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_diagonal_bricks_connecting.png b/public/textures/rechiseled/stone_diagonal_bricks_connecting.png deleted file mode 100644 index 3cbf930a..00000000 Binary files a/public/textures/rechiseled/stone_diagonal_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_path.png b/public/textures/rechiseled/stone_path.png deleted file mode 100644 index 56ee5d09..00000000 Binary files a/public/textures/rechiseled/stone_path.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_path_connecting.png b/public/textures/rechiseled/stone_path_connecting.png deleted file mode 100644 index 56ee5d09..00000000 Binary files a/public/textures/rechiseled/stone_path_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_rotated_bricks.png b/public/textures/rechiseled/stone_rotated_bricks.png deleted file mode 100644 index b505ef74..00000000 Binary files a/public/textures/rechiseled/stone_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_rotated_bricks_connecting.png b/public/textures/rechiseled/stone_rotated_bricks_connecting.png deleted file mode 100644 index b505ef74..00000000 Binary files a/public/textures/rechiseled/stone_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_slated.png b/public/textures/rechiseled/stone_slated.png deleted file mode 100644 index 7930b064..00000000 Binary files a/public/textures/rechiseled/stone_slated.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_small_bricks.png b/public/textures/rechiseled/stone_small_bricks.png deleted file mode 100644 index cf93dfd1..00000000 Binary files a/public/textures/rechiseled/stone_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_small_bricks_connecting.png b/public/textures/rechiseled/stone_small_bricks_connecting.png deleted file mode 100644 index cf93dfd1..00000000 Binary files a/public/textures/rechiseled/stone_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_small_tiles.png b/public/textures/rechiseled/stone_small_tiles.png deleted file mode 100644 index 9023d70f..00000000 Binary files a/public/textures/rechiseled/stone_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_small_tiles_connecting.png b/public/textures/rechiseled/stone_small_tiles_connecting.png deleted file mode 100644 index 9023d70f..00000000 Binary files a/public/textures/rechiseled/stone_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_smooth_brick_paving.png b/public/textures/rechiseled/stone_smooth_brick_paving.png deleted file mode 100644 index b90e3ab2..00000000 Binary files a/public/textures/rechiseled/stone_smooth_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_smooth_brick_paving_connecting.png b/public/textures/rechiseled/stone_smooth_brick_paving_connecting.png deleted file mode 100644 index b90e3ab2..00000000 Binary files a/public/textures/rechiseled/stone_smooth_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_smooth_connecting.png b/public/textures/rechiseled/stone_smooth_connecting.png deleted file mode 100644 index 63f12778..00000000 Binary files a/public/textures/rechiseled/stone_smooth_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_smooth_large_tiles.png b/public/textures/rechiseled/stone_smooth_large_tiles.png deleted file mode 100644 index ea361dc8..00000000 Binary files a/public/textures/rechiseled/stone_smooth_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_smooth_large_tiles_connecting.png b/public/textures/rechiseled/stone_smooth_large_tiles_connecting.png deleted file mode 100644 index ea361dc8..00000000 Binary files a/public/textures/rechiseled/stone_smooth_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_smooth_rotated_bricks.png b/public/textures/rechiseled/stone_smooth_rotated_bricks.png deleted file mode 100644 index 0efbd6a6..00000000 Binary files a/public/textures/rechiseled/stone_smooth_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_smooth_rotated_bricks_connecting.png b/public/textures/rechiseled/stone_smooth_rotated_bricks_connecting.png deleted file mode 100644 index 0efbd6a6..00000000 Binary files a/public/textures/rechiseled/stone_smooth_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_smooth_tiles.png b/public/textures/rechiseled/stone_smooth_tiles.png deleted file mode 100644 index 7266ee29..00000000 Binary files a/public/textures/rechiseled/stone_smooth_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_smooth_tiles_connecting.png b/public/textures/rechiseled/stone_smooth_tiles_connecting.png deleted file mode 100644 index 7266ee29..00000000 Binary files a/public/textures/rechiseled/stone_smooth_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_squares.png b/public/textures/rechiseled/stone_squares.png deleted file mode 100644 index f1c24603..00000000 Binary files a/public/textures/rechiseled/stone_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_squares_connecting.png b/public/textures/rechiseled/stone_squares_connecting.png deleted file mode 100644 index f1c24603..00000000 Binary files a/public/textures/rechiseled/stone_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_tiles.png b/public/textures/rechiseled/stone_tiles.png deleted file mode 100644 index ad456c02..00000000 Binary files a/public/textures/rechiseled/stone_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_tiles_connecting.png b/public/textures/rechiseled/stone_tiles_connecting.png deleted file mode 100644 index ad456c02..00000000 Binary files a/public/textures/rechiseled/stone_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_waves.png b/public/textures/rechiseled/stone_waves.png deleted file mode 100644 index 4e3b30c4..00000000 Binary files a/public/textures/rechiseled/stone_waves.png and /dev/null differ diff --git a/public/textures/rechiseled/stone_waves_connecting.png b/public/textures/rechiseled/stone_waves_connecting.png deleted file mode 100644 index 4e3b30c4..00000000 Binary files a/public/textures/rechiseled/stone_waves_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_beams.png b/public/textures/rechiseled/warped_planks_beams.png deleted file mode 100644 index 7e435b78..00000000 Binary files a/public/textures/rechiseled/warped_planks_beams.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_beams_connecting.png b/public/textures/rechiseled/warped_planks_beams_connecting.png deleted file mode 100644 index 7e435b78..00000000 Binary files a/public/textures/rechiseled/warped_planks_beams_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_brick_pattern.png b/public/textures/rechiseled/warped_planks_brick_pattern.png deleted file mode 100644 index 7dec0a4f..00000000 Binary files a/public/textures/rechiseled/warped_planks_brick_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_brick_pattern_connecting.png b/public/textures/rechiseled/warped_planks_brick_pattern_connecting.png deleted file mode 100644 index 7dec0a4f..00000000 Binary files a/public/textures/rechiseled/warped_planks_brick_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_brick_paving.png b/public/textures/rechiseled/warped_planks_brick_paving.png deleted file mode 100644 index aed0f151..00000000 Binary files a/public/textures/rechiseled/warped_planks_brick_paving.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_brick_paving_connecting.png b/public/textures/rechiseled/warped_planks_brick_paving_connecting.png deleted file mode 100644 index aed0f151..00000000 Binary files a/public/textures/rechiseled/warped_planks_brick_paving_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_bricks.png b/public/textures/rechiseled/warped_planks_bricks.png deleted file mode 100644 index 63a2f864..00000000 Binary files a/public/textures/rechiseled/warped_planks_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_bricks_connecting.png b/public/textures/rechiseled/warped_planks_bricks_connecting.png deleted file mode 100644 index 63a2f864..00000000 Binary files a/public/textures/rechiseled/warped_planks_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_crate.png b/public/textures/rechiseled/warped_planks_crate.png deleted file mode 100644 index bdda0589..00000000 Binary files a/public/textures/rechiseled/warped_planks_crate.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_crate_connecting.png b/public/textures/rechiseled/warped_planks_crate_connecting.png deleted file mode 100644 index bdda0589..00000000 Binary files a/public/textures/rechiseled/warped_planks_crate_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_diagonal_stripes.png b/public/textures/rechiseled/warped_planks_diagonal_stripes.png deleted file mode 100644 index bcdc54cb..00000000 Binary files a/public/textures/rechiseled/warped_planks_diagonal_stripes.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_diagonal_stripes_connecting.png b/public/textures/rechiseled/warped_planks_diagonal_stripes_connecting.png deleted file mode 100644 index bcdc54cb..00000000 Binary files a/public/textures/rechiseled/warped_planks_diagonal_stripes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_diagonal_tiles.png b/public/textures/rechiseled/warped_planks_diagonal_tiles.png deleted file mode 100644 index f244c132..00000000 Binary files a/public/textures/rechiseled/warped_planks_diagonal_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_diagonal_tiles_connecting.png b/public/textures/rechiseled/warped_planks_diagonal_tiles_connecting.png deleted file mode 100644 index f244c132..00000000 Binary files a/public/textures/rechiseled/warped_planks_diagonal_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_dotted.png b/public/textures/rechiseled/warped_planks_dotted.png deleted file mode 100644 index 748e002c..00000000 Binary files a/public/textures/rechiseled/warped_planks_dotted.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_dotted_connecting.png b/public/textures/rechiseled/warped_planks_dotted_connecting.png deleted file mode 100644 index 748e002c..00000000 Binary files a/public/textures/rechiseled/warped_planks_dotted_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_flooring.png b/public/textures/rechiseled/warped_planks_flooring.png deleted file mode 100644 index 12d09917..00000000 Binary files a/public/textures/rechiseled/warped_planks_flooring.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_flooring_connecting.png b/public/textures/rechiseled/warped_planks_flooring_connecting.png deleted file mode 100644 index 12d09917..00000000 Binary files a/public/textures/rechiseled/warped_planks_flooring_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_large_tiles.png b/public/textures/rechiseled/warped_planks_large_tiles.png deleted file mode 100644 index c64ae568..00000000 Binary files a/public/textures/rechiseled/warped_planks_large_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_large_tiles_connecting.png b/public/textures/rechiseled/warped_planks_large_tiles_connecting.png deleted file mode 100644 index c64ae568..00000000 Binary files a/public/textures/rechiseled/warped_planks_large_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_mosaic.png b/public/textures/rechiseled/warped_planks_mosaic.png deleted file mode 100644 index 22c6b6ec..00000000 Binary files a/public/textures/rechiseled/warped_planks_mosaic.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_pattern.png b/public/textures/rechiseled/warped_planks_pattern.png deleted file mode 100644 index 205d940c..00000000 Binary files a/public/textures/rechiseled/warped_planks_pattern.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_pattern_connecting.png b/public/textures/rechiseled/warped_planks_pattern_connecting.png deleted file mode 100644 index 205d940c..00000000 Binary files a/public/textures/rechiseled/warped_planks_pattern_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_rotated_bricks.png b/public/textures/rechiseled/warped_planks_rotated_bricks.png deleted file mode 100644 index fcb28cf6..00000000 Binary files a/public/textures/rechiseled/warped_planks_rotated_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_rotated_bricks_connecting.png b/public/textures/rechiseled/warped_planks_rotated_bricks_connecting.png deleted file mode 100644 index fcb28cf6..00000000 Binary files a/public/textures/rechiseled/warped_planks_rotated_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_small_bricks.png b/public/textures/rechiseled/warped_planks_small_bricks.png deleted file mode 100644 index 2355571f..00000000 Binary files a/public/textures/rechiseled/warped_planks_small_bricks.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_small_bricks_connecting.png b/public/textures/rechiseled/warped_planks_small_bricks_connecting.png deleted file mode 100644 index 2355571f..00000000 Binary files a/public/textures/rechiseled/warped_planks_small_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_small_tiles.png b/public/textures/rechiseled/warped_planks_small_tiles.png deleted file mode 100644 index 78811551..00000000 Binary files a/public/textures/rechiseled/warped_planks_small_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_small_tiles_connecting.png b/public/textures/rechiseled/warped_planks_small_tiles_connecting.png deleted file mode 100644 index 78811551..00000000 Binary files a/public/textures/rechiseled/warped_planks_small_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_squares.png b/public/textures/rechiseled/warped_planks_squares.png deleted file mode 100644 index 1ec4606b..00000000 Binary files a/public/textures/rechiseled/warped_planks_squares.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_squares_connecting.png b/public/textures/rechiseled/warped_planks_squares_connecting.png deleted file mode 100644 index 1ec4606b..00000000 Binary files a/public/textures/rechiseled/warped_planks_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_tiles.png b/public/textures/rechiseled/warped_planks_tiles.png deleted file mode 100644 index d8324b42..00000000 Binary files a/public/textures/rechiseled/warped_planks_tiles.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_tiles_connecting.png b/public/textures/rechiseled/warped_planks_tiles_connecting.png deleted file mode 100644 index d8324b42..00000000 Binary files a/public/textures/rechiseled/warped_planks_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_wavy.png b/public/textures/rechiseled/warped_planks_wavy.png deleted file mode 100644 index 836a84a6..00000000 Binary files a/public/textures/rechiseled/warped_planks_wavy.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_wavy_connecting.png b/public/textures/rechiseled/warped_planks_wavy_connecting.png deleted file mode 100644 index 836a84a6..00000000 Binary files a/public/textures/rechiseled/warped_planks_wavy_connecting.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_woven.png b/public/textures/rechiseled/warped_planks_woven.png deleted file mode 100644 index 41eb3140..00000000 Binary files a/public/textures/rechiseled/warped_planks_woven.png and /dev/null differ diff --git a/public/textures/rechiseled/warped_planks_woven_connecting.png b/public/textures/rechiseled/warped_planks_woven_connecting.png deleted file mode 100644 index 41eb3140..00000000 Binary files a/public/textures/rechiseled/warped_planks_woven_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_covered.png b/public/textures/rechiseledcreate/acacia_window_covered.png deleted file mode 100644 index eb07101d..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_covered.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_covered_connecting.png b/public/textures/rechiseledcreate/acacia_window_covered_connecting.png deleted file mode 100644 index eb07101d..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_covered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_diagonal.png b/public/textures/rechiseledcreate/acacia_window_diagonal.png deleted file mode 100644 index 5a858b52..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_diagonal.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_diagonal_connecting.png b/public/textures/rechiseledcreate/acacia_window_diagonal_connecting.png deleted file mode 100644 index 5a858b52..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_diagonal_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_large.png b/public/textures/rechiseledcreate/acacia_window_large.png deleted file mode 100644 index 0a693b7f..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_large.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_large_connecting.png b/public/textures/rechiseledcreate/acacia_window_large_connecting.png deleted file mode 100644 index 0a693b7f..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_large_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_panes.png b/public/textures/rechiseledcreate/acacia_window_panes.png deleted file mode 100644 index b095e8c0..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_panes.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_panes_connecting.png b/public/textures/rechiseledcreate/acacia_window_panes_connecting.png deleted file mode 100644 index b095e8c0..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_panes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_rounded.png b/public/textures/rechiseledcreate/acacia_window_rounded.png deleted file mode 100644 index c3338254..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_rounded.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_rounded_connecting.png b/public/textures/rechiseledcreate/acacia_window_rounded_connecting.png deleted file mode 100644 index c3338254..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_rounded_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_slim.png b/public/textures/rechiseledcreate/acacia_window_slim.png deleted file mode 100644 index 240beb3b..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_slim.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_slim_connecting.png b/public/textures/rechiseledcreate/acacia_window_slim_connecting.png deleted file mode 100644 index 240beb3b..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_slim_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_swirling.png b/public/textures/rechiseledcreate/acacia_window_swirling.png deleted file mode 100644 index 97fa1a91..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_swirling.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_swirling_connecting.png b/public/textures/rechiseledcreate/acacia_window_swirling_connecting.png deleted file mode 100644 index 97fa1a91..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_swirling_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_tiles.png b/public/textures/rechiseledcreate/acacia_window_tiles.png deleted file mode 100644 index f0054151..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_tiles.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/acacia_window_tiles_connecting.png b/public/textures/rechiseledcreate/acacia_window_tiles_connecting.png deleted file mode 100644 index f0054151..00000000 Binary files a/public/textures/rechiseledcreate/acacia_window_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/andesite_cut_polished_connecting.png b/public/textures/rechiseledcreate/andesite_cut_polished_connecting.png deleted file mode 100644 index 166c471d..00000000 Binary files a/public/textures/rechiseledcreate/andesite_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/andesite_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/andesite_cut_small_brick_connecting.png deleted file mode 100644 index 7ec0d779..00000000 Binary files a/public/textures/rechiseledcreate/andesite_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/asurine_cut_polished_connecting.png b/public/textures/rechiseledcreate/asurine_cut_polished_connecting.png deleted file mode 100644 index 4689cace..00000000 Binary files a/public/textures/rechiseledcreate/asurine_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/asurine_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/asurine_cut_small_brick_connecting.png deleted file mode 100644 index dd4ab52a..00000000 Binary files a/public/textures/rechiseledcreate/asurine_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_bars.png b/public/textures/rechiseledcreate/birch_window_bars.png deleted file mode 100644 index 051939b5..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_bars.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_bars_connecting.png b/public/textures/rechiseledcreate/birch_window_bars_connecting.png deleted file mode 100644 index 051939b5..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_bars_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_diagonal.png b/public/textures/rechiseledcreate/birch_window_diagonal.png deleted file mode 100644 index 7c0d8ce2..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_diagonal.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_diagonal_connecting.png b/public/textures/rechiseledcreate/birch_window_diagonal_connecting.png deleted file mode 100644 index 7c0d8ce2..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_diagonal_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_large.png b/public/textures/rechiseledcreate/birch_window_large.png deleted file mode 100644 index 12a341c2..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_large.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_large_connecting.png b/public/textures/rechiseledcreate/birch_window_large_connecting.png deleted file mode 100644 index 12a341c2..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_large_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_panes.png b/public/textures/rechiseledcreate/birch_window_panes.png deleted file mode 100644 index 477cba63..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_panes.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_panes_connecting.png b/public/textures/rechiseledcreate/birch_window_panes_connecting.png deleted file mode 100644 index 477cba63..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_panes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_rounded.png b/public/textures/rechiseledcreate/birch_window_rounded.png deleted file mode 100644 index b937a194..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_rounded.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_rounded_connecting.png b/public/textures/rechiseledcreate/birch_window_rounded_connecting.png deleted file mode 100644 index b937a194..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_rounded_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_slim.png b/public/textures/rechiseledcreate/birch_window_slim.png deleted file mode 100644 index 704a3273..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_slim.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_slim_connecting.png b/public/textures/rechiseledcreate/birch_window_slim_connecting.png deleted file mode 100644 index 704a3273..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_slim_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_swirling.png b/public/textures/rechiseledcreate/birch_window_swirling.png deleted file mode 100644 index e7c3c1b8..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_swirling.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_swirling_connecting.png b/public/textures/rechiseledcreate/birch_window_swirling_connecting.png deleted file mode 100644 index e7c3c1b8..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_swirling_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_tiles.png b/public/textures/rechiseledcreate/birch_window_tiles.png deleted file mode 100644 index cc24202e..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_tiles.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/birch_window_tiles_connecting.png b/public/textures/rechiseledcreate/birch_window_tiles_connecting.png deleted file mode 100644 index cc24202e..00000000 Binary files a/public/textures/rechiseledcreate/birch_window_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/calcite_cut_polished_connecting.png b/public/textures/rechiseledcreate/calcite_cut_polished_connecting.png deleted file mode 100644 index 300cddb8..00000000 Binary files a/public/textures/rechiseledcreate/calcite_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/calcite_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/calcite_cut_small_brick_connecting.png deleted file mode 100644 index fe8afb26..00000000 Binary files a/public/textures/rechiseledcreate/calcite_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimsite_cut_polished_connecting.png b/public/textures/rechiseledcreate/crimsite_cut_polished_connecting.png deleted file mode 100644 index 823847ab..00000000 Binary files a/public/textures/rechiseledcreate/crimsite_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimsite_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/crimsite_cut_small_brick_connecting.png deleted file mode 100644 index 3fc088ab..00000000 Binary files a/public/textures/rechiseledcreate/crimsite_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_bars.png b/public/textures/rechiseledcreate/crimson_window_bars.png deleted file mode 100644 index 04ce3e66..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_bars.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_bars_connecting.png b/public/textures/rechiseledcreate/crimson_window_bars_connecting.png deleted file mode 100644 index 04ce3e66..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_bars_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_covered.png b/public/textures/rechiseledcreate/crimson_window_covered.png deleted file mode 100644 index 6aa18cd2..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_covered.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_covered_connecting.png b/public/textures/rechiseledcreate/crimson_window_covered_connecting.png deleted file mode 100644 index 6aa18cd2..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_covered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_large.png b/public/textures/rechiseledcreate/crimson_window_large.png deleted file mode 100644 index 2fe10854..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_large.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_large_connecting.png b/public/textures/rechiseledcreate/crimson_window_large_connecting.png deleted file mode 100644 index 2fe10854..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_large_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_panes.png b/public/textures/rechiseledcreate/crimson_window_panes.png deleted file mode 100644 index b7b0f935..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_panes.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_panes_connecting.png b/public/textures/rechiseledcreate/crimson_window_panes_connecting.png deleted file mode 100644 index b7b0f935..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_panes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_rounded.png b/public/textures/rechiseledcreate/crimson_window_rounded.png deleted file mode 100644 index cdc12f69..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_rounded.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_rounded_connecting.png b/public/textures/rechiseledcreate/crimson_window_rounded_connecting.png deleted file mode 100644 index cdc12f69..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_rounded_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_slim.png b/public/textures/rechiseledcreate/crimson_window_slim.png deleted file mode 100644 index becfcb6c..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_slim.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_slim_connecting.png b/public/textures/rechiseledcreate/crimson_window_slim_connecting.png deleted file mode 100644 index becfcb6c..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_slim_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_swirling.png b/public/textures/rechiseledcreate/crimson_window_swirling.png deleted file mode 100644 index 0bb0b863..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_swirling.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_swirling_connecting.png b/public/textures/rechiseledcreate/crimson_window_swirling_connecting.png deleted file mode 100644 index 0bb0b863..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_swirling_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_tiles.png b/public/textures/rechiseledcreate/crimson_window_tiles.png deleted file mode 100644 index abbcf6eb..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_tiles.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/crimson_window_tiles_connecting.png b/public/textures/rechiseledcreate/crimson_window_tiles_connecting.png deleted file mode 100644 index abbcf6eb..00000000 Binary files a/public/textures/rechiseledcreate/crimson_window_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_bars.png b/public/textures/rechiseledcreate/dark_oak_window_bars.png deleted file mode 100644 index 6e8cf735..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_bars.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_bars_connecting.png b/public/textures/rechiseledcreate/dark_oak_window_bars_connecting.png deleted file mode 100644 index 6e8cf735..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_bars_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_covered.png b/public/textures/rechiseledcreate/dark_oak_window_covered.png deleted file mode 100644 index a5fab469..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_covered.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_covered_connecting.png b/public/textures/rechiseledcreate/dark_oak_window_covered_connecting.png deleted file mode 100644 index a5fab469..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_covered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_diagonal.png b/public/textures/rechiseledcreate/dark_oak_window_diagonal.png deleted file mode 100644 index f16bd5a4..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_diagonal.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_diagonal_connecting.png b/public/textures/rechiseledcreate/dark_oak_window_diagonal_connecting.png deleted file mode 100644 index f16bd5a4..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_diagonal_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_panes.png b/public/textures/rechiseledcreate/dark_oak_window_panes.png deleted file mode 100644 index ed8e9e04..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_panes.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_panes_connecting.png b/public/textures/rechiseledcreate/dark_oak_window_panes_connecting.png deleted file mode 100644 index ed8e9e04..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_panes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_rounded.png b/public/textures/rechiseledcreate/dark_oak_window_rounded.png deleted file mode 100644 index 1b7881b4..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_rounded.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_rounded_connecting.png b/public/textures/rechiseledcreate/dark_oak_window_rounded_connecting.png deleted file mode 100644 index 1b7881b4..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_rounded_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_slim.png b/public/textures/rechiseledcreate/dark_oak_window_slim.png deleted file mode 100644 index 0ac92214..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_slim.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_slim_connecting.png b/public/textures/rechiseledcreate/dark_oak_window_slim_connecting.png deleted file mode 100644 index 0ac92214..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_slim_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_swirling.png b/public/textures/rechiseledcreate/dark_oak_window_swirling.png deleted file mode 100644 index f571a139..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_swirling.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_swirling_connecting.png b/public/textures/rechiseledcreate/dark_oak_window_swirling_connecting.png deleted file mode 100644 index f571a139..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_swirling_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_tiles.png b/public/textures/rechiseledcreate/dark_oak_window_tiles.png deleted file mode 100644 index 1473b5c3..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_tiles.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dark_oak_window_tiles_connecting.png b/public/textures/rechiseledcreate/dark_oak_window_tiles_connecting.png deleted file mode 100644 index 1473b5c3..00000000 Binary files a/public/textures/rechiseledcreate/dark_oak_window_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/deepslate_cut_polished_connecting.png b/public/textures/rechiseledcreate/deepslate_cut_polished_connecting.png deleted file mode 100644 index 652fc1bf..00000000 Binary files a/public/textures/rechiseledcreate/deepslate_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/deepslate_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/deepslate_cut_small_brick_connecting.png deleted file mode 100644 index 167acd0d..00000000 Binary files a/public/textures/rechiseledcreate/deepslate_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/diorite_cut_polished_connecting.png b/public/textures/rechiseledcreate/diorite_cut_polished_connecting.png deleted file mode 100644 index 47fb9bf7..00000000 Binary files a/public/textures/rechiseledcreate/diorite_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/diorite_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/diorite_cut_small_brick_connecting.png deleted file mode 100644 index ea5e3ab5..00000000 Binary files a/public/textures/rechiseledcreate/diorite_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dripstone_cut_polished_connecting.png b/public/textures/rechiseledcreate/dripstone_cut_polished_connecting.png deleted file mode 100644 index 1bc21023..00000000 Binary files a/public/textures/rechiseledcreate/dripstone_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/dripstone_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/dripstone_cut_small_brick_connecting.png deleted file mode 100644 index ba0ea2ff..00000000 Binary files a/public/textures/rechiseledcreate/dripstone_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/granite_cut_polished_connecting.png b/public/textures/rechiseledcreate/granite_cut_polished_connecting.png deleted file mode 100644 index a0659435..00000000 Binary files a/public/textures/rechiseledcreate/granite_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/granite_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/granite_cut_small_brick_connecting.png deleted file mode 100644 index 3e6fb167..00000000 Binary files a/public/textures/rechiseledcreate/granite_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_bars.png b/public/textures/rechiseledcreate/jungle_window_bars.png deleted file mode 100644 index 5be32d5c..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_bars.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_bars_connecting.png b/public/textures/rechiseledcreate/jungle_window_bars_connecting.png deleted file mode 100644 index 5be32d5c..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_bars_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_covered.png b/public/textures/rechiseledcreate/jungle_window_covered.png deleted file mode 100644 index 620718a2..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_covered.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_covered_connecting.png b/public/textures/rechiseledcreate/jungle_window_covered_connecting.png deleted file mode 100644 index 620718a2..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_covered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_diagonal.png b/public/textures/rechiseledcreate/jungle_window_diagonal.png deleted file mode 100644 index 4d8932d0..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_diagonal.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_diagonal_connecting.png b/public/textures/rechiseledcreate/jungle_window_diagonal_connecting.png deleted file mode 100644 index 4d8932d0..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_diagonal_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_large.png b/public/textures/rechiseledcreate/jungle_window_large.png deleted file mode 100644 index 870f8190..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_large.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_large_connecting.png b/public/textures/rechiseledcreate/jungle_window_large_connecting.png deleted file mode 100644 index 870f8190..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_large_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_panes.png b/public/textures/rechiseledcreate/jungle_window_panes.png deleted file mode 100644 index 47e2f378..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_panes.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_panes_connecting.png b/public/textures/rechiseledcreate/jungle_window_panes_connecting.png deleted file mode 100644 index 47e2f378..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_panes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_rounded.png b/public/textures/rechiseledcreate/jungle_window_rounded.png deleted file mode 100644 index b98649d9..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_rounded.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_rounded_connecting.png b/public/textures/rechiseledcreate/jungle_window_rounded_connecting.png deleted file mode 100644 index b98649d9..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_rounded_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_swirling.png b/public/textures/rechiseledcreate/jungle_window_swirling.png deleted file mode 100644 index 0d5895ed..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_swirling.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_swirling_connecting.png b/public/textures/rechiseledcreate/jungle_window_swirling_connecting.png deleted file mode 100644 index 0d5895ed..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_swirling_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_tiles.png b/public/textures/rechiseledcreate/jungle_window_tiles.png deleted file mode 100644 index 12c7b187..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_tiles.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/jungle_window_tiles_connecting.png b/public/textures/rechiseledcreate/jungle_window_tiles_connecting.png deleted file mode 100644 index 12c7b187..00000000 Binary files a/public/textures/rechiseledcreate/jungle_window_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/limestone_cut_polished_connecting.png b/public/textures/rechiseledcreate/limestone_cut_polished_connecting.png deleted file mode 100644 index e1f64468..00000000 Binary files a/public/textures/rechiseledcreate/limestone_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/limestone_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/limestone_cut_small_brick_connecting.png deleted file mode 100644 index 69a1e332..00000000 Binary files a/public/textures/rechiseledcreate/limestone_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_bars.png b/public/textures/rechiseledcreate/mangrove_window_bars.png deleted file mode 100644 index f2215e25..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_bars.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_bars_connecting.png b/public/textures/rechiseledcreate/mangrove_window_bars_connecting.png deleted file mode 100644 index f2215e25..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_bars_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_covered.png b/public/textures/rechiseledcreate/mangrove_window_covered.png deleted file mode 100644 index 8b225e63..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_covered.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_covered_connecting.png b/public/textures/rechiseledcreate/mangrove_window_covered_connecting.png deleted file mode 100644 index 8b225e63..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_covered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_diagonal.png b/public/textures/rechiseledcreate/mangrove_window_diagonal.png deleted file mode 100644 index 14debec6..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_diagonal.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_diagonal_connecting.png b/public/textures/rechiseledcreate/mangrove_window_diagonal_connecting.png deleted file mode 100644 index 14debec6..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_diagonal_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_large.png b/public/textures/rechiseledcreate/mangrove_window_large.png deleted file mode 100644 index cab09e78..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_large.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_large_connecting.png b/public/textures/rechiseledcreate/mangrove_window_large_connecting.png deleted file mode 100644 index cab09e78..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_large_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_panes.png b/public/textures/rechiseledcreate/mangrove_window_panes.png deleted file mode 100644 index 6eeb3336..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_panes.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_panes_connecting.png b/public/textures/rechiseledcreate/mangrove_window_panes_connecting.png deleted file mode 100644 index 6eeb3336..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_panes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_slim.png b/public/textures/rechiseledcreate/mangrove_window_slim.png deleted file mode 100644 index 6e1bf98f..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_slim.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_slim_connecting.png b/public/textures/rechiseledcreate/mangrove_window_slim_connecting.png deleted file mode 100644 index 6e1bf98f..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_slim_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_swirling.png b/public/textures/rechiseledcreate/mangrove_window_swirling.png deleted file mode 100644 index a06b7a2a..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_swirling.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_swirling_connecting.png b/public/textures/rechiseledcreate/mangrove_window_swirling_connecting.png deleted file mode 100644 index a06b7a2a..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_swirling_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_tiles.png b/public/textures/rechiseledcreate/mangrove_window_tiles.png deleted file mode 100644 index 73ef1a0f..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_tiles.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mangrove_window_tiles_connecting.png b/public/textures/rechiseledcreate/mangrove_window_tiles_connecting.png deleted file mode 100644 index 73ef1a0f..00000000 Binary files a/public/textures/rechiseledcreate/mangrove_window_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/mechanical_chisel.png b/public/textures/rechiseledcreate/mechanical_chisel.png deleted file mode 100644 index e747a957..00000000 Binary files a/public/textures/rechiseledcreate/mechanical_chisel.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_bars.png b/public/textures/rechiseledcreate/oak_window_bars.png deleted file mode 100644 index 3e290564..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_bars.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_bars_connecting.png b/public/textures/rechiseledcreate/oak_window_bars_connecting.png deleted file mode 100644 index 3e290564..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_bars_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_covered.png b/public/textures/rechiseledcreate/oak_window_covered.png deleted file mode 100644 index 8620f4e7..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_covered.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_covered_connecting.png b/public/textures/rechiseledcreate/oak_window_covered_connecting.png deleted file mode 100644 index 8620f4e7..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_covered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_diagonal.png b/public/textures/rechiseledcreate/oak_window_diagonal.png deleted file mode 100644 index 95323ad1..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_diagonal.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_diagonal_connecting.png b/public/textures/rechiseledcreate/oak_window_diagonal_connecting.png deleted file mode 100644 index 95323ad1..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_diagonal_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_large.png b/public/textures/rechiseledcreate/oak_window_large.png deleted file mode 100644 index da771a80..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_large.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_large_connecting.png b/public/textures/rechiseledcreate/oak_window_large_connecting.png deleted file mode 100644 index da771a80..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_large_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_rounded.png b/public/textures/rechiseledcreate/oak_window_rounded.png deleted file mode 100644 index 262b5a96..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_rounded.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_rounded_connecting.png b/public/textures/rechiseledcreate/oak_window_rounded_connecting.png deleted file mode 100644 index 262b5a96..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_rounded_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_slim.png b/public/textures/rechiseledcreate/oak_window_slim.png deleted file mode 100644 index a1b62d45..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_slim.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_slim_connecting.png b/public/textures/rechiseledcreate/oak_window_slim_connecting.png deleted file mode 100644 index a1b62d45..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_slim_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_swirling.png b/public/textures/rechiseledcreate/oak_window_swirling.png deleted file mode 100644 index 3018970f..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_swirling.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_swirling_connecting.png b/public/textures/rechiseledcreate/oak_window_swirling_connecting.png deleted file mode 100644 index 3018970f..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_swirling_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_tiles.png b/public/textures/rechiseledcreate/oak_window_tiles.png deleted file mode 100644 index 2dd77eb4..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_tiles.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/oak_window_tiles_connecting.png b/public/textures/rechiseledcreate/oak_window_tiles_connecting.png deleted file mode 100644 index 2dd77eb4..00000000 Binary files a/public/textures/rechiseledcreate/oak_window_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/ochrum_cut_polished_connecting.png b/public/textures/rechiseledcreate/ochrum_cut_polished_connecting.png deleted file mode 100644 index 4cec4aec..00000000 Binary files a/public/textures/rechiseledcreate/ochrum_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/ochrum_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/ochrum_cut_small_brick_connecting.png deleted file mode 100644 index 2586c808..00000000 Binary files a/public/textures/rechiseledcreate/ochrum_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/rose_quartz_bricks.png b/public/textures/rechiseledcreate/rose_quartz_bricks.png deleted file mode 100644 index 29eccf29..00000000 Binary files a/public/textures/rechiseledcreate/rose_quartz_bricks.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/rose_quartz_bricks_connecting.png b/public/textures/rechiseledcreate/rose_quartz_bricks_connecting.png deleted file mode 100644 index 29eccf29..00000000 Binary files a/public/textures/rechiseledcreate/rose_quartz_bricks_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/rose_quartz_chiseled.png b/public/textures/rechiseledcreate/rose_quartz_chiseled.png deleted file mode 100644 index bb95af25..00000000 Binary files a/public/textures/rechiseledcreate/rose_quartz_chiseled.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/rose_quartz_chiseled_connecting.png b/public/textures/rechiseledcreate/rose_quartz_chiseled_connecting.png deleted file mode 100644 index bb95af25..00000000 Binary files a/public/textures/rechiseledcreate/rose_quartz_chiseled_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/rose_quartz_crushed.png b/public/textures/rechiseledcreate/rose_quartz_crushed.png deleted file mode 100644 index 42f99ae2..00000000 Binary files a/public/textures/rechiseledcreate/rose_quartz_crushed.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/rose_quartz_crushed_connecting.png b/public/textures/rechiseledcreate/rose_quartz_crushed_connecting.png deleted file mode 100644 index 42f99ae2..00000000 Binary files a/public/textures/rechiseledcreate/rose_quartz_crushed_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/rose_quartz_polished_block.png b/public/textures/rechiseledcreate/rose_quartz_polished_block.png deleted file mode 100644 index a680020d..00000000 Binary files a/public/textures/rechiseledcreate/rose_quartz_polished_block.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/rose_quartz_polished_block_connecting.png b/public/textures/rechiseledcreate/rose_quartz_polished_block_connecting.png deleted file mode 100644 index a680020d..00000000 Binary files a/public/textures/rechiseledcreate/rose_quartz_polished_block_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/rose_quartz_squares.png b/public/textures/rechiseledcreate/rose_quartz_squares.png deleted file mode 100644 index 9474b4ad..00000000 Binary files a/public/textures/rechiseledcreate/rose_quartz_squares.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/rose_quartz_squares_connecting.png b/public/textures/rechiseledcreate/rose_quartz_squares_connecting.png deleted file mode 100644 index 9474b4ad..00000000 Binary files a/public/textures/rechiseledcreate/rose_quartz_squares_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/rose_quartz_tiles_connecting.png b/public/textures/rechiseledcreate/rose_quartz_tiles_connecting.png deleted file mode 100644 index 76d2fe50..00000000 Binary files a/public/textures/rechiseledcreate/rose_quartz_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/scorchia_cut_polished_connecting.png b/public/textures/rechiseledcreate/scorchia_cut_polished_connecting.png deleted file mode 100644 index 8bb9c91b..00000000 Binary files a/public/textures/rechiseledcreate/scorchia_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/scorchia_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/scorchia_cut_small_brick_connecting.png deleted file mode 100644 index 1ec91056..00000000 Binary files a/public/textures/rechiseledcreate/scorchia_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/scoria_cut_polished_connecting.png b/public/textures/rechiseledcreate/scoria_cut_polished_connecting.png deleted file mode 100644 index 8c886bb7..00000000 Binary files a/public/textures/rechiseledcreate/scoria_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/scoria_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/scoria_cut_small_brick_connecting.png deleted file mode 100644 index ed601962..00000000 Binary files a/public/textures/rechiseledcreate/scoria_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_bars.png b/public/textures/rechiseledcreate/spruce_window_bars.png deleted file mode 100644 index 28d0ac69..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_bars.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_bars_connecting.png b/public/textures/rechiseledcreate/spruce_window_bars_connecting.png deleted file mode 100644 index 28d0ac69..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_bars_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_covered.png b/public/textures/rechiseledcreate/spruce_window_covered.png deleted file mode 100644 index 746b08b6..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_covered.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_covered_connecting.png b/public/textures/rechiseledcreate/spruce_window_covered_connecting.png deleted file mode 100644 index 746b08b6..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_covered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_diagonal.png b/public/textures/rechiseledcreate/spruce_window_diagonal.png deleted file mode 100644 index a6af07ba..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_diagonal.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_diagonal_connecting.png b/public/textures/rechiseledcreate/spruce_window_diagonal_connecting.png deleted file mode 100644 index a6af07ba..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_diagonal_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_large.png b/public/textures/rechiseledcreate/spruce_window_large.png deleted file mode 100644 index 4f80c999..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_large.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_large_connecting.png b/public/textures/rechiseledcreate/spruce_window_large_connecting.png deleted file mode 100644 index 4f80c999..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_large_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_panes.png b/public/textures/rechiseledcreate/spruce_window_panes.png deleted file mode 100644 index 339d9cbc..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_panes.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_panes_connecting.png b/public/textures/rechiseledcreate/spruce_window_panes_connecting.png deleted file mode 100644 index 339d9cbc..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_panes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_rounded.png b/public/textures/rechiseledcreate/spruce_window_rounded.png deleted file mode 100644 index bcf415ef..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_rounded.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_rounded_connecting.png b/public/textures/rechiseledcreate/spruce_window_rounded_connecting.png deleted file mode 100644 index bcf415ef..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_rounded_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_slim.png b/public/textures/rechiseledcreate/spruce_window_slim.png deleted file mode 100644 index 26805de6..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_slim.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_slim_connecting.png b/public/textures/rechiseledcreate/spruce_window_slim_connecting.png deleted file mode 100644 index 26805de6..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_slim_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_swirling.png b/public/textures/rechiseledcreate/spruce_window_swirling.png deleted file mode 100644 index 608118fe..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_swirling.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_swirling_connecting.png b/public/textures/rechiseledcreate/spruce_window_swirling_connecting.png deleted file mode 100644 index 608118fe..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_swirling_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_tiles.png b/public/textures/rechiseledcreate/spruce_window_tiles.png deleted file mode 100644 index 7f40cb18..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_tiles.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/spruce_window_tiles_connecting.png b/public/textures/rechiseledcreate/spruce_window_tiles_connecting.png deleted file mode 100644 index 7f40cb18..00000000 Binary files a/public/textures/rechiseledcreate/spruce_window_tiles_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/tuff_cut_polished_connecting.png b/public/textures/rechiseledcreate/tuff_cut_polished_connecting.png deleted file mode 100644 index 8979b85c..00000000 Binary files a/public/textures/rechiseledcreate/tuff_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/tuff_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/tuff_cut_small_brick_connecting.png deleted file mode 100644 index eac1c3e1..00000000 Binary files a/public/textures/rechiseledcreate/tuff_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/veridium_cut_polished_connecting.png b/public/textures/rechiseledcreate/veridium_cut_polished_connecting.png deleted file mode 100644 index 6db1918f..00000000 Binary files a/public/textures/rechiseledcreate/veridium_cut_polished_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/veridium_cut_small_brick_connecting.png b/public/textures/rechiseledcreate/veridium_cut_small_brick_connecting.png deleted file mode 100644 index e3a9f9c5..00000000 Binary files a/public/textures/rechiseledcreate/veridium_cut_small_brick_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_bars.png b/public/textures/rechiseledcreate/warped_window_bars.png deleted file mode 100644 index 9bb55cce..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_bars.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_bars_connecting.png b/public/textures/rechiseledcreate/warped_window_bars_connecting.png deleted file mode 100644 index 9bb55cce..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_bars_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_covered.png b/public/textures/rechiseledcreate/warped_window_covered.png deleted file mode 100644 index 2f45cd2d..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_covered.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_covered_connecting.png b/public/textures/rechiseledcreate/warped_window_covered_connecting.png deleted file mode 100644 index 2f45cd2d..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_covered_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_diagonal.png b/public/textures/rechiseledcreate/warped_window_diagonal.png deleted file mode 100644 index 60f70779..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_diagonal.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_diagonal_connecting.png b/public/textures/rechiseledcreate/warped_window_diagonal_connecting.png deleted file mode 100644 index 60f70779..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_diagonal_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_large.png b/public/textures/rechiseledcreate/warped_window_large.png deleted file mode 100644 index ed35abc4..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_large.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_large_connecting.png b/public/textures/rechiseledcreate/warped_window_large_connecting.png deleted file mode 100644 index ed35abc4..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_large_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_panes.png b/public/textures/rechiseledcreate/warped_window_panes.png deleted file mode 100644 index 68209993..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_panes.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_panes_connecting.png b/public/textures/rechiseledcreate/warped_window_panes_connecting.png deleted file mode 100644 index 68209993..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_panes_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_rounded.png b/public/textures/rechiseledcreate/warped_window_rounded.png deleted file mode 100644 index 50b3b0c2..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_rounded.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_rounded_connecting.png b/public/textures/rechiseledcreate/warped_window_rounded_connecting.png deleted file mode 100644 index 50b3b0c2..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_rounded_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_slim.png b/public/textures/rechiseledcreate/warped_window_slim.png deleted file mode 100644 index ec1b7faa..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_slim.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_slim_connecting.png b/public/textures/rechiseledcreate/warped_window_slim_connecting.png deleted file mode 100644 index ec1b7faa..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_slim_connecting.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_tiles.png b/public/textures/rechiseledcreate/warped_window_tiles.png deleted file mode 100644 index f516bb27..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_tiles.png and /dev/null differ diff --git a/public/textures/rechiseledcreate/warped_window_tiles_connecting.png b/public/textures/rechiseledcreate/warped_window_tiles_connecting.png deleted file mode 100644 index f516bb27..00000000 Binary files a/public/textures/rechiseledcreate/warped_window_tiles_connecting.png and /dev/null differ diff --git a/public/textures/simpledrills/amethyst_drill.png b/public/textures/simpledrills/amethyst_drill.png deleted file mode 100644 index 8bfc7304..00000000 Binary files a/public/textures/simpledrills/amethyst_drill.png and /dev/null differ diff --git a/public/textures/simpledrills/copper_drill.png b/public/textures/simpledrills/copper_drill.png deleted file mode 100644 index f55fb0eb..00000000 Binary files a/public/textures/simpledrills/copper_drill.png and /dev/null differ diff --git a/public/textures/simpledrills/diamond_drill.png b/public/textures/simpledrills/diamond_drill.png deleted file mode 100644 index 0b966429..00000000 Binary files a/public/textures/simpledrills/diamond_drill.png and /dev/null differ diff --git a/public/textures/simpledrills/emerald_drill.png b/public/textures/simpledrills/emerald_drill.png deleted file mode 100644 index 68edc8e7..00000000 Binary files a/public/textures/simpledrills/emerald_drill.png and /dev/null differ diff --git a/public/textures/simpledrills/gold_drill.png b/public/textures/simpledrills/gold_drill.png deleted file mode 100644 index 5c4e2004..00000000 Binary files a/public/textures/simpledrills/gold_drill.png and /dev/null differ diff --git a/public/textures/simpledrills/iron_drill.png b/public/textures/simpledrills/iron_drill.png deleted file mode 100644 index c5d0d87f..00000000 Binary files a/public/textures/simpledrills/iron_drill.png and /dev/null differ diff --git a/public/textures/simpledrills/multi_drill.png b/public/textures/simpledrills/multi_drill.png deleted file mode 100644 index 0c0fa960..00000000 Binary files a/public/textures/simpledrills/multi_drill.png and /dev/null differ diff --git a/public/textures/simpledrills/netherite_drill.png b/public/textures/simpledrills/netherite_drill.png deleted file mode 100644 index 1a4cf49a..00000000 Binary files a/public/textures/simpledrills/netherite_drill.png and /dev/null differ diff --git a/public/textures/simpledrills/sculk_drill.png b/public/textures/simpledrills/sculk_drill.png deleted file mode 100644 index ea076130..00000000 Binary files a/public/textures/simpledrills/sculk_drill.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_aspen.png b/public/textures/snowyspirit/biomeswevegone___sled_aspen.png deleted file mode 100644 index af62d065..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_aspen.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_baobab.png b/public/textures/snowyspirit/biomeswevegone___sled_baobab.png deleted file mode 100644 index a3ac3adc..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_baobab.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_blue_enchanted.png b/public/textures/snowyspirit/biomeswevegone___sled_blue_enchanted.png deleted file mode 100644 index 3f1fabff..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_blue_enchanted.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_cika.png b/public/textures/snowyspirit/biomeswevegone___sled_cika.png deleted file mode 100644 index befd9b23..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_cika.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_cypress.png b/public/textures/snowyspirit/biomeswevegone___sled_cypress.png deleted file mode 100644 index 18e9e947..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_cypress.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_ebony.png b/public/textures/snowyspirit/biomeswevegone___sled_ebony.png deleted file mode 100644 index 563fd60f..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_ebony.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_fir.png b/public/textures/snowyspirit/biomeswevegone___sled_fir.png deleted file mode 100644 index 887a2501..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_fir.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_florus.png b/public/textures/snowyspirit/biomeswevegone___sled_florus.png deleted file mode 100644 index 873fc71e..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_florus.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_green_enchanted.png b/public/textures/snowyspirit/biomeswevegone___sled_green_enchanted.png deleted file mode 100644 index aeb9140b..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_green_enchanted.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_holly.png b/public/textures/snowyspirit/biomeswevegone___sled_holly.png deleted file mode 100644 index a84d9369..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_holly.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_ironwood.png b/public/textures/snowyspirit/biomeswevegone___sled_ironwood.png deleted file mode 100644 index 10c782f1..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_ironwood.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_jacaranda.png b/public/textures/snowyspirit/biomeswevegone___sled_jacaranda.png deleted file mode 100644 index b371e5b7..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_jacaranda.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_mahogany.png b/public/textures/snowyspirit/biomeswevegone___sled_mahogany.png deleted file mode 100644 index 37c97c09..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_mahogany.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_maple.png b/public/textures/snowyspirit/biomeswevegone___sled_maple.png deleted file mode 100644 index 4981a22f..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_maple.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_palm.png b/public/textures/snowyspirit/biomeswevegone___sled_palm.png deleted file mode 100644 index b407a345..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_palm.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_pine.png b/public/textures/snowyspirit/biomeswevegone___sled_pine.png deleted file mode 100644 index 2d5b1784..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_pine.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_rainbow_eucalyptus.png b/public/textures/snowyspirit/biomeswevegone___sled_rainbow_eucalyptus.png deleted file mode 100644 index 39cf0077..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_rainbow_eucalyptus.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_redwood.png b/public/textures/snowyspirit/biomeswevegone___sled_redwood.png deleted file mode 100644 index 79910855..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_redwood.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_sakura.png b/public/textures/snowyspirit/biomeswevegone___sled_sakura.png deleted file mode 100644 index 7c89adf6..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_sakura.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_skyris.png b/public/textures/snowyspirit/biomeswevegone___sled_skyris.png deleted file mode 100644 index 3ee980a2..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_skyris.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_spirit.png b/public/textures/snowyspirit/biomeswevegone___sled_spirit.png deleted file mode 100644 index 20f91f6d..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_spirit.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_white_mangrove.png b/public/textures/snowyspirit/biomeswevegone___sled_white_mangrove.png deleted file mode 100644 index b73782d2..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_white_mangrove.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_willow.png b/public/textures/snowyspirit/biomeswevegone___sled_willow.png deleted file mode 100644 index 9897757f..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_willow.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_witch_hazel.png b/public/textures/snowyspirit/biomeswevegone___sled_witch_hazel.png deleted file mode 100644 index 67eb0776..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_witch_hazel.png and /dev/null differ diff --git a/public/textures/snowyspirit/biomeswevegone___sled_zelkova.png b/public/textures/snowyspirit/biomeswevegone___sled_zelkova.png deleted file mode 100644 index 6407a301..00000000 Binary files a/public/textures/snowyspirit/biomeswevegone___sled_zelkova.png and /dev/null differ diff --git a/public/textures/snowyspirit/candy_cane.png b/public/textures/snowyspirit/candy_cane.png deleted file mode 100644 index 7227dca4..00000000 Binary files a/public/textures/snowyspirit/candy_cane.png and /dev/null differ diff --git a/public/textures/snowyspirit/candy_cane_block.png b/public/textures/snowyspirit/candy_cane_block.png deleted file mode 100644 index 81470ba4..00000000 Binary files a/public/textures/snowyspirit/candy_cane_block.png and /dev/null differ diff --git a/public/textures/snowyspirit/eggnog.png b/public/textures/snowyspirit/eggnog.png deleted file mode 100644 index 3d061898..00000000 Binary files a/public/textures/snowyspirit/eggnog.png and /dev/null differ diff --git a/public/textures/snowyspirit/ginger.png b/public/textures/snowyspirit/ginger.png deleted file mode 100644 index 5633209c..00000000 Binary files a/public/textures/snowyspirit/ginger.png and /dev/null differ diff --git a/public/textures/snowyspirit/ginger_crate.png b/public/textures/snowyspirit/ginger_crate.png deleted file mode 100644 index a02e4514..00000000 Binary files a/public/textures/snowyspirit/ginger_crate.png and /dev/null differ diff --git a/public/textures/snowyspirit/ginger_flower.png b/public/textures/snowyspirit/ginger_flower.png deleted file mode 100644 index 61b88fb0..00000000 Binary files a/public/textures/snowyspirit/ginger_flower.png and /dev/null differ diff --git a/public/textures/snowyspirit/gingerbread.png b/public/textures/snowyspirit/gingerbread.png deleted file mode 100644 index b1114d47..00000000 Binary files a/public/textures/snowyspirit/gingerbread.png and /dev/null differ diff --git a/public/textures/snowyspirit/gingerbread_cookie.png b/public/textures/snowyspirit/gingerbread_cookie.png deleted file mode 100644 index e49baee7..00000000 Binary files a/public/textures/snowyspirit/gingerbread_cookie.png and /dev/null differ diff --git a/public/textures/snowyspirit/gingerbread_door.png b/public/textures/snowyspirit/gingerbread_door.png deleted file mode 100644 index 56b4a6e4..00000000 Binary files a/public/textures/snowyspirit/gingerbread_door.png and /dev/null differ diff --git a/public/textures/snowyspirit/gingerbread_frosted.png b/public/textures/snowyspirit/gingerbread_frosted.png deleted file mode 100644 index 8ee30831..00000000 Binary files a/public/textures/snowyspirit/gingerbread_frosted.png and /dev/null differ diff --git a/public/textures/snowyspirit/gingerbread_golem_spawn_egg.png b/public/textures/snowyspirit/gingerbread_golem_spawn_egg.png deleted file mode 100644 index 7db08414..00000000 Binary files a/public/textures/snowyspirit/gingerbread_golem_spawn_egg.png and /dev/null differ diff --git a/public/textures/snowyspirit/gingerbread_slab.png b/public/textures/snowyspirit/gingerbread_slab.png deleted file mode 100644 index 4f79901f..00000000 Binary files a/public/textures/snowyspirit/gingerbread_slab.png and /dev/null differ diff --git a/public/textures/snowyspirit/gingerbread_stairs.png b/public/textures/snowyspirit/gingerbread_stairs.png deleted file mode 100644 index e013905b..00000000 Binary files a/public/textures/snowyspirit/gingerbread_stairs.png and /dev/null differ diff --git a/public/textures/snowyspirit/gingerbread_trapdoor.png b/public/textures/snowyspirit/gingerbread_trapdoor.png deleted file mode 100644 index bd2ebe4c..00000000 Binary files a/public/textures/snowyspirit/gingerbread_trapdoor.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_black.png b/public/textures/snowyspirit/glow_lights_black.png deleted file mode 100644 index 66b7d077..00000000 Binary files a/public/textures/snowyspirit/glow_lights_black.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_blue.png b/public/textures/snowyspirit/glow_lights_blue.png deleted file mode 100644 index 3cfdb05b..00000000 Binary files a/public/textures/snowyspirit/glow_lights_blue.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_brown.png b/public/textures/snowyspirit/glow_lights_brown.png deleted file mode 100644 index 4324f03b..00000000 Binary files a/public/textures/snowyspirit/glow_lights_brown.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_cyan.png b/public/textures/snowyspirit/glow_lights_cyan.png deleted file mode 100644 index 4de03541..00000000 Binary files a/public/textures/snowyspirit/glow_lights_cyan.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_gray.png b/public/textures/snowyspirit/glow_lights_gray.png deleted file mode 100644 index 9ac7f41e..00000000 Binary files a/public/textures/snowyspirit/glow_lights_gray.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_green.png b/public/textures/snowyspirit/glow_lights_green.png deleted file mode 100644 index 7e072ce5..00000000 Binary files a/public/textures/snowyspirit/glow_lights_green.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_light_blue.png b/public/textures/snowyspirit/glow_lights_light_blue.png deleted file mode 100644 index abb9153c..00000000 Binary files a/public/textures/snowyspirit/glow_lights_light_blue.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_light_gray.png b/public/textures/snowyspirit/glow_lights_light_gray.png deleted file mode 100644 index f0c0079c..00000000 Binary files a/public/textures/snowyspirit/glow_lights_light_gray.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_lime.png b/public/textures/snowyspirit/glow_lights_lime.png deleted file mode 100644 index 04b4500a..00000000 Binary files a/public/textures/snowyspirit/glow_lights_lime.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_magenta.png b/public/textures/snowyspirit/glow_lights_magenta.png deleted file mode 100644 index 99600c78..00000000 Binary files a/public/textures/snowyspirit/glow_lights_magenta.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_orange.png b/public/textures/snowyspirit/glow_lights_orange.png deleted file mode 100644 index 26acea84..00000000 Binary files a/public/textures/snowyspirit/glow_lights_orange.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_pink.png b/public/textures/snowyspirit/glow_lights_pink.png deleted file mode 100644 index 0f4121d1..00000000 Binary files a/public/textures/snowyspirit/glow_lights_pink.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_prismatic.png b/public/textures/snowyspirit/glow_lights_prismatic.png deleted file mode 100644 index a74620c8..00000000 Binary files a/public/textures/snowyspirit/glow_lights_prismatic.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_purple.png b/public/textures/snowyspirit/glow_lights_purple.png deleted file mode 100644 index a59704fb..00000000 Binary files a/public/textures/snowyspirit/glow_lights_purple.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_red.png b/public/textures/snowyspirit/glow_lights_red.png deleted file mode 100644 index d872a879..00000000 Binary files a/public/textures/snowyspirit/glow_lights_red.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_white.png b/public/textures/snowyspirit/glow_lights_white.png deleted file mode 100644 index 04ce900c..00000000 Binary files a/public/textures/snowyspirit/glow_lights_white.png and /dev/null differ diff --git a/public/textures/snowyspirit/glow_lights_yellow.png b/public/textures/snowyspirit/glow_lights_yellow.png deleted file mode 100644 index 69ba141b..00000000 Binary files a/public/textures/snowyspirit/glow_lights_yellow.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_black.png b/public/textures/snowyspirit/gumdrop_black.png deleted file mode 100644 index ef494157..00000000 Binary files a/public/textures/snowyspirit/gumdrop_black.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_blue.png b/public/textures/snowyspirit/gumdrop_blue.png deleted file mode 100644 index 139727c6..00000000 Binary files a/public/textures/snowyspirit/gumdrop_blue.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_brown.png b/public/textures/snowyspirit/gumdrop_brown.png deleted file mode 100644 index 79f9cae2..00000000 Binary files a/public/textures/snowyspirit/gumdrop_brown.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_cyan.png b/public/textures/snowyspirit/gumdrop_cyan.png deleted file mode 100644 index 3d0ba8f0..00000000 Binary files a/public/textures/snowyspirit/gumdrop_cyan.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_gray.png b/public/textures/snowyspirit/gumdrop_gray.png deleted file mode 100644 index 2330eef7..00000000 Binary files a/public/textures/snowyspirit/gumdrop_gray.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_green.png b/public/textures/snowyspirit/gumdrop_green.png deleted file mode 100644 index 5f3723aa..00000000 Binary files a/public/textures/snowyspirit/gumdrop_green.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_light_blue.png b/public/textures/snowyspirit/gumdrop_light_blue.png deleted file mode 100644 index 5fdc672c..00000000 Binary files a/public/textures/snowyspirit/gumdrop_light_blue.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_light_gray.png b/public/textures/snowyspirit/gumdrop_light_gray.png deleted file mode 100644 index c9ca8d05..00000000 Binary files a/public/textures/snowyspirit/gumdrop_light_gray.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_lime.png b/public/textures/snowyspirit/gumdrop_lime.png deleted file mode 100644 index 2eddfd19..00000000 Binary files a/public/textures/snowyspirit/gumdrop_lime.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_magenta.png b/public/textures/snowyspirit/gumdrop_magenta.png deleted file mode 100644 index 84b3fa9c..00000000 Binary files a/public/textures/snowyspirit/gumdrop_magenta.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_orange.png b/public/textures/snowyspirit/gumdrop_orange.png deleted file mode 100644 index b4c8c32f..00000000 Binary files a/public/textures/snowyspirit/gumdrop_orange.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_pink.png b/public/textures/snowyspirit/gumdrop_pink.png deleted file mode 100644 index 60e73215..00000000 Binary files a/public/textures/snowyspirit/gumdrop_pink.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_purple.png b/public/textures/snowyspirit/gumdrop_purple.png deleted file mode 100644 index 0bcbd1b4..00000000 Binary files a/public/textures/snowyspirit/gumdrop_purple.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_red.png b/public/textures/snowyspirit/gumdrop_red.png deleted file mode 100644 index fbbe4e29..00000000 Binary files a/public/textures/snowyspirit/gumdrop_red.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_white.png b/public/textures/snowyspirit/gumdrop_white.png deleted file mode 100644 index b7cf7abf..00000000 Binary files a/public/textures/snowyspirit/gumdrop_white.png and /dev/null differ diff --git a/public/textures/snowyspirit/gumdrop_yellow.png b/public/textures/snowyspirit/gumdrop_yellow.png deleted file mode 100644 index 97f3fe35..00000000 Binary files a/public/textures/snowyspirit/gumdrop_yellow.png and /dev/null differ diff --git a/public/textures/snowyspirit/music_disc_a_carol.png b/public/textures/snowyspirit/music_disc_a_carol.png deleted file mode 100644 index 53daf4f5..00000000 Binary files a/public/textures/snowyspirit/music_disc_a_carol.png and /dev/null differ diff --git a/public/textures/snowyspirit/sled_acacia.png b/public/textures/snowyspirit/sled_acacia.png deleted file mode 100644 index 75aa9a09..00000000 Binary files a/public/textures/snowyspirit/sled_acacia.png and /dev/null differ diff --git a/public/textures/snowyspirit/sled_bamboo.png b/public/textures/snowyspirit/sled_bamboo.png deleted file mode 100644 index 89222e88..00000000 Binary files a/public/textures/snowyspirit/sled_bamboo.png and /dev/null differ diff --git a/public/textures/snowyspirit/sled_birch.png b/public/textures/snowyspirit/sled_birch.png deleted file mode 100644 index 0721c89c..00000000 Binary files a/public/textures/snowyspirit/sled_birch.png and /dev/null differ diff --git a/public/textures/snowyspirit/sled_cherry.png b/public/textures/snowyspirit/sled_cherry.png deleted file mode 100644 index f59ceb6f..00000000 Binary files a/public/textures/snowyspirit/sled_cherry.png and /dev/null differ diff --git a/public/textures/snowyspirit/sled_dark_oak.png b/public/textures/snowyspirit/sled_dark_oak.png deleted file mode 100644 index 8e56d288..00000000 Binary files a/public/textures/snowyspirit/sled_dark_oak.png and /dev/null differ diff --git a/public/textures/snowyspirit/sled_jungle.png b/public/textures/snowyspirit/sled_jungle.png deleted file mode 100644 index c3005a37..00000000 Binary files a/public/textures/snowyspirit/sled_jungle.png and /dev/null differ diff --git a/public/textures/snowyspirit/sled_mangrove.png b/public/textures/snowyspirit/sled_mangrove.png deleted file mode 100644 index c8068961..00000000 Binary files a/public/textures/snowyspirit/sled_mangrove.png and /dev/null differ diff --git a/public/textures/snowyspirit/sled_oak.png b/public/textures/snowyspirit/sled_oak.png deleted file mode 100644 index 94ea563e..00000000 Binary files a/public/textures/snowyspirit/sled_oak.png and /dev/null differ diff --git a/public/textures/snowyspirit/sled_spruce.png b/public/textures/snowyspirit/sled_spruce.png deleted file mode 100644 index e7d9a2bb..00000000 Binary files a/public/textures/snowyspirit/sled_spruce.png and /dev/null differ diff --git a/public/textures/snowyspirit/snow_globe.png b/public/textures/snowyspirit/snow_globe.png deleted file mode 100644 index 2132cde2..00000000 Binary files a/public/textures/snowyspirit/snow_globe.png and /dev/null differ diff --git a/public/textures/snowyspirit/twilightforest___sled_canopy.png b/public/textures/snowyspirit/twilightforest___sled_canopy.png deleted file mode 100644 index 1e28f41f..00000000 Binary files a/public/textures/snowyspirit/twilightforest___sled_canopy.png and /dev/null differ diff --git a/public/textures/snowyspirit/twilightforest___sled_dark.png b/public/textures/snowyspirit/twilightforest___sled_dark.png deleted file mode 100644 index e2fd07d2..00000000 Binary files a/public/textures/snowyspirit/twilightforest___sled_dark.png and /dev/null differ diff --git a/public/textures/snowyspirit/twilightforest___sled_mangrove.png b/public/textures/snowyspirit/twilightforest___sled_mangrove.png deleted file mode 100644 index 50c01e77..00000000 Binary files a/public/textures/snowyspirit/twilightforest___sled_mangrove.png and /dev/null differ diff --git a/public/textures/snowyspirit/twilightforest___sled_mining.png b/public/textures/snowyspirit/twilightforest___sled_mining.png deleted file mode 100644 index 161d8505..00000000 Binary files a/public/textures/snowyspirit/twilightforest___sled_mining.png and /dev/null differ diff --git a/public/textures/snowyspirit/twilightforest___sled_sorting.png b/public/textures/snowyspirit/twilightforest___sled_sorting.png deleted file mode 100644 index 1825b0d8..00000000 Binary files a/public/textures/snowyspirit/twilightforest___sled_sorting.png and /dev/null differ diff --git a/public/textures/snowyspirit/twilightforest___sled_time.png b/public/textures/snowyspirit/twilightforest___sled_time.png deleted file mode 100644 index d1e84875..00000000 Binary files a/public/textures/snowyspirit/twilightforest___sled_time.png and /dev/null differ diff --git a/public/textures/snowyspirit/twilightforest___sled_transformation.png b/public/textures/snowyspirit/twilightforest___sled_transformation.png deleted file mode 100644 index 78f9f5f2..00000000 Binary files a/public/textures/snowyspirit/twilightforest___sled_transformation.png and /dev/null differ diff --git a/public/textures/snowyspirit/twilightforest___sled_twilight_oak.png b/public/textures/snowyspirit/twilightforest___sled_twilight_oak.png deleted file mode 100644 index 24c3769e..00000000 Binary files a/public/textures/snowyspirit/twilightforest___sled_twilight_oak.png and /dev/null differ diff --git a/public/textures/snowyspirit/vanillabackport___sled_pale_oak.png b/public/textures/snowyspirit/vanillabackport___sled_pale_oak.png deleted file mode 100644 index 94e60761..00000000 Binary files a/public/textures/snowyspirit/vanillabackport___sled_pale_oak.png and /dev/null differ diff --git a/public/textures/snowyspirit/wild_ginger.png b/public/textures/snowyspirit/wild_ginger.png deleted file mode 100644 index 23b42ddb..00000000 Binary files a/public/textures/snowyspirit/wild_ginger.png and /dev/null differ diff --git a/public/textures/snowyspirit/wreath.png b/public/textures/snowyspirit/wreath.png deleted file mode 100644 index b4e16323..00000000 Binary files a/public/textures/snowyspirit/wreath.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_alchemy_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_alchemy_upgrade.png deleted file mode 100644 index 7d8d2483..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_alchemy_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_compacting_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_compacting_upgrade.png deleted file mode 100644 index 16ce427e..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_compacting_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_deposit_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_deposit_upgrade.png deleted file mode 100644 index cbc0c0d7..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_deposit_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_feeding_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_feeding_upgrade.png deleted file mode 100644 index 91e5bd2e..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_feeding_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_filter_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_filter_upgrade.png deleted file mode 100644 index b5e35e0a..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_filter_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_jukebox_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_jukebox_upgrade.png deleted file mode 100644 index dbd2878e..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_jukebox_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_magnet_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_magnet_upgrade.png deleted file mode 100644 index d212641a..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_magnet_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_pickup_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_pickup_upgrade.png deleted file mode 100644 index 8fe11309..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_pickup_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_pump_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_pump_upgrade.png deleted file mode 100644 index 84e3c0cd..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_pump_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_refill_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_refill_upgrade.png deleted file mode 100644 index a3ee690a..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_refill_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_restock_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_restock_upgrade.png deleted file mode 100644 index e257437d..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_restock_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_tool_swapper_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_tool_swapper_upgrade.png deleted file mode 100644 index bb360082..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_tool_swapper_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/advanced_void_upgrade.png b/public/textures/sophisticatedbackpacks/advanced_void_upgrade.png deleted file mode 100644 index cc65ddae..00000000 Binary files a/public/textures/sophisticatedbackpacks/advanced_void_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/alchemy_upgrade.png b/public/textures/sophisticatedbackpacks/alchemy_upgrade.png deleted file mode 100644 index 2f1d6e6e..00000000 Binary files a/public/textures/sophisticatedbackpacks/alchemy_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/anvil_upgrade.png b/public/textures/sophisticatedbackpacks/anvil_upgrade.png deleted file mode 100644 index 8d9c2207..00000000 Binary files a/public/textures/sophisticatedbackpacks/anvil_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/auto_blasting_upgrade.png b/public/textures/sophisticatedbackpacks/auto_blasting_upgrade.png deleted file mode 100644 index 80ba1fc8..00000000 Binary files a/public/textures/sophisticatedbackpacks/auto_blasting_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/auto_smelting_upgrade.png b/public/textures/sophisticatedbackpacks/auto_smelting_upgrade.png deleted file mode 100644 index 906c219d..00000000 Binary files a/public/textures/sophisticatedbackpacks/auto_smelting_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/auto_smoking_upgrade.png b/public/textures/sophisticatedbackpacks/auto_smoking_upgrade.png deleted file mode 100644 index 0d072d63..00000000 Binary files a/public/textures/sophisticatedbackpacks/auto_smoking_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack.png b/public/textures/sophisticatedbackpacks/backpack.png deleted file mode 100644 index 0f57030f..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-10585066,'sophisticatedcore__main_color'__-10585066}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-10585066,'sophisticatedcore__main_color'__-10585066}.png deleted file mode 100644 index 95880168..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-10585066,'sophisticatedcore__main_color'__-10585066}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-12103854,'sophisticatedcore__main_color'__-12103854}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-12103854,'sophisticatedcore__main_color'__-12103854}.png deleted file mode 100644 index f1f95f19..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-12103854,'sophisticatedcore__main_color'__-12103854}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-12827478,'sophisticatedcore__main_color'__-12827478}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-12827478,'sophisticatedcore__main_color'__-12827478}.png deleted file mode 100644 index f5e44825..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-12827478,'sophisticatedcore__main_color'__-12827478}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-12930086,'sophisticatedcore__main_color'__-12930086}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-12930086,'sophisticatedcore__main_color'__-12930086}.png deleted file mode 100644 index b3b49d9f..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-12930086,'sophisticatedcore__main_color'__-12930086}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-13881243,'sophisticatedcore__main_color'__-3087822}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-13881243,'sophisticatedcore__main_color'__-3087822}.png deleted file mode 100644 index 5b8e8f2b..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-13881243,'sophisticatedcore__main_color'__-3087822}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-14869215,'sophisticatedcore__main_color'__-14869215}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-14869215,'sophisticatedcore__main_color'__-14869215}.png deleted file mode 100644 index 7ed7b4aa..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-14869215,'sophisticatedcore__main_color'__-14869215}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-15295332,'sophisticatedcore__main_color'__-15295332}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-15295332,'sophisticatedcore__main_color'__-15295332}.png deleted file mode 100644 index 0c434afe..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-15295332,'sophisticatedcore__main_color'__-15295332}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-3715395,'sophisticatedcore__main_color'__-3715395}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-3715395,'sophisticatedcore__main_color'__-3715395}.png deleted file mode 100644 index daf74722..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-3715395,'sophisticatedcore__main_color'__-3715395}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-393218,'sophisticatedcore__main_color'__-393218}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-393218,'sophisticatedcore__main_color'__-393218}.png deleted file mode 100644 index 495bec42..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-393218,'sophisticatedcore__main_color'__-393218}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-425955,'sophisticatedcore__main_color'__-425955}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-425955,'sophisticatedcore__main_color'__-425955}.png deleted file mode 100644 index 1660b678..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-425955,'sophisticatedcore__main_color'__-425955}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-5231066,'sophisticatedcore__main_color'__-5231066}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-5231066,'sophisticatedcore__main_color'__-5231066}.png deleted file mode 100644 index cccef2dc..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-5231066,'sophisticatedcore__main_color'__-5231066}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-6447721,'sophisticatedcore__main_color'__-6447721}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-6447721,'sophisticatedcore__main_color'__-6447721}.png deleted file mode 100644 index e6d10635..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-6447721,'sophisticatedcore__main_color'__-6447721}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-75715,'sophisticatedcore__main_color'__-75715}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-75715,'sophisticatedcore__main_color'__-75715}.png deleted file mode 100644 index eea02610..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-75715,'sophisticatedcore__main_color'__-75715}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-7785800,'sophisticatedcore__main_color'__-7785800}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-7785800,'sophisticatedcore__main_color'__-7785800}.png deleted file mode 100644 index ea0bcf07..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-7785800,'sophisticatedcore__main_color'__-7785800}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-816214,'sophisticatedcore__main_color'__-816214}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-816214,'sophisticatedcore__main_color'__-816214}.png deleted file mode 100644 index 3989d2ff..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-816214,'sophisticatedcore__main_color'__-816214}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-8170446,'sophisticatedcore__main_color'__-8170446}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-8170446,'sophisticatedcore__main_color'__-8170446}.png deleted file mode 100644 index 23799734..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-8170446,'sophisticatedcore__main_color'__-8170446}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-8337633,'sophisticatedcore__main_color'__-8337633}.png b/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-8337633,'sophisticatedcore__main_color'__-8337633}.png deleted file mode 100644 index 7cfe95d9..00000000 Binary files a/public/textures/sophisticatedbackpacks/backpack__{'sophisticatedcore__accent_color'__-8337633,'sophisticatedcore__main_color'__-8337633}.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/battery_upgrade.png b/public/textures/sophisticatedbackpacks/battery_upgrade.png deleted file mode 100644 index 7344973f..00000000 Binary files a/public/textures/sophisticatedbackpacks/battery_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/blasting_upgrade.png b/public/textures/sophisticatedbackpacks/blasting_upgrade.png deleted file mode 100644 index cce0a1a9..00000000 Binary files a/public/textures/sophisticatedbackpacks/blasting_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/chipped___alchemy_bench_upgrade.png b/public/textures/sophisticatedbackpacks/chipped___alchemy_bench_upgrade.png deleted file mode 100644 index ff043241..00000000 Binary files a/public/textures/sophisticatedbackpacks/chipped___alchemy_bench_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/chipped___botanist_workbench_upgrade.png b/public/textures/sophisticatedbackpacks/chipped___botanist_workbench_upgrade.png deleted file mode 100644 index 75e22533..00000000 Binary files a/public/textures/sophisticatedbackpacks/chipped___botanist_workbench_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/chipped___carpenters_table_upgrade.png b/public/textures/sophisticatedbackpacks/chipped___carpenters_table_upgrade.png deleted file mode 100644 index ffe7939d..00000000 Binary files a/public/textures/sophisticatedbackpacks/chipped___carpenters_table_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/chipped___glassblower_upgrade.png b/public/textures/sophisticatedbackpacks/chipped___glassblower_upgrade.png deleted file mode 100644 index 055d5ffc..00000000 Binary files a/public/textures/sophisticatedbackpacks/chipped___glassblower_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/chipped___loom_table_upgrade.png b/public/textures/sophisticatedbackpacks/chipped___loom_table_upgrade.png deleted file mode 100644 index 9900234b..00000000 Binary files a/public/textures/sophisticatedbackpacks/chipped___loom_table_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/chipped___mason_table_upgrade.png b/public/textures/sophisticatedbackpacks/chipped___mason_table_upgrade.png deleted file mode 100644 index 0690e521..00000000 Binary files a/public/textures/sophisticatedbackpacks/chipped___mason_table_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/chipped___tinkering_table_upgrade.png b/public/textures/sophisticatedbackpacks/chipped___tinkering_table_upgrade.png deleted file mode 100644 index 933a3b6b..00000000 Binary files a/public/textures/sophisticatedbackpacks/chipped___tinkering_table_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/compacting_upgrade.png b/public/textures/sophisticatedbackpacks/compacting_upgrade.png deleted file mode 100644 index 3a0d1256..00000000 Binary files a/public/textures/sophisticatedbackpacks/compacting_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/copper_backpack.png b/public/textures/sophisticatedbackpacks/copper_backpack.png deleted file mode 100644 index d98fc58b..00000000 Binary files a/public/textures/sophisticatedbackpacks/copper_backpack.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/crafting_upgrade.png b/public/textures/sophisticatedbackpacks/crafting_upgrade.png deleted file mode 100644 index 12ba88c5..00000000 Binary files a/public/textures/sophisticatedbackpacks/crafting_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/deposit_upgrade.png b/public/textures/sophisticatedbackpacks/deposit_upgrade.png deleted file mode 100644 index da74ef55..00000000 Binary files a/public/textures/sophisticatedbackpacks/deposit_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/diamond_backpack.png b/public/textures/sophisticatedbackpacks/diamond_backpack.png deleted file mode 100644 index 8e8dfeab..00000000 Binary files a/public/textures/sophisticatedbackpacks/diamond_backpack.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/everlasting_upgrade.png b/public/textures/sophisticatedbackpacks/everlasting_upgrade.png deleted file mode 100644 index 7cfc8fc4..00000000 Binary files a/public/textures/sophisticatedbackpacks/everlasting_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/feeding_upgrade.png b/public/textures/sophisticatedbackpacks/feeding_upgrade.png deleted file mode 100644 index 1a91ac37..00000000 Binary files a/public/textures/sophisticatedbackpacks/feeding_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/filter_upgrade.png b/public/textures/sophisticatedbackpacks/filter_upgrade.png deleted file mode 100644 index ef1b6e4c..00000000 Binary files a/public/textures/sophisticatedbackpacks/filter_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/gold_backpack.png b/public/textures/sophisticatedbackpacks/gold_backpack.png deleted file mode 100644 index bdf5779a..00000000 Binary files a/public/textures/sophisticatedbackpacks/gold_backpack.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/inception_upgrade.png b/public/textures/sophisticatedbackpacks/inception_upgrade.png deleted file mode 100644 index ed2a5937..00000000 Binary files a/public/textures/sophisticatedbackpacks/inception_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/infinity_upgrade.png b/public/textures/sophisticatedbackpacks/infinity_upgrade.png deleted file mode 100644 index 52929533..00000000 Binary files a/public/textures/sophisticatedbackpacks/infinity_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/iron_backpack.png b/public/textures/sophisticatedbackpacks/iron_backpack.png deleted file mode 100644 index 36e2f5ad..00000000 Binary files a/public/textures/sophisticatedbackpacks/iron_backpack.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/jukebox_upgrade.png b/public/textures/sophisticatedbackpacks/jukebox_upgrade.png deleted file mode 100644 index 11f14ff4..00000000 Binary files a/public/textures/sophisticatedbackpacks/jukebox_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/magnet_upgrade.png b/public/textures/sophisticatedbackpacks/magnet_upgrade.png deleted file mode 100644 index ff5e7665..00000000 Binary files a/public/textures/sophisticatedbackpacks/magnet_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/netherite_backpack.png b/public/textures/sophisticatedbackpacks/netherite_backpack.png deleted file mode 100644 index 78c722a2..00000000 Binary files a/public/textures/sophisticatedbackpacks/netherite_backpack.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/pickup_upgrade.png b/public/textures/sophisticatedbackpacks/pickup_upgrade.png deleted file mode 100644 index 2be454a2..00000000 Binary files a/public/textures/sophisticatedbackpacks/pickup_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/pump_upgrade.png b/public/textures/sophisticatedbackpacks/pump_upgrade.png deleted file mode 100644 index 38b1dc77..00000000 Binary files a/public/textures/sophisticatedbackpacks/pump_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/refill_upgrade.png b/public/textures/sophisticatedbackpacks/refill_upgrade.png deleted file mode 100644 index 9bc27c05..00000000 Binary files a/public/textures/sophisticatedbackpacks/refill_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/restock_upgrade.png b/public/textures/sophisticatedbackpacks/restock_upgrade.png deleted file mode 100644 index 066b0b0c..00000000 Binary files a/public/textures/sophisticatedbackpacks/restock_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/smelting_upgrade.png b/public/textures/sophisticatedbackpacks/smelting_upgrade.png deleted file mode 100644 index 34ffe84d..00000000 Binary files a/public/textures/sophisticatedbackpacks/smelting_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/smithing_upgrade.png b/public/textures/sophisticatedbackpacks/smithing_upgrade.png deleted file mode 100644 index e2eaa67d..00000000 Binary files a/public/textures/sophisticatedbackpacks/smithing_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/smoking_upgrade.png b/public/textures/sophisticatedbackpacks/smoking_upgrade.png deleted file mode 100644 index 4f1b5f7a..00000000 Binary files a/public/textures/sophisticatedbackpacks/smoking_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/stack_downgrade_tier_1.png b/public/textures/sophisticatedbackpacks/stack_downgrade_tier_1.png deleted file mode 100644 index af8c03eb..00000000 Binary files a/public/textures/sophisticatedbackpacks/stack_downgrade_tier_1.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/stack_downgrade_tier_2.png b/public/textures/sophisticatedbackpacks/stack_downgrade_tier_2.png deleted file mode 100644 index 884ed11e..00000000 Binary files a/public/textures/sophisticatedbackpacks/stack_downgrade_tier_2.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/stack_downgrade_tier_3.png b/public/textures/sophisticatedbackpacks/stack_downgrade_tier_3.png deleted file mode 100644 index b34acb08..00000000 Binary files a/public/textures/sophisticatedbackpacks/stack_downgrade_tier_3.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/stack_upgrade_omega_tier.png b/public/textures/sophisticatedbackpacks/stack_upgrade_omega_tier.png deleted file mode 100644 index 1a37fe94..00000000 Binary files a/public/textures/sophisticatedbackpacks/stack_upgrade_omega_tier.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/stack_upgrade_starter_tier.png b/public/textures/sophisticatedbackpacks/stack_upgrade_starter_tier.png deleted file mode 100644 index b3f330c5..00000000 Binary files a/public/textures/sophisticatedbackpacks/stack_upgrade_starter_tier.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/stack_upgrade_tier_1.png b/public/textures/sophisticatedbackpacks/stack_upgrade_tier_1.png deleted file mode 100644 index 844deaff..00000000 Binary files a/public/textures/sophisticatedbackpacks/stack_upgrade_tier_1.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/stack_upgrade_tier_2.png b/public/textures/sophisticatedbackpacks/stack_upgrade_tier_2.png deleted file mode 100644 index 4de37d7b..00000000 Binary files a/public/textures/sophisticatedbackpacks/stack_upgrade_tier_2.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/stack_upgrade_tier_3.png b/public/textures/sophisticatedbackpacks/stack_upgrade_tier_3.png deleted file mode 100644 index 10760f6b..00000000 Binary files a/public/textures/sophisticatedbackpacks/stack_upgrade_tier_3.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/stack_upgrade_tier_4.png b/public/textures/sophisticatedbackpacks/stack_upgrade_tier_4.png deleted file mode 100644 index 6c39f1a1..00000000 Binary files a/public/textures/sophisticatedbackpacks/stack_upgrade_tier_4.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/stonecutter_upgrade.png b/public/textures/sophisticatedbackpacks/stonecutter_upgrade.png deleted file mode 100644 index ac6cd007..00000000 Binary files a/public/textures/sophisticatedbackpacks/stonecutter_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/survival_infinity_upgrade.png b/public/textures/sophisticatedbackpacks/survival_infinity_upgrade.png deleted file mode 100644 index 3b9fccae..00000000 Binary files a/public/textures/sophisticatedbackpacks/survival_infinity_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/tank_upgrade.png b/public/textures/sophisticatedbackpacks/tank_upgrade.png deleted file mode 100644 index ca834a02..00000000 Binary files a/public/textures/sophisticatedbackpacks/tank_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/tool_swapper_upgrade.png b/public/textures/sophisticatedbackpacks/tool_swapper_upgrade.png deleted file mode 100644 index 0a3e5291..00000000 Binary files a/public/textures/sophisticatedbackpacks/tool_swapper_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/upgrade_base.png b/public/textures/sophisticatedbackpacks/upgrade_base.png deleted file mode 100644 index d0c92a66..00000000 Binary files a/public/textures/sophisticatedbackpacks/upgrade_base.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/void_upgrade.png b/public/textures/sophisticatedbackpacks/void_upgrade.png deleted file mode 100644 index 0a6e8e04..00000000 Binary files a/public/textures/sophisticatedbackpacks/void_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedbackpacks/xp_pump_upgrade.png b/public/textures/sophisticatedbackpacks/xp_pump_upgrade.png deleted file mode 100644 index b94d9314..00000000 Binary files a/public/textures/sophisticatedbackpacks/xp_pump_upgrade.png and /dev/null differ diff --git a/public/textures/sophisticatedcore/xp_bucket.png b/public/textures/sophisticatedcore/xp_bucket.png deleted file mode 100644 index 641db84e..00000000 Binary files a/public/textures/sophisticatedcore/xp_bucket.png and /dev/null differ diff --git a/public/textures/storagedrawers/acacia_full_drawers_1.png b/public/textures/storagedrawers/acacia_full_drawers_1.png deleted file mode 100644 index f1a079ee..00000000 Binary files a/public/textures/storagedrawers/acacia_full_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/acacia_full_drawers_2.png b/public/textures/storagedrawers/acacia_full_drawers_2.png deleted file mode 100644 index 8d8fd9c1..00000000 Binary files a/public/textures/storagedrawers/acacia_full_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/acacia_full_drawers_4.png b/public/textures/storagedrawers/acacia_full_drawers_4.png deleted file mode 100644 index 9ec9ac3a..00000000 Binary files a/public/textures/storagedrawers/acacia_full_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/acacia_half_drawers_1.png b/public/textures/storagedrawers/acacia_half_drawers_1.png deleted file mode 100644 index 3e68650b..00000000 Binary files a/public/textures/storagedrawers/acacia_half_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/acacia_half_drawers_2.png b/public/textures/storagedrawers/acacia_half_drawers_2.png deleted file mode 100644 index b86bb6c9..00000000 Binary files a/public/textures/storagedrawers/acacia_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/acacia_half_drawers_4.png b/public/textures/storagedrawers/acacia_half_drawers_4.png deleted file mode 100644 index 61b7c392..00000000 Binary files a/public/textures/storagedrawers/acacia_half_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/acacia_trim.png b/public/textures/storagedrawers/acacia_trim.png deleted file mode 100644 index a6361c15..00000000 Binary files a/public/textures/storagedrawers/acacia_trim.png and /dev/null differ diff --git a/public/textures/storagedrawers/balance_fill_upgrade.png b/public/textures/storagedrawers/balance_fill_upgrade.png deleted file mode 100644 index 466ee300..00000000 Binary files a/public/textures/storagedrawers/balance_fill_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/bamboo_full_drawers_1.png b/public/textures/storagedrawers/bamboo_full_drawers_1.png deleted file mode 100644 index d9b32017..00000000 Binary files a/public/textures/storagedrawers/bamboo_full_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/bamboo_full_drawers_2.png b/public/textures/storagedrawers/bamboo_full_drawers_2.png deleted file mode 100644 index 9e1e688c..00000000 Binary files a/public/textures/storagedrawers/bamboo_full_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/bamboo_full_drawers_4.png b/public/textures/storagedrawers/bamboo_full_drawers_4.png deleted file mode 100644 index 81d115fc..00000000 Binary files a/public/textures/storagedrawers/bamboo_full_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/bamboo_half_drawers_1.png b/public/textures/storagedrawers/bamboo_half_drawers_1.png deleted file mode 100644 index 5893e5da..00000000 Binary files a/public/textures/storagedrawers/bamboo_half_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/bamboo_half_drawers_2.png b/public/textures/storagedrawers/bamboo_half_drawers_2.png deleted file mode 100644 index 5abceb90..00000000 Binary files a/public/textures/storagedrawers/bamboo_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/bamboo_half_drawers_4.png b/public/textures/storagedrawers/bamboo_half_drawers_4.png deleted file mode 100644 index 4dc80a30..00000000 Binary files a/public/textures/storagedrawers/bamboo_half_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/bamboo_trim.png b/public/textures/storagedrawers/bamboo_trim.png deleted file mode 100644 index a5b1d7f0..00000000 Binary files a/public/textures/storagedrawers/bamboo_trim.png and /dev/null differ diff --git a/public/textures/storagedrawers/birch_full_drawers_1.png b/public/textures/storagedrawers/birch_full_drawers_1.png deleted file mode 100644 index 9cdfa0b3..00000000 Binary files a/public/textures/storagedrawers/birch_full_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/birch_full_drawers_2.png b/public/textures/storagedrawers/birch_full_drawers_2.png deleted file mode 100644 index 468ff6d8..00000000 Binary files a/public/textures/storagedrawers/birch_full_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/birch_full_drawers_4.png b/public/textures/storagedrawers/birch_full_drawers_4.png deleted file mode 100644 index 21d7c5a0..00000000 Binary files a/public/textures/storagedrawers/birch_full_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/birch_half_drawers_1.png b/public/textures/storagedrawers/birch_half_drawers_1.png deleted file mode 100644 index bbb3c2a0..00000000 Binary files a/public/textures/storagedrawers/birch_half_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/birch_half_drawers_2.png b/public/textures/storagedrawers/birch_half_drawers_2.png deleted file mode 100644 index 0150e3a7..00000000 Binary files a/public/textures/storagedrawers/birch_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/birch_half_drawers_4.png b/public/textures/storagedrawers/birch_half_drawers_4.png deleted file mode 100644 index 8dd35e3f..00000000 Binary files a/public/textures/storagedrawers/birch_half_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/birch_trim.png b/public/textures/storagedrawers/birch_trim.png deleted file mode 100644 index ebceb8af..00000000 Binary files a/public/textures/storagedrawers/birch_trim.png and /dev/null differ diff --git a/public/textures/storagedrawers/cherry_full_drawers_1.png b/public/textures/storagedrawers/cherry_full_drawers_1.png deleted file mode 100644 index bdc6a92e..00000000 Binary files a/public/textures/storagedrawers/cherry_full_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/cherry_full_drawers_2.png b/public/textures/storagedrawers/cherry_full_drawers_2.png deleted file mode 100644 index dcd2d635..00000000 Binary files a/public/textures/storagedrawers/cherry_full_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/cherry_full_drawers_4.png b/public/textures/storagedrawers/cherry_full_drawers_4.png deleted file mode 100644 index be355290..00000000 Binary files a/public/textures/storagedrawers/cherry_full_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/cherry_half_drawers_1.png b/public/textures/storagedrawers/cherry_half_drawers_1.png deleted file mode 100644 index 9b913f68..00000000 Binary files a/public/textures/storagedrawers/cherry_half_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/cherry_half_drawers_2.png b/public/textures/storagedrawers/cherry_half_drawers_2.png deleted file mode 100644 index f768d35b..00000000 Binary files a/public/textures/storagedrawers/cherry_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/cherry_half_drawers_4.png b/public/textures/storagedrawers/cherry_half_drawers_4.png deleted file mode 100644 index e7feb95c..00000000 Binary files a/public/textures/storagedrawers/cherry_half_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/cherry_trim.png b/public/textures/storagedrawers/cherry_trim.png deleted file mode 100644 index eb20f3bb..00000000 Binary files a/public/textures/storagedrawers/cherry_trim.png and /dev/null differ diff --git a/public/textures/storagedrawers/compacting_drawers_2.png b/public/textures/storagedrawers/compacting_drawers_2.png deleted file mode 100644 index 52f48367..00000000 Binary files a/public/textures/storagedrawers/compacting_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/compacting_drawers_3.png b/public/textures/storagedrawers/compacting_drawers_3.png deleted file mode 100644 index 55ee0c93..00000000 Binary files a/public/textures/storagedrawers/compacting_drawers_3.png and /dev/null differ diff --git a/public/textures/storagedrawers/compacting_half_drawers_2.png b/public/textures/storagedrawers/compacting_half_drawers_2.png deleted file mode 100644 index df21a874..00000000 Binary files a/public/textures/storagedrawers/compacting_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/compacting_half_drawers_3.png b/public/textures/storagedrawers/compacting_half_drawers_3.png deleted file mode 100644 index 14f1ed77..00000000 Binary files a/public/textures/storagedrawers/compacting_half_drawers_3.png and /dev/null differ diff --git a/public/textures/storagedrawers/controller.png b/public/textures/storagedrawers/controller.png deleted file mode 100644 index eaeea695..00000000 Binary files a/public/textures/storagedrawers/controller.png and /dev/null differ diff --git a/public/textures/storagedrawers/controller_io.png b/public/textures/storagedrawers/controller_io.png deleted file mode 100644 index 4d5687f2..00000000 Binary files a/public/textures/storagedrawers/controller_io.png and /dev/null differ diff --git a/public/textures/storagedrawers/conversion_upgrade.png b/public/textures/storagedrawers/conversion_upgrade.png deleted file mode 100644 index 572569ae..00000000 Binary files a/public/textures/storagedrawers/conversion_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/creative_storage_upgrade.png b/public/textures/storagedrawers/creative_storage_upgrade.png deleted file mode 100644 index f2c437d7..00000000 Binary files a/public/textures/storagedrawers/creative_storage_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/creative_vending_upgrade.png b/public/textures/storagedrawers/creative_vending_upgrade.png deleted file mode 100644 index 782509e2..00000000 Binary files a/public/textures/storagedrawers/creative_vending_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/crimson_full_drawers_1.png b/public/textures/storagedrawers/crimson_full_drawers_1.png deleted file mode 100644 index 3727a5eb..00000000 Binary files a/public/textures/storagedrawers/crimson_full_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/crimson_full_drawers_2.png b/public/textures/storagedrawers/crimson_full_drawers_2.png deleted file mode 100644 index db6d069d..00000000 Binary files a/public/textures/storagedrawers/crimson_full_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/crimson_full_drawers_4.png b/public/textures/storagedrawers/crimson_full_drawers_4.png deleted file mode 100644 index b9f2474a..00000000 Binary files a/public/textures/storagedrawers/crimson_full_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/crimson_half_drawers_1.png b/public/textures/storagedrawers/crimson_half_drawers_1.png deleted file mode 100644 index c6bef15c..00000000 Binary files a/public/textures/storagedrawers/crimson_half_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/crimson_half_drawers_2.png b/public/textures/storagedrawers/crimson_half_drawers_2.png deleted file mode 100644 index acc02a52..00000000 Binary files a/public/textures/storagedrawers/crimson_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/crimson_half_drawers_4.png b/public/textures/storagedrawers/crimson_half_drawers_4.png deleted file mode 100644 index e77f5785..00000000 Binary files a/public/textures/storagedrawers/crimson_half_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/crimson_trim.png b/public/textures/storagedrawers/crimson_trim.png deleted file mode 100644 index 19777a79..00000000 Binary files a/public/textures/storagedrawers/crimson_trim.png and /dev/null differ diff --git a/public/textures/storagedrawers/dark_oak_full_drawers_1.png b/public/textures/storagedrawers/dark_oak_full_drawers_1.png deleted file mode 100644 index 7ab4fed0..00000000 Binary files a/public/textures/storagedrawers/dark_oak_full_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/dark_oak_full_drawers_2.png b/public/textures/storagedrawers/dark_oak_full_drawers_2.png deleted file mode 100644 index 73cb12d7..00000000 Binary files a/public/textures/storagedrawers/dark_oak_full_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/dark_oak_full_drawers_4.png b/public/textures/storagedrawers/dark_oak_full_drawers_4.png deleted file mode 100644 index 20a648c4..00000000 Binary files a/public/textures/storagedrawers/dark_oak_full_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/dark_oak_half_drawers_1.png b/public/textures/storagedrawers/dark_oak_half_drawers_1.png deleted file mode 100644 index 02352c4f..00000000 Binary files a/public/textures/storagedrawers/dark_oak_half_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/dark_oak_half_drawers_2.png b/public/textures/storagedrawers/dark_oak_half_drawers_2.png deleted file mode 100644 index 0081ecac..00000000 Binary files a/public/textures/storagedrawers/dark_oak_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/dark_oak_half_drawers_4.png b/public/textures/storagedrawers/dark_oak_half_drawers_4.png deleted file mode 100644 index c96b0db7..00000000 Binary files a/public/textures/storagedrawers/dark_oak_half_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/dark_oak_trim.png b/public/textures/storagedrawers/dark_oak_trim.png deleted file mode 100644 index 9a9ecf16..00000000 Binary files a/public/textures/storagedrawers/dark_oak_trim.png and /dev/null differ diff --git a/public/textures/storagedrawers/detached_drawer.png b/public/textures/storagedrawers/detached_drawer.png deleted file mode 100644 index 9d1f28b1..00000000 Binary files a/public/textures/storagedrawers/detached_drawer.png and /dev/null differ diff --git a/public/textures/storagedrawers/diamond_storage_upgrade.png b/public/textures/storagedrawers/diamond_storage_upgrade.png deleted file mode 100644 index b4e6e993..00000000 Binary files a/public/textures/storagedrawers/diamond_storage_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/drawer_key.png b/public/textures/storagedrawers/drawer_key.png deleted file mode 100644 index e497ea8e..00000000 Binary files a/public/textures/storagedrawers/drawer_key.png and /dev/null differ diff --git a/public/textures/storagedrawers/drawer_puller.png b/public/textures/storagedrawers/drawer_puller.png deleted file mode 100644 index 9342be64..00000000 Binary files a/public/textures/storagedrawers/drawer_puller.png and /dev/null differ diff --git a/public/textures/storagedrawers/emerald_storage_upgrade.png b/public/textures/storagedrawers/emerald_storage_upgrade.png deleted file mode 100644 index 5088ff35..00000000 Binary files a/public/textures/storagedrawers/emerald_storage_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/fill_level_upgrade.png b/public/textures/storagedrawers/fill_level_upgrade.png deleted file mode 100644 index 7ea20e23..00000000 Binary files a/public/textures/storagedrawers/fill_level_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/framing_table.png b/public/textures/storagedrawers/framing_table.png deleted file mode 100644 index 9019e283..00000000 Binary files a/public/textures/storagedrawers/framing_table.png and /dev/null differ diff --git a/public/textures/storagedrawers/gold_storage_upgrade.png b/public/textures/storagedrawers/gold_storage_upgrade.png deleted file mode 100644 index 739c1251..00000000 Binary files a/public/textures/storagedrawers/gold_storage_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/illumination_upgrade.png b/public/textures/storagedrawers/illumination_upgrade.png deleted file mode 100644 index b572351a..00000000 Binary files a/public/textures/storagedrawers/illumination_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/iron_storage_upgrade.png b/public/textures/storagedrawers/iron_storage_upgrade.png deleted file mode 100644 index db57a897..00000000 Binary files a/public/textures/storagedrawers/iron_storage_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/jungle_full_drawers_1.png b/public/textures/storagedrawers/jungle_full_drawers_1.png deleted file mode 100644 index f79ed31c..00000000 Binary files a/public/textures/storagedrawers/jungle_full_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/jungle_full_drawers_2.png b/public/textures/storagedrawers/jungle_full_drawers_2.png deleted file mode 100644 index a5f62913..00000000 Binary files a/public/textures/storagedrawers/jungle_full_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/jungle_full_drawers_4.png b/public/textures/storagedrawers/jungle_full_drawers_4.png deleted file mode 100644 index 01f8d5c7..00000000 Binary files a/public/textures/storagedrawers/jungle_full_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/jungle_half_drawers_1.png b/public/textures/storagedrawers/jungle_half_drawers_1.png deleted file mode 100644 index 403b5a04..00000000 Binary files a/public/textures/storagedrawers/jungle_half_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/jungle_half_drawers_2.png b/public/textures/storagedrawers/jungle_half_drawers_2.png deleted file mode 100644 index 36729560..00000000 Binary files a/public/textures/storagedrawers/jungle_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/jungle_half_drawers_4.png b/public/textures/storagedrawers/jungle_half_drawers_4.png deleted file mode 100644 index 59b7a265..00000000 Binary files a/public/textures/storagedrawers/jungle_half_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/jungle_trim.png b/public/textures/storagedrawers/jungle_trim.png deleted file mode 100644 index a3b2f25e..00000000 Binary files a/public/textures/storagedrawers/jungle_trim.png and /dev/null differ diff --git a/public/textures/storagedrawers/keybutton_concealment.png b/public/textures/storagedrawers/keybutton_concealment.png deleted file mode 100644 index 9dd7fff4..00000000 Binary files a/public/textures/storagedrawers/keybutton_concealment.png and /dev/null differ diff --git a/public/textures/storagedrawers/keybutton_drawer.png b/public/textures/storagedrawers/keybutton_drawer.png deleted file mode 100644 index 749e55ca..00000000 Binary files a/public/textures/storagedrawers/keybutton_drawer.png and /dev/null differ diff --git a/public/textures/storagedrawers/keybutton_quantify.png b/public/textures/storagedrawers/keybutton_quantify.png deleted file mode 100644 index fa271f10..00000000 Binary files a/public/textures/storagedrawers/keybutton_quantify.png and /dev/null differ diff --git a/public/textures/storagedrawers/keyring.png b/public/textures/storagedrawers/keyring.png deleted file mode 100644 index 93d0e9a5..00000000 Binary files a/public/textures/storagedrawers/keyring.png and /dev/null differ diff --git a/public/textures/storagedrawers/mangrove_full_drawers_1.png b/public/textures/storagedrawers/mangrove_full_drawers_1.png deleted file mode 100644 index 7b8f8960..00000000 Binary files a/public/textures/storagedrawers/mangrove_full_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/mangrove_full_drawers_2.png b/public/textures/storagedrawers/mangrove_full_drawers_2.png deleted file mode 100644 index 94a60294..00000000 Binary files a/public/textures/storagedrawers/mangrove_full_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/mangrove_full_drawers_4.png b/public/textures/storagedrawers/mangrove_full_drawers_4.png deleted file mode 100644 index 86cfba83..00000000 Binary files a/public/textures/storagedrawers/mangrove_full_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/mangrove_half_drawers_1.png b/public/textures/storagedrawers/mangrove_half_drawers_1.png deleted file mode 100644 index d5a729ad..00000000 Binary files a/public/textures/storagedrawers/mangrove_half_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/mangrove_half_drawers_2.png b/public/textures/storagedrawers/mangrove_half_drawers_2.png deleted file mode 100644 index 90626f35..00000000 Binary files a/public/textures/storagedrawers/mangrove_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/mangrove_half_drawers_4.png b/public/textures/storagedrawers/mangrove_half_drawers_4.png deleted file mode 100644 index 6d0b5122..00000000 Binary files a/public/textures/storagedrawers/mangrove_half_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/mangrove_trim.png b/public/textures/storagedrawers/mangrove_trim.png deleted file mode 100644 index a5cb1391..00000000 Binary files a/public/textures/storagedrawers/mangrove_trim.png and /dev/null differ diff --git a/public/textures/storagedrawers/max_redstone_upgrade.png b/public/textures/storagedrawers/max_redstone_upgrade.png deleted file mode 100644 index bbf5fca3..00000000 Binary files a/public/textures/storagedrawers/max_redstone_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/min_redstone_upgrade.png b/public/textures/storagedrawers/min_redstone_upgrade.png deleted file mode 100644 index 4d6d9b27..00000000 Binary files a/public/textures/storagedrawers/min_redstone_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/oak_full_drawers_1.png b/public/textures/storagedrawers/oak_full_drawers_1.png deleted file mode 100644 index be2fe34a..00000000 Binary files a/public/textures/storagedrawers/oak_full_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/oak_full_drawers_2.png b/public/textures/storagedrawers/oak_full_drawers_2.png deleted file mode 100644 index f9cc61f4..00000000 Binary files a/public/textures/storagedrawers/oak_full_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/oak_full_drawers_4.png b/public/textures/storagedrawers/oak_full_drawers_4.png deleted file mode 100644 index 4b2b325c..00000000 Binary files a/public/textures/storagedrawers/oak_full_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/oak_half_drawers_1.png b/public/textures/storagedrawers/oak_half_drawers_1.png deleted file mode 100644 index bab4cc7f..00000000 Binary files a/public/textures/storagedrawers/oak_half_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/oak_half_drawers_2.png b/public/textures/storagedrawers/oak_half_drawers_2.png deleted file mode 100644 index f232f841..00000000 Binary files a/public/textures/storagedrawers/oak_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/oak_half_drawers_4.png b/public/textures/storagedrawers/oak_half_drawers_4.png deleted file mode 100644 index 1801a05b..00000000 Binary files a/public/textures/storagedrawers/oak_half_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/oak_trim.png b/public/textures/storagedrawers/oak_trim.png deleted file mode 100644 index 80514c71..00000000 Binary files a/public/textures/storagedrawers/oak_trim.png and /dev/null differ diff --git a/public/textures/storagedrawers/obsidian_storage_upgrade.png b/public/textures/storagedrawers/obsidian_storage_upgrade.png deleted file mode 100644 index b54984c7..00000000 Binary files a/public/textures/storagedrawers/obsidian_storage_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/one_stack_upgrade.png b/public/textures/storagedrawers/one_stack_upgrade.png deleted file mode 100644 index 852c4559..00000000 Binary files a/public/textures/storagedrawers/one_stack_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/personal_key.png b/public/textures/storagedrawers/personal_key.png deleted file mode 100644 index 085d09d3..00000000 Binary files a/public/textures/storagedrawers/personal_key.png and /dev/null differ diff --git a/public/textures/storagedrawers/personal_key_cofh.png b/public/textures/storagedrawers/personal_key_cofh.png deleted file mode 100644 index 51b7133c..00000000 Binary files a/public/textures/storagedrawers/personal_key_cofh.png and /dev/null differ diff --git a/public/textures/storagedrawers/portability_upgrade.png b/public/textures/storagedrawers/portability_upgrade.png deleted file mode 100644 index 0cc4b0a4..00000000 Binary files a/public/textures/storagedrawers/portability_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/priority_key.png b/public/textures/storagedrawers/priority_key.png deleted file mode 100644 index 0f99acd7..00000000 Binary files a/public/textures/storagedrawers/priority_key.png and /dev/null differ diff --git a/public/textures/storagedrawers/quantify_key.png b/public/textures/storagedrawers/quantify_key.png deleted file mode 100644 index 1420182e..00000000 Binary files a/public/textures/storagedrawers/quantify_key.png and /dev/null differ diff --git a/public/textures/storagedrawers/redstone_upgrade.png b/public/textures/storagedrawers/redstone_upgrade.png deleted file mode 100644 index 65ca8819..00000000 Binary files a/public/textures/storagedrawers/redstone_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/remote_group_upgrade.png b/public/textures/storagedrawers/remote_group_upgrade.png deleted file mode 100644 index 19201457..00000000 Binary files a/public/textures/storagedrawers/remote_group_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/remote_upgrade.png b/public/textures/storagedrawers/remote_upgrade.png deleted file mode 100644 index 962178ac..00000000 Binary files a/public/textures/storagedrawers/remote_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/shroud_key.png b/public/textures/storagedrawers/shroud_key.png deleted file mode 100644 index 6880f9da..00000000 Binary files a/public/textures/storagedrawers/shroud_key.png and /dev/null differ diff --git a/public/textures/storagedrawers/spruce_full_drawers_1.png b/public/textures/storagedrawers/spruce_full_drawers_1.png deleted file mode 100644 index 692eb46e..00000000 Binary files a/public/textures/storagedrawers/spruce_full_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/spruce_full_drawers_2.png b/public/textures/storagedrawers/spruce_full_drawers_2.png deleted file mode 100644 index 177cdba8..00000000 Binary files a/public/textures/storagedrawers/spruce_full_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/spruce_full_drawers_4.png b/public/textures/storagedrawers/spruce_full_drawers_4.png deleted file mode 100644 index 46d15396..00000000 Binary files a/public/textures/storagedrawers/spruce_full_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/spruce_half_drawers_1.png b/public/textures/storagedrawers/spruce_half_drawers_1.png deleted file mode 100644 index b454ef37..00000000 Binary files a/public/textures/storagedrawers/spruce_half_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/spruce_half_drawers_2.png b/public/textures/storagedrawers/spruce_half_drawers_2.png deleted file mode 100644 index 3e0c2f7d..00000000 Binary files a/public/textures/storagedrawers/spruce_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/spruce_half_drawers_4.png b/public/textures/storagedrawers/spruce_half_drawers_4.png deleted file mode 100644 index 7d10c0c6..00000000 Binary files a/public/textures/storagedrawers/spruce_half_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/spruce_trim.png b/public/textures/storagedrawers/spruce_trim.png deleted file mode 100644 index d341a88f..00000000 Binary files a/public/textures/storagedrawers/spruce_trim.png and /dev/null differ diff --git a/public/textures/storagedrawers/upgrade_template.png b/public/textures/storagedrawers/upgrade_template.png deleted file mode 100644 index 9dd6e1be..00000000 Binary files a/public/textures/storagedrawers/upgrade_template.png and /dev/null differ diff --git a/public/textures/storagedrawers/void_upgrade.png b/public/textures/storagedrawers/void_upgrade.png deleted file mode 100644 index 6dcc25db..00000000 Binary files a/public/textures/storagedrawers/void_upgrade.png and /dev/null differ diff --git a/public/textures/storagedrawers/warped_full_drawers_1.png b/public/textures/storagedrawers/warped_full_drawers_1.png deleted file mode 100644 index bf59bbbf..00000000 Binary files a/public/textures/storagedrawers/warped_full_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/warped_full_drawers_2.png b/public/textures/storagedrawers/warped_full_drawers_2.png deleted file mode 100644 index df2b91c6..00000000 Binary files a/public/textures/storagedrawers/warped_full_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/warped_full_drawers_4.png b/public/textures/storagedrawers/warped_full_drawers_4.png deleted file mode 100644 index 36821b4d..00000000 Binary files a/public/textures/storagedrawers/warped_full_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/warped_half_drawers_1.png b/public/textures/storagedrawers/warped_half_drawers_1.png deleted file mode 100644 index 25347cbb..00000000 Binary files a/public/textures/storagedrawers/warped_half_drawers_1.png and /dev/null differ diff --git a/public/textures/storagedrawers/warped_half_drawers_2.png b/public/textures/storagedrawers/warped_half_drawers_2.png deleted file mode 100644 index e6561701..00000000 Binary files a/public/textures/storagedrawers/warped_half_drawers_2.png and /dev/null differ diff --git a/public/textures/storagedrawers/warped_half_drawers_4.png b/public/textures/storagedrawers/warped_half_drawers_4.png deleted file mode 100644 index e8022687..00000000 Binary files a/public/textures/storagedrawers/warped_half_drawers_4.png and /dev/null differ diff --git a/public/textures/storagedrawers/warped_trim.png b/public/textures/storagedrawers/warped_trim.png deleted file mode 100644 index d446e001..00000000 Binary files a/public/textures/storagedrawers/warped_trim.png and /dev/null differ diff --git a/public/textures/strawstatues/straw_statue.png b/public/textures/strawstatues/straw_statue.png deleted file mode 100644 index 82a140f1..00000000 Binary files a/public/textures/strawstatues/straw_statue.png and /dev/null differ diff --git a/public/textures/twilightdelight/aurora_pie.png b/public/textures/twilightdelight/aurora_pie.png deleted file mode 100644 index 12b73815..00000000 Binary files a/public/textures/twilightdelight/aurora_pie.png and /dev/null differ diff --git a/public/textures/twilightdelight/aurora_pie_slice.png b/public/textures/twilightdelight/aurora_pie_slice.png deleted file mode 100644 index 04f1f1ed..00000000 Binary files a/public/textures/twilightdelight/aurora_pie_slice.png and /dev/null differ diff --git a/public/textures/twilightdelight/berry_stick.png b/public/textures/twilightdelight/berry_stick.png deleted file mode 100644 index 9c32ead0..00000000 Binary files a/public/textures/twilightdelight/berry_stick.png and /dev/null differ diff --git a/public/textures/twilightdelight/borer_tear_soup.png b/public/textures/twilightdelight/borer_tear_soup.png deleted file mode 100644 index a38ca1d6..00000000 Binary files a/public/textures/twilightdelight/borer_tear_soup.png and /dev/null differ diff --git a/public/textures/twilightdelight/canopy_cabinet.png b/public/textures/twilightdelight/canopy_cabinet.png deleted file mode 100644 index 031bdec0..00000000 Binary files a/public/textures/twilightdelight/canopy_cabinet.png and /dev/null differ diff --git a/public/textures/twilightdelight/chocolate_113.png b/public/textures/twilightdelight/chocolate_113.png deleted file mode 100644 index ecde81d3..00000000 Binary files a/public/textures/twilightdelight/chocolate_113.png and /dev/null differ diff --git a/public/textures/twilightdelight/chocolate_wafer.png b/public/textures/twilightdelight/chocolate_wafer.png deleted file mode 100644 index e2584087..00000000 Binary files a/public/textures/twilightdelight/chocolate_wafer.png and /dev/null differ diff --git a/public/textures/twilightdelight/cooked_insect.png b/public/textures/twilightdelight/cooked_insect.png deleted file mode 100644 index c81a8fb5..00000000 Binary files a/public/textures/twilightdelight/cooked_insect.png and /dev/null differ diff --git a/public/textures/twilightdelight/cooked_meef_slice.png b/public/textures/twilightdelight/cooked_meef_slice.png deleted file mode 100644 index 8ecd1de0..00000000 Binary files a/public/textures/twilightdelight/cooked_meef_slice.png and /dev/null differ diff --git a/public/textures/twilightdelight/cooked_tomahawk_smeak.png b/public/textures/twilightdelight/cooked_tomahawk_smeak.png deleted file mode 100644 index 2be6ca0b..00000000 Binary files a/public/textures/twilightdelight/cooked_tomahawk_smeak.png and /dev/null differ diff --git a/public/textures/twilightdelight/cooked_venison_rib.png b/public/textures/twilightdelight/cooked_venison_rib.png deleted file mode 100644 index 7b5dfd87..00000000 Binary files a/public/textures/twilightdelight/cooked_venison_rib.png and /dev/null differ diff --git a/public/textures/twilightdelight/dark_cabinet.png b/public/textures/twilightdelight/dark_cabinet.png deleted file mode 100644 index 8805488b..00000000 Binary files a/public/textures/twilightdelight/dark_cabinet.png and /dev/null differ diff --git a/public/textures/twilightdelight/experiment_110.png b/public/textures/twilightdelight/experiment_110.png deleted file mode 100644 index c28f5a44..00000000 Binary files a/public/textures/twilightdelight/experiment_110.png and /dev/null differ diff --git a/public/textures/twilightdelight/experiment_113.png b/public/textures/twilightdelight/experiment_113.png deleted file mode 100644 index 5dec2660..00000000 Binary files a/public/textures/twilightdelight/experiment_113.png and /dev/null differ diff --git a/public/textures/twilightdelight/fiery_cooking_pot.png b/public/textures/twilightdelight/fiery_cooking_pot.png deleted file mode 100644 index 6c608ab2..00000000 Binary files a/public/textures/twilightdelight/fiery_cooking_pot.png and /dev/null differ diff --git a/public/textures/twilightdelight/fiery_knife.png b/public/textures/twilightdelight/fiery_knife.png deleted file mode 100644 index 31e80ff3..00000000 Binary files a/public/textures/twilightdelight/fiery_knife.png and /dev/null differ diff --git a/public/textures/twilightdelight/fiery_snakes_block.png b/public/textures/twilightdelight/fiery_snakes_block.png deleted file mode 100644 index 6b75c986..00000000 Binary files a/public/textures/twilightdelight/fiery_snakes_block.png and /dev/null differ diff --git a/public/textures/twilightdelight/fried_insect.png b/public/textures/twilightdelight/fried_insect.png deleted file mode 100644 index 56eb3759..00000000 Binary files a/public/textures/twilightdelight/fried_insect.png and /dev/null differ diff --git a/public/textures/twilightdelight/ghast_brain_salad.png b/public/textures/twilightdelight/ghast_brain_salad.png deleted file mode 100644 index 20dbf295..00000000 Binary files a/public/textures/twilightdelight/ghast_brain_salad.png and /dev/null differ diff --git a/public/textures/twilightdelight/ghast_burger.png b/public/textures/twilightdelight/ghast_burger.png deleted file mode 100644 index 7833a475..00000000 Binary files a/public/textures/twilightdelight/ghast_burger.png and /dev/null differ diff --git a/public/textures/twilightdelight/glacier_ice_tea.png b/public/textures/twilightdelight/glacier_ice_tea.png deleted file mode 100644 index 05de2b8c..00000000 Binary files a/public/textures/twilightdelight/glacier_ice_tea.png and /dev/null differ diff --git a/public/textures/twilightdelight/glow_113.png b/public/textures/twilightdelight/glow_113.png deleted file mode 100644 index c0cb12ee..00000000 Binary files a/public/textures/twilightdelight/glow_113.png and /dev/null differ diff --git a/public/textures/twilightdelight/glow_venison_rib_with_pasta.png b/public/textures/twilightdelight/glow_venison_rib_with_pasta.png deleted file mode 100644 index b1fe23c1..00000000 Binary files a/public/textures/twilightdelight/glow_venison_rib_with_pasta.png and /dev/null differ diff --git a/public/textures/twilightdelight/glowstew.png b/public/textures/twilightdelight/glowstew.png deleted file mode 100644 index 06b4966d..00000000 Binary files a/public/textures/twilightdelight/glowstew.png and /dev/null differ diff --git a/public/textures/twilightdelight/grilled_ghast.png b/public/textures/twilightdelight/grilled_ghast.png deleted file mode 100644 index 891c65c2..00000000 Binary files a/public/textures/twilightdelight/grilled_ghast.png and /dev/null differ diff --git a/public/textures/twilightdelight/grilled_tomahawk_smeak.png b/public/textures/twilightdelight/grilled_tomahawk_smeak.png deleted file mode 100644 index 93ed5d52..00000000 Binary files a/public/textures/twilightdelight/grilled_tomahawk_smeak.png and /dev/null differ diff --git a/public/textures/twilightdelight/honey_113.png b/public/textures/twilightdelight/honey_113.png deleted file mode 100644 index 3cac910a..00000000 Binary files a/public/textures/twilightdelight/honey_113.png and /dev/null differ diff --git a/public/textures/twilightdelight/hydra_burger.png b/public/textures/twilightdelight/hydra_burger.png deleted file mode 100644 index c5e717e5..00000000 Binary files a/public/textures/twilightdelight/hydra_burger.png and /dev/null differ diff --git a/public/textures/twilightdelight/hydra_piece.png b/public/textures/twilightdelight/hydra_piece.png deleted file mode 100644 index ca258ca4..00000000 Binary files a/public/textures/twilightdelight/hydra_piece.png and /dev/null differ diff --git a/public/textures/twilightdelight/ironwood_knife.png b/public/textures/twilightdelight/ironwood_knife.png deleted file mode 100644 index 3b7c94ac..00000000 Binary files a/public/textures/twilightdelight/ironwood_knife.png and /dev/null differ diff --git a/public/textures/twilightdelight/knightmetal_knife.png b/public/textures/twilightdelight/knightmetal_knife.png deleted file mode 100644 index 05955e31..00000000 Binary files a/public/textures/twilightdelight/knightmetal_knife.png and /dev/null differ diff --git a/public/textures/twilightdelight/lily_chicken_block.png b/public/textures/twilightdelight/lily_chicken_block.png deleted file mode 100644 index 2a38119c..00000000 Binary files a/public/textures/twilightdelight/lily_chicken_block.png and /dev/null differ diff --git a/public/textures/twilightdelight/mangrove_cabinet.png b/public/textures/twilightdelight/mangrove_cabinet.png deleted file mode 100644 index 0d364cee..00000000 Binary files a/public/textures/twilightdelight/mangrove_cabinet.png and /dev/null differ diff --git a/public/textures/twilightdelight/maze_stove.png b/public/textures/twilightdelight/maze_stove.png deleted file mode 100644 index febcc443..00000000 Binary files a/public/textures/twilightdelight/maze_stove.png and /dev/null differ diff --git a/public/textures/twilightdelight/meef_wellington_block.png b/public/textures/twilightdelight/meef_wellington_block.png deleted file mode 100644 index 8f51f3e3..00000000 Binary files a/public/textures/twilightdelight/meef_wellington_block.png and /dev/null differ diff --git a/public/textures/twilightdelight/meef_wrap.png b/public/textures/twilightdelight/meef_wrap.png deleted file mode 100644 index e3a258f5..00000000 Binary files a/public/textures/twilightdelight/meef_wrap.png and /dev/null differ diff --git a/public/textures/twilightdelight/milky_113.png b/public/textures/twilightdelight/milky_113.png deleted file mode 100644 index 5017d08a..00000000 Binary files a/public/textures/twilightdelight/milky_113.png and /dev/null differ diff --git a/public/textures/twilightdelight/mining_cabinet.png b/public/textures/twilightdelight/mining_cabinet.png deleted file mode 100644 index c8154de5..00000000 Binary files a/public/textures/twilightdelight/mining_cabinet.png and /dev/null differ diff --git a/public/textures/twilightdelight/mushgloom_colony.png b/public/textures/twilightdelight/mushgloom_colony.png deleted file mode 100644 index c88ab3d6..00000000 Binary files a/public/textures/twilightdelight/mushgloom_colony.png and /dev/null differ diff --git a/public/textures/twilightdelight/mushgloom_meef_pasta.png b/public/textures/twilightdelight/mushgloom_meef_pasta.png deleted file mode 100644 index f6491c13..00000000 Binary files a/public/textures/twilightdelight/mushgloom_meef_pasta.png and /dev/null differ diff --git a/public/textures/twilightdelight/mushgloom_sauce.png b/public/textures/twilightdelight/mushgloom_sauce.png deleted file mode 100644 index 54796377..00000000 Binary files a/public/textures/twilightdelight/mushgloom_sauce.png and /dev/null differ diff --git a/public/textures/twilightdelight/naga_chip.png b/public/textures/twilightdelight/naga_chip.png deleted file mode 100644 index 6060df48..00000000 Binary files a/public/textures/twilightdelight/naga_chip.png and /dev/null differ diff --git a/public/textures/twilightdelight/phytochemical_juice.png b/public/textures/twilightdelight/phytochemical_juice.png deleted file mode 100644 index 908ee898..00000000 Binary files a/public/textures/twilightdelight/phytochemical_juice.png and /dev/null differ diff --git a/public/textures/twilightdelight/plate_of_fiery_snakes.png b/public/textures/twilightdelight/plate_of_fiery_snakes.png deleted file mode 100644 index c930abab..00000000 Binary files a/public/textures/twilightdelight/plate_of_fiery_snakes.png and /dev/null differ diff --git a/public/textures/twilightdelight/plate_of_lily_chicken.png b/public/textures/twilightdelight/plate_of_lily_chicken.png deleted file mode 100644 index 4b482ca9..00000000 Binary files a/public/textures/twilightdelight/plate_of_lily_chicken.png and /dev/null differ diff --git a/public/textures/twilightdelight/plate_of_meef_wellington.png b/public/textures/twilightdelight/plate_of_meef_wellington.png deleted file mode 100644 index 272470cc..00000000 Binary files a/public/textures/twilightdelight/plate_of_meef_wellington.png and /dev/null differ diff --git a/public/textures/twilightdelight/raw_insect.png b/public/textures/twilightdelight/raw_insect.png deleted file mode 100644 index cd0f154f..00000000 Binary files a/public/textures/twilightdelight/raw_insect.png and /dev/null differ diff --git a/public/textures/twilightdelight/raw_meef_slice.png b/public/textures/twilightdelight/raw_meef_slice.png deleted file mode 100644 index 4ddf79fd..00000000 Binary files a/public/textures/twilightdelight/raw_meef_slice.png and /dev/null differ diff --git a/public/textures/twilightdelight/raw_tomahawk_smeak.png b/public/textures/twilightdelight/raw_tomahawk_smeak.png deleted file mode 100644 index 49d4a83b..00000000 Binary files a/public/textures/twilightdelight/raw_tomahawk_smeak.png and /dev/null differ diff --git a/public/textures/twilightdelight/raw_venison_rib.png b/public/textures/twilightdelight/raw_venison_rib.png deleted file mode 100644 index e46d4782..00000000 Binary files a/public/textures/twilightdelight/raw_venison_rib.png and /dev/null differ diff --git a/public/textures/twilightdelight/sorting_cabinet.png b/public/textures/twilightdelight/sorting_cabinet.png deleted file mode 100644 index f608e6b3..00000000 Binary files a/public/textures/twilightdelight/sorting_cabinet.png and /dev/null differ diff --git a/public/textures/twilightdelight/steeleaf_knife.png b/public/textures/twilightdelight/steeleaf_knife.png deleted file mode 100644 index 493b6f8b..00000000 Binary files a/public/textures/twilightdelight/steeleaf_knife.png and /dev/null differ diff --git a/public/textures/twilightdelight/tear_drink.png b/public/textures/twilightdelight/tear_drink.png deleted file mode 100644 index 644f4806..00000000 Binary files a/public/textures/twilightdelight/tear_drink.png and /dev/null differ diff --git a/public/textures/twilightdelight/teardrop_sword.png b/public/textures/twilightdelight/teardrop_sword.png deleted file mode 100644 index a53bfd39..00000000 Binary files a/public/textures/twilightdelight/teardrop_sword.png and /dev/null differ diff --git a/public/textures/twilightdelight/thorn_rose_tea.png b/public/textures/twilightdelight/thorn_rose_tea.png deleted file mode 100644 index cd5dce2b..00000000 Binary files a/public/textures/twilightdelight/thorn_rose_tea.png and /dev/null differ diff --git a/public/textures/twilightdelight/thousand_plant_stew.png b/public/textures/twilightdelight/thousand_plant_stew.png deleted file mode 100644 index 148e9d1e..00000000 Binary files a/public/textures/twilightdelight/thousand_plant_stew.png and /dev/null differ diff --git a/public/textures/twilightdelight/time_cabinet.png b/public/textures/twilightdelight/time_cabinet.png deleted file mode 100644 index 4e784267..00000000 Binary files a/public/textures/twilightdelight/time_cabinet.png and /dev/null differ diff --git a/public/textures/twilightdelight/torchberries_crate.png b/public/textures/twilightdelight/torchberries_crate.png deleted file mode 100644 index 0ae72f7a..00000000 Binary files a/public/textures/twilightdelight/torchberries_crate.png and /dev/null differ diff --git a/public/textures/twilightdelight/torchberry_cookie.png b/public/textures/twilightdelight/torchberry_cookie.png deleted file mode 100644 index 261b370b..00000000 Binary files a/public/textures/twilightdelight/torchberry_cookie.png and /dev/null differ diff --git a/public/textures/twilightdelight/torchberry_juice.png b/public/textures/twilightdelight/torchberry_juice.png deleted file mode 100644 index a8d80933..00000000 Binary files a/public/textures/twilightdelight/torchberry_juice.png and /dev/null differ diff --git a/public/textures/twilightdelight/torchberry_pie.png b/public/textures/twilightdelight/torchberry_pie.png deleted file mode 100644 index 16781c59..00000000 Binary files a/public/textures/twilightdelight/torchberry_pie.png and /dev/null differ diff --git a/public/textures/twilightdelight/torchberry_pie_slice.png b/public/textures/twilightdelight/torchberry_pie_slice.png deleted file mode 100644 index 4aa3bda6..00000000 Binary files a/public/textures/twilightdelight/torchberry_pie_slice.png and /dev/null differ diff --git a/public/textures/twilightdelight/transformation_cabinet.png b/public/textures/twilightdelight/transformation_cabinet.png deleted file mode 100644 index 705423e3..00000000 Binary files a/public/textures/twilightdelight/transformation_cabinet.png and /dev/null differ diff --git a/public/textures/twilightdelight/twilight_oak_cabinet.png b/public/textures/twilightdelight/twilight_oak_cabinet.png deleted file mode 100644 index 52aeacbc..00000000 Binary files a/public/textures/twilightdelight/twilight_oak_cabinet.png and /dev/null differ diff --git a/public/textures/twilightdelight/twilight_spring.png b/public/textures/twilightdelight/twilight_spring.png deleted file mode 100644 index 38694d31..00000000 Binary files a/public/textures/twilightdelight/twilight_spring.png and /dev/null differ diff --git a/public/textures/twilightforest/acacia_banister.png b/public/textures/twilightforest/acacia_banister.png deleted file mode 100644 index dcd1f645..00000000 Binary files a/public/textures/twilightforest/acacia_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/alpha_yeti_banner_pattern.png b/public/textures/twilightforest/alpha_yeti_banner_pattern.png deleted file mode 100644 index bc4c0241..00000000 Binary files a/public/textures/twilightforest/alpha_yeti_banner_pattern.png and /dev/null differ diff --git a/public/textures/twilightforest/alpha_yeti_boss_spawner.png b/public/textures/twilightforest/alpha_yeti_boss_spawner.png deleted file mode 100644 index 5584d7d4..00000000 Binary files a/public/textures/twilightforest/alpha_yeti_boss_spawner.png and /dev/null differ diff --git a/public/textures/twilightforest/alpha_yeti_fur.png b/public/textures/twilightforest/alpha_yeti_fur.png deleted file mode 100644 index cb079739..00000000 Binary files a/public/textures/twilightforest/alpha_yeti_fur.png and /dev/null differ diff --git a/public/textures/twilightforest/alpha_yeti_spawn_egg.png b/public/textures/twilightforest/alpha_yeti_spawn_egg.png deleted file mode 100644 index c55d509a..00000000 Binary files a/public/textures/twilightforest/alpha_yeti_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/alpha_yeti_trophy.png b/public/textures/twilightforest/alpha_yeti_trophy.png deleted file mode 100644 index f122004b..00000000 Binary files a/public/textures/twilightforest/alpha_yeti_trophy.png and /dev/null differ diff --git a/public/textures/twilightforest/antibuilder.png b/public/textures/twilightforest/antibuilder.png deleted file mode 100644 index 2fec4b34..00000000 Binary files a/public/textures/twilightforest/antibuilder.png and /dev/null differ diff --git a/public/textures/twilightforest/arctic_boots.png b/public/textures/twilightforest/arctic_boots.png deleted file mode 100644 index 16e0f940..00000000 Binary files a/public/textures/twilightforest/arctic_boots.png and /dev/null differ diff --git a/public/textures/twilightforest/arctic_chestplate.png b/public/textures/twilightforest/arctic_chestplate.png deleted file mode 100644 index 4cd64da6..00000000 Binary files a/public/textures/twilightforest/arctic_chestplate.png and /dev/null differ diff --git a/public/textures/twilightforest/arctic_fur.png b/public/textures/twilightforest/arctic_fur.png deleted file mode 100644 index 9e65af8d..00000000 Binary files a/public/textures/twilightforest/arctic_fur.png and /dev/null differ diff --git a/public/textures/twilightforest/arctic_fur_block.png b/public/textures/twilightforest/arctic_fur_block.png deleted file mode 100644 index 774b238f..00000000 Binary files a/public/textures/twilightforest/arctic_fur_block.png and /dev/null differ diff --git a/public/textures/twilightforest/arctic_helmet.png b/public/textures/twilightforest/arctic_helmet.png deleted file mode 100644 index 41b1aead..00000000 Binary files a/public/textures/twilightforest/arctic_helmet.png and /dev/null differ diff --git a/public/textures/twilightforest/arctic_leggings.png b/public/textures/twilightforest/arctic_leggings.png deleted file mode 100644 index 670d7af7..00000000 Binary files a/public/textures/twilightforest/arctic_leggings.png and /dev/null differ diff --git a/public/textures/twilightforest/armor_shard.png b/public/textures/twilightforest/armor_shard.png deleted file mode 100644 index 7f7ab776..00000000 Binary files a/public/textures/twilightforest/armor_shard.png and /dev/null differ diff --git a/public/textures/twilightforest/armor_shard_cluster.png b/public/textures/twilightforest/armor_shard_cluster.png deleted file mode 100644 index 6d2dcf05..00000000 Binary files a/public/textures/twilightforest/armor_shard_cluster.png and /dev/null differ diff --git a/public/textures/twilightforest/armored_giant_spawn_egg.png b/public/textures/twilightforest/armored_giant_spawn_egg.png deleted file mode 100644 index 29d2f874..00000000 Binary files a/public/textures/twilightforest/armored_giant_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/aurora_block.png b/public/textures/twilightforest/aurora_block.png deleted file mode 100644 index 606939b7..00000000 Binary files a/public/textures/twilightforest/aurora_block.png and /dev/null differ diff --git a/public/textures/twilightforest/aurora_pillar.png b/public/textures/twilightforest/aurora_pillar.png deleted file mode 100644 index 668dbf66..00000000 Binary files a/public/textures/twilightforest/aurora_pillar.png and /dev/null differ diff --git a/public/textures/twilightforest/aurora_slab.png b/public/textures/twilightforest/aurora_slab.png deleted file mode 100644 index 1705ff73..00000000 Binary files a/public/textures/twilightforest/aurora_slab.png and /dev/null differ diff --git a/public/textures/twilightforest/beanstalk_leaves.png b/public/textures/twilightforest/beanstalk_leaves.png deleted file mode 100644 index 9281ebac..00000000 Binary files a/public/textures/twilightforest/beanstalk_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/bighorn_sheep_spawn_egg.png b/public/textures/twilightforest/bighorn_sheep_spawn_egg.png deleted file mode 100644 index c14c66ee..00000000 Binary files a/public/textures/twilightforest/bighorn_sheep_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/birch_banister.png b/public/textures/twilightforest/birch_banister.png deleted file mode 100644 index a201b8b1..00000000 Binary files a/public/textures/twilightforest/birch_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/block_and_chain.png b/public/textures/twilightforest/block_and_chain.png deleted file mode 100644 index f29bb57f..00000000 Binary files a/public/textures/twilightforest/block_and_chain.png and /dev/null differ diff --git a/public/textures/twilightforest/blockchain_goblin_spawn_egg.png b/public/textures/twilightforest/blockchain_goblin_spawn_egg.png deleted file mode 100644 index 1802e7ff..00000000 Binary files a/public/textures/twilightforest/blockchain_goblin_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/blue_castle_door.png b/public/textures/twilightforest/blue_castle_door.png deleted file mode 100644 index 7716be7a..00000000 Binary files a/public/textures/twilightforest/blue_castle_door.png and /dev/null differ diff --git a/public/textures/twilightforest/blue_castle_rune_brick.png b/public/textures/twilightforest/blue_castle_rune_brick.png deleted file mode 100644 index 55bca84d..00000000 Binary files a/public/textures/twilightforest/blue_castle_rune_brick.png and /dev/null differ diff --git a/public/textures/twilightforest/blue_force_field.png b/public/textures/twilightforest/blue_force_field.png deleted file mode 100644 index 62d5afa5..00000000 Binary files a/public/textures/twilightforest/blue_force_field.png and /dev/null differ diff --git a/public/textures/twilightforest/boar_spawn_egg.png b/public/textures/twilightforest/boar_spawn_egg.png deleted file mode 100644 index 7a858c9f..00000000 Binary files a/public/textures/twilightforest/boar_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/bold_castle_brick_pillar.png b/public/textures/twilightforest/bold_castle_brick_pillar.png deleted file mode 100644 index d4fd6d14..00000000 Binary files a/public/textures/twilightforest/bold_castle_brick_pillar.png and /dev/null differ diff --git a/public/textures/twilightforest/bold_castle_brick_stairs.png b/public/textures/twilightforest/bold_castle_brick_stairs.png deleted file mode 100644 index d9e53a30..00000000 Binary files a/public/textures/twilightforest/bold_castle_brick_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/bold_castle_brick_tile.png b/public/textures/twilightforest/bold_castle_brick_tile.png deleted file mode 100644 index be0e81f6..00000000 Binary files a/public/textures/twilightforest/bold_castle_brick_tile.png and /dev/null differ diff --git a/public/textures/twilightforest/bold_stone_pillar.png b/public/textures/twilightforest/bold_stone_pillar.png deleted file mode 100644 index 7fad5ffd..00000000 Binary files a/public/textures/twilightforest/bold_stone_pillar.png and /dev/null differ diff --git a/public/textures/twilightforest/borer_essence.png b/public/textures/twilightforest/borer_essence.png deleted file mode 100644 index 1195cb85..00000000 Binary files a/public/textures/twilightforest/borer_essence.png and /dev/null differ diff --git a/public/textures/twilightforest/brittle_potion_flask.png b/public/textures/twilightforest/brittle_potion_flask.png deleted file mode 100644 index dc66133d..00000000 Binary files a/public/textures/twilightforest/brittle_potion_flask.png and /dev/null differ diff --git a/public/textures/twilightforest/brown_thorns.png b/public/textures/twilightforest/brown_thorns.png deleted file mode 100644 index 8f26acc2..00000000 Binary files a/public/textures/twilightforest/brown_thorns.png and /dev/null differ diff --git a/public/textures/twilightforest/burnt_thorns.png b/public/textures/twilightforest/burnt_thorns.png deleted file mode 100644 index 86c381b9..00000000 Binary files a/public/textures/twilightforest/burnt_thorns.png and /dev/null differ diff --git a/public/textures/twilightforest/candelabra.png b/public/textures/twilightforest/candelabra.png deleted file mode 100644 index 8d597703..00000000 Binary files a/public/textures/twilightforest/candelabra.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_banister.png b/public/textures/twilightforest/canopy_banister.png deleted file mode 100644 index 64fd6216..00000000 Binary files a/public/textures/twilightforest/canopy_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_boat.png b/public/textures/twilightforest/canopy_boat.png deleted file mode 100644 index 14c7a6c1..00000000 Binary files a/public/textures/twilightforest/canopy_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_bookshelf.png b/public/textures/twilightforest/canopy_bookshelf.png deleted file mode 100644 index ebfcfa03..00000000 Binary files a/public/textures/twilightforest/canopy_bookshelf.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_button.png b/public/textures/twilightforest/canopy_button.png deleted file mode 100644 index 600c27ee..00000000 Binary files a/public/textures/twilightforest/canopy_button.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_chest.png b/public/textures/twilightforest/canopy_chest.png deleted file mode 100644 index 3a4fc85d..00000000 Binary files a/public/textures/twilightforest/canopy_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_chest_boat.png b/public/textures/twilightforest/canopy_chest_boat.png deleted file mode 100644 index cc1a27cd..00000000 Binary files a/public/textures/twilightforest/canopy_chest_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_door.png b/public/textures/twilightforest/canopy_door.png deleted file mode 100644 index 2c3b6860..00000000 Binary files a/public/textures/twilightforest/canopy_door.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_fence.png b/public/textures/twilightforest/canopy_fence.png deleted file mode 100644 index 78b39dda..00000000 Binary files a/public/textures/twilightforest/canopy_fence.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_fence_gate.png b/public/textures/twilightforest/canopy_fence_gate.png deleted file mode 100644 index 8d888a5d..00000000 Binary files a/public/textures/twilightforest/canopy_fence_gate.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_hanging_sign.png b/public/textures/twilightforest/canopy_hanging_sign.png deleted file mode 100644 index 7800cd08..00000000 Binary files a/public/textures/twilightforest/canopy_hanging_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_leaves.png b/public/textures/twilightforest/canopy_leaves.png deleted file mode 100644 index 34cdab56..00000000 Binary files a/public/textures/twilightforest/canopy_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_log.png b/public/textures/twilightforest/canopy_log.png deleted file mode 100644 index 361d9ed4..00000000 Binary files a/public/textures/twilightforest/canopy_log.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_planks.png b/public/textures/twilightforest/canopy_planks.png deleted file mode 100644 index c25f8378..00000000 Binary files a/public/textures/twilightforest/canopy_planks.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_pressure_plate.png b/public/textures/twilightforest/canopy_pressure_plate.png deleted file mode 100644 index 389eea08..00000000 Binary files a/public/textures/twilightforest/canopy_pressure_plate.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_sapling.png b/public/textures/twilightforest/canopy_sapling.png deleted file mode 100644 index a8b98422..00000000 Binary files a/public/textures/twilightforest/canopy_sapling.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_sign.png b/public/textures/twilightforest/canopy_sign.png deleted file mode 100644 index 61885ec5..00000000 Binary files a/public/textures/twilightforest/canopy_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_slab.png b/public/textures/twilightforest/canopy_slab.png deleted file mode 100644 index ed6291bd..00000000 Binary files a/public/textures/twilightforest/canopy_slab.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_stairs.png b/public/textures/twilightforest/canopy_stairs.png deleted file mode 100644 index 91525308..00000000 Binary files a/public/textures/twilightforest/canopy_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_trapdoor.png b/public/textures/twilightforest/canopy_trapdoor.png deleted file mode 100644 index 03eda508..00000000 Binary files a/public/textures/twilightforest/canopy_trapdoor.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_trapped_chest.png b/public/textures/twilightforest/canopy_trapped_chest.png deleted file mode 100644 index 2ecd8fa9..00000000 Binary files a/public/textures/twilightforest/canopy_trapped_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_window.png b/public/textures/twilightforest/canopy_window.png deleted file mode 100644 index 9e9534fc..00000000 Binary files a/public/textures/twilightforest/canopy_window.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_window_pane.png b/public/textures/twilightforest/canopy_window_pane.png deleted file mode 100644 index daf938a1..00000000 Binary files a/public/textures/twilightforest/canopy_window_pane.png and /dev/null differ diff --git a/public/textures/twilightforest/canopy_wood.png b/public/textures/twilightforest/canopy_wood.png deleted file mode 100644 index 08521730..00000000 Binary files a/public/textures/twilightforest/canopy_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/carminite.png b/public/textures/twilightforest/carminite.png deleted file mode 100644 index 63611ddd..00000000 Binary files a/public/textures/twilightforest/carminite.png and /dev/null differ diff --git a/public/textures/twilightforest/carminite_block.png b/public/textures/twilightforest/carminite_block.png deleted file mode 100644 index 82f77846..00000000 Binary files a/public/textures/twilightforest/carminite_block.png and /dev/null differ diff --git a/public/textures/twilightforest/carminite_broodling_spawn_egg.png b/public/textures/twilightforest/carminite_broodling_spawn_egg.png deleted file mode 100644 index d5c2ecf2..00000000 Binary files a/public/textures/twilightforest/carminite_broodling_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/carminite_builder.png b/public/textures/twilightforest/carminite_builder.png deleted file mode 100644 index 286f40d4..00000000 Binary files a/public/textures/twilightforest/carminite_builder.png and /dev/null differ diff --git a/public/textures/twilightforest/carminite_ghastguard_spawn_egg.png b/public/textures/twilightforest/carminite_ghastguard_spawn_egg.png deleted file mode 100644 index 4d1a5bb1..00000000 Binary files a/public/textures/twilightforest/carminite_ghastguard_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/carminite_ghastling_spawn_egg.png b/public/textures/twilightforest/carminite_ghastling_spawn_egg.png deleted file mode 100644 index 92de4b6f..00000000 Binary files a/public/textures/twilightforest/carminite_ghastling_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/carminite_golem_spawn_egg.png b/public/textures/twilightforest/carminite_golem_spawn_egg.png deleted file mode 100644 index 89eab13e..00000000 Binary files a/public/textures/twilightforest/carminite_golem_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/carminite_reactor.png b/public/textures/twilightforest/carminite_reactor.png deleted file mode 100644 index 4ba46b3e..00000000 Binary files a/public/textures/twilightforest/carminite_reactor.png and /dev/null differ diff --git a/public/textures/twilightforest/castle_brick.png b/public/textures/twilightforest/castle_brick.png deleted file mode 100644 index 1a1b6e62..00000000 Binary files a/public/textures/twilightforest/castle_brick.png and /dev/null differ diff --git a/public/textures/twilightforest/castle_brick_stairs.png b/public/textures/twilightforest/castle_brick_stairs.png deleted file mode 100644 index 6251b70f..00000000 Binary files a/public/textures/twilightforest/castle_brick_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/castle_roof_tile.png b/public/textures/twilightforest/castle_roof_tile.png deleted file mode 100644 index 8621131b..00000000 Binary files a/public/textures/twilightforest/castle_roof_tile.png and /dev/null differ diff --git a/public/textures/twilightforest/charm_of_keeping_1.png b/public/textures/twilightforest/charm_of_keeping_1.png deleted file mode 100644 index 486a9d5f..00000000 Binary files a/public/textures/twilightforest/charm_of_keeping_1.png and /dev/null differ diff --git a/public/textures/twilightforest/charm_of_keeping_2.png b/public/textures/twilightforest/charm_of_keeping_2.png deleted file mode 100644 index a2446e4e..00000000 Binary files a/public/textures/twilightforest/charm_of_keeping_2.png and /dev/null differ diff --git a/public/textures/twilightforest/charm_of_keeping_3.png b/public/textures/twilightforest/charm_of_keeping_3.png deleted file mode 100644 index 96f64210..00000000 Binary files a/public/textures/twilightforest/charm_of_keeping_3.png and /dev/null differ diff --git a/public/textures/twilightforest/charm_of_life_1.png b/public/textures/twilightforest/charm_of_life_1.png deleted file mode 100644 index 11df0043..00000000 Binary files a/public/textures/twilightforest/charm_of_life_1.png and /dev/null differ diff --git a/public/textures/twilightforest/charm_of_life_2.png b/public/textures/twilightforest/charm_of_life_2.png deleted file mode 100644 index cd85829d..00000000 Binary files a/public/textures/twilightforest/charm_of_life_2.png and /dev/null differ diff --git a/public/textures/twilightforest/cherry_banister.png b/public/textures/twilightforest/cherry_banister.png deleted file mode 100644 index 08185b34..00000000 Binary files a/public/textures/twilightforest/cherry_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/chiseled_canopy_bookshelf.png b/public/textures/twilightforest/chiseled_canopy_bookshelf.png deleted file mode 100644 index f7d28ea1..00000000 Binary files a/public/textures/twilightforest/chiseled_canopy_bookshelf.png and /dev/null differ diff --git a/public/textures/twilightforest/cicada.png b/public/textures/twilightforest/cicada.png deleted file mode 100644 index 3ec4827b..00000000 Binary files a/public/textures/twilightforest/cicada.png and /dev/null differ diff --git a/public/textures/twilightforest/cicada_jar__{'twilightforest__jar_lid'__{lid__'twilightforest__canopy_log'}}.png b/public/textures/twilightforest/cicada_jar__{'twilightforest__jar_lid'__{lid__'twilightforest__canopy_log'}}.png deleted file mode 100644 index 34906af6..00000000 Binary files a/public/textures/twilightforest/cicada_jar__{'twilightforest__jar_lid'__{lid__'twilightforest__canopy_log'}}.png and /dev/null differ diff --git a/public/textures/twilightforest/clover_patch.png b/public/textures/twilightforest/clover_patch.png deleted file mode 100644 index 9695110d..00000000 Binary files a/public/textures/twilightforest/clover_patch.png and /dev/null differ diff --git a/public/textures/twilightforest/cooked_meef.png b/public/textures/twilightforest/cooked_meef.png deleted file mode 100644 index c604ac26..00000000 Binary files a/public/textures/twilightforest/cooked_meef.png and /dev/null differ diff --git a/public/textures/twilightforest/cooked_venison.png b/public/textures/twilightforest/cooked_venison.png deleted file mode 100644 index 2106d2a0..00000000 Binary files a/public/textures/twilightforest/cooked_venison.png and /dev/null differ diff --git a/public/textures/twilightforest/coronation_carpet.png b/public/textures/twilightforest/coronation_carpet.png deleted file mode 100644 index c346f3e0..00000000 Binary files a/public/textures/twilightforest/coronation_carpet.png and /dev/null differ diff --git a/public/textures/twilightforest/cracked_castle_brick.png b/public/textures/twilightforest/cracked_castle_brick.png deleted file mode 100644 index 4f00919b..00000000 Binary files a/public/textures/twilightforest/cracked_castle_brick.png and /dev/null differ diff --git a/public/textures/twilightforest/cracked_castle_brick_stairs.png b/public/textures/twilightforest/cracked_castle_brick_stairs.png deleted file mode 100644 index e31a5502..00000000 Binary files a/public/textures/twilightforest/cracked_castle_brick_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/cracked_deadrock.png b/public/textures/twilightforest/cracked_deadrock.png deleted file mode 100644 index 024aaf91..00000000 Binary files a/public/textures/twilightforest/cracked_deadrock.png and /dev/null differ diff --git a/public/textures/twilightforest/cracked_etched_nagastone.png b/public/textures/twilightforest/cracked_etched_nagastone.png deleted file mode 100644 index 9578fe5a..00000000 Binary files a/public/textures/twilightforest/cracked_etched_nagastone.png and /dev/null differ diff --git a/public/textures/twilightforest/cracked_mazestone.png b/public/textures/twilightforest/cracked_mazestone.png deleted file mode 100644 index e8c7b478..00000000 Binary files a/public/textures/twilightforest/cracked_mazestone.png and /dev/null differ diff --git a/public/textures/twilightforest/cracked_nagastone_pillar.png b/public/textures/twilightforest/cracked_nagastone_pillar.png deleted file mode 100644 index f2c623bf..00000000 Binary files a/public/textures/twilightforest/cracked_nagastone_pillar.png and /dev/null differ diff --git a/public/textures/twilightforest/cracked_nagastone_stairs_left.png b/public/textures/twilightforest/cracked_nagastone_stairs_left.png deleted file mode 100644 index 9c31134c..00000000 Binary files a/public/textures/twilightforest/cracked_nagastone_stairs_left.png and /dev/null differ diff --git a/public/textures/twilightforest/cracked_nagastone_stairs_right.png b/public/textures/twilightforest/cracked_nagastone_stairs_right.png deleted file mode 100644 index 15da24fd..00000000 Binary files a/public/textures/twilightforest/cracked_nagastone_stairs_right.png and /dev/null differ diff --git a/public/textures/twilightforest/cracked_towerwood.png b/public/textures/twilightforest/cracked_towerwood.png deleted file mode 100644 index 5f2261e1..00000000 Binary files a/public/textures/twilightforest/cracked_towerwood.png and /dev/null differ diff --git a/public/textures/twilightforest/cracked_underbrick.png b/public/textures/twilightforest/cracked_underbrick.png deleted file mode 100644 index 0b0b7c6d..00000000 Binary files a/public/textures/twilightforest/cracked_underbrick.png and /dev/null differ diff --git a/public/textures/twilightforest/crimson_banister.png b/public/textures/twilightforest/crimson_banister.png deleted file mode 100644 index 778db7ee..00000000 Binary files a/public/textures/twilightforest/crimson_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/crown_splinter.png b/public/textures/twilightforest/crown_splinter.png deleted file mode 100644 index 767f3dbe..00000000 Binary files a/public/textures/twilightforest/crown_splinter.png and /dev/null differ diff --git a/public/textures/twilightforest/crumble_horn.png b/public/textures/twilightforest/crumble_horn.png deleted file mode 100644 index 80b6ebb1..00000000 Binary files a/public/textures/twilightforest/crumble_horn.png and /dev/null differ diff --git a/public/textures/twilightforest/cut_mazestone.png b/public/textures/twilightforest/cut_mazestone.png deleted file mode 100644 index a0873507..00000000 Binary files a/public/textures/twilightforest/cut_mazestone.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_banister.png b/public/textures/twilightforest/dark_banister.png deleted file mode 100644 index b8b5d1b9..00000000 Binary files a/public/textures/twilightforest/dark_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_boat.png b/public/textures/twilightforest/dark_boat.png deleted file mode 100644 index 88f24245..00000000 Binary files a/public/textures/twilightforest/dark_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_button.png b/public/textures/twilightforest/dark_button.png deleted file mode 100644 index 292d8b4d..00000000 Binary files a/public/textures/twilightforest/dark_button.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_chest.png b/public/textures/twilightforest/dark_chest.png deleted file mode 100644 index dde71cba..00000000 Binary files a/public/textures/twilightforest/dark_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_chest_boat.png b/public/textures/twilightforest/dark_chest_boat.png deleted file mode 100644 index 7ba68b75..00000000 Binary files a/public/textures/twilightforest/dark_chest_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_door.png b/public/textures/twilightforest/dark_door.png deleted file mode 100644 index b3726f28..00000000 Binary files a/public/textures/twilightforest/dark_door.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_fence.png b/public/textures/twilightforest/dark_fence.png deleted file mode 100644 index a6884c36..00000000 Binary files a/public/textures/twilightforest/dark_fence.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_fence_gate.png b/public/textures/twilightforest/dark_fence_gate.png deleted file mode 100644 index 318ac282..00000000 Binary files a/public/textures/twilightforest/dark_fence_gate.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_hanging_sign.png b/public/textures/twilightforest/dark_hanging_sign.png deleted file mode 100644 index 5710e756..00000000 Binary files a/public/textures/twilightforest/dark_hanging_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_leaves.png b/public/textures/twilightforest/dark_leaves.png deleted file mode 100644 index 48175dae..00000000 Binary files a/public/textures/twilightforest/dark_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_log.png b/public/textures/twilightforest/dark_log.png deleted file mode 100644 index a1850a35..00000000 Binary files a/public/textures/twilightforest/dark_log.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_oak_banister.png b/public/textures/twilightforest/dark_oak_banister.png deleted file mode 100644 index 1eb7ae4e..00000000 Binary files a/public/textures/twilightforest/dark_oak_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_planks.png b/public/textures/twilightforest/dark_planks.png deleted file mode 100644 index aa0a775d..00000000 Binary files a/public/textures/twilightforest/dark_planks.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_pressure_plate.png b/public/textures/twilightforest/dark_pressure_plate.png deleted file mode 100644 index 00688d65..00000000 Binary files a/public/textures/twilightforest/dark_pressure_plate.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_sign.png b/public/textures/twilightforest/dark_sign.png deleted file mode 100644 index 82268ec6..00000000 Binary files a/public/textures/twilightforest/dark_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_slab.png b/public/textures/twilightforest/dark_slab.png deleted file mode 100644 index 90fc6940..00000000 Binary files a/public/textures/twilightforest/dark_slab.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_stairs.png b/public/textures/twilightforest/dark_stairs.png deleted file mode 100644 index 48158383..00000000 Binary files a/public/textures/twilightforest/dark_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_trapdoor.png b/public/textures/twilightforest/dark_trapdoor.png deleted file mode 100644 index 63826e34..00000000 Binary files a/public/textures/twilightforest/dark_trapdoor.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_trapped_chest.png b/public/textures/twilightforest/dark_trapped_chest.png deleted file mode 100644 index e379f583..00000000 Binary files a/public/textures/twilightforest/dark_trapped_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/dark_wood.png b/public/textures/twilightforest/dark_wood.png deleted file mode 100644 index e3c6cd64..00000000 Binary files a/public/textures/twilightforest/dark_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/darkwood_sapling.png b/public/textures/twilightforest/darkwood_sapling.png deleted file mode 100644 index 63b433d7..00000000 Binary files a/public/textures/twilightforest/darkwood_sapling.png and /dev/null differ diff --git a/public/textures/twilightforest/deadrock.png b/public/textures/twilightforest/deadrock.png deleted file mode 100644 index daacab97..00000000 Binary files a/public/textures/twilightforest/deadrock.png and /dev/null differ diff --git a/public/textures/twilightforest/death_tome_spawn_egg.png b/public/textures/twilightforest/death_tome_spawn_egg.png deleted file mode 100644 index 64dd77b5..00000000 Binary files a/public/textures/twilightforest/death_tome_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/decorative_mazestone.png b/public/textures/twilightforest/decorative_mazestone.png deleted file mode 100644 index 2d2d4939..00000000 Binary files a/public/textures/twilightforest/decorative_mazestone.png and /dev/null differ diff --git a/public/textures/twilightforest/deer_spawn_egg.png b/public/textures/twilightforest/deer_spawn_egg.png deleted file mode 100644 index 1e481dd4..00000000 Binary files a/public/textures/twilightforest/deer_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/diamond_minotaur_axe.png b/public/textures/twilightforest/diamond_minotaur_axe.png deleted file mode 100644 index 921b16d2..00000000 Binary files a/public/textures/twilightforest/diamond_minotaur_axe.png and /dev/null differ diff --git a/public/textures/twilightforest/dwarf_rabbit_spawn_egg.png b/public/textures/twilightforest/dwarf_rabbit_spawn_egg.png deleted file mode 100644 index 73c7f3fd..00000000 Binary files a/public/textures/twilightforest/dwarf_rabbit_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/emperors_cloth.png b/public/textures/twilightforest/emperors_cloth.png deleted file mode 100644 index 75da5769..00000000 Binary files a/public/textures/twilightforest/emperors_cloth.png and /dev/null differ diff --git a/public/textures/twilightforest/encased_castle_brick_pillar.png b/public/textures/twilightforest/encased_castle_brick_pillar.png deleted file mode 100644 index 7644a101..00000000 Binary files a/public/textures/twilightforest/encased_castle_brick_pillar.png and /dev/null differ diff --git a/public/textures/twilightforest/encased_castle_brick_stairs.png b/public/textures/twilightforest/encased_castle_brick_stairs.png deleted file mode 100644 index b4cd3d76..00000000 Binary files a/public/textures/twilightforest/encased_castle_brick_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/encased_castle_brick_tile.png b/public/textures/twilightforest/encased_castle_brick_tile.png deleted file mode 100644 index 31779efc..00000000 Binary files a/public/textures/twilightforest/encased_castle_brick_tile.png and /dev/null differ diff --git a/public/textures/twilightforest/encased_fire_jet.png b/public/textures/twilightforest/encased_fire_jet.png deleted file mode 100644 index efa9f796..00000000 Binary files a/public/textures/twilightforest/encased_fire_jet.png and /dev/null differ diff --git a/public/textures/twilightforest/encased_smoker.png b/public/textures/twilightforest/encased_smoker.png deleted file mode 100644 index b4d38054..00000000 Binary files a/public/textures/twilightforest/encased_smoker.png and /dev/null differ diff --git a/public/textures/twilightforest/encased_towerwood.png b/public/textures/twilightforest/encased_towerwood.png deleted file mode 100644 index 17bda0af..00000000 Binary files a/public/textures/twilightforest/encased_towerwood.png and /dev/null differ diff --git a/public/textures/twilightforest/ender_bow.png b/public/textures/twilightforest/ender_bow.png deleted file mode 100644 index 958d50e4..00000000 Binary files a/public/textures/twilightforest/ender_bow.png and /dev/null differ diff --git a/public/textures/twilightforest/etched_nagastone.png b/public/textures/twilightforest/etched_nagastone.png deleted file mode 100644 index c78e2bc4..00000000 Binary files a/public/textures/twilightforest/etched_nagastone.png and /dev/null differ diff --git a/public/textures/twilightforest/exanimate_essence.png b/public/textures/twilightforest/exanimate_essence.png deleted file mode 100644 index d5105819..00000000 Binary files a/public/textures/twilightforest/exanimate_essence.png and /dev/null differ diff --git a/public/textures/twilightforest/experiment_115.png b/public/textures/twilightforest/experiment_115.png deleted file mode 100644 index e4da87fc..00000000 Binary files a/public/textures/twilightforest/experiment_115.png and /dev/null differ diff --git a/public/textures/twilightforest/fallen_leaves.png b/public/textures/twilightforest/fallen_leaves.png deleted file mode 100644 index a8936a63..00000000 Binary files a/public/textures/twilightforest/fallen_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/fiddlehead.png b/public/textures/twilightforest/fiddlehead.png deleted file mode 100644 index e7ccc22d..00000000 Binary files a/public/textures/twilightforest/fiddlehead.png and /dev/null differ diff --git a/public/textures/twilightforest/fiery_block.png b/public/textures/twilightforest/fiery_block.png deleted file mode 100644 index 29637736..00000000 Binary files a/public/textures/twilightforest/fiery_block.png and /dev/null differ diff --git a/public/textures/twilightforest/fiery_blood.png b/public/textures/twilightforest/fiery_blood.png deleted file mode 100644 index 61f2cf60..00000000 Binary files a/public/textures/twilightforest/fiery_blood.png and /dev/null differ diff --git a/public/textures/twilightforest/fiery_boots.png b/public/textures/twilightforest/fiery_boots.png deleted file mode 100644 index 9b0668e5..00000000 Binary files a/public/textures/twilightforest/fiery_boots.png and /dev/null differ diff --git a/public/textures/twilightforest/fiery_chestplate.png b/public/textures/twilightforest/fiery_chestplate.png deleted file mode 100644 index fbc43946..00000000 Binary files a/public/textures/twilightforest/fiery_chestplate.png and /dev/null differ diff --git a/public/textures/twilightforest/fiery_helmet.png b/public/textures/twilightforest/fiery_helmet.png deleted file mode 100644 index 3d5a2ecb..00000000 Binary files a/public/textures/twilightforest/fiery_helmet.png and /dev/null differ diff --git a/public/textures/twilightforest/fiery_ingot.png b/public/textures/twilightforest/fiery_ingot.png deleted file mode 100644 index 109e24dd..00000000 Binary files a/public/textures/twilightforest/fiery_ingot.png and /dev/null differ diff --git a/public/textures/twilightforest/fiery_leggings.png b/public/textures/twilightforest/fiery_leggings.png deleted file mode 100644 index 58356059..00000000 Binary files a/public/textures/twilightforest/fiery_leggings.png and /dev/null differ diff --git a/public/textures/twilightforest/fiery_pickaxe.png b/public/textures/twilightforest/fiery_pickaxe.png deleted file mode 100644 index 7b0c6c0e..00000000 Binary files a/public/textures/twilightforest/fiery_pickaxe.png and /dev/null differ diff --git a/public/textures/twilightforest/fiery_sword.png b/public/textures/twilightforest/fiery_sword.png deleted file mode 100644 index 13273ecc..00000000 Binary files a/public/textures/twilightforest/fiery_sword.png and /dev/null differ diff --git a/public/textures/twilightforest/fiery_tears.png b/public/textures/twilightforest/fiery_tears.png deleted file mode 100644 index f69c41ab..00000000 Binary files a/public/textures/twilightforest/fiery_tears.png and /dev/null differ diff --git a/public/textures/twilightforest/fire_beetle_spawn_egg.png b/public/textures/twilightforest/fire_beetle_spawn_egg.png deleted file mode 100644 index 1286817d..00000000 Binary files a/public/textures/twilightforest/fire_beetle_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/fire_jet.png b/public/textures/twilightforest/fire_jet.png deleted file mode 100644 index 79a67c25..00000000 Binary files a/public/textures/twilightforest/fire_jet.png and /dev/null differ diff --git a/public/textures/twilightforest/firefly.png b/public/textures/twilightforest/firefly.png deleted file mode 100644 index 266be0b5..00000000 Binary files a/public/textures/twilightforest/firefly.png and /dev/null differ diff --git a/public/textures/twilightforest/firefly_jar__{'twilightforest__jar_lid'__{lid__'twilightforest__twilight_oak_log'}}.png b/public/textures/twilightforest/firefly_jar__{'twilightforest__jar_lid'__{lid__'twilightforest__twilight_oak_log'}}.png deleted file mode 100644 index ab642932..00000000 Binary files a/public/textures/twilightforest/firefly_jar__{'twilightforest__jar_lid'__{lid__'twilightforest__twilight_oak_log'}}.png and /dev/null differ diff --git a/public/textures/twilightforest/firefly_particle_spawner.png b/public/textures/twilightforest/firefly_particle_spawner.png deleted file mode 100644 index 3f3052c2..00000000 Binary files a/public/textures/twilightforest/firefly_particle_spawner.png and /dev/null differ diff --git a/public/textures/twilightforest/fluffy_cloud.png b/public/textures/twilightforest/fluffy_cloud.png deleted file mode 100644 index b0ea548f..00000000 Binary files a/public/textures/twilightforest/fluffy_cloud.png and /dev/null differ diff --git a/public/textures/twilightforest/fortification_scepter.png b/public/textures/twilightforest/fortification_scepter.png deleted file mode 100644 index eec592e0..00000000 Binary files a/public/textures/twilightforest/fortification_scepter.png and /dev/null differ diff --git a/public/textures/twilightforest/ghast_trap.png b/public/textures/twilightforest/ghast_trap.png deleted file mode 100644 index 46768b94..00000000 Binary files a/public/textures/twilightforest/ghast_trap.png and /dev/null differ diff --git a/public/textures/twilightforest/giant_cobblestone.png b/public/textures/twilightforest/giant_cobblestone.png deleted file mode 100644 index fc58666d..00000000 Binary files a/public/textures/twilightforest/giant_cobblestone.png and /dev/null differ diff --git a/public/textures/twilightforest/giant_leaves.png b/public/textures/twilightforest/giant_leaves.png deleted file mode 100644 index febe3a63..00000000 Binary files a/public/textures/twilightforest/giant_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/giant_log.png b/public/textures/twilightforest/giant_log.png deleted file mode 100644 index 50778e6a..00000000 Binary files a/public/textures/twilightforest/giant_log.png and /dev/null differ diff --git a/public/textures/twilightforest/giant_miner_spawn_egg.png b/public/textures/twilightforest/giant_miner_spawn_egg.png deleted file mode 100644 index 96464d6f..00000000 Binary files a/public/textures/twilightforest/giant_miner_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/giant_obsidian.png b/public/textures/twilightforest/giant_obsidian.png deleted file mode 100644 index fe7589ca..00000000 Binary files a/public/textures/twilightforest/giant_obsidian.png and /dev/null differ diff --git a/public/textures/twilightforest/giant_pickaxe.png b/public/textures/twilightforest/giant_pickaxe.png deleted file mode 100644 index f461b0ea..00000000 Binary files a/public/textures/twilightforest/giant_pickaxe.png and /dev/null differ diff --git a/public/textures/twilightforest/giant_sword.png b/public/textures/twilightforest/giant_sword.png deleted file mode 100644 index d5b03966..00000000 Binary files a/public/textures/twilightforest/giant_sword.png and /dev/null differ diff --git a/public/textures/twilightforest/glass_sword.png b/public/textures/twilightforest/glass_sword.png deleted file mode 100644 index 245a45bd..00000000 Binary files a/public/textures/twilightforest/glass_sword.png and /dev/null differ diff --git a/public/textures/twilightforest/glass_sword__{'minecraft__lore'__['{'color'__'gray','translate'__'item.twilightforest.glass_sword.desc'}'],'minecraft__unbreakable'__{},'twilightforest__infinite_glass_sword'__{}}.png b/public/textures/twilightforest/glass_sword__{'minecraft__lore'__['{'color'__'gray','translate'__'item.twilightforest.glass_sword.desc'}'],'minecraft__unbreakable'__{},'twilightforest__infinite_glass_sword'__{}}.png deleted file mode 100644 index 245a45bd..00000000 Binary files a/public/textures/twilightforest/glass_sword__{'minecraft__lore'__['{'color'__'gray','translate'__'item.twilightforest.glass_sword.desc'}'],'minecraft__unbreakable'__{},'twilightforest__infinite_glass_sword'__{}}.png and /dev/null differ diff --git a/public/textures/twilightforest/gold_minotaur_axe.png b/public/textures/twilightforest/gold_minotaur_axe.png deleted file mode 100644 index 81f91c28..00000000 Binary files a/public/textures/twilightforest/gold_minotaur_axe.png and /dev/null differ diff --git a/public/textures/twilightforest/greater_potion_flask.png b/public/textures/twilightforest/greater_potion_flask.png deleted file mode 100644 index 37edd1be..00000000 Binary files a/public/textures/twilightforest/greater_potion_flask.png and /dev/null differ diff --git a/public/textures/twilightforest/green_force_field.png b/public/textures/twilightforest/green_force_field.png deleted file mode 100644 index 4f7a1b4c..00000000 Binary files a/public/textures/twilightforest/green_force_field.png and /dev/null differ diff --git a/public/textures/twilightforest/green_thorns.png b/public/textures/twilightforest/green_thorns.png deleted file mode 100644 index 2dca3e87..00000000 Binary files a/public/textures/twilightforest/green_thorns.png and /dev/null differ diff --git a/public/textures/twilightforest/hedge.png b/public/textures/twilightforest/hedge.png deleted file mode 100644 index d1fdf7dc..00000000 Binary files a/public/textures/twilightforest/hedge.png and /dev/null differ diff --git a/public/textures/twilightforest/hedge_spider_spawn_egg.png b/public/textures/twilightforest/hedge_spider_spawn_egg.png deleted file mode 100644 index f318f0de..00000000 Binary files a/public/textures/twilightforest/hedge_spider_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/helmet_crab_spawn_egg.png b/public/textures/twilightforest/helmet_crab_spawn_egg.png deleted file mode 100644 index f8ebe7af..00000000 Binary files a/public/textures/twilightforest/helmet_crab_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_acacia_log.png b/public/textures/twilightforest/hollow_acacia_log.png deleted file mode 100644 index d9183082..00000000 Binary files a/public/textures/twilightforest/hollow_acacia_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_birch_log.png b/public/textures/twilightforest/hollow_birch_log.png deleted file mode 100644 index 1c08fdb8..00000000 Binary files a/public/textures/twilightforest/hollow_birch_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_canopy_log.png b/public/textures/twilightforest/hollow_canopy_log.png deleted file mode 100644 index 73b670b6..00000000 Binary files a/public/textures/twilightforest/hollow_canopy_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_cherry_log.png b/public/textures/twilightforest/hollow_cherry_log.png deleted file mode 100644 index 36cb45b9..00000000 Binary files a/public/textures/twilightforest/hollow_cherry_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_crimson_stem.png b/public/textures/twilightforest/hollow_crimson_stem.png deleted file mode 100644 index e3a4dd6b..00000000 Binary files a/public/textures/twilightforest/hollow_crimson_stem.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_dark_log.png b/public/textures/twilightforest/hollow_dark_log.png deleted file mode 100644 index 427cc79d..00000000 Binary files a/public/textures/twilightforest/hollow_dark_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_dark_oak_log.png b/public/textures/twilightforest/hollow_dark_oak_log.png deleted file mode 100644 index 77b8851d..00000000 Binary files a/public/textures/twilightforest/hollow_dark_oak_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_jungle_log.png b/public/textures/twilightforest/hollow_jungle_log.png deleted file mode 100644 index 21691cfa..00000000 Binary files a/public/textures/twilightforest/hollow_jungle_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_mangrove_log.png b/public/textures/twilightforest/hollow_mangrove_log.png deleted file mode 100644 index 39ccf068..00000000 Binary files a/public/textures/twilightforest/hollow_mangrove_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_mining_log.png b/public/textures/twilightforest/hollow_mining_log.png deleted file mode 100644 index d94a9b69..00000000 Binary files a/public/textures/twilightforest/hollow_mining_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_oak_log.png b/public/textures/twilightforest/hollow_oak_log.png deleted file mode 100644 index d89f74c9..00000000 Binary files a/public/textures/twilightforest/hollow_oak_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_oak_sapling.png b/public/textures/twilightforest/hollow_oak_sapling.png deleted file mode 100644 index b2c38fb9..00000000 Binary files a/public/textures/twilightforest/hollow_oak_sapling.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_sorting_log.png b/public/textures/twilightforest/hollow_sorting_log.png deleted file mode 100644 index b58985ae..00000000 Binary files a/public/textures/twilightforest/hollow_sorting_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_spruce_log.png b/public/textures/twilightforest/hollow_spruce_log.png deleted file mode 100644 index 0a03bf73..00000000 Binary files a/public/textures/twilightforest/hollow_spruce_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_time_log.png b/public/textures/twilightforest/hollow_time_log.png deleted file mode 100644 index 6da41efd..00000000 Binary files a/public/textures/twilightforest/hollow_time_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_transformation_log.png b/public/textures/twilightforest/hollow_transformation_log.png deleted file mode 100644 index 91c7df52..00000000 Binary files a/public/textures/twilightforest/hollow_transformation_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_twilight_oak_log.png b/public/textures/twilightforest/hollow_twilight_oak_log.png deleted file mode 100644 index d4ac7983..00000000 Binary files a/public/textures/twilightforest/hollow_twilight_oak_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_vangrove_log.png b/public/textures/twilightforest/hollow_vangrove_log.png deleted file mode 100644 index dc6aef60..00000000 Binary files a/public/textures/twilightforest/hollow_vangrove_log.png and /dev/null differ diff --git a/public/textures/twilightforest/hollow_warped_stem.png b/public/textures/twilightforest/hollow_warped_stem.png deleted file mode 100644 index 782bd0e9..00000000 Binary files a/public/textures/twilightforest/hollow_warped_stem.png and /dev/null differ diff --git a/public/textures/twilightforest/hostile_wolf_spawn_egg.png b/public/textures/twilightforest/hostile_wolf_spawn_egg.png deleted file mode 100644 index 4173d510..00000000 Binary files a/public/textures/twilightforest/hostile_wolf_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/huge_lily_pad.png b/public/textures/twilightforest/huge_lily_pad.png deleted file mode 100644 index d770ebdf..00000000 Binary files a/public/textures/twilightforest/huge_lily_pad.png and /dev/null differ diff --git a/public/textures/twilightforest/huge_mushgloom.png b/public/textures/twilightforest/huge_mushgloom.png deleted file mode 100644 index 2411dd04..00000000 Binary files a/public/textures/twilightforest/huge_mushgloom.png and /dev/null differ diff --git a/public/textures/twilightforest/huge_mushgloom_stem.png b/public/textures/twilightforest/huge_mushgloom_stem.png deleted file mode 100644 index 09580fa1..00000000 Binary files a/public/textures/twilightforest/huge_mushgloom_stem.png and /dev/null differ diff --git a/public/textures/twilightforest/huge_stalk.png b/public/textures/twilightforest/huge_stalk.png deleted file mode 100644 index 7c932de7..00000000 Binary files a/public/textures/twilightforest/huge_stalk.png and /dev/null differ diff --git a/public/textures/twilightforest/huge_water_lily.png b/public/textures/twilightforest/huge_water_lily.png deleted file mode 100644 index 0f6d63ba..00000000 Binary files a/public/textures/twilightforest/huge_water_lily.png and /dev/null differ diff --git a/public/textures/twilightforest/hydra_banner_pattern.png b/public/textures/twilightforest/hydra_banner_pattern.png deleted file mode 100644 index bc4c0241..00000000 Binary files a/public/textures/twilightforest/hydra_banner_pattern.png and /dev/null differ diff --git a/public/textures/twilightforest/hydra_boss_spawner.png b/public/textures/twilightforest/hydra_boss_spawner.png deleted file mode 100644 index 5584d7d4..00000000 Binary files a/public/textures/twilightforest/hydra_boss_spawner.png and /dev/null differ diff --git a/public/textures/twilightforest/hydra_chop.png b/public/textures/twilightforest/hydra_chop.png deleted file mode 100644 index e546cc77..00000000 Binary files a/public/textures/twilightforest/hydra_chop.png and /dev/null differ diff --git a/public/textures/twilightforest/hydra_spawn_egg.png b/public/textures/twilightforest/hydra_spawn_egg.png deleted file mode 100644 index 869dbad3..00000000 Binary files a/public/textures/twilightforest/hydra_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/hydra_trophy.png b/public/textures/twilightforest/hydra_trophy.png deleted file mode 100644 index aed1e5aa..00000000 Binary files a/public/textures/twilightforest/hydra_trophy.png and /dev/null differ diff --git a/public/textures/twilightforest/ice_bomb.png b/public/textures/twilightforest/ice_bomb.png deleted file mode 100644 index 236270ca..00000000 Binary files a/public/textures/twilightforest/ice_bomb.png and /dev/null differ diff --git a/public/textures/twilightforest/ice_bow.png b/public/textures/twilightforest/ice_bow.png deleted file mode 100644 index fbebe92c..00000000 Binary files a/public/textures/twilightforest/ice_bow.png and /dev/null differ diff --git a/public/textures/twilightforest/ice_crystal_spawn_egg.png b/public/textures/twilightforest/ice_crystal_spawn_egg.png deleted file mode 100644 index 2208725e..00000000 Binary files a/public/textures/twilightforest/ice_crystal_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/ice_sword.png b/public/textures/twilightforest/ice_sword.png deleted file mode 100644 index 720ecdd8..00000000 Binary files a/public/textures/twilightforest/ice_sword.png and /dev/null differ diff --git a/public/textures/twilightforest/infested_towerwood.png b/public/textures/twilightforest/infested_towerwood.png deleted file mode 100644 index 28020426..00000000 Binary files a/public/textures/twilightforest/infested_towerwood.png and /dev/null differ diff --git a/public/textures/twilightforest/iron_ladder.png b/public/textures/twilightforest/iron_ladder.png deleted file mode 100644 index bb787ad3..00000000 Binary files a/public/textures/twilightforest/iron_ladder.png and /dev/null differ diff --git a/public/textures/twilightforest/ironwood_axe.png b/public/textures/twilightforest/ironwood_axe.png deleted file mode 100644 index 779d5066..00000000 Binary files a/public/textures/twilightforest/ironwood_axe.png and /dev/null differ diff --git a/public/textures/twilightforest/ironwood_block.png b/public/textures/twilightforest/ironwood_block.png deleted file mode 100644 index 3f5ed1b5..00000000 Binary files a/public/textures/twilightforest/ironwood_block.png and /dev/null differ diff --git a/public/textures/twilightforest/ironwood_boots.png b/public/textures/twilightforest/ironwood_boots.png deleted file mode 100644 index 9bd92fe7..00000000 Binary files a/public/textures/twilightforest/ironwood_boots.png and /dev/null differ diff --git a/public/textures/twilightforest/ironwood_chestplate.png b/public/textures/twilightforest/ironwood_chestplate.png deleted file mode 100644 index 9433aaa6..00000000 Binary files a/public/textures/twilightforest/ironwood_chestplate.png and /dev/null differ diff --git a/public/textures/twilightforest/ironwood_helmet.png b/public/textures/twilightforest/ironwood_helmet.png deleted file mode 100644 index 79ef1e56..00000000 Binary files a/public/textures/twilightforest/ironwood_helmet.png and /dev/null differ diff --git a/public/textures/twilightforest/ironwood_hoe.png b/public/textures/twilightforest/ironwood_hoe.png deleted file mode 100644 index 501c01e4..00000000 Binary files a/public/textures/twilightforest/ironwood_hoe.png and /dev/null differ diff --git a/public/textures/twilightforest/ironwood_ingot.png b/public/textures/twilightforest/ironwood_ingot.png deleted file mode 100644 index d57179d4..00000000 Binary files a/public/textures/twilightforest/ironwood_ingot.png and /dev/null differ diff --git a/public/textures/twilightforest/ironwood_leggings.png b/public/textures/twilightforest/ironwood_leggings.png deleted file mode 100644 index d43a5e79..00000000 Binary files a/public/textures/twilightforest/ironwood_leggings.png and /dev/null differ diff --git a/public/textures/twilightforest/ironwood_pickaxe.png b/public/textures/twilightforest/ironwood_pickaxe.png deleted file mode 100644 index bfc838b8..00000000 Binary files a/public/textures/twilightforest/ironwood_pickaxe.png and /dev/null differ diff --git a/public/textures/twilightforest/ironwood_shovel.png b/public/textures/twilightforest/ironwood_shovel.png deleted file mode 100644 index c373c443..00000000 Binary files a/public/textures/twilightforest/ironwood_shovel.png and /dev/null differ diff --git a/public/textures/twilightforest/ironwood_sword.png b/public/textures/twilightforest/ironwood_sword.png deleted file mode 100644 index 5ffa8dcd..00000000 Binary files a/public/textures/twilightforest/ironwood_sword.png and /dev/null differ diff --git a/public/textures/twilightforest/jungle_banister.png b/public/textures/twilightforest/jungle_banister.png deleted file mode 100644 index 3bb93ec7..00000000 Binary files a/public/textures/twilightforest/jungle_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/keepsake_casket.png b/public/textures/twilightforest/keepsake_casket.png deleted file mode 100644 index d93464c6..00000000 Binary files a/public/textures/twilightforest/keepsake_casket.png and /dev/null differ diff --git a/public/textures/twilightforest/keepsake_casket__{'twilightforest__casket_damage'__1}.png b/public/textures/twilightforest/keepsake_casket__{'twilightforest__casket_damage'__1}.png deleted file mode 100644 index 6b1e9b82..00000000 Binary files a/public/textures/twilightforest/keepsake_casket__{'twilightforest__casket_damage'__1}.png and /dev/null differ diff --git a/public/textures/twilightforest/keepsake_casket__{'twilightforest__casket_damage'__2}.png b/public/textures/twilightforest/keepsake_casket__{'twilightforest__casket_damage'__2}.png deleted file mode 100644 index c123b423..00000000 Binary files a/public/textures/twilightforest/keepsake_casket__{'twilightforest__casket_damage'__2}.png and /dev/null differ diff --git a/public/textures/twilightforest/king_spider_spawn_egg.png b/public/textures/twilightforest/king_spider_spawn_egg.png deleted file mode 100644 index 9f2585f0..00000000 Binary files a/public/textures/twilightforest/king_spider_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/knight_phantom_banner_pattern.png b/public/textures/twilightforest/knight_phantom_banner_pattern.png deleted file mode 100644 index bc4c0241..00000000 Binary files a/public/textures/twilightforest/knight_phantom_banner_pattern.png and /dev/null differ diff --git a/public/textures/twilightforest/knight_phantom_boss_spawner.png b/public/textures/twilightforest/knight_phantom_boss_spawner.png deleted file mode 100644 index 5584d7d4..00000000 Binary files a/public/textures/twilightforest/knight_phantom_boss_spawner.png and /dev/null differ diff --git a/public/textures/twilightforest/knight_phantom_spawn_egg.png b/public/textures/twilightforest/knight_phantom_spawn_egg.png deleted file mode 100644 index a87c0b23..00000000 Binary files a/public/textures/twilightforest/knight_phantom_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/knight_phantom_trophy.png b/public/textures/twilightforest/knight_phantom_trophy.png deleted file mode 100644 index 3ae1c50b..00000000 Binary files a/public/textures/twilightforest/knight_phantom_trophy.png and /dev/null differ diff --git a/public/textures/twilightforest/knightmetal_axe.png b/public/textures/twilightforest/knightmetal_axe.png deleted file mode 100644 index 65d34441..00000000 Binary files a/public/textures/twilightforest/knightmetal_axe.png and /dev/null differ diff --git a/public/textures/twilightforest/knightmetal_block.png b/public/textures/twilightforest/knightmetal_block.png deleted file mode 100644 index f2cda7bb..00000000 Binary files a/public/textures/twilightforest/knightmetal_block.png and /dev/null differ diff --git a/public/textures/twilightforest/knightmetal_boots.png b/public/textures/twilightforest/knightmetal_boots.png deleted file mode 100644 index 4ff36362..00000000 Binary files a/public/textures/twilightforest/knightmetal_boots.png and /dev/null differ diff --git a/public/textures/twilightforest/knightmetal_chestplate.png b/public/textures/twilightforest/knightmetal_chestplate.png deleted file mode 100644 index 5a574b1b..00000000 Binary files a/public/textures/twilightforest/knightmetal_chestplate.png and /dev/null differ diff --git a/public/textures/twilightforest/knightmetal_helmet.png b/public/textures/twilightforest/knightmetal_helmet.png deleted file mode 100644 index 473ce6d8..00000000 Binary files a/public/textures/twilightforest/knightmetal_helmet.png and /dev/null differ diff --git a/public/textures/twilightforest/knightmetal_ingot.png b/public/textures/twilightforest/knightmetal_ingot.png deleted file mode 100644 index f99eba0e..00000000 Binary files a/public/textures/twilightforest/knightmetal_ingot.png and /dev/null differ diff --git a/public/textures/twilightforest/knightmetal_leggings.png b/public/textures/twilightforest/knightmetal_leggings.png deleted file mode 100644 index d69fb6e7..00000000 Binary files a/public/textures/twilightforest/knightmetal_leggings.png and /dev/null differ diff --git a/public/textures/twilightforest/knightmetal_pickaxe.png b/public/textures/twilightforest/knightmetal_pickaxe.png deleted file mode 100644 index 782987cc..00000000 Binary files a/public/textures/twilightforest/knightmetal_pickaxe.png and /dev/null differ diff --git a/public/textures/twilightforest/knightmetal_ring.png b/public/textures/twilightforest/knightmetal_ring.png deleted file mode 100644 index 0be1786a..00000000 Binary files a/public/textures/twilightforest/knightmetal_ring.png and /dev/null differ diff --git a/public/textures/twilightforest/knightmetal_shield.png b/public/textures/twilightforest/knightmetal_shield.png deleted file mode 100644 index 4bae66a1..00000000 Binary files a/public/textures/twilightforest/knightmetal_shield.png and /dev/null differ diff --git a/public/textures/twilightforest/knightmetal_sword.png b/public/textures/twilightforest/knightmetal_sword.png deleted file mode 100644 index 66dd1621..00000000 Binary files a/public/textures/twilightforest/knightmetal_sword.png and /dev/null differ diff --git a/public/textures/twilightforest/kobold_spawn_egg.png b/public/textures/twilightforest/kobold_spawn_egg.png deleted file mode 100644 index f6192348..00000000 Binary files a/public/textures/twilightforest/kobold_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/lamp_of_cinders.png b/public/textures/twilightforest/lamp_of_cinders.png deleted file mode 100644 index e69920b2..00000000 Binary files a/public/textures/twilightforest/lamp_of_cinders.png and /dev/null differ diff --git a/public/textures/twilightforest/lich_banner_pattern.png b/public/textures/twilightforest/lich_banner_pattern.png deleted file mode 100644 index bc4c0241..00000000 Binary files a/public/textures/twilightforest/lich_banner_pattern.png and /dev/null differ diff --git a/public/textures/twilightforest/lich_boss_spawner.png b/public/textures/twilightforest/lich_boss_spawner.png deleted file mode 100644 index 5584d7d4..00000000 Binary files a/public/textures/twilightforest/lich_boss_spawner.png and /dev/null differ diff --git a/public/textures/twilightforest/lich_spawn_egg.png b/public/textures/twilightforest/lich_spawn_egg.png deleted file mode 100644 index 305076f9..00000000 Binary files a/public/textures/twilightforest/lich_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/lich_trophy.png b/public/textures/twilightforest/lich_trophy.png deleted file mode 100644 index 6ae119c7..00000000 Binary files a/public/textures/twilightforest/lich_trophy.png and /dev/null differ diff --git a/public/textures/twilightforest/lifedrain_scepter.png b/public/textures/twilightforest/lifedrain_scepter.png deleted file mode 100644 index f2d4cf64..00000000 Binary files a/public/textures/twilightforest/lifedrain_scepter.png and /dev/null differ diff --git a/public/textures/twilightforest/liveroot.png b/public/textures/twilightforest/liveroot.png deleted file mode 100644 index 40ac5827..00000000 Binary files a/public/textures/twilightforest/liveroot.png and /dev/null differ diff --git a/public/textures/twilightforest/liveroot_block.png b/public/textures/twilightforest/liveroot_block.png deleted file mode 100644 index e51494ac..00000000 Binary files a/public/textures/twilightforest/liveroot_block.png and /dev/null differ diff --git a/public/textures/twilightforest/locked_vanishing_block.png b/public/textures/twilightforest/locked_vanishing_block.png deleted file mode 100644 index 5c061e26..00000000 Binary files a/public/textures/twilightforest/locked_vanishing_block.png and /dev/null differ diff --git a/public/textures/twilightforest/lower_goblin_knight_spawn_egg.png b/public/textures/twilightforest/lower_goblin_knight_spawn_egg.png deleted file mode 100644 index 790bba1b..00000000 Binary files a/public/textures/twilightforest/lower_goblin_knight_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/magic_beans.png b/public/textures/twilightforest/magic_beans.png deleted file mode 100644 index dbb6cd2c..00000000 Binary files a/public/textures/twilightforest/magic_beans.png and /dev/null differ diff --git a/public/textures/twilightforest/magic_map.png b/public/textures/twilightforest/magic_map.png deleted file mode 100644 index deae7895..00000000 Binary files a/public/textures/twilightforest/magic_map.png and /dev/null differ diff --git a/public/textures/twilightforest/magic_map_focus.png b/public/textures/twilightforest/magic_map_focus.png deleted file mode 100644 index 8edeebca..00000000 Binary files a/public/textures/twilightforest/magic_map_focus.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_banister.png b/public/textures/twilightforest/mangrove_banister.png deleted file mode 100644 index 7b6c3880..00000000 Binary files a/public/textures/twilightforest/mangrove_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_boat.png b/public/textures/twilightforest/mangrove_boat.png deleted file mode 100644 index 1a45509d..00000000 Binary files a/public/textures/twilightforest/mangrove_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_button.png b/public/textures/twilightforest/mangrove_button.png deleted file mode 100644 index 025a6607..00000000 Binary files a/public/textures/twilightforest/mangrove_button.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_chest.png b/public/textures/twilightforest/mangrove_chest.png deleted file mode 100644 index d9acaf06..00000000 Binary files a/public/textures/twilightforest/mangrove_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_chest_boat.png b/public/textures/twilightforest/mangrove_chest_boat.png deleted file mode 100644 index fbd0a661..00000000 Binary files a/public/textures/twilightforest/mangrove_chest_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_door.png b/public/textures/twilightforest/mangrove_door.png deleted file mode 100644 index 40d08358..00000000 Binary files a/public/textures/twilightforest/mangrove_door.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_fence.png b/public/textures/twilightforest/mangrove_fence.png deleted file mode 100644 index 77978b34..00000000 Binary files a/public/textures/twilightforest/mangrove_fence.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_fence_gate.png b/public/textures/twilightforest/mangrove_fence_gate.png deleted file mode 100644 index 1c5b8d48..00000000 Binary files a/public/textures/twilightforest/mangrove_fence_gate.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_hanging_sign.png b/public/textures/twilightforest/mangrove_hanging_sign.png deleted file mode 100644 index 0c367fd6..00000000 Binary files a/public/textures/twilightforest/mangrove_hanging_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_leaves.png b/public/textures/twilightforest/mangrove_leaves.png deleted file mode 100644 index 1d63b56c..00000000 Binary files a/public/textures/twilightforest/mangrove_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_log.png b/public/textures/twilightforest/mangrove_log.png deleted file mode 100644 index bccaf25b..00000000 Binary files a/public/textures/twilightforest/mangrove_log.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_planks.png b/public/textures/twilightforest/mangrove_planks.png deleted file mode 100644 index 7bd14ecd..00000000 Binary files a/public/textures/twilightforest/mangrove_planks.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_pressure_plate.png b/public/textures/twilightforest/mangrove_pressure_plate.png deleted file mode 100644 index da3ddbdb..00000000 Binary files a/public/textures/twilightforest/mangrove_pressure_plate.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_root.png b/public/textures/twilightforest/mangrove_root.png deleted file mode 100644 index 1a3ff2ed..00000000 Binary files a/public/textures/twilightforest/mangrove_root.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_sapling.png b/public/textures/twilightforest/mangrove_sapling.png deleted file mode 100644 index 55d82961..00000000 Binary files a/public/textures/twilightforest/mangrove_sapling.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_sign.png b/public/textures/twilightforest/mangrove_sign.png deleted file mode 100644 index 5e019615..00000000 Binary files a/public/textures/twilightforest/mangrove_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_slab.png b/public/textures/twilightforest/mangrove_slab.png deleted file mode 100644 index ba9d7ed1..00000000 Binary files a/public/textures/twilightforest/mangrove_slab.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_stairs.png b/public/textures/twilightforest/mangrove_stairs.png deleted file mode 100644 index 5a32db09..00000000 Binary files a/public/textures/twilightforest/mangrove_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_trapdoor.png b/public/textures/twilightforest/mangrove_trapdoor.png deleted file mode 100644 index c7138a4b..00000000 Binary files a/public/textures/twilightforest/mangrove_trapdoor.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_trapped_chest.png b/public/textures/twilightforest/mangrove_trapped_chest.png deleted file mode 100644 index c7085f82..00000000 Binary files a/public/textures/twilightforest/mangrove_trapped_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/mangrove_wood.png b/public/textures/twilightforest/mangrove_wood.png deleted file mode 100644 index d5e215cb..00000000 Binary files a/public/textures/twilightforest/mangrove_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/mason_jar__{'twilightforest__jar_lid'__{lid__'twilightforest__twilight_oak_log'}}.png b/public/textures/twilightforest/mason_jar__{'twilightforest__jar_lid'__{lid__'twilightforest__twilight_oak_log'}}.png deleted file mode 100644 index ab642932..00000000 Binary files a/public/textures/twilightforest/mason_jar__{'twilightforest__jar_lid'__{lid__'twilightforest__twilight_oak_log'}}.png and /dev/null differ diff --git a/public/textures/twilightforest/mayapple.png b/public/textures/twilightforest/mayapple.png deleted file mode 100644 index dfe0d728..00000000 Binary files a/public/textures/twilightforest/mayapple.png and /dev/null differ diff --git a/public/textures/twilightforest/maze_map.png b/public/textures/twilightforest/maze_map.png deleted file mode 100644 index 787df206..00000000 Binary files a/public/textures/twilightforest/maze_map.png and /dev/null differ diff --git a/public/textures/twilightforest/maze_map_focus.png b/public/textures/twilightforest/maze_map_focus.png deleted file mode 100644 index 661aa940..00000000 Binary files a/public/textures/twilightforest/maze_map_focus.png and /dev/null differ diff --git a/public/textures/twilightforest/maze_slime_spawn_egg.png b/public/textures/twilightforest/maze_slime_spawn_egg.png deleted file mode 100644 index 120d2d75..00000000 Binary files a/public/textures/twilightforest/maze_slime_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/maze_wafer.png b/public/textures/twilightforest/maze_wafer.png deleted file mode 100644 index d5293bf1..00000000 Binary files a/public/textures/twilightforest/maze_wafer.png and /dev/null differ diff --git a/public/textures/twilightforest/mazebreaker_pickaxe.png b/public/textures/twilightforest/mazebreaker_pickaxe.png deleted file mode 100644 index 324ea3ff..00000000 Binary files a/public/textures/twilightforest/mazebreaker_pickaxe.png and /dev/null differ diff --git a/public/textures/twilightforest/mazestone.png b/public/textures/twilightforest/mazestone.png deleted file mode 100644 index 3971fb67..00000000 Binary files a/public/textures/twilightforest/mazestone.png and /dev/null differ diff --git a/public/textures/twilightforest/mazestone_border.png b/public/textures/twilightforest/mazestone_border.png deleted file mode 100644 index cdfafc0a..00000000 Binary files a/public/textures/twilightforest/mazestone_border.png and /dev/null differ diff --git a/public/textures/twilightforest/mazestone_brick.png b/public/textures/twilightforest/mazestone_brick.png deleted file mode 100644 index 554e1b23..00000000 Binary files a/public/textures/twilightforest/mazestone_brick.png and /dev/null differ diff --git a/public/textures/twilightforest/mazestone_mosaic.png b/public/textures/twilightforest/mazestone_mosaic.png deleted file mode 100644 index 28164518..00000000 Binary files a/public/textures/twilightforest/mazestone_mosaic.png and /dev/null differ diff --git a/public/textures/twilightforest/meef_stroganoff.png b/public/textures/twilightforest/meef_stroganoff.png deleted file mode 100644 index d9f21a36..00000000 Binary files a/public/textures/twilightforest/meef_stroganoff.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_banister.png b/public/textures/twilightforest/mining_banister.png deleted file mode 100644 index 46ffbabc..00000000 Binary files a/public/textures/twilightforest/mining_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_boat.png b/public/textures/twilightforest/mining_boat.png deleted file mode 100644 index 21db53b2..00000000 Binary files a/public/textures/twilightforest/mining_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_button.png b/public/textures/twilightforest/mining_button.png deleted file mode 100644 index 37b054da..00000000 Binary files a/public/textures/twilightforest/mining_button.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_chest.png b/public/textures/twilightforest/mining_chest.png deleted file mode 100644 index 3b47cfe2..00000000 Binary files a/public/textures/twilightforest/mining_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_chest_boat.png b/public/textures/twilightforest/mining_chest_boat.png deleted file mode 100644 index 7becf9a2..00000000 Binary files a/public/textures/twilightforest/mining_chest_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_door.png b/public/textures/twilightforest/mining_door.png deleted file mode 100644 index 2aed9ff9..00000000 Binary files a/public/textures/twilightforest/mining_door.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_fence.png b/public/textures/twilightforest/mining_fence.png deleted file mode 100644 index 17faee19..00000000 Binary files a/public/textures/twilightforest/mining_fence.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_fence_gate.png b/public/textures/twilightforest/mining_fence_gate.png deleted file mode 100644 index 868f4c67..00000000 Binary files a/public/textures/twilightforest/mining_fence_gate.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_hanging_sign.png b/public/textures/twilightforest/mining_hanging_sign.png deleted file mode 100644 index e2f2fdc7..00000000 Binary files a/public/textures/twilightforest/mining_hanging_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_leaves.png b/public/textures/twilightforest/mining_leaves.png deleted file mode 100644 index a485269a..00000000 Binary files a/public/textures/twilightforest/mining_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_log.png b/public/textures/twilightforest/mining_log.png deleted file mode 100644 index 24f67588..00000000 Binary files a/public/textures/twilightforest/mining_log.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_log_core.png b/public/textures/twilightforest/mining_log_core.png deleted file mode 100644 index ef4407fe..00000000 Binary files a/public/textures/twilightforest/mining_log_core.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_planks.png b/public/textures/twilightforest/mining_planks.png deleted file mode 100644 index a1f3fc1e..00000000 Binary files a/public/textures/twilightforest/mining_planks.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_pressure_plate.png b/public/textures/twilightforest/mining_pressure_plate.png deleted file mode 100644 index 249368ea..00000000 Binary files a/public/textures/twilightforest/mining_pressure_plate.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_sapling.png b/public/textures/twilightforest/mining_sapling.png deleted file mode 100644 index 67328326..00000000 Binary files a/public/textures/twilightforest/mining_sapling.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_sign.png b/public/textures/twilightforest/mining_sign.png deleted file mode 100644 index 6a77890a..00000000 Binary files a/public/textures/twilightforest/mining_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_slab.png b/public/textures/twilightforest/mining_slab.png deleted file mode 100644 index 1666a8ed..00000000 Binary files a/public/textures/twilightforest/mining_slab.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_stairs.png b/public/textures/twilightforest/mining_stairs.png deleted file mode 100644 index 4354fd64..00000000 Binary files a/public/textures/twilightforest/mining_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_trapdoor.png b/public/textures/twilightforest/mining_trapdoor.png deleted file mode 100644 index 041e4762..00000000 Binary files a/public/textures/twilightforest/mining_trapdoor.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_trapped_chest.png b/public/textures/twilightforest/mining_trapped_chest.png deleted file mode 100644 index ed01123d..00000000 Binary files a/public/textures/twilightforest/mining_trapped_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/mining_wood.png b/public/textures/twilightforest/mining_wood.png deleted file mode 100644 index 64619173..00000000 Binary files a/public/textures/twilightforest/mining_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/minoshroom_banner_pattern.png b/public/textures/twilightforest/minoshroom_banner_pattern.png deleted file mode 100644 index bc4c0241..00000000 Binary files a/public/textures/twilightforest/minoshroom_banner_pattern.png and /dev/null differ diff --git a/public/textures/twilightforest/minoshroom_boss_spawner.png b/public/textures/twilightforest/minoshroom_boss_spawner.png deleted file mode 100644 index 5584d7d4..00000000 Binary files a/public/textures/twilightforest/minoshroom_boss_spawner.png and /dev/null differ diff --git a/public/textures/twilightforest/minoshroom_spawn_egg.png b/public/textures/twilightforest/minoshroom_spawn_egg.png deleted file mode 100644 index 0fe7c5b2..00000000 Binary files a/public/textures/twilightforest/minoshroom_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/minoshroom_trophy.png b/public/textures/twilightforest/minoshroom_trophy.png deleted file mode 100644 index e06a2677..00000000 Binary files a/public/textures/twilightforest/minoshroom_trophy.png and /dev/null differ diff --git a/public/textures/twilightforest/minotaur_spawn_egg.png b/public/textures/twilightforest/minotaur_spawn_egg.png deleted file mode 100644 index 9e77e3ae..00000000 Binary files a/public/textures/twilightforest/minotaur_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/mist_wolf_spawn_egg.png b/public/textures/twilightforest/mist_wolf_spawn_egg.png deleted file mode 100644 index 48f8480a..00000000 Binary files a/public/textures/twilightforest/mist_wolf_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/moon_dial.png b/public/textures/twilightforest/moon_dial.png deleted file mode 100644 index 13fc6923..00000000 Binary files a/public/textures/twilightforest/moon_dial.png and /dev/null differ diff --git a/public/textures/twilightforest/moonworm.png b/public/textures/twilightforest/moonworm.png deleted file mode 100644 index d3d5b8e9..00000000 Binary files a/public/textures/twilightforest/moonworm.png and /dev/null differ diff --git a/public/textures/twilightforest/moonworm_queen.png b/public/textures/twilightforest/moonworm_queen.png deleted file mode 100644 index 8b008639..00000000 Binary files a/public/textures/twilightforest/moonworm_queen.png and /dev/null differ diff --git a/public/textures/twilightforest/mosquito_swarm_spawn_egg.png b/public/textures/twilightforest/mosquito_swarm_spawn_egg.png deleted file mode 100644 index 72654a01..00000000 Binary files a/public/textures/twilightforest/mosquito_swarm_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/moss_patch.png b/public/textures/twilightforest/moss_patch.png deleted file mode 100644 index f00f8721..00000000 Binary files a/public/textures/twilightforest/moss_patch.png and /dev/null differ diff --git a/public/textures/twilightforest/mossy_castle_brick.png b/public/textures/twilightforest/mossy_castle_brick.png deleted file mode 100644 index edce05bd..00000000 Binary files a/public/textures/twilightforest/mossy_castle_brick.png and /dev/null differ diff --git a/public/textures/twilightforest/mossy_castle_brick_stairs.png b/public/textures/twilightforest/mossy_castle_brick_stairs.png deleted file mode 100644 index 50fe08d1..00000000 Binary files a/public/textures/twilightforest/mossy_castle_brick_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/mossy_etched_nagastone.png b/public/textures/twilightforest/mossy_etched_nagastone.png deleted file mode 100644 index d31da307..00000000 Binary files a/public/textures/twilightforest/mossy_etched_nagastone.png and /dev/null differ diff --git a/public/textures/twilightforest/mossy_mazestone.png b/public/textures/twilightforest/mossy_mazestone.png deleted file mode 100644 index eb9a5e4d..00000000 Binary files a/public/textures/twilightforest/mossy_mazestone.png and /dev/null differ diff --git a/public/textures/twilightforest/mossy_nagastone_pillar.png b/public/textures/twilightforest/mossy_nagastone_pillar.png deleted file mode 100644 index 5c5f857d..00000000 Binary files a/public/textures/twilightforest/mossy_nagastone_pillar.png and /dev/null differ diff --git a/public/textures/twilightforest/mossy_nagastone_stairs_left.png b/public/textures/twilightforest/mossy_nagastone_stairs_left.png deleted file mode 100644 index 1fd9b1bb..00000000 Binary files a/public/textures/twilightforest/mossy_nagastone_stairs_left.png and /dev/null differ diff --git a/public/textures/twilightforest/mossy_nagastone_stairs_right.png b/public/textures/twilightforest/mossy_nagastone_stairs_right.png deleted file mode 100644 index faf690e5..00000000 Binary files a/public/textures/twilightforest/mossy_nagastone_stairs_right.png and /dev/null differ diff --git a/public/textures/twilightforest/mossy_towerwood.png b/public/textures/twilightforest/mossy_towerwood.png deleted file mode 100644 index da02a1e7..00000000 Binary files a/public/textures/twilightforest/mossy_towerwood.png and /dev/null differ diff --git a/public/textures/twilightforest/mossy_underbrick.png b/public/textures/twilightforest/mossy_underbrick.png deleted file mode 100644 index 2fff1b05..00000000 Binary files a/public/textures/twilightforest/mossy_underbrick.png and /dev/null differ diff --git a/public/textures/twilightforest/mushgloom.png b/public/textures/twilightforest/mushgloom.png deleted file mode 100644 index 0fc7b7be..00000000 Binary files a/public/textures/twilightforest/mushgloom.png and /dev/null differ diff --git a/public/textures/twilightforest/music_disc_findings.png b/public/textures/twilightforest/music_disc_findings.png deleted file mode 100644 index 5a602588..00000000 Binary files a/public/textures/twilightforest/music_disc_findings.png and /dev/null differ diff --git a/public/textures/twilightforest/music_disc_home.png b/public/textures/twilightforest/music_disc_home.png deleted file mode 100644 index 069601a4..00000000 Binary files a/public/textures/twilightforest/music_disc_home.png and /dev/null differ diff --git a/public/textures/twilightforest/music_disc_maker.png b/public/textures/twilightforest/music_disc_maker.png deleted file mode 100644 index a6791feb..00000000 Binary files a/public/textures/twilightforest/music_disc_maker.png and /dev/null differ diff --git a/public/textures/twilightforest/music_disc_motion.png b/public/textures/twilightforest/music_disc_motion.png deleted file mode 100644 index 9e8e8cb7..00000000 Binary files a/public/textures/twilightforest/music_disc_motion.png and /dev/null differ diff --git a/public/textures/twilightforest/music_disc_radiance.png b/public/textures/twilightforest/music_disc_radiance.png deleted file mode 100644 index 8a5a338d..00000000 Binary files a/public/textures/twilightforest/music_disc_radiance.png and /dev/null differ diff --git a/public/textures/twilightforest/music_disc_steps.png b/public/textures/twilightforest/music_disc_steps.png deleted file mode 100644 index f5ddeefa..00000000 Binary files a/public/textures/twilightforest/music_disc_steps.png and /dev/null differ diff --git a/public/textures/twilightforest/music_disc_superstitious.png b/public/textures/twilightforest/music_disc_superstitious.png deleted file mode 100644 index 283c44a0..00000000 Binary files a/public/textures/twilightforest/music_disc_superstitious.png and /dev/null differ diff --git a/public/textures/twilightforest/music_disc_thread.png b/public/textures/twilightforest/music_disc_thread.png deleted file mode 100644 index e7a795d4..00000000 Binary files a/public/textures/twilightforest/music_disc_thread.png and /dev/null differ diff --git a/public/textures/twilightforest/music_disc_wayfarer.png b/public/textures/twilightforest/music_disc_wayfarer.png deleted file mode 100644 index 4301da90..00000000 Binary files a/public/textures/twilightforest/music_disc_wayfarer.png and /dev/null differ diff --git a/public/textures/twilightforest/mystic_crown.png b/public/textures/twilightforest/mystic_crown.png deleted file mode 100644 index bb404617..00000000 Binary files a/public/textures/twilightforest/mystic_crown.png and /dev/null differ diff --git a/public/textures/twilightforest/naga_banner_pattern.png b/public/textures/twilightforest/naga_banner_pattern.png deleted file mode 100644 index bc4c0241..00000000 Binary files a/public/textures/twilightforest/naga_banner_pattern.png and /dev/null differ diff --git a/public/textures/twilightforest/naga_boss_spawner.png b/public/textures/twilightforest/naga_boss_spawner.png deleted file mode 100644 index 5584d7d4..00000000 Binary files a/public/textures/twilightforest/naga_boss_spawner.png and /dev/null differ diff --git a/public/textures/twilightforest/naga_chestplate.png b/public/textures/twilightforest/naga_chestplate.png deleted file mode 100644 index e76e77e3..00000000 Binary files a/public/textures/twilightforest/naga_chestplate.png and /dev/null differ diff --git a/public/textures/twilightforest/naga_leggings.png b/public/textures/twilightforest/naga_leggings.png deleted file mode 100644 index a9869182..00000000 Binary files a/public/textures/twilightforest/naga_leggings.png and /dev/null differ diff --git a/public/textures/twilightforest/naga_scale.png b/public/textures/twilightforest/naga_scale.png deleted file mode 100644 index 4b48e651..00000000 Binary files a/public/textures/twilightforest/naga_scale.png and /dev/null differ diff --git a/public/textures/twilightforest/naga_spawn_egg.png b/public/textures/twilightforest/naga_spawn_egg.png deleted file mode 100644 index 924dd8a7..00000000 Binary files a/public/textures/twilightforest/naga_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/naga_trophy.png b/public/textures/twilightforest/naga_trophy.png deleted file mode 100644 index f6cb2021..00000000 Binary files a/public/textures/twilightforest/naga_trophy.png and /dev/null differ diff --git a/public/textures/twilightforest/nagastone.png b/public/textures/twilightforest/nagastone.png deleted file mode 100644 index 06a50112..00000000 Binary files a/public/textures/twilightforest/nagastone.png and /dev/null differ diff --git a/public/textures/twilightforest/nagastone_head.png b/public/textures/twilightforest/nagastone_head.png deleted file mode 100644 index 73bf71fc..00000000 Binary files a/public/textures/twilightforest/nagastone_head.png and /dev/null differ diff --git a/public/textures/twilightforest/nagastone_pillar.png b/public/textures/twilightforest/nagastone_pillar.png deleted file mode 100644 index 3a385733..00000000 Binary files a/public/textures/twilightforest/nagastone_pillar.png and /dev/null differ diff --git a/public/textures/twilightforest/nagastone_stairs_left.png b/public/textures/twilightforest/nagastone_stairs_left.png deleted file mode 100644 index 1693826b..00000000 Binary files a/public/textures/twilightforest/nagastone_stairs_left.png and /dev/null differ diff --git a/public/textures/twilightforest/nagastone_stairs_right.png b/public/textures/twilightforest/nagastone_stairs_right.png deleted file mode 100644 index 49665f66..00000000 Binary files a/public/textures/twilightforest/nagastone_stairs_right.png and /dev/null differ diff --git a/public/textures/twilightforest/oak_banister.png b/public/textures/twilightforest/oak_banister.png deleted file mode 100644 index 8374e24f..00000000 Binary files a/public/textures/twilightforest/oak_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/orange_force_field.png b/public/textures/twilightforest/orange_force_field.png deleted file mode 100644 index 6a977788..00000000 Binary files a/public/textures/twilightforest/orange_force_field.png and /dev/null differ diff --git a/public/textures/twilightforest/ore_magnet.png b/public/textures/twilightforest/ore_magnet.png deleted file mode 100644 index 21ac95cb..00000000 Binary files a/public/textures/twilightforest/ore_magnet.png and /dev/null differ diff --git a/public/textures/twilightforest/ore_map.png b/public/textures/twilightforest/ore_map.png deleted file mode 100644 index 1e20e24f..00000000 Binary files a/public/textures/twilightforest/ore_map.png and /dev/null differ diff --git a/public/textures/twilightforest/ore_meter.png b/public/textures/twilightforest/ore_meter.png deleted file mode 100644 index 9e050b3e..00000000 Binary files a/public/textures/twilightforest/ore_meter.png and /dev/null differ diff --git a/public/textures/twilightforest/peacock_feather_fan.png b/public/textures/twilightforest/peacock_feather_fan.png deleted file mode 100644 index c95a5b02..00000000 Binary files a/public/textures/twilightforest/peacock_feather_fan.png and /dev/null differ diff --git a/public/textures/twilightforest/penguin_spawn_egg.png b/public/textures/twilightforest/penguin_spawn_egg.png deleted file mode 100644 index b64a7b8d..00000000 Binary files a/public/textures/twilightforest/penguin_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/phantom_chestplate.png b/public/textures/twilightforest/phantom_chestplate.png deleted file mode 100644 index e63a3d05..00000000 Binary files a/public/textures/twilightforest/phantom_chestplate.png and /dev/null differ diff --git a/public/textures/twilightforest/phantom_helmet.png b/public/textures/twilightforest/phantom_helmet.png deleted file mode 100644 index 04135e7b..00000000 Binary files a/public/textures/twilightforest/phantom_helmet.png and /dev/null differ diff --git a/public/textures/twilightforest/pinch_beetle_spawn_egg.png b/public/textures/twilightforest/pinch_beetle_spawn_egg.png deleted file mode 100644 index 5bb8df42..00000000 Binary files a/public/textures/twilightforest/pinch_beetle_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/pink_castle_door.png b/public/textures/twilightforest/pink_castle_door.png deleted file mode 100644 index 6a2e5ec4..00000000 Binary files a/public/textures/twilightforest/pink_castle_door.png and /dev/null differ diff --git a/public/textures/twilightforest/pink_castle_rune_brick.png b/public/textures/twilightforest/pink_castle_rune_brick.png deleted file mode 100644 index b2a3ef25..00000000 Binary files a/public/textures/twilightforest/pink_castle_rune_brick.png and /dev/null differ diff --git a/public/textures/twilightforest/pink_force_field.png b/public/textures/twilightforest/pink_force_field.png deleted file mode 100644 index 27ee5d3a..00000000 Binary files a/public/textures/twilightforest/pink_force_field.png and /dev/null differ diff --git a/public/textures/twilightforest/pocket_watch.png b/public/textures/twilightforest/pocket_watch.png deleted file mode 100644 index 3755fdcc..00000000 Binary files a/public/textures/twilightforest/pocket_watch.png and /dev/null differ diff --git a/public/textures/twilightforest/quest_ram_banner_pattern.png b/public/textures/twilightforest/quest_ram_banner_pattern.png deleted file mode 100644 index bc4c0241..00000000 Binary files a/public/textures/twilightforest/quest_ram_banner_pattern.png and /dev/null differ diff --git a/public/textures/twilightforest/quest_ram_spawn_egg.png b/public/textures/twilightforest/quest_ram_spawn_egg.png deleted file mode 100644 index 92de4a36..00000000 Binary files a/public/textures/twilightforest/quest_ram_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/quest_ram_trophy.png b/public/textures/twilightforest/quest_ram_trophy.png deleted file mode 100644 index cd0c4410..00000000 Binary files a/public/textures/twilightforest/quest_ram_trophy.png and /dev/null differ diff --git a/public/textures/twilightforest/rainbow_oak_leaves.png b/public/textures/twilightforest/rainbow_oak_leaves.png deleted file mode 100644 index b8faccf1..00000000 Binary files a/public/textures/twilightforest/rainbow_oak_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/rainbow_oak_sapling.png b/public/textures/twilightforest/rainbow_oak_sapling.png deleted file mode 100644 index 79cff12f..00000000 Binary files a/public/textures/twilightforest/rainbow_oak_sapling.png and /dev/null differ diff --git a/public/textures/twilightforest/rainy_cloud.png b/public/textures/twilightforest/rainy_cloud.png deleted file mode 100644 index 0eccc289..00000000 Binary files a/public/textures/twilightforest/rainy_cloud.png and /dev/null differ diff --git a/public/textures/twilightforest/raven_feather.png b/public/textures/twilightforest/raven_feather.png deleted file mode 100644 index 64f5675b..00000000 Binary files a/public/textures/twilightforest/raven_feather.png and /dev/null differ diff --git a/public/textures/twilightforest/raven_spawn_egg.png b/public/textures/twilightforest/raven_spawn_egg.png deleted file mode 100644 index b804b356..00000000 Binary files a/public/textures/twilightforest/raven_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/raw_ironwood.png b/public/textures/twilightforest/raw_ironwood.png deleted file mode 100644 index c741402d..00000000 Binary files a/public/textures/twilightforest/raw_ironwood.png and /dev/null differ diff --git a/public/textures/twilightforest/raw_meef.png b/public/textures/twilightforest/raw_meef.png deleted file mode 100644 index f65008f7..00000000 Binary files a/public/textures/twilightforest/raw_meef.png and /dev/null differ diff --git a/public/textures/twilightforest/raw_venison.png b/public/textures/twilightforest/raw_venison.png deleted file mode 100644 index e9df8719..00000000 Binary files a/public/textures/twilightforest/raw_venison.png and /dev/null differ diff --git a/public/textures/twilightforest/reappearing_block.png b/public/textures/twilightforest/reappearing_block.png deleted file mode 100644 index b4b6a4b0..00000000 Binary files a/public/textures/twilightforest/reappearing_block.png and /dev/null differ diff --git a/public/textures/twilightforest/red_thread.png b/public/textures/twilightforest/red_thread.png deleted file mode 100644 index 11f79209..00000000 Binary files a/public/textures/twilightforest/red_thread.png and /dev/null differ diff --git a/public/textures/twilightforest/redcap_sapper_spawn_egg.png b/public/textures/twilightforest/redcap_sapper_spawn_egg.png deleted file mode 100644 index f0ead60d..00000000 Binary files a/public/textures/twilightforest/redcap_sapper_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/redcap_spawn_egg.png b/public/textures/twilightforest/redcap_spawn_egg.png deleted file mode 100644 index b5dc3ccd..00000000 Binary files a/public/textures/twilightforest/redcap_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/root.png b/public/textures/twilightforest/root.png deleted file mode 100644 index 2daf73c6..00000000 Binary files a/public/textures/twilightforest/root.png and /dev/null differ diff --git a/public/textures/twilightforest/root_strand.png b/public/textures/twilightforest/root_strand.png deleted file mode 100644 index d3079421..00000000 Binary files a/public/textures/twilightforest/root_strand.png and /dev/null differ diff --git a/public/textures/twilightforest/rope.png b/public/textures/twilightforest/rope.png deleted file mode 100644 index 1b737e8e..00000000 Binary files a/public/textures/twilightforest/rope.png and /dev/null differ diff --git a/public/textures/twilightforest/seeker_bow.png b/public/textures/twilightforest/seeker_bow.png deleted file mode 100644 index 6e46bd7b..00000000 Binary files a/public/textures/twilightforest/seeker_bow.png and /dev/null differ diff --git a/public/textures/twilightforest/sinister_spawner.png b/public/textures/twilightforest/sinister_spawner.png deleted file mode 100644 index 5a2c449e..00000000 Binary files a/public/textures/twilightforest/sinister_spawner.png and /dev/null differ diff --git a/public/textures/twilightforest/skeleton_druid_spawn_egg.png b/public/textures/twilightforest/skeleton_druid_spawn_egg.png deleted file mode 100644 index 120d2d75..00000000 Binary files a/public/textures/twilightforest/skeleton_druid_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/skull_chest.png b/public/textures/twilightforest/skull_chest.png deleted file mode 100644 index 3ac2bd33..00000000 Binary files a/public/textures/twilightforest/skull_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/slime_beetle_spawn_egg.png b/public/textures/twilightforest/slime_beetle_spawn_egg.png deleted file mode 100644 index cd94a064..00000000 Binary files a/public/textures/twilightforest/slime_beetle_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/smoker.png b/public/textures/twilightforest/smoker.png deleted file mode 100644 index 79a67c25..00000000 Binary files a/public/textures/twilightforest/smoker.png and /dev/null differ diff --git a/public/textures/twilightforest/snow_guardian_spawn_egg.png b/public/textures/twilightforest/snow_guardian_spawn_egg.png deleted file mode 100644 index e1032f40..00000000 Binary files a/public/textures/twilightforest/snow_guardian_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/snow_queen_banner_pattern.png b/public/textures/twilightforest/snow_queen_banner_pattern.png deleted file mode 100644 index bc4c0241..00000000 Binary files a/public/textures/twilightforest/snow_queen_banner_pattern.png and /dev/null differ diff --git a/public/textures/twilightforest/snow_queen_boss_spawner.png b/public/textures/twilightforest/snow_queen_boss_spawner.png deleted file mode 100644 index 5584d7d4..00000000 Binary files a/public/textures/twilightforest/snow_queen_boss_spawner.png and /dev/null differ diff --git a/public/textures/twilightforest/snow_queen_spawn_egg.png b/public/textures/twilightforest/snow_queen_spawn_egg.png deleted file mode 100644 index 9b8ee6ec..00000000 Binary files a/public/textures/twilightforest/snow_queen_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/snow_queen_trophy.png b/public/textures/twilightforest/snow_queen_trophy.png deleted file mode 100644 index 3a5d15c5..00000000 Binary files a/public/textures/twilightforest/snow_queen_trophy.png and /dev/null differ diff --git a/public/textures/twilightforest/snowy_cloud.png b/public/textures/twilightforest/snowy_cloud.png deleted file mode 100644 index 23978dc8..00000000 Binary files a/public/textures/twilightforest/snowy_cloud.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_banister.png b/public/textures/twilightforest/sorting_banister.png deleted file mode 100644 index 8cb751cc..00000000 Binary files a/public/textures/twilightforest/sorting_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_boat.png b/public/textures/twilightforest/sorting_boat.png deleted file mode 100644 index 8d7982e4..00000000 Binary files a/public/textures/twilightforest/sorting_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_button.png b/public/textures/twilightforest/sorting_button.png deleted file mode 100644 index 9dabfc48..00000000 Binary files a/public/textures/twilightforest/sorting_button.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_chest.png b/public/textures/twilightforest/sorting_chest.png deleted file mode 100644 index 2ddc8233..00000000 Binary files a/public/textures/twilightforest/sorting_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_chest_boat.png b/public/textures/twilightforest/sorting_chest_boat.png deleted file mode 100644 index ce2e9a52..00000000 Binary files a/public/textures/twilightforest/sorting_chest_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_door.png b/public/textures/twilightforest/sorting_door.png deleted file mode 100644 index 8508f757..00000000 Binary files a/public/textures/twilightforest/sorting_door.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_fence.png b/public/textures/twilightforest/sorting_fence.png deleted file mode 100644 index 3b7376ed..00000000 Binary files a/public/textures/twilightforest/sorting_fence.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_fence_gate.png b/public/textures/twilightforest/sorting_fence_gate.png deleted file mode 100644 index 57f7087c..00000000 Binary files a/public/textures/twilightforest/sorting_fence_gate.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_hanging_sign.png b/public/textures/twilightforest/sorting_hanging_sign.png deleted file mode 100644 index bb760d48..00000000 Binary files a/public/textures/twilightforest/sorting_hanging_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_leaves.png b/public/textures/twilightforest/sorting_leaves.png deleted file mode 100644 index 10b90ce1..00000000 Binary files a/public/textures/twilightforest/sorting_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_log.png b/public/textures/twilightforest/sorting_log.png deleted file mode 100644 index f2a92359..00000000 Binary files a/public/textures/twilightforest/sorting_log.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_log_core.png b/public/textures/twilightforest/sorting_log_core.png deleted file mode 100644 index 01bd2906..00000000 Binary files a/public/textures/twilightforest/sorting_log_core.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_planks.png b/public/textures/twilightforest/sorting_planks.png deleted file mode 100644 index ef7eca12..00000000 Binary files a/public/textures/twilightforest/sorting_planks.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_pressure_plate.png b/public/textures/twilightforest/sorting_pressure_plate.png deleted file mode 100644 index 3415af24..00000000 Binary files a/public/textures/twilightforest/sorting_pressure_plate.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_sapling.png b/public/textures/twilightforest/sorting_sapling.png deleted file mode 100644 index 623501b8..00000000 Binary files a/public/textures/twilightforest/sorting_sapling.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_sign.png b/public/textures/twilightforest/sorting_sign.png deleted file mode 100644 index eba21fed..00000000 Binary files a/public/textures/twilightforest/sorting_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_slab.png b/public/textures/twilightforest/sorting_slab.png deleted file mode 100644 index 6915cbc8..00000000 Binary files a/public/textures/twilightforest/sorting_slab.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_stairs.png b/public/textures/twilightforest/sorting_stairs.png deleted file mode 100644 index c2934fc7..00000000 Binary files a/public/textures/twilightforest/sorting_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_trapdoor.png b/public/textures/twilightforest/sorting_trapdoor.png deleted file mode 100644 index 993c0fab..00000000 Binary files a/public/textures/twilightforest/sorting_trapdoor.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_trapped_chest.png b/public/textures/twilightforest/sorting_trapped_chest.png deleted file mode 100644 index 9dc08401..00000000 Binary files a/public/textures/twilightforest/sorting_trapped_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/sorting_wood.png b/public/textures/twilightforest/sorting_wood.png deleted file mode 100644 index 748dc75f..00000000 Binary files a/public/textures/twilightforest/sorting_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/spiral_bricks.png b/public/textures/twilightforest/spiral_bricks.png deleted file mode 100644 index e9ccce8e..00000000 Binary files a/public/textures/twilightforest/spiral_bricks.png and /dev/null differ diff --git a/public/textures/twilightforest/spruce_banister.png b/public/textures/twilightforest/spruce_banister.png deleted file mode 100644 index c01e6adb..00000000 Binary files a/public/textures/twilightforest/spruce_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/squirrel_spawn_egg.png b/public/textures/twilightforest/squirrel_spawn_egg.png deleted file mode 100644 index 1a1dcef9..00000000 Binary files a/public/textures/twilightforest/squirrel_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/stable_ice_core_spawn_egg.png b/public/textures/twilightforest/stable_ice_core_spawn_egg.png deleted file mode 100644 index 7dcdebcd..00000000 Binary files a/public/textures/twilightforest/stable_ice_core_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/steeleaf_axe.png b/public/textures/twilightforest/steeleaf_axe.png deleted file mode 100644 index 518a76aa..00000000 Binary files a/public/textures/twilightforest/steeleaf_axe.png and /dev/null differ diff --git a/public/textures/twilightforest/steeleaf_block.png b/public/textures/twilightforest/steeleaf_block.png deleted file mode 100644 index d7a66e2f..00000000 Binary files a/public/textures/twilightforest/steeleaf_block.png and /dev/null differ diff --git a/public/textures/twilightforest/steeleaf_boots.png b/public/textures/twilightforest/steeleaf_boots.png deleted file mode 100644 index b70226f5..00000000 Binary files a/public/textures/twilightforest/steeleaf_boots.png and /dev/null differ diff --git a/public/textures/twilightforest/steeleaf_chestplate.png b/public/textures/twilightforest/steeleaf_chestplate.png deleted file mode 100644 index 365604a8..00000000 Binary files a/public/textures/twilightforest/steeleaf_chestplate.png and /dev/null differ diff --git a/public/textures/twilightforest/steeleaf_helmet.png b/public/textures/twilightforest/steeleaf_helmet.png deleted file mode 100644 index e0ad4904..00000000 Binary files a/public/textures/twilightforest/steeleaf_helmet.png and /dev/null differ diff --git a/public/textures/twilightforest/steeleaf_hoe.png b/public/textures/twilightforest/steeleaf_hoe.png deleted file mode 100644 index d1384485..00000000 Binary files a/public/textures/twilightforest/steeleaf_hoe.png and /dev/null differ diff --git a/public/textures/twilightforest/steeleaf_ingot.png b/public/textures/twilightforest/steeleaf_ingot.png deleted file mode 100644 index 67142452..00000000 Binary files a/public/textures/twilightforest/steeleaf_ingot.png and /dev/null differ diff --git a/public/textures/twilightforest/steeleaf_leggings.png b/public/textures/twilightforest/steeleaf_leggings.png deleted file mode 100644 index 18458dee..00000000 Binary files a/public/textures/twilightforest/steeleaf_leggings.png and /dev/null differ diff --git a/public/textures/twilightforest/steeleaf_pickaxe.png b/public/textures/twilightforest/steeleaf_pickaxe.png deleted file mode 100644 index ebd586d3..00000000 Binary files a/public/textures/twilightforest/steeleaf_pickaxe.png and /dev/null differ diff --git a/public/textures/twilightforest/steeleaf_shovel.png b/public/textures/twilightforest/steeleaf_shovel.png deleted file mode 100644 index c4131e99..00000000 Binary files a/public/textures/twilightforest/steeleaf_shovel.png and /dev/null differ diff --git a/public/textures/twilightforest/steeleaf_sword.png b/public/textures/twilightforest/steeleaf_sword.png deleted file mode 100644 index bb3ced8c..00000000 Binary files a/public/textures/twilightforest/steeleaf_sword.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_canopy_log.png b/public/textures/twilightforest/stripped_canopy_log.png deleted file mode 100644 index 29cdf18b..00000000 Binary files a/public/textures/twilightforest/stripped_canopy_log.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_canopy_wood.png b/public/textures/twilightforest/stripped_canopy_wood.png deleted file mode 100644 index 168f7e05..00000000 Binary files a/public/textures/twilightforest/stripped_canopy_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_dark_log.png b/public/textures/twilightforest/stripped_dark_log.png deleted file mode 100644 index 8d3d78de..00000000 Binary files a/public/textures/twilightforest/stripped_dark_log.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_dark_wood.png b/public/textures/twilightforest/stripped_dark_wood.png deleted file mode 100644 index 99ac29fd..00000000 Binary files a/public/textures/twilightforest/stripped_dark_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_mangrove_log.png b/public/textures/twilightforest/stripped_mangrove_log.png deleted file mode 100644 index 26ee20a8..00000000 Binary files a/public/textures/twilightforest/stripped_mangrove_log.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_mangrove_wood.png b/public/textures/twilightforest/stripped_mangrove_wood.png deleted file mode 100644 index 820d9332..00000000 Binary files a/public/textures/twilightforest/stripped_mangrove_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_mining_log.png b/public/textures/twilightforest/stripped_mining_log.png deleted file mode 100644 index c8271591..00000000 Binary files a/public/textures/twilightforest/stripped_mining_log.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_mining_wood.png b/public/textures/twilightforest/stripped_mining_wood.png deleted file mode 100644 index c84e61f9..00000000 Binary files a/public/textures/twilightforest/stripped_mining_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_sorting_log.png b/public/textures/twilightforest/stripped_sorting_log.png deleted file mode 100644 index 09d4ad3e..00000000 Binary files a/public/textures/twilightforest/stripped_sorting_log.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_sorting_wood.png b/public/textures/twilightforest/stripped_sorting_wood.png deleted file mode 100644 index 948aa9ad..00000000 Binary files a/public/textures/twilightforest/stripped_sorting_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_time_log.png b/public/textures/twilightforest/stripped_time_log.png deleted file mode 100644 index 84b72cad..00000000 Binary files a/public/textures/twilightforest/stripped_time_log.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_time_wood.png b/public/textures/twilightforest/stripped_time_wood.png deleted file mode 100644 index d37a7d5f..00000000 Binary files a/public/textures/twilightforest/stripped_time_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_transformation_log.png b/public/textures/twilightforest/stripped_transformation_log.png deleted file mode 100644 index a56938da..00000000 Binary files a/public/textures/twilightforest/stripped_transformation_log.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_transformation_wood.png b/public/textures/twilightforest/stripped_transformation_wood.png deleted file mode 100644 index 70c600dc..00000000 Binary files a/public/textures/twilightforest/stripped_transformation_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_twilight_oak_log.png b/public/textures/twilightforest/stripped_twilight_oak_log.png deleted file mode 100644 index 4193c6c8..00000000 Binary files a/public/textures/twilightforest/stripped_twilight_oak_log.png and /dev/null differ diff --git a/public/textures/twilightforest/stripped_twilight_oak_wood.png b/public/textures/twilightforest/stripped_twilight_oak_wood.png deleted file mode 100644 index 20aba684..00000000 Binary files a/public/textures/twilightforest/stripped_twilight_oak_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/stronghold_shield.png b/public/textures/twilightforest/stronghold_shield.png deleted file mode 100644 index f284d4f0..00000000 Binary files a/public/textures/twilightforest/stronghold_shield.png and /dev/null differ diff --git a/public/textures/twilightforest/swarm_spider_spawn_egg.png b/public/textures/twilightforest/swarm_spider_spawn_egg.png deleted file mode 100644 index 482882a2..00000000 Binary files a/public/textures/twilightforest/swarm_spider_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/terrorcotta_arcs.png b/public/textures/twilightforest/terrorcotta_arcs.png deleted file mode 100644 index de5600e3..00000000 Binary files a/public/textures/twilightforest/terrorcotta_arcs.png and /dev/null differ diff --git a/public/textures/twilightforest/terrorcotta_curves.png b/public/textures/twilightforest/terrorcotta_curves.png deleted file mode 100644 index 5f1f9adc..00000000 Binary files a/public/textures/twilightforest/terrorcotta_curves.png and /dev/null differ diff --git a/public/textures/twilightforest/terrorcotta_lines.png b/public/textures/twilightforest/terrorcotta_lines.png deleted file mode 100644 index 85d1b536..00000000 Binary files a/public/textures/twilightforest/terrorcotta_lines.png and /dev/null differ diff --git a/public/textures/twilightforest/thick_castle_brick.png b/public/textures/twilightforest/thick_castle_brick.png deleted file mode 100644 index d1558c7a..00000000 Binary files a/public/textures/twilightforest/thick_castle_brick.png and /dev/null differ diff --git a/public/textures/twilightforest/thorn_leaves.png b/public/textures/twilightforest/thorn_leaves.png deleted file mode 100644 index 427c76c6..00000000 Binary files a/public/textures/twilightforest/thorn_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/thorn_rose.png b/public/textures/twilightforest/thorn_rose.png deleted file mode 100644 index 48d24167..00000000 Binary files a/public/textures/twilightforest/thorn_rose.png and /dev/null differ diff --git a/public/textures/twilightforest/time_banister.png b/public/textures/twilightforest/time_banister.png deleted file mode 100644 index 0c82258e..00000000 Binary files a/public/textures/twilightforest/time_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/time_boat.png b/public/textures/twilightforest/time_boat.png deleted file mode 100644 index 06f3d489..00000000 Binary files a/public/textures/twilightforest/time_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/time_button.png b/public/textures/twilightforest/time_button.png deleted file mode 100644 index e901d92b..00000000 Binary files a/public/textures/twilightforest/time_button.png and /dev/null differ diff --git a/public/textures/twilightforest/time_chest.png b/public/textures/twilightforest/time_chest.png deleted file mode 100644 index 7ca6b5f1..00000000 Binary files a/public/textures/twilightforest/time_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/time_chest_boat.png b/public/textures/twilightforest/time_chest_boat.png deleted file mode 100644 index 28861f57..00000000 Binary files a/public/textures/twilightforest/time_chest_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/time_door.png b/public/textures/twilightforest/time_door.png deleted file mode 100644 index a2686197..00000000 Binary files a/public/textures/twilightforest/time_door.png and /dev/null differ diff --git a/public/textures/twilightforest/time_fence.png b/public/textures/twilightforest/time_fence.png deleted file mode 100644 index 8c5f3e91..00000000 Binary files a/public/textures/twilightforest/time_fence.png and /dev/null differ diff --git a/public/textures/twilightforest/time_fence_gate.png b/public/textures/twilightforest/time_fence_gate.png deleted file mode 100644 index 7282b01f..00000000 Binary files a/public/textures/twilightforest/time_fence_gate.png and /dev/null differ diff --git a/public/textures/twilightforest/time_hanging_sign.png b/public/textures/twilightforest/time_hanging_sign.png deleted file mode 100644 index 6afddf83..00000000 Binary files a/public/textures/twilightforest/time_hanging_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/time_leaves.png b/public/textures/twilightforest/time_leaves.png deleted file mode 100644 index 4957dedd..00000000 Binary files a/public/textures/twilightforest/time_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/time_log.png b/public/textures/twilightforest/time_log.png deleted file mode 100644 index 02fe6fa1..00000000 Binary files a/public/textures/twilightforest/time_log.png and /dev/null differ diff --git a/public/textures/twilightforest/time_log_core.png b/public/textures/twilightforest/time_log_core.png deleted file mode 100644 index c5b7e98e..00000000 Binary files a/public/textures/twilightforest/time_log_core.png and /dev/null differ diff --git a/public/textures/twilightforest/time_planks.png b/public/textures/twilightforest/time_planks.png deleted file mode 100644 index 27b99fa2..00000000 Binary files a/public/textures/twilightforest/time_planks.png and /dev/null differ diff --git a/public/textures/twilightforest/time_pressure_plate.png b/public/textures/twilightforest/time_pressure_plate.png deleted file mode 100644 index 351e7cf9..00000000 Binary files a/public/textures/twilightforest/time_pressure_plate.png and /dev/null differ diff --git a/public/textures/twilightforest/time_sapling.png b/public/textures/twilightforest/time_sapling.png deleted file mode 100644 index b13733e1..00000000 Binary files a/public/textures/twilightforest/time_sapling.png and /dev/null differ diff --git a/public/textures/twilightforest/time_sign.png b/public/textures/twilightforest/time_sign.png deleted file mode 100644 index 3557ab6a..00000000 Binary files a/public/textures/twilightforest/time_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/time_slab.png b/public/textures/twilightforest/time_slab.png deleted file mode 100644 index 6f2819df..00000000 Binary files a/public/textures/twilightforest/time_slab.png and /dev/null differ diff --git a/public/textures/twilightforest/time_stairs.png b/public/textures/twilightforest/time_stairs.png deleted file mode 100644 index e1d87147..00000000 Binary files a/public/textures/twilightforest/time_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/time_trapdoor.png b/public/textures/twilightforest/time_trapdoor.png deleted file mode 100644 index 741bc42f..00000000 Binary files a/public/textures/twilightforest/time_trapdoor.png and /dev/null differ diff --git a/public/textures/twilightforest/time_trapped_chest.png b/public/textures/twilightforest/time_trapped_chest.png deleted file mode 100644 index 67b595e8..00000000 Binary files a/public/textures/twilightforest/time_trapped_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/time_wood.png b/public/textures/twilightforest/time_wood.png deleted file mode 100644 index eb3da28a..00000000 Binary files a/public/textures/twilightforest/time_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/tiny_bird_spawn_egg.png b/public/textures/twilightforest/tiny_bird_spawn_egg.png deleted file mode 100644 index 24e61f84..00000000 Binary files a/public/textures/twilightforest/tiny_bird_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/torchberries.png b/public/textures/twilightforest/torchberries.png deleted file mode 100644 index a1947522..00000000 Binary files a/public/textures/twilightforest/torchberries.png and /dev/null differ diff --git a/public/textures/twilightforest/torchberry_plant.png b/public/textures/twilightforest/torchberry_plant.png deleted file mode 100644 index 13d496c0..00000000 Binary files a/public/textures/twilightforest/torchberry_plant.png and /dev/null differ diff --git a/public/textures/twilightforest/tower_key.png b/public/textures/twilightforest/tower_key.png deleted file mode 100644 index 3616d9da..00000000 Binary files a/public/textures/twilightforest/tower_key.png and /dev/null differ diff --git a/public/textures/twilightforest/towerwood.png b/public/textures/twilightforest/towerwood.png deleted file mode 100644 index 7616abd5..00000000 Binary files a/public/textures/twilightforest/towerwood.png and /dev/null differ diff --git a/public/textures/twilightforest/towerwood_borer_spawn_egg.png b/public/textures/twilightforest/towerwood_borer_spawn_egg.png deleted file mode 100644 index 4ac64122..00000000 Binary files a/public/textures/twilightforest/towerwood_borer_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_banister.png b/public/textures/twilightforest/transformation_banister.png deleted file mode 100644 index f51f8a70..00000000 Binary files a/public/textures/twilightforest/transformation_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_boat.png b/public/textures/twilightforest/transformation_boat.png deleted file mode 100644 index 9c1006ba..00000000 Binary files a/public/textures/twilightforest/transformation_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_button.png b/public/textures/twilightforest/transformation_button.png deleted file mode 100644 index 999f6b0a..00000000 Binary files a/public/textures/twilightforest/transformation_button.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_chest.png b/public/textures/twilightforest/transformation_chest.png deleted file mode 100644 index 6bfb3631..00000000 Binary files a/public/textures/twilightforest/transformation_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_chest_boat.png b/public/textures/twilightforest/transformation_chest_boat.png deleted file mode 100644 index 808e0dc2..00000000 Binary files a/public/textures/twilightforest/transformation_chest_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_door.png b/public/textures/twilightforest/transformation_door.png deleted file mode 100644 index b5a6795c..00000000 Binary files a/public/textures/twilightforest/transformation_door.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_fence.png b/public/textures/twilightforest/transformation_fence.png deleted file mode 100644 index 475d976c..00000000 Binary files a/public/textures/twilightforest/transformation_fence.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_fence_gate.png b/public/textures/twilightforest/transformation_fence_gate.png deleted file mode 100644 index 71180648..00000000 Binary files a/public/textures/twilightforest/transformation_fence_gate.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_hanging_sign.png b/public/textures/twilightforest/transformation_hanging_sign.png deleted file mode 100644 index c3adb21f..00000000 Binary files a/public/textures/twilightforest/transformation_hanging_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_leaves.png b/public/textures/twilightforest/transformation_leaves.png deleted file mode 100644 index 332c10f5..00000000 Binary files a/public/textures/twilightforest/transformation_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_log.png b/public/textures/twilightforest/transformation_log.png deleted file mode 100644 index e646bf55..00000000 Binary files a/public/textures/twilightforest/transformation_log.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_log_core.png b/public/textures/twilightforest/transformation_log_core.png deleted file mode 100644 index 75ddde82..00000000 Binary files a/public/textures/twilightforest/transformation_log_core.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_planks.png b/public/textures/twilightforest/transformation_planks.png deleted file mode 100644 index 34717699..00000000 Binary files a/public/textures/twilightforest/transformation_planks.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_powder.png b/public/textures/twilightforest/transformation_powder.png deleted file mode 100644 index de491329..00000000 Binary files a/public/textures/twilightforest/transformation_powder.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_pressure_plate.png b/public/textures/twilightforest/transformation_pressure_plate.png deleted file mode 100644 index c424f65a..00000000 Binary files a/public/textures/twilightforest/transformation_pressure_plate.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_sapling.png b/public/textures/twilightforest/transformation_sapling.png deleted file mode 100644 index a09275d6..00000000 Binary files a/public/textures/twilightforest/transformation_sapling.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_sign.png b/public/textures/twilightforest/transformation_sign.png deleted file mode 100644 index 40efca92..00000000 Binary files a/public/textures/twilightforest/transformation_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_slab.png b/public/textures/twilightforest/transformation_slab.png deleted file mode 100644 index 488b24d6..00000000 Binary files a/public/textures/twilightforest/transformation_slab.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_stairs.png b/public/textures/twilightforest/transformation_stairs.png deleted file mode 100644 index c01c4ae6..00000000 Binary files a/public/textures/twilightforest/transformation_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_trapdoor.png b/public/textures/twilightforest/transformation_trapdoor.png deleted file mode 100644 index d153d0c9..00000000 Binary files a/public/textures/twilightforest/transformation_trapdoor.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_trapped_chest.png b/public/textures/twilightforest/transformation_trapped_chest.png deleted file mode 100644 index add85b17..00000000 Binary files a/public/textures/twilightforest/transformation_trapped_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/transformation_wood.png b/public/textures/twilightforest/transformation_wood.png deleted file mode 100644 index a3b5affb..00000000 Binary files a/public/textures/twilightforest/transformation_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/triple_bow.png b/public/textures/twilightforest/triple_bow.png deleted file mode 100644 index 0616d6eb..00000000 Binary files a/public/textures/twilightforest/triple_bow.png and /dev/null differ diff --git a/public/textures/twilightforest/troll_spawn_egg.png b/public/textures/twilightforest/troll_spawn_egg.png deleted file mode 100644 index 004df426..00000000 Binary files a/public/textures/twilightforest/troll_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/trollber.png b/public/textures/twilightforest/trollber.png deleted file mode 100644 index 54745b26..00000000 Binary files a/public/textures/twilightforest/trollber.png and /dev/null differ diff --git a/public/textures/twilightforest/trollsteinn.png b/public/textures/twilightforest/trollsteinn.png deleted file mode 100644 index 73c2d9be..00000000 Binary files a/public/textures/twilightforest/trollsteinn.png and /dev/null differ diff --git a/public/textures/twilightforest/trollvidr.png b/public/textures/twilightforest/trollvidr.png deleted file mode 100644 index 81cb77f3..00000000 Binary files a/public/textures/twilightforest/trollvidr.png and /dev/null differ diff --git a/public/textures/twilightforest/trophy_pedestal.png b/public/textures/twilightforest/trophy_pedestal.png deleted file mode 100644 index aa48c443..00000000 Binary files a/public/textures/twilightforest/trophy_pedestal.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_banister.png b/public/textures/twilightforest/twilight_oak_banister.png deleted file mode 100644 index 77f6e0af..00000000 Binary files a/public/textures/twilightforest/twilight_oak_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_boat.png b/public/textures/twilightforest/twilight_oak_boat.png deleted file mode 100644 index 310def48..00000000 Binary files a/public/textures/twilightforest/twilight_oak_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_button.png b/public/textures/twilightforest/twilight_oak_button.png deleted file mode 100644 index e2a56fe0..00000000 Binary files a/public/textures/twilightforest/twilight_oak_button.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_chest.png b/public/textures/twilightforest/twilight_oak_chest.png deleted file mode 100644 index 6a5cc588..00000000 Binary files a/public/textures/twilightforest/twilight_oak_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_chest_boat.png b/public/textures/twilightforest/twilight_oak_chest_boat.png deleted file mode 100644 index 012723e2..00000000 Binary files a/public/textures/twilightforest/twilight_oak_chest_boat.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_door.png b/public/textures/twilightforest/twilight_oak_door.png deleted file mode 100644 index 766e32b7..00000000 Binary files a/public/textures/twilightforest/twilight_oak_door.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_fence.png b/public/textures/twilightforest/twilight_oak_fence.png deleted file mode 100644 index 7134455c..00000000 Binary files a/public/textures/twilightforest/twilight_oak_fence.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_fence_gate.png b/public/textures/twilightforest/twilight_oak_fence_gate.png deleted file mode 100644 index 005a4bc8..00000000 Binary files a/public/textures/twilightforest/twilight_oak_fence_gate.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_hanging_sign.png b/public/textures/twilightforest/twilight_oak_hanging_sign.png deleted file mode 100644 index 84f896b4..00000000 Binary files a/public/textures/twilightforest/twilight_oak_hanging_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_leaves.png b/public/textures/twilightforest/twilight_oak_leaves.png deleted file mode 100644 index b8faccf1..00000000 Binary files a/public/textures/twilightforest/twilight_oak_leaves.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_log.png b/public/textures/twilightforest/twilight_oak_log.png deleted file mode 100644 index f4e4a988..00000000 Binary files a/public/textures/twilightforest/twilight_oak_log.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_planks.png b/public/textures/twilightforest/twilight_oak_planks.png deleted file mode 100644 index 901a8b23..00000000 Binary files a/public/textures/twilightforest/twilight_oak_planks.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_pressure_plate.png b/public/textures/twilightforest/twilight_oak_pressure_plate.png deleted file mode 100644 index 5de9eda1..00000000 Binary files a/public/textures/twilightforest/twilight_oak_pressure_plate.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_sapling.png b/public/textures/twilightforest/twilight_oak_sapling.png deleted file mode 100644 index 8e13b217..00000000 Binary files a/public/textures/twilightforest/twilight_oak_sapling.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_sign.png b/public/textures/twilightforest/twilight_oak_sign.png deleted file mode 100644 index d4b306d2..00000000 Binary files a/public/textures/twilightforest/twilight_oak_sign.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_slab.png b/public/textures/twilightforest/twilight_oak_slab.png deleted file mode 100644 index 2edefbac..00000000 Binary files a/public/textures/twilightforest/twilight_oak_slab.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_stairs.png b/public/textures/twilightforest/twilight_oak_stairs.png deleted file mode 100644 index 351a302b..00000000 Binary files a/public/textures/twilightforest/twilight_oak_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_trapdoor.png b/public/textures/twilightforest/twilight_oak_trapdoor.png deleted file mode 100644 index 137cbca8..00000000 Binary files a/public/textures/twilightforest/twilight_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_trapped_chest.png b/public/textures/twilightforest/twilight_oak_trapped_chest.png deleted file mode 100644 index b5da4b4b..00000000 Binary files a/public/textures/twilightforest/twilight_oak_trapped_chest.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_oak_wood.png b/public/textures/twilightforest/twilight_oak_wood.png deleted file mode 100644 index 9d1a4697..00000000 Binary files a/public/textures/twilightforest/twilight_oak_wood.png and /dev/null differ diff --git a/public/textures/twilightforest/twilight_scepter.png b/public/textures/twilightforest/twilight_scepter.png deleted file mode 100644 index 5fac54e1..00000000 Binary files a/public/textures/twilightforest/twilight_scepter.png and /dev/null differ diff --git a/public/textures/twilightforest/twisted_stone.png b/public/textures/twilightforest/twisted_stone.png deleted file mode 100644 index 8994ae43..00000000 Binary files a/public/textures/twilightforest/twisted_stone.png and /dev/null differ diff --git a/public/textures/twilightforest/twisted_stone_pillar.png b/public/textures/twilightforest/twisted_stone_pillar.png deleted file mode 100644 index f89ef22e..00000000 Binary files a/public/textures/twilightforest/twisted_stone_pillar.png and /dev/null differ diff --git a/public/textures/twilightforest/uberous_soil.png b/public/textures/twilightforest/uberous_soil.png deleted file mode 100644 index 14eaa26e..00000000 Binary files a/public/textures/twilightforest/uberous_soil.png and /dev/null differ diff --git a/public/textures/twilightforest/uncrafting_table.png b/public/textures/twilightforest/uncrafting_table.png deleted file mode 100644 index c88db952..00000000 Binary files a/public/textures/twilightforest/uncrafting_table.png and /dev/null differ diff --git a/public/textures/twilightforest/underbrick.png b/public/textures/twilightforest/underbrick.png deleted file mode 100644 index ad0d8fab..00000000 Binary files a/public/textures/twilightforest/underbrick.png and /dev/null differ diff --git a/public/textures/twilightforest/underbrick_floor.png b/public/textures/twilightforest/underbrick_floor.png deleted file mode 100644 index 9a89bd87..00000000 Binary files a/public/textures/twilightforest/underbrick_floor.png and /dev/null differ diff --git a/public/textures/twilightforest/unripe_trollber.png b/public/textures/twilightforest/unripe_trollber.png deleted file mode 100644 index 2353c2e5..00000000 Binary files a/public/textures/twilightforest/unripe_trollber.png and /dev/null differ diff --git a/public/textures/twilightforest/unstable_ice_core_spawn_egg.png b/public/textures/twilightforest/unstable_ice_core_spawn_egg.png deleted file mode 100644 index 369b261a..00000000 Binary files a/public/textures/twilightforest/unstable_ice_core_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/ur_ghast_banner_pattern.png b/public/textures/twilightforest/ur_ghast_banner_pattern.png deleted file mode 100644 index bc4c0241..00000000 Binary files a/public/textures/twilightforest/ur_ghast_banner_pattern.png and /dev/null differ diff --git a/public/textures/twilightforest/ur_ghast_boss_spawner.png b/public/textures/twilightforest/ur_ghast_boss_spawner.png deleted file mode 100644 index 5584d7d4..00000000 Binary files a/public/textures/twilightforest/ur_ghast_boss_spawner.png and /dev/null differ diff --git a/public/textures/twilightforest/ur_ghast_spawn_egg.png b/public/textures/twilightforest/ur_ghast_spawn_egg.png deleted file mode 100644 index 4d1a5bb1..00000000 Binary files a/public/textures/twilightforest/ur_ghast_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/ur_ghast_trophy.png b/public/textures/twilightforest/ur_ghast_trophy.png deleted file mode 100644 index 084283a0..00000000 Binary files a/public/textures/twilightforest/ur_ghast_trophy.png and /dev/null differ diff --git a/public/textures/twilightforest/vangrove_banister.png b/public/textures/twilightforest/vangrove_banister.png deleted file mode 100644 index 8bd72061..00000000 Binary files a/public/textures/twilightforest/vangrove_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/vanishing_block.png b/public/textures/twilightforest/vanishing_block.png deleted file mode 100644 index e92f0122..00000000 Binary files a/public/textures/twilightforest/vanishing_block.png and /dev/null differ diff --git a/public/textures/twilightforest/violet_castle_door.png b/public/textures/twilightforest/violet_castle_door.png deleted file mode 100644 index 7ac38b63..00000000 Binary files a/public/textures/twilightforest/violet_castle_door.png and /dev/null differ diff --git a/public/textures/twilightforest/violet_castle_rune_brick.png b/public/textures/twilightforest/violet_castle_rune_brick.png deleted file mode 100644 index 7183ea32..00000000 Binary files a/public/textures/twilightforest/violet_castle_rune_brick.png and /dev/null differ diff --git a/public/textures/twilightforest/violet_force_field.png b/public/textures/twilightforest/violet_force_field.png deleted file mode 100644 index 6ce565de..00000000 Binary files a/public/textures/twilightforest/violet_force_field.png and /dev/null differ diff --git a/public/textures/twilightforest/warped_banister.png b/public/textures/twilightforest/warped_banister.png deleted file mode 100644 index 58c491aa..00000000 Binary files a/public/textures/twilightforest/warped_banister.png and /dev/null differ diff --git a/public/textures/twilightforest/weathered_deadrock.png b/public/textures/twilightforest/weathered_deadrock.png deleted file mode 100644 index 2179e1c3..00000000 Binary files a/public/textures/twilightforest/weathered_deadrock.png and /dev/null differ diff --git a/public/textures/twilightforest/winter_wolf_spawn_egg.png b/public/textures/twilightforest/winter_wolf_spawn_egg.png deleted file mode 100644 index e578e1ab..00000000 Binary files a/public/textures/twilightforest/winter_wolf_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/wispy_cloud.png b/public/textures/twilightforest/wispy_cloud.png deleted file mode 100644 index 2c8e6c0f..00000000 Binary files a/public/textures/twilightforest/wispy_cloud.png and /dev/null differ diff --git a/public/textures/twilightforest/worn_castle_brick.png b/public/textures/twilightforest/worn_castle_brick.png deleted file mode 100644 index 327f7f39..00000000 Binary files a/public/textures/twilightforest/worn_castle_brick.png and /dev/null differ diff --git a/public/textures/twilightforest/worn_castle_brick_stairs.png b/public/textures/twilightforest/worn_castle_brick_stairs.png deleted file mode 100644 index 3cf1a34a..00000000 Binary files a/public/textures/twilightforest/worn_castle_brick_stairs.png and /dev/null differ diff --git a/public/textures/twilightforest/wraith_spawn_egg.png b/public/textures/twilightforest/wraith_spawn_egg.png deleted file mode 100644 index b4f27209..00000000 Binary files a/public/textures/twilightforest/wraith_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/wrought_iron_bar.png b/public/textures/twilightforest/wrought_iron_bar.png deleted file mode 100644 index 28f2b84e..00000000 Binary files a/public/textures/twilightforest/wrought_iron_bar.png and /dev/null differ diff --git a/public/textures/twilightforest/wrought_iron_fence.png b/public/textures/twilightforest/wrought_iron_fence.png deleted file mode 100644 index 1878a2b5..00000000 Binary files a/public/textures/twilightforest/wrought_iron_fence.png and /dev/null differ diff --git a/public/textures/twilightforest/yellow_castle_door.png b/public/textures/twilightforest/yellow_castle_door.png deleted file mode 100644 index f390e7a7..00000000 Binary files a/public/textures/twilightforest/yellow_castle_door.png and /dev/null differ diff --git a/public/textures/twilightforest/yellow_castle_rune_brick.png b/public/textures/twilightforest/yellow_castle_rune_brick.png deleted file mode 100644 index 70b1d725..00000000 Binary files a/public/textures/twilightforest/yellow_castle_rune_brick.png and /dev/null differ diff --git a/public/textures/twilightforest/yeti_boots.png b/public/textures/twilightforest/yeti_boots.png deleted file mode 100644 index 6a080bc6..00000000 Binary files a/public/textures/twilightforest/yeti_boots.png and /dev/null differ diff --git a/public/textures/twilightforest/yeti_chestplate.png b/public/textures/twilightforest/yeti_chestplate.png deleted file mode 100644 index 47eb4fbe..00000000 Binary files a/public/textures/twilightforest/yeti_chestplate.png and /dev/null differ diff --git a/public/textures/twilightforest/yeti_helmet.png b/public/textures/twilightforest/yeti_helmet.png deleted file mode 100644 index 4e197a30..00000000 Binary files a/public/textures/twilightforest/yeti_helmet.png and /dev/null differ diff --git a/public/textures/twilightforest/yeti_leggings.png b/public/textures/twilightforest/yeti_leggings.png deleted file mode 100644 index b938febf..00000000 Binary files a/public/textures/twilightforest/yeti_leggings.png and /dev/null differ diff --git a/public/textures/twilightforest/yeti_spawn_egg.png b/public/textures/twilightforest/yeti_spawn_egg.png deleted file mode 100644 index abc425a3..00000000 Binary files a/public/textures/twilightforest/yeti_spawn_egg.png and /dev/null differ diff --git a/public/textures/twilightforest/zombie_scepter.png b/public/textures/twilightforest/zombie_scepter.png deleted file mode 100644 index 73b9e80f..00000000 Binary files a/public/textures/twilightforest/zombie_scepter.png and /dev/null differ diff --git a/public/textures/vanillabackport/black_harness.png b/public/textures/vanillabackport/black_harness.png deleted file mode 100644 index 66ab5f99..00000000 Binary files a/public/textures/vanillabackport/black_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/blue_harness.png b/public/textures/vanillabackport/blue_harness.png deleted file mode 100644 index 93021b92..00000000 Binary files a/public/textures/vanillabackport/blue_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/brown_harness.png b/public/textures/vanillabackport/brown_harness.png deleted file mode 100644 index ff272899..00000000 Binary files a/public/textures/vanillabackport/brown_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/chiseled_resin_bricks.png b/public/textures/vanillabackport/chiseled_resin_bricks.png deleted file mode 100644 index 17671479..00000000 Binary files a/public/textures/vanillabackport/chiseled_resin_bricks.png and /dev/null differ diff --git a/public/textures/vanillabackport/closed_eyeblossom.png b/public/textures/vanillabackport/closed_eyeblossom.png deleted file mode 100644 index 0206b60e..00000000 Binary files a/public/textures/vanillabackport/closed_eyeblossom.png and /dev/null differ diff --git a/public/textures/vanillabackport/creaking_heart.png b/public/textures/vanillabackport/creaking_heart.png deleted file mode 100644 index aa0b8d3b..00000000 Binary files a/public/textures/vanillabackport/creaking_heart.png and /dev/null differ diff --git a/public/textures/vanillabackport/creaking_spawn_egg.png b/public/textures/vanillabackport/creaking_spawn_egg.png deleted file mode 100644 index 10abcb52..00000000 Binary files a/public/textures/vanillabackport/creaking_spawn_egg.png and /dev/null differ diff --git a/public/textures/vanillabackport/cyan_harness.png b/public/textures/vanillabackport/cyan_harness.png deleted file mode 100644 index f31a3875..00000000 Binary files a/public/textures/vanillabackport/cyan_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/dried_ghast.png b/public/textures/vanillabackport/dried_ghast.png deleted file mode 100644 index c79dbff5..00000000 Binary files a/public/textures/vanillabackport/dried_ghast.png and /dev/null differ diff --git a/public/textures/vanillabackport/gray_harness.png b/public/textures/vanillabackport/gray_harness.png deleted file mode 100644 index 43a89e87..00000000 Binary files a/public/textures/vanillabackport/gray_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/green_harness.png b/public/textures/vanillabackport/green_harness.png deleted file mode 100644 index aa3285c0..00000000 Binary files a/public/textures/vanillabackport/green_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/happy_ghast_spawn_egg.png b/public/textures/vanillabackport/happy_ghast_spawn_egg.png deleted file mode 100644 index f8f64d84..00000000 Binary files a/public/textures/vanillabackport/happy_ghast_spawn_egg.png and /dev/null differ diff --git a/public/textures/vanillabackport/light_blue_harness.png b/public/textures/vanillabackport/light_blue_harness.png deleted file mode 100644 index 4f837a74..00000000 Binary files a/public/textures/vanillabackport/light_blue_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/light_gray_harness.png b/public/textures/vanillabackport/light_gray_harness.png deleted file mode 100644 index 29ac980b..00000000 Binary files a/public/textures/vanillabackport/light_gray_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/lime_harness.png b/public/textures/vanillabackport/lime_harness.png deleted file mode 100644 index 9246329b..00000000 Binary files a/public/textures/vanillabackport/lime_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/magenta_harness.png b/public/textures/vanillabackport/magenta_harness.png deleted file mode 100644 index 0a64c341..00000000 Binary files a/public/textures/vanillabackport/magenta_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/open_eyeblossom.png b/public/textures/vanillabackport/open_eyeblossom.png deleted file mode 100644 index fc96cc08..00000000 Binary files a/public/textures/vanillabackport/open_eyeblossom.png and /dev/null differ diff --git a/public/textures/vanillabackport/orange_harness.png b/public/textures/vanillabackport/orange_harness.png deleted file mode 100644 index 8e096b92..00000000 Binary files a/public/textures/vanillabackport/orange_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_hanging_moss.png b/public/textures/vanillabackport/pale_hanging_moss.png deleted file mode 100644 index 034e02cb..00000000 Binary files a/public/textures/vanillabackport/pale_hanging_moss.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_moss_block.png b/public/textures/vanillabackport/pale_moss_block.png deleted file mode 100644 index f28b858c..00000000 Binary files a/public/textures/vanillabackport/pale_moss_block.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_moss_carpet.png b/public/textures/vanillabackport/pale_moss_carpet.png deleted file mode 100644 index 17ebbd79..00000000 Binary files a/public/textures/vanillabackport/pale_moss_carpet.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_boat.png b/public/textures/vanillabackport/pale_oak_boat.png deleted file mode 100644 index e34f9063..00000000 Binary files a/public/textures/vanillabackport/pale_oak_boat.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_button.png b/public/textures/vanillabackport/pale_oak_button.png deleted file mode 100644 index 4ae2c485..00000000 Binary files a/public/textures/vanillabackport/pale_oak_button.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_chest_boat.png b/public/textures/vanillabackport/pale_oak_chest_boat.png deleted file mode 100644 index 35f3b964..00000000 Binary files a/public/textures/vanillabackport/pale_oak_chest_boat.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_door.png b/public/textures/vanillabackport/pale_oak_door.png deleted file mode 100644 index 4a2991af..00000000 Binary files a/public/textures/vanillabackport/pale_oak_door.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_fence.png b/public/textures/vanillabackport/pale_oak_fence.png deleted file mode 100644 index d38841de..00000000 Binary files a/public/textures/vanillabackport/pale_oak_fence.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_fence_gate.png b/public/textures/vanillabackport/pale_oak_fence_gate.png deleted file mode 100644 index 58fb277a..00000000 Binary files a/public/textures/vanillabackport/pale_oak_fence_gate.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_hanging_sign.png b/public/textures/vanillabackport/pale_oak_hanging_sign.png deleted file mode 100644 index e757fc1f..00000000 Binary files a/public/textures/vanillabackport/pale_oak_hanging_sign.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_leaves.png b/public/textures/vanillabackport/pale_oak_leaves.png deleted file mode 100644 index 2b206441..00000000 Binary files a/public/textures/vanillabackport/pale_oak_leaves.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_log.png b/public/textures/vanillabackport/pale_oak_log.png deleted file mode 100644 index 8576e6bd..00000000 Binary files a/public/textures/vanillabackport/pale_oak_log.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_planks.png b/public/textures/vanillabackport/pale_oak_planks.png deleted file mode 100644 index 6c9342ed..00000000 Binary files a/public/textures/vanillabackport/pale_oak_planks.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_pressure_plate.png b/public/textures/vanillabackport/pale_oak_pressure_plate.png deleted file mode 100644 index 0b5c9e46..00000000 Binary files a/public/textures/vanillabackport/pale_oak_pressure_plate.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_sapling.png b/public/textures/vanillabackport/pale_oak_sapling.png deleted file mode 100644 index 85f74cd8..00000000 Binary files a/public/textures/vanillabackport/pale_oak_sapling.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_sign.png b/public/textures/vanillabackport/pale_oak_sign.png deleted file mode 100644 index b9314365..00000000 Binary files a/public/textures/vanillabackport/pale_oak_sign.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_slab.png b/public/textures/vanillabackport/pale_oak_slab.png deleted file mode 100644 index 11bfb59f..00000000 Binary files a/public/textures/vanillabackport/pale_oak_slab.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_stairs.png b/public/textures/vanillabackport/pale_oak_stairs.png deleted file mode 100644 index d3b68b28..00000000 Binary files a/public/textures/vanillabackport/pale_oak_stairs.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_trapdoor.png b/public/textures/vanillabackport/pale_oak_trapdoor.png deleted file mode 100644 index cb25acbf..00000000 Binary files a/public/textures/vanillabackport/pale_oak_trapdoor.png and /dev/null differ diff --git a/public/textures/vanillabackport/pale_oak_wood.png b/public/textures/vanillabackport/pale_oak_wood.png deleted file mode 100644 index 51b3c52b..00000000 Binary files a/public/textures/vanillabackport/pale_oak_wood.png and /dev/null differ diff --git a/public/textures/vanillabackport/pink_harness.png b/public/textures/vanillabackport/pink_harness.png deleted file mode 100644 index eb79e658..00000000 Binary files a/public/textures/vanillabackport/pink_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/purple_harness.png b/public/textures/vanillabackport/purple_harness.png deleted file mode 100644 index 8931a681..00000000 Binary files a/public/textures/vanillabackport/purple_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/red_harness.png b/public/textures/vanillabackport/red_harness.png deleted file mode 100644 index 4edbb22d..00000000 Binary files a/public/textures/vanillabackport/red_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/resin_block.png b/public/textures/vanillabackport/resin_block.png deleted file mode 100644 index 1a7d62e4..00000000 Binary files a/public/textures/vanillabackport/resin_block.png and /dev/null differ diff --git a/public/textures/vanillabackport/resin_brick.png b/public/textures/vanillabackport/resin_brick.png deleted file mode 100644 index 2811cf17..00000000 Binary files a/public/textures/vanillabackport/resin_brick.png and /dev/null differ diff --git a/public/textures/vanillabackport/resin_brick_slab.png b/public/textures/vanillabackport/resin_brick_slab.png deleted file mode 100644 index bafed213..00000000 Binary files a/public/textures/vanillabackport/resin_brick_slab.png and /dev/null differ diff --git a/public/textures/vanillabackport/resin_brick_stairs.png b/public/textures/vanillabackport/resin_brick_stairs.png deleted file mode 100644 index e284ef90..00000000 Binary files a/public/textures/vanillabackport/resin_brick_stairs.png and /dev/null differ diff --git a/public/textures/vanillabackport/resin_brick_wall.png b/public/textures/vanillabackport/resin_brick_wall.png deleted file mode 100644 index e0d1a35f..00000000 Binary files a/public/textures/vanillabackport/resin_brick_wall.png and /dev/null differ diff --git a/public/textures/vanillabackport/resin_bricks.png b/public/textures/vanillabackport/resin_bricks.png deleted file mode 100644 index 7de200c3..00000000 Binary files a/public/textures/vanillabackport/resin_bricks.png and /dev/null differ diff --git a/public/textures/vanillabackport/resin_clump.png b/public/textures/vanillabackport/resin_clump.png deleted file mode 100644 index 131f9ab7..00000000 Binary files a/public/textures/vanillabackport/resin_clump.png and /dev/null differ diff --git a/public/textures/vanillabackport/stripped_pale_oak_log.png b/public/textures/vanillabackport/stripped_pale_oak_log.png deleted file mode 100644 index d90c1682..00000000 Binary files a/public/textures/vanillabackport/stripped_pale_oak_log.png and /dev/null differ diff --git a/public/textures/vanillabackport/stripped_pale_oak_wood.png b/public/textures/vanillabackport/stripped_pale_oak_wood.png deleted file mode 100644 index c0c85c98..00000000 Binary files a/public/textures/vanillabackport/stripped_pale_oak_wood.png and /dev/null differ diff --git a/public/textures/vanillabackport/white_harness.png b/public/textures/vanillabackport/white_harness.png deleted file mode 100644 index ab9ed2d4..00000000 Binary files a/public/textures/vanillabackport/white_harness.png and /dev/null differ diff --git a/public/textures/vanillabackport/yellow_harness.png b/public/textures/vanillabackport/yellow_harness.png deleted file mode 100644 index d9be2c56..00000000 Binary files a/public/textures/vanillabackport/yellow_harness.png and /dev/null differ diff --git a/public/textures/waystones/black_portstone.png b/public/textures/waystones/black_portstone.png deleted file mode 100644 index fde56c53..00000000 Binary files a/public/textures/waystones/black_portstone.png and /dev/null differ diff --git a/public/textures/waystones/black_sharestone.png b/public/textures/waystones/black_sharestone.png deleted file mode 100644 index 00ff88d0..00000000 Binary files a/public/textures/waystones/black_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/blackstone_waystone.png b/public/textures/waystones/blackstone_waystone.png deleted file mode 100644 index 7cd64801..00000000 Binary files a/public/textures/waystones/blackstone_waystone.png and /dev/null differ diff --git a/public/textures/waystones/blank_scroll.png b/public/textures/waystones/blank_scroll.png deleted file mode 100644 index 15eaa4e4..00000000 Binary files a/public/textures/waystones/blank_scroll.png and /dev/null differ diff --git a/public/textures/waystones/blue_portstone.png b/public/textures/waystones/blue_portstone.png deleted file mode 100644 index 2999d063..00000000 Binary files a/public/textures/waystones/blue_portstone.png and /dev/null differ diff --git a/public/textures/waystones/blue_sharestone.png b/public/textures/waystones/blue_sharestone.png deleted file mode 100644 index 91bd70cf..00000000 Binary files a/public/textures/waystones/blue_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/brown_portstone.png b/public/textures/waystones/brown_portstone.png deleted file mode 100644 index e613f40a..00000000 Binary files a/public/textures/waystones/brown_portstone.png and /dev/null differ diff --git a/public/textures/waystones/brown_sharestone.png b/public/textures/waystones/brown_sharestone.png deleted file mode 100644 index 987ca13c..00000000 Binary files a/public/textures/waystones/brown_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/cyan_portstone.png b/public/textures/waystones/cyan_portstone.png deleted file mode 100644 index cf2713c1..00000000 Binary files a/public/textures/waystones/cyan_portstone.png and /dev/null differ diff --git a/public/textures/waystones/cyan_sharestone.png b/public/textures/waystones/cyan_sharestone.png deleted file mode 100644 index f85e1c6d..00000000 Binary files a/public/textures/waystones/cyan_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/deepslate_waystone.png b/public/textures/waystones/deepslate_waystone.png deleted file mode 100644 index 93de3ea7..00000000 Binary files a/public/textures/waystones/deepslate_waystone.png and /dev/null differ diff --git a/public/textures/waystones/dormant_shard.png b/public/textures/waystones/dormant_shard.png deleted file mode 100644 index 6004c111..00000000 Binary files a/public/textures/waystones/dormant_shard.png and /dev/null differ diff --git a/public/textures/waystones/end_stone_waystone.png b/public/textures/waystones/end_stone_waystone.png deleted file mode 100644 index a82a7cd0..00000000 Binary files a/public/textures/waystones/end_stone_waystone.png and /dev/null differ diff --git a/public/textures/waystones/gray_portstone.png b/public/textures/waystones/gray_portstone.png deleted file mode 100644 index 75bd562c..00000000 Binary files a/public/textures/waystones/gray_portstone.png and /dev/null differ diff --git a/public/textures/waystones/gray_sharestone.png b/public/textures/waystones/gray_sharestone.png deleted file mode 100644 index ae74a59f..00000000 Binary files a/public/textures/waystones/gray_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/green_portstone.png b/public/textures/waystones/green_portstone.png deleted file mode 100644 index 37b57e93..00000000 Binary files a/public/textures/waystones/green_portstone.png and /dev/null differ diff --git a/public/textures/waystones/green_sharestone.png b/public/textures/waystones/green_sharestone.png deleted file mode 100644 index 74aa43cc..00000000 Binary files a/public/textures/waystones/green_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/light_blue_portstone.png b/public/textures/waystones/light_blue_portstone.png deleted file mode 100644 index b6e35dc7..00000000 Binary files a/public/textures/waystones/light_blue_portstone.png and /dev/null differ diff --git a/public/textures/waystones/light_blue_sharestone.png b/public/textures/waystones/light_blue_sharestone.png deleted file mode 100644 index 91ae7993..00000000 Binary files a/public/textures/waystones/light_blue_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/light_gray_portstone.png b/public/textures/waystones/light_gray_portstone.png deleted file mode 100644 index 40d245a9..00000000 Binary files a/public/textures/waystones/light_gray_portstone.png and /dev/null differ diff --git a/public/textures/waystones/light_gray_sharestone.png b/public/textures/waystones/light_gray_sharestone.png deleted file mode 100644 index e671a85f..00000000 Binary files a/public/textures/waystones/light_gray_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/lime_portstone.png b/public/textures/waystones/lime_portstone.png deleted file mode 100644 index 51ad29c9..00000000 Binary files a/public/textures/waystones/lime_portstone.png and /dev/null differ diff --git a/public/textures/waystones/lime_sharestone.png b/public/textures/waystones/lime_sharestone.png deleted file mode 100644 index 797121db..00000000 Binary files a/public/textures/waystones/lime_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/magenta_portstone.png b/public/textures/waystones/magenta_portstone.png deleted file mode 100644 index afc56d09..00000000 Binary files a/public/textures/waystones/magenta_portstone.png and /dev/null differ diff --git a/public/textures/waystones/magenta_sharestone.png b/public/textures/waystones/magenta_sharestone.png deleted file mode 100644 index 3444f1a9..00000000 Binary files a/public/textures/waystones/magenta_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/mossy_waystone.png b/public/textures/waystones/mossy_waystone.png deleted file mode 100644 index 4255b186..00000000 Binary files a/public/textures/waystones/mossy_waystone.png and /dev/null differ diff --git a/public/textures/waystones/orange_portstone.png b/public/textures/waystones/orange_portstone.png deleted file mode 100644 index 4ac1807f..00000000 Binary files a/public/textures/waystones/orange_portstone.png and /dev/null differ diff --git a/public/textures/waystones/orange_sharestone.png b/public/textures/waystones/orange_sharestone.png deleted file mode 100644 index 5d4a16b0..00000000 Binary files a/public/textures/waystones/orange_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/pink_portstone.png b/public/textures/waystones/pink_portstone.png deleted file mode 100644 index 55bb673a..00000000 Binary files a/public/textures/waystones/pink_portstone.png and /dev/null differ diff --git a/public/textures/waystones/pink_sharestone.png b/public/textures/waystones/pink_sharestone.png deleted file mode 100644 index 36b7a083..00000000 Binary files a/public/textures/waystones/pink_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/purple_portstone.png b/public/textures/waystones/purple_portstone.png deleted file mode 100644 index aa7ff741..00000000 Binary files a/public/textures/waystones/purple_portstone.png and /dev/null differ diff --git a/public/textures/waystones/purple_sharestone.png b/public/textures/waystones/purple_sharestone.png deleted file mode 100644 index 9bcb1ba2..00000000 Binary files a/public/textures/waystones/purple_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/red_portstone.png b/public/textures/waystones/red_portstone.png deleted file mode 100644 index ed7de4eb..00000000 Binary files a/public/textures/waystones/red_portstone.png and /dev/null differ diff --git a/public/textures/waystones/red_sharestone.png b/public/textures/waystones/red_sharestone.png deleted file mode 100644 index e8a1ab6e..00000000 Binary files a/public/textures/waystones/red_sharestone.png and /dev/null differ diff --git a/public/textures/waystones/return_scroll.png b/public/textures/waystones/return_scroll.png deleted file mode 100644 index 3b2aea07..00000000 Binary files a/public/textures/waystones/return_scroll.png and /dev/null differ diff --git a/public/textures/waystones/sandy_waystone.png b/public/textures/waystones/sandy_waystone.png deleted file mode 100644 index 0e0f3bd1..00000000 Binary files a/public/textures/waystones/sandy_waystone.png and /dev/null differ diff --git a/public/textures/waystones/warp_dust.png b/public/textures/waystones/warp_dust.png deleted file mode 100644 index 6f7190a5..00000000 Binary files a/public/textures/waystones/warp_dust.png and /dev/null differ diff --git a/public/textures/waystones/warp_plate.png b/public/textures/waystones/warp_plate.png deleted file mode 100644 index 2bb7ad72..00000000 Binary files a/public/textures/waystones/warp_plate.png and /dev/null differ diff --git a/public/textures/waystones/warp_scroll.png b/public/textures/waystones/warp_scroll.png deleted file mode 100644 index 9df5ad72..00000000 Binary files a/public/textures/waystones/warp_scroll.png and /dev/null differ diff --git a/public/textures/waystones/warp_stone.png b/public/textures/waystones/warp_stone.png deleted file mode 100644 index 970ebf47..00000000 Binary files a/public/textures/waystones/warp_stone.png and /dev/null differ diff --git a/public/textures/waystones/waystone.png b/public/textures/waystones/waystone.png deleted file mode 100644 index 79e09af7..00000000 Binary files a/public/textures/waystones/waystone.png and /dev/null differ diff --git a/public/textures/waystones/white_portstone.png b/public/textures/waystones/white_portstone.png deleted file mode 100644 index 14d3d916..00000000 Binary files a/public/textures/waystones/white_portstone.png and /dev/null differ diff --git a/public/textures/waystones/yellow_portstone.png b/public/textures/waystones/yellow_portstone.png deleted file mode 100644 index b79f50f8..00000000 Binary files a/public/textures/waystones/yellow_portstone.png and /dev/null differ diff --git a/public/textures/waystones/yellow_sharestone.png b/public/textures/waystones/yellow_sharestone.png deleted file mode 100644 index c825acce..00000000 Binary files a/public/textures/waystones/yellow_sharestone.png and /dev/null differ diff --git a/public/textures/xercapaint/item_canvas.png b/public/textures/xercapaint/item_canvas.png deleted file mode 100644 index 634433d7..00000000 Binary files a/public/textures/xercapaint/item_canvas.png and /dev/null differ diff --git a/public/textures/xercapaint/item_canvas_large.png b/public/textures/xercapaint/item_canvas_large.png deleted file mode 100644 index 159c68f8..00000000 Binary files a/public/textures/xercapaint/item_canvas_large.png and /dev/null differ diff --git a/public/textures/xercapaint/item_canvas_long.png b/public/textures/xercapaint/item_canvas_long.png deleted file mode 100644 index 877051a3..00000000 Binary files a/public/textures/xercapaint/item_canvas_long.png and /dev/null differ diff --git a/public/textures/xercapaint/item_canvas_tall.png b/public/textures/xercapaint/item_canvas_tall.png deleted file mode 100644 index 8a8538f5..00000000 Binary files a/public/textures/xercapaint/item_canvas_tall.png and /dev/null differ diff --git a/public/textures/xercapaint/item_easel.png b/public/textures/xercapaint/item_easel.png deleted file mode 100644 index ad117fa7..00000000 Binary files a/public/textures/xercapaint/item_easel.png and /dev/null differ diff --git a/public/textures/xercapaint/item_palette.png b/public/textures/xercapaint/item_palette.png deleted file mode 100644 index e4bfe50c..00000000 Binary files a/public/textures/xercapaint/item_palette.png and /dev/null differ diff --git a/public/textures/xercapaint/item_palette__{'xercapaint__palette_basic_colors'__[B;1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B]}.png b/public/textures/xercapaint/item_palette__{'xercapaint__palette_basic_colors'__[B;1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B]}.png deleted file mode 100644 index 6a57aab9..00000000 Binary files a/public/textures/xercapaint/item_palette__{'xercapaint__palette_basic_colors'__[B;1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B,1B]}.png and /dev/null differ diff --git a/public/ws-test.html b/public/ws-test.html deleted file mode 100644 index 1bf1188c..00000000 --- a/public/ws-test.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - WebSocket Custom Request Tester - - - -

WebSocket Custom Request Tester

-
-
- - -
-
-
- - -
-
- - -
-
-
- - -
- -
-
- - - - diff --git a/server.js b/server.js index 40cc80f4..c4813837 100644 --- a/server.js +++ b/server.js @@ -1,7 +1,6 @@ const express = require("express"); const http = require("http"); const WebSocket = require("ws"); -const path = require("path"); const pool = require("./db"); const app = express(); @@ -11,41 +10,51 @@ app.use(express.json()); app.use(express.urlencoded({ extended: true })); -// Serve static files from public directory -app.use("/static", express.static(path.join(__dirname, "public"))); -// In-memory store for latest item lists. -// Structure: -// { -// sourceIdOrName: { -// from: , -// ts: , -// items: [ { name, count }, ... ], -// clientId: // optional internal id -// }, -// ... -// } -const latestItems = {}; +async function upsertItemsForShop(shopId, items) { + if (!items.length) return; -// Convenience: sanitize/normalize an items array coming from clients -function normalizeItems(arr) { - if (typeof arr !== "object" || !Array.isArray(arr)) return []; - const out = []; - for (let i = 0; i < arr.length; i++) { - const it = arr[i]; - if (!it) continue; - const name = String(it.name || it.id || it.item || "unknown"); - const count = Number(it.count || it.qty || it.stackSize || 0) || 0; - out.push({ name, count }); + const placeholders = items.map(() => "(?, ?, ?)").join(", "); + const values = items.flatMap((i) => [ + shopId, + i.item_name, + Number(i.stock) || 0, + ]); + + const sql = ` + INSERT INTO Item (shopId, item_name, stock) + VALUES ${placeholders} + ON DUPLICATE KEY UPDATE stock = VALUES(stock) + `; + + await pool.query(sql, values); +} + +async function zeroMissingItems(shopId, items) { + const names = items.map((i) => i.item_name); + items; + if (names.length === 0) { + await pool.query(`UPDATE Item SET stock = 0 WHERE shopId = ?`, [shopId]); + return; } - return out; + + const sql = ` + UPDATE Item + SET stock = 0 + WHERE shopId = ? + AND item_name NOT IN (?) + `; + + await pool.query(sql, [shopId, names]); +} + +async function zeroAllItemsForShop(shopId) { + await pool.query(`UPDATE Item SET stock = 0 WHERE shopId = ?`, [shopId]); } // Create HTTP server & WebSocket server const server = http.createServer(app); const wss = new WebSocket.Server({ server }); -require("./users-api")(app, wss, pool); - // Helper to send JSON to a ws client function sendJSON(ws, obj) { try { @@ -55,144 +64,74 @@ function sendJSON(ws, obj) { } } -wss.on("connection", (ws, req) => { +wss.on("connection", (ws) => { const clientId = Date.now().toString(36) + Math.random().toString(36).slice(2, 8); + ws._clientId = clientId; - console.log("Client connected:", clientId, "from", req.socket.remoteAddress); + ws._shopId = null; - // Welcome message - sendJSON(ws, { type: "welcome", id: clientId, timestamp: Date.now() }); + console.log("Client connected:", clientId); - ws.on("message", (raw) => { - const text = raw.toString(); + sendJSON(ws, { type: "welcome", id: clientId }); - // Try to parse JSON; if parse fails we still broadcast the raw text as a message - let parsed = null; + ws.on("message", async (raw) => { + let parsed; try { - parsed = JSON.parse(text); - } catch (e) { - parsed = null; + parsed = JSON.parse(raw.toString()); + } catch { + return; } - // If the parsed object contains an items array, store it - if ( - parsed && - typeof parsed === "object" && - "items" in parsed && - Array.isArray(parsed.items) - ) { - const from = String( - parsed.from || parsed.source || parsed.client || parsed.id || clientId, - ); - const id = parsed.id || clientId; - const ts = Number(parsed.ts || parsed.time || Date.now()) || Date.now(); - const items = normalizeItems(parsed.items); + parsed.shopId = Number(parsed.id); - latestItems[id] = { - from, - ts, - items, - clientId, - }; + if (parsed && Array.isArray(parsed.items) && parsed.shopId != null) { + const shopId = Number(parsed.shopId); + ws._shopId = shopId; - console.log(`Stored items from '${from}' (${items.length} entries)`); + const items = parsed.items.map((i) => ({ + item_name: String(i.name), + stock: Number(i.count) || 0, + })); + + try { + // 1. Upsert received items + await upsertItemsForShop(shopId, items); + + // 2. Set missing items to 0 (ONLY this shop) + await zeroMissingItems(shopId, items); + + console.log(`Updated shop ${shopId} (${items.length} items)`); + } catch (err) { + console.error("DB error:", err.message); + } } - // Broadcast to other clients (keep original behaviour: broadcast as { type: 'message', ... }) - var out = {}; - if (parsed && parsed.type === "request") { - out = { - type: parsed.type, - items: parsed.items || [], - address: parsed.address || "", - to: parsed.to || "", - }; - } else if (parsed) { - out = { - type: parsed.type || "message", - from: - parsed && parsed.from - ? parsed.from - : parsed && parsed.id - ? parsed.id - : clientId, - text: - (parsed && parsed.message) || - (typeof parsed === "string" ? parsed : text), - raw: parsed || text, - ts: Date.now(), - }; - } - if (parsed && parsed.type && parsed.type !== "items") { + // ---- broadcast logic unchanged ---- + if (parsed?.type && parsed.type !== "items") { wss.clients.forEach((client) => { if (client.readyState === WebSocket.OPEN) { - try { - client.send(JSON.stringify(out)); - } catch (err) { - // Ignore send errors for now - console.warn( - `Failed to send message to client ${client._clientId}: ${err.message}`, - ); - } + client.send(JSON.stringify(parsed)); } }); } }); - ws.on("close", () => { + ws.on("close", async () => { console.log("Client disconnected:", clientId); - // delete stored items on disconnect - for (const shopId in latestItems) { - const shop = latestItems[shopId]; - if (shop.clientId === clientId) { - delete latestItems[shopId]; + + if (ws._shopId != null) { + try { + await zeroAllItemsForShop(ws._shopId); + console.log(`Shop ${ws._shopId} set to 0 stock`); + } catch (err) { + console.error("DB error on close:", err.message); } } }); ws.on("error", (err) => { - console.log("WebSocket error from", clientId, err && err.message); - }); -}); - -// API endpoint that returns the latest items as JSON -app.get("/api/items", (req, res) => { - res.set("Access-Control-Allow-Origin", "*"); - // Return the whole latestItems object with metadata - res.json({ - ok: true, - ts: Date.now(), - itemCount: Object.values(latestItems).reduce( - (sum, item) => sum + item.items.length, - 0, - ), - data: latestItems, - }); -}); - -app.get("/api/item/:id", (req, res) => { - const itemName = req.params.id; - res.set("Access-Control-Allow-Origin", "*"); - - for (const shopId in latestItems) { - const shop = latestItems[shopId]; - const item = shop.items.find((i) => i.name === itemName); - - if (item) { - return res.json({ - ok: true, - shopId, - item, - source: shop.from, - timestamp: shop.ts, - }); - } - } - - res.status(404).json({ - ok: false, - error: "Item not found", + console.log("WebSocket error:", err.message); }); }); @@ -233,8 +172,9 @@ app.post("/api/send", (req, res) => { // Send via WebSocket wss.clients.forEach((client) => { - if (client.readyState === 1) { + if (client.readyState === WebSocket.OPEN) { client.send(JSON.stringify(request)); + console.log("Sent request to client:", client._clientId); } }); @@ -244,31 +184,6 @@ app.post("/api/send", (req, res) => { data: request, }); }); - -// Serve the items UI page from public/items.html for the /items route. -// The actual HTML/JS for the page lives in public/items.html (moved from server-side rendering). -app.get("/", (req, res) => { - res.sendFile(path.join(__dirname, "public", "index.html")); -}); -app.get("/items", (req, res) => { - res.sendFile(path.join(__dirname, "public", "items.html")); -}); -app.get("/msg", (req, res) => { - res.sendFile(path.join(__dirname, "public", "msg.html")); -}); -app.get("/register", (req, res) => { - res.sendFile(path.join(__dirname, "public", "register.html")); -}); -app.get("/ws-test", (req, res) => { - res.sendFile(path.join(__dirname, "public", "ws-test.html")); -}); -app.get("/admin", (req, res) => { - res.sendFile(path.join(__dirname, "public", "admin.html")); -}); - server.listen(PORT, () => { console.log(`🚀 Server listening on http://localhost:${PORT}`); - console.log(`🌐 Web UI: http://localhost:${PORT}/`); - console.log(`📄 Items page: http://localhost:${PORT}/items`); - console.log(`📦 Items API: http://localhost:${PORT}/api/items`); }); diff --git a/users-api.js b/users-api.js deleted file mode 100644 index 59266e8b..00000000 --- a/users-api.js +++ /dev/null @@ -1,475 +0,0 @@ -/* - users-api.js - User management API endpoints for Express with MariaDB pool. -*/ - -const express = require("express"); -const axios = require("axios"); - -// Helper to parse JSON fields -function parseJson(val) { - try { - const arr = JSON.parse(val); - return Array.isArray(arr) ? arr : []; - } catch { - return []; - } -} - -// Export function to register routes -module.exports = function (app, wss, pool) { - // Helper to get balance - async function getBalance(username) { - const conn = await pool.getConnection(); - try { - const rows = await conn.query( - "SELECT balance FROM users WHERE username = ?", - [username], - ); - return rows[0]?.balance || 0; - } finally { - conn.release(); - } - } - - // --- USERS --- - - app.post("/api/users", express.json(), async (req, res) => { - const { username, password, adresses } = req.body; - const balance = 1000; - if (typeof username !== "string" || typeof password !== "string") { - return res.status(400).json({ ok: false, error: "Invalid input" }); - } - const adressesArr = Array.isArray(adresses) - ? adresses.filter((a) => typeof a === "string") - : []; - - const conn = await pool.getConnection(); - try { - await conn.query( - "INSERT INTO users (username, password, balance, adresses) VALUES (?, ?, ?, ?)", - [username, password, balance, JSON.stringify(adressesArr)], - ); - res.json({ ok: true }); - } catch (err) { - res.status(400).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - app.get("/api/users/:username", async (req, res) => { - const conn = await pool.getConnection(); - try { - const rows = await conn.query("SELECT * FROM users WHERE username = ?", [ - req.params.username, - ]); - const user = rows[0]; - if (!user) - return res.status(404).json({ ok: false, error: "User not found" }); - - user.adresses = parseJson(user.adresses); - - res.json({ ok: true, user }); - } catch (err) { - res.status(500).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - app.put("/api/users/:username", express.json(), async (req, res) => { - const { balance, adresses } = req.body; - const updates = []; - const params = []; - if (typeof balance === "number") { - updates.push("balance = ?"); - params.push(balance); - } - if (Array.isArray(adresses)) { - updates.push("adresses = ?"); - params.push( - JSON.stringify(adresses.filter((a) => typeof a === "string")), - ); - } - if (updates.length === 0) - return res - .status(400) - .json({ ok: false, error: "No valid fields to update" }); - - params.push(req.params.username); - const conn = await pool.getConnection(); - try { - const result = await conn.query( - `UPDATE users SET ${updates.join(", ")} WHERE username = ?`, - params, - ); - if (result.affectedRows === 0) - return res.status(404).json({ ok: false, error: "User not found" }); - res.json({ ok: true }); - } catch (err) { - res.status(400).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - app.get("/api/users", async (req, res) => { - const conn = await pool.getConnection(); - try { - const rows = await conn.query("SELECT * FROM users"); - rows.forEach((row) => { - row.adresses = parseJson(row.adresses); - }); - res.json({ ok: true, users: rows }); - } catch (err) { - res.status(500).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - // --- COMPUTERS --- - - app.post("/api/computers", express.json(), async (req, res) => { - const { linked_user } = req.body; - if (typeof linked_user !== "string") - return res.status(400).json({ ok: false, error: "Invalid input" }); - - const conn = await pool.getConnection(); - try { - const result = await conn.query( - "INSERT INTO computers (linked_user) VALUES (?)", - [linked_user], - ); - res.json({ ok: true, id: result.insertId }); - } catch (err) { - res.status(400).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - app.get("/api/computers", async (req, res) => { - const user = req.query.user; - const sql = user - ? "SELECT * FROM computers WHERE linked_user = ?" - : "SELECT * FROM computers"; - const params = user ? [user] : []; - - const conn = await pool.getConnection(); - try { - const rows = await conn.query(sql, params); - res.json({ ok: true, computers: rows }); - } catch (err) { - res.status(500).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - app.put("/api/computers/:id", express.json(), async (req, res) => { - const { linked_user } = req.body; - if (typeof linked_user !== "string") - return res.status(400).json({ ok: false, error: "Invalid input" }); - - const conn = await pool.getConnection(); - try { - const result = await conn.query( - "UPDATE computers SET linked_user = ? WHERE id = ?", - [linked_user, req.params.id], - ); - if (result.affectedRows === 0) - return res.status(404).json({ ok: false, error: "Computer not found" }); - res.json({ ok: true }); - } catch (err) { - res.status(400).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - app.get("/api/users/:username/computers", async (req, res) => { - const conn = await pool.getConnection(); - try { - const rows = await conn.query( - "SELECT * FROM computers WHERE linked_user = ?", - [req.params.username], - ); - res.json({ ok: true, computers: rows }); - } catch (err) { - res.status(500).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - app.get("/api/computers/:id/user", async (req, res) => { - const conn = await pool.getConnection(); - try { - const rows = await conn.query( - "SELECT linked_user FROM computers WHERE id = ?", - [req.params.id], - ); - const user = rows[0]?.linked_user; - if (!user) - return res.status(404).json({ ok: false, error: "Computer not found" }); - res.json({ ok: true, user }); - } catch (err) { - res.status(500).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - // --- SHOP ITEMS --- - - app.get("/api/shop/items", async (req, res) => { - const conn = await pool.getConnection(); - res.set("Access-Control-Allow-Origin", "*"); - try { - const rows = await conn.query( - "SELECT id, name, price, quantity FROM shop_items WHERE enabled = 1", - ); - res.json({ ok: true, items: rows }); - } catch (err) { - res.status(500).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - app.get("/api/shop/items/all", async (req, res) => { - const conn = await pool.getConnection(); - res.set("Access-Control-Allow-Origin", "*"); - try { - const rows = await conn.query("SELECT * FROM shop_items"); - res.json({ ok: true, items: rows }); - } catch (err) { - res.status(500).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - app.post("/api/shop/items", express.json(), async (req, res) => { - const { name, price, enabled, quantity } = req.body; - if ( - typeof name !== "string" || - typeof price !== "number" || - typeof quantity !== "number" - ) { - return res.status(400).json({ ok: false, error: "Invalid input" }); - } - const conn = await pool.getConnection(); - try { - const result = await conn.query( - "INSERT INTO shop_items (name, price, enabled, quantity) VALUES (?, ?, ?, ?)", - [name, price, enabled ? 1 : 0, quantity], - ); - res.json({ ok: true, id: result.insertId }); - } catch (err) { - res.status(400).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - app.put("/api/shop/items/:id", express.json(), async (req, res) => { - const { name, price, enabled, quantity } = req.body; - const updates = []; - const params = []; - if (typeof name === "string") { - updates.push("name = ?"); - params.push(name); - } - if (typeof price === "number") { - updates.push("price = ?"); - params.push(price); - } - if (typeof enabled === "number") { - updates.push("enabled = ?"); - params.push(enabled ? 1 : 0); - } - if (typeof quantity === "number") { - updates.push("quantity = ?"); - params.push(quantity); - } - if (updates.length === 0) - return res - .status(400) - .json({ ok: false, error: "No valid fields to update" }); - params.push(req.params.id); - - const conn = await pool.getConnection(); - try { - const result = await conn.query( - `UPDATE shop_items SET ${updates.join(", ")} WHERE id = ?`, - params, - ); - if (result.affectedRows === 0) - return res.status(404).json({ ok: false, error: "Item not found" }); - res.json({ ok: true }); - } catch (err) { - res.status(400).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - app.delete("/api/shop/items/:id", async (req, res) => { - const conn = await pool.getConnection(); - try { - const result = await conn.query("DELETE FROM shop_items WHERE id = ?", [ - req.params.id, - ]); - if (result.affectedRows === 0) - return res.status(404).json({ ok: false, error: "Item not found" }); - res.json({ ok: true }); - } catch (err) { - res.status(400).json({ ok: false, error: err.message }); - } finally { - conn.release(); - } - }); - - // --- SHOP BUY & USER TRANSFER --- - - app.post("/api/shop/items/buy", async (req, res) => { - const { userId, addressId, items } = req.body; - if (!userId || !addressId || !Array.isArray(items)) { - return res - .status(400) - .json({ ok: false, error: "Missing or invalid parameters" }); - } - - const conn = await pool.getConnection(); - try { - await conn.beginTransaction(); - - let total = 0; - const shopList = {}; - - for (const item of items) { - if (!item.id || !item.quantity) - return res - .status(400) - .json({ ok: false, error: "Invalid item format" }); - - const response = await axios.get( - `http://localhost:3100/api/item/${item.id}`, - ); - const stockCount = response.data.item.count; - if (stockCount < item.quantity) - return res - .status(400) - .json({ ok: false, error: `Not enough stock for item ${item.id}` }); - - const [priceRow] = await conn.query( - "SELECT price FROM shop_items WHERE name = ?", - [item.id], - ); - if (!priceRow) - return res - .status(404) - .json({ ok: false, error: `Item not found ${item.id}` }); - const price = priceRow.price; - - const [userRow] = await conn.query( - "SELECT balance FROM users WHERE username = ?", - [userId], - ); - if (!userRow) - return res.status(404).json({ ok: false, error: "User not found" }); - if (userRow.balance < price * (item.quantity / item.sellQuantity)) - return res.status(400).json({ - ok: false, - error: `Insufficient balance for item ${item.id}`, - }); - - const shopId = response.data.shopId; - if (!shopList[shopId]) shopList[shopId] = []; - shopList[shopId].push({ name: item.id, _requestCount: item.quantity }); - total += price * (item.quantity / item.sellQuantity); - } - - // Send via WebSocket - Object.keys(shopList).forEach((shop) => { - const request = { - type: "request", - address: addressId, - to: parseInt(shop), - items: shopList[shop], - }; - wss.clients.forEach((client) => { - if (client.readyState === 1) client.send(JSON.stringify(request)); - }); - }); - - // Deduct total from user - await conn.query( - "UPDATE users SET balance = balance - ? WHERE username = ?", - [total, userId], - ); - // Add total to 'ZareMate' - await conn.query( - "UPDATE users SET balance = balance + ? WHERE username = 'ZareMate'", - [total], - ); - - await conn.commit(); - res.status(200).json({ - ok: true, - message: `Successfully purchased items for user ${userId} at ${total}`, - }); - } catch (err) { - await conn.rollback(); - console.error(err); - res.status(500).json({ ok: false, error: "Internal server error" }); - } finally { - conn.release(); - } - }); - - app.post("/api/users/transfer", async (req, res) => { - const { from, to, amount } = req.body; - if (!from || !to || !amount || amount <= 0) - return res.status(400).json({ ok: false, error: "Invalid input" }); - - const conn = await pool.getConnection(); - try { - await conn.beginTransaction(); - const [fromRow] = await conn.query( - "SELECT balance FROM users WHERE username = ?", - [from], - ); - if (!fromRow) - return res.status(404).json({ ok: false, error: "Sender not found" }); - if (fromRow.balance < amount) - return res - .status(400) - .json({ ok: false, error: "Insufficient balance" }); - - await conn.query( - "UPDATE users SET balance = balance - ? WHERE username = ?", - [amount, from], - ); - await conn.query( - "UPDATE users SET balance = balance + ? WHERE username = ?", - [amount, to], - ); - - await conn.commit(); - res.status(200).json({ - ok: true, - message: `Successfully transferred ${amount} from ${from} to ${to}`, - }); - } catch (err) { - await conn.rollback(); - console.error(err); - res.status(500).json({ ok: false, error: "Internal server error" }); - } finally { - conn.release(); - } - }); -};